:root{
  --bg:#fff8f1;
  --surface:#ffffff;
  --surface-alt:#fff1e3;
  --text:#1f2937;
  --muted:#5f6b7a;
  --accent:#ff7a1a;
  --accent-dark:#e8670d;
  --line:#eadfce;
  --shadow:0 14px 30px rgba(0,0,0,.08);
  --radius:20px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  margin:0;
  background:var(--bg);
  color:var(--text);
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1120px, 92%);
  margin:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1.1;
  min-width:0;
}

.brand strong{
  font-size:1.05rem;
}

.brand span{
  font-size:.78rem;
  color:var(--muted);
}

.navlinks{
  display:flex;
  align-items:center;
  gap:20px;
}

.navlinks a{
  font-weight:600;
  color:var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:14px 22px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-weight:700;
  box-shadow:0 10px 22px rgba(255,122,26,.22);
  transition:transform .15s ease, background .15s ease;
}

.btn:hover{
  background:var(--accent-dark);
  transform:translateY(-1px);
}

.btn-small{
  min-height:42px;
  padding:10px 16px;
}

.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero{
  padding:56px 0 64px;
  background:linear-gradient(135deg,#ff8a3d,#ffb46b);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:36px;
  align-items:center;
}

.hero-text{
  color:#1f2937;
}

.hero-logo-badge{
  width:clamp(120px, 18vw, 190px);
  margin:0 0 22px;
}

.hero-logo-badge img{
  width:100%;
  background:#fff;
  padding:12px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.eyebrow{
  margin:0 0 12px;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.75rem;
  font-weight:800;
}

.section-eyebrow{
  color:var(--accent-dark);
}

.hero h1{
  margin:0 0 16px;
  font-size:clamp(2.1rem,5vw,4rem);
  line-height:1.02;
  max-width:11ch;
}

.hero-copy{
  margin:0;
  max-width:60ch;
  font-size:1.05rem;
  line-height:1.6;
}

.hero-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.hero-points{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 0;
  padding:0;
}

.hero-points li{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.5);
  padding:9px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:.92rem;
}

.hero-image-wrap img{
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 18px 36px rgba(0,0,0,.14);
  border:4px solid rgba(255,255,255,.55);
}

.section{
  padding:72px 0;
}

.alt{
  background:var(--surface-alt);
}

.section-heading{
  margin-bottom:28px;
}

.section h2{
  margin:0;
  font-size:clamp(1.9rem,4vw,2.7rem);
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--line);
  padding:28px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  text-align:center;
}

.featured{
  border:2px solid rgba(255,122,26,.4);
}

.pill{
  position:absolute;
  top:14px;
  right:14px;
  font-size:.72rem;
  background:rgba(255,122,26,.12);
  color:var(--accent-dark);
  padding:7px 10px;
  border-radius:999px;
  font-weight:800;
}

.price{
  margin-top:12px;
  font-weight:900;
}

.contact-box{
  display:flex;
  justify-content:space-between;
  gap:22px;
  align-items:center;
  background:var(--surface);
  border:1px solid var(--line);
  padding:30px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.contact-copy p{
  color:var(--muted);
}

.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.footer{
  background:#1f2937;
  color:#fff;
  padding:36px 0;
}

.footgrid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footgrid p{
  margin:.35rem 0;
  color:#d1d5db;
}

/* Tablet */
@media (max-width:980px){
  .hero-grid,
  .cards{
    grid-template-columns:1fr;
  }

  .hero{
    padding:48px 0 56px;
  }

  .hero h1{
    max-width:none;
  }

  .hero-image-wrap{
    max-width:720px;
  }

  .contact-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Mobile */
@media (max-width:720px){
  .container{
    width:min(100%,calc(100% - 28px));
  }

  .nav{
    flex-wrap:wrap;
    gap:10px;
  }

  .navlinks{
    width:100%;
  }

  .hero{
    padding:34px 0 46px;
  }

  .hero-logo-badge{
    width:118px;
    margin:0 0 18px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero-buttons,
  .contact-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .hero-points li{
    width:100%;
    text-align:center;
  }
}

/* Small phones */
@media (max-width:420px){
  .hero h1{
    font-size:28px;
  }

  .brand strong{
    font-size:1rem;
  }
}
