:root{
  --bg:#f7fbff;
  --ink:#0f172a;
  --muted:#eef6fa;
  --brand:#42A7CC;
  --accent:#f47c1e;
  --white:#ffffff;
  --shadow:0 18px 40px rgba(15,23,42,0.18);
  --wrap:1240px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size:14px;
  background:var(--brand);
  color:var(--ink);
}
a{color:inherit; text-decoration:none}
.wrap{max-width:var(--wrap); margin:0 auto; padding:0 24px}

/* Header */
.clean-topbar{
  position:sticky; top:0; z-index:10;
  background:var(--white);
  border-bottom:1px solid rgba(0,0,0,0.04);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand img{height:32px; width:auto; display:block}
.nav{display:flex; align-items:center; gap:28px; font-weight:700}
.nav a{color:var(--ink)}
.nav a.accent{color:var(--accent)}
.nav a.active-page{
  position:relative;
}
.nav a.active-page::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-8px;
  height:3px;
  background:var(--accent);
  border-radius:999px;
}
.menu-toggle{
  display:none;
  width:42px; height:42px;
  align-items:center; justify-content:center;
  flex-direction:column;
  gap:6px;
  background:var(--brand);
  border:none;
  border-radius:10px;
  padding:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.16);
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:100%;
  height:3px;
  background:#fff;
  border-radius:999px;
}
.nav-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  z-index:9;
}

/* Hero */
.clean-hero{
  background:var(--brand);
  color:#fff;
  padding:82px 0 120px;
  min-height:calc(100vh - 72px);
  min-height:calc(100svh - 72px);
  display:flex;
  align-items:center;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:flex-start;
  gap:40px;
  min-height:clamp(560px, 82vh, 860px);
}
.hero-copy h1{
  margin:12px 0 16px;
  font-size:clamp(36px, 6vw, 64px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero-copy .orange{color:var(--accent); text-shadow:1px 1px 0 rgba(0,0,0,0.06)}
.pill{
  display:inline-flex; align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.16);
  font-weight:700;
  font-size:14px;
}
.subtitle{
  margin:0 0 18px;
  color:rgba(255,255,255,0.92);
  font-size:18px;
  line-height:1.55;
  max-width:38ch;
}
.cta-row.stores{
  display:flex; gap:14px; flex-wrap:wrap; align-items:center;
}
.store-badge{
  display:inline-flex;
  border-radius:0;
  overflow:visible;
  box-shadow:none;
  background:transparent;
}
.store-badge img{display:block; height:64px; width:auto}
.contact-row{
  margin-top:18px;
  display:flex; align-items:center; gap:10px;
  color:rgba(255,255,255,0.9);
  font-weight:700;
}
.contact-label{font-size:15px}
.social-row{
  display:flex;
  gap:10px;
  align-items:center;
}
.social-row img{
  height:24px;
  width:auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.hero-visual img{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  border-radius:0;
  box-shadow:none;
  margin-left:auto;
  transform:none;
  transform-origin:center;
}
.hero-visual{
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
  max-width:560px;
  margin-left:auto;
}

@media (max-width: 960px){
  .menu-toggle{display:inline-flex}
  .nav-wrap{padding:14px 12px}
  .nav{
    position:fixed;
    top:0; right:-100%;
    height:100vh;
    width:72%;
    max-width:320px;
    background:var(--white);
    flex-direction:column;
    align-items:flex-start;
    padding:86px 24px 32px;
    gap:18px;
    box-shadow:-22px 0 40px rgba(0,0,0,0.16);
    transition:right .28s ease;
    z-index:10;
  }
  body.nav-open .nav{right:0}
  body.nav-open .nav-overlay{display:block}
  .nav a{color:var(--ink); font-size:17px}
  .nav a.accent{color:var(--accent)}
  .hero-inner{grid-template-columns:1fr; text-align:center; min-height:auto}
  .cta-row.stores{justify-content:center}
  .hero-copy h1{font-size:clamp(32px, 9vw, 48px)}
  .hero-visual{justify-content:center; max-width:520px}
  .hero-visual img{max-width:420px; margin:0 auto; transform:none}
  .nav{gap:18px}
}

@media (max-width: 640px){
  .clean-hero{padding:52px 0 60px}
  .hero-visual{max-width:360px}
  .hero-visual img{transform:none}
  .store-badge img{height:54px}
}
