:root{
  --bg: #0b0f14;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.12);
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --brand: #f59e0b;
  --brand2: #f97316;
  --shadow: 0 14px 40px rgba(0,0,0,0.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(245,158,11,0.15), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(249,115,22,0.14), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

.container{max-width:1120px; margin:0 auto; padding:0 20px}

.skip{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,0.12);
  border:1px solid var(--line);
}
.skip:focus{left:12px; z-index:1000}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(150%) blur(14px);
  background:rgba(10,14,19,0.6);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand__mark{
  width:36px;
  height:36px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 26px rgba(249,115,22,0.25);
}
.brand__name{display:block; font-weight:700; letter-spacing:-0.02em}
.brand__tag{display:block; color:var(--muted); font-size:12px; margin-top:1px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:rgba(255,255,255,0.82); font-weight:500; font-size:14px}
.nav a:hover{color:rgba(255,255,255,0.98)}

.menu{
  display:none;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  border-radius:14px;
  padding:10px;
}
.menu__bar{display:block; width:20px; height:2px; background:rgba(255,255,255,0.85); margin:4px 0; border-radius:999px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.92);
  font-weight:600;
  letter-spacing:-0.01em;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,0.09); border-color:rgba(255,255,255,0.2)}
.btn:active{transform:translateY(0)}
.btn--primary{
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(255,255,255,0.12);
  color:#1a1207;
}
.btn--primary:hover{filter:saturate(1.05)}
.btn--ghost{background:transparent}
.btn--sm{padding:10px 14px; font-size:13px}
.btn--full{width:100%}

.hero{position:relative; min-height:76vh; display:flex; align-items:stretch}
.hero__bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(11,15,20,0.18), rgba(11,15,20,0.92)),
    url('assets/guzape-1.jpg');
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.05);
}
.hero__overlay{position:absolute; inset:0; background:radial-gradient(900px 520px at 30% 15%, rgba(245,158,11,0.20), transparent 65%)}
.hero__content{position:relative; padding:88px 0 46px}

.eyebrow{color:rgba(255,255,255,0.82); font-weight:600; margin:0 0 12px; letter-spacing:0.08em; text-transform:uppercase; font-size:12px}

h1{margin:0 0 10px; font-size:48px; line-height:1.06; letter-spacing:-0.03em; max-width:720px}

.lead{margin:0 0 22px; color:rgba(255,255,255,0.82); max-width:720px; font-size:18px}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:26px}

.hero__stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  max-width:920px;
}
.stat{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  padding:14px 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}
.stat__value{margin:0; font-weight:700; letter-spacing:-0.02em}
.stat__label{margin:4px 0 0; color:var(--muted); font-size:13px}

.section{padding:72px 0}
.section--alt{background:rgba(255,255,255,0.03); border-top:1px solid rgba(255,255,255,0.06); border-bottom:1px solid rgba(255,255,255,0.06)}

.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:26px}
.section__head h2{margin:0}

h2{font-size:30px; letter-spacing:-0.02em; line-height:1.15; margin:0 0 14px}

.muted{color:var(--muted)}
.tagline{margin:18px 0 0; font-weight:600; letter-spacing:-0.01em}

.grid{display:grid; gap:20px}
.grid--2{grid-template-columns:repeat(2, minmax(0,1fr)); align-items:start}

.card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__body{padding:16px}
.card__title{margin:0 0 6px; font-weight:700}
.card__text{margin:0; color:var(--muted)}

.media{aspect-ratio: 4 / 3; overflow:hidden}
.media img{width:100%; height:100%; object-fit:cover; transform:scale(1.02)}

.features{display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:14px}
.feature{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  padding:16px;
}
.feature__icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(245,158,11,0.20), rgba(249,115,22,0.18));
  border:1px solid rgba(255,255,255,0.12);
  margin-bottom:10px;
  color:rgba(255,255,255,0.9);
}
.feature h3{margin:0 0 8px; font-size:16px; letter-spacing:-0.01em}
.feature p{margin:0; font-size:14px}

.banner{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:linear-gradient(135deg, rgba(245,158,11,0.16), rgba(249,115,22,0.10));
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  padding:16px;
}
.banner__title{margin:0 0 4px; font-weight:800; letter-spacing:-0.02em}

.gallery{
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  gap:12px;
}
.g{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}
.g img{width:100%; height:100%; object-fit:cover; aspect-ratio: 16 / 10; transition:transform .25s ease, filter .25s ease}
.g:hover img{transform:none; filter:none}

.gallery .g:nth-child(1){grid-column:span 7}
.gallery .g:nth-child(2){grid-column:span 5}
.gallery .g:nth-child(3){grid-column:span 5}
.gallery .g:nth-child(4){grid-column:span 7}
.gallery .g:nth-child(5){grid-column:span 12}

.contactCards{display:grid; gap:12px; margin-top:14px}
.contactCard{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
}
.contactCard:hover{background:rgba(255,255,255,0.09)}
.contactCard__k{color:var(--muted); font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase}
.contactCard__v{font-weight:800; letter-spacing:-0.02em}

.card--form .stack{display:grid; gap:10px; margin-top:14px}
.stack{display:grid; gap:10px}

.fineprint{margin-top:10px}

.footer{padding:24px 0}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px; border-top:1px solid rgba(255,255,255,0.08); padding-top:18px}

.fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  padding:12px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#1a1207;
  font-weight:800;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.10);
}



@media (max-width: 980px){
  h1{font-size:40px}
  .features{grid-template-columns:repeat(2, minmax(0,1fr))}
  .gallery .g:nth-child(1){grid-column:span 12}
  .gallery .g:nth-child(2){grid-column:span 6}
  .gallery .g:nth-child(3){grid-column:span 6}
  .gallery .g:nth-child(4){grid-column:span 12}
  .gallery .g:nth-child(5){grid-column:span 12}
}

@media (max-width: 760px){
  .menu{display:inline-flex}
  .nav{
    position:absolute;
    top:64px;
    right:20px;
    left:20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    padding:14px;
    background:rgba(10,14,19,0.92);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:18px;
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
  .grid--2{grid-template-columns:1fr}
  .hero__content{padding:72px 0 38px}
  h1{font-size:34px}
  .hero__stats{grid-template-columns:1fr}
  .section{padding:56px 0}
  .section__head{flex-direction:column; align-items:flex-start}
  .banner{flex-direction:column; align-items:stretch}
  .fab{left:18px; right:18px; text-align:center}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .btn, .g img{transition:none !important}
}
