/* ============================================================
   MT Christmas Lights — mtchristmaslights.com
   ============================================================ */

:root{
  /* Brand */
  --ink:        #08150f;
  --pine-900:   #0b2419;
  --pine-800:   #0f3324;
  --pine-700:   #164430;
  --pine-600:   #1d5a3e;
  --cream:      #FBF7EF;
  --cream-dim:  #E9E2D4;
  --sand:       #F3EDE1;
  --red:        #C8262C;
  --red-dark:   #A31D22;
  --bulb:       #FFC868;
  --bulb-soft:  #FFE0A8;
  --gold:       #D9A441;
  --silver:     #B9C2C9;
  --bronze:     #BE7B41;
  --plat:       #9FB4C4;

  --text:       #16241d;
  --muted:      #5C6B63;
  --line:       rgba(11,36,25,.12);

  --shadow-sm:  0 1px 2px rgba(8,21,15,.06), 0 2px 8px rgba(8,21,15,.05);
  --shadow-md:  0 8px 24px rgba(8,21,15,.10), 0 2px 6px rgba(8,21,15,.06);
  --shadow-lg:  0 24px 60px rgba(8,21,15,.18), 0 6px 18px rgba(8,21,15,.08);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --headerH: 74px;
  --barH: 46px;
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.65;
  color:var(--text);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3{ font-family:var(--font-display); font-weight:700; line-height:1.08; letter-spacing:-.02em; margin:0; }
p{ margin:0 0 1em; }
ul,ol{ margin:0; padding:0; list-style:none; }
button,input,select,textarea{ font:inherit; color:inherit; }

.wrap{ width:min(100% - 40px, var(--wrap)); margin-inline:auto; }
.section{ padding:clamp(64px, 8vw, 116px) 0; }

.skip{
  position:absolute; left:-9999px; top:0; z-index:999;
  background:var(--red); color:#fff; padding:12px 18px; border-radius:0 0 var(--r-sm) 0;
}
.skip:focus{ left:0; }

:focus-visible{ outline:3px solid var(--bulb); outline-offset:3px; border-radius:4px; }

/* anchor targets clear the sticky header */
section[id], [id="top"]{ scroll-margin-top:calc(var(--headerH) + 14px); }

/* ---------- reveal on scroll ---------- */
.reveal{
  opacity:0; transform:translateY(22px);
  transition:opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in{ opacity:1; transform:none; }
.gshot.reveal{ transform:translateY(14px) scale(.985); }
.gshot.reveal.is-in{ transform:none; }

/* ---------- form field flash when a package is chosen ---------- */
@keyframes fieldflash{
  0%,100%{ box-shadow:0 0 0 0 rgba(29,90,62,0); }
  25%    { box-shadow:0 0 0 5px rgba(255,200,104,.55); }
  60%    { box-shadow:0 0 0 5px rgba(255,200,104,.35); }
}
.is-flash{ animation:fieldflash 1.4s ease; border-color:var(--pine-600) !important; }

/* ---------- type helpers ---------- */
.eyebrow{
  font-size:12.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--pine-600); margin:0 0 14px;
}
.eyebrow--red{ color:var(--red); }
.lede{ font-size:clamp(17px,1.6vw,19.5px); color:var(--muted); max-width:62ch; }
.fineprint{ font-size:13px; color:var(--muted); margin:14px 0 0; line-height:1.5; }
.fineprint--center{ text-align:center; }

.sectionhead{ max-width:720px; margin:0 0 clamp(36px,4vw,56px); }
.sectionhead h2{ font-size:clamp(31px,4.4vw,50px); margin:0 0 16px; }

/* ---------- buttons ---------- */
.btn{
  --btn-bg:var(--pine-800); --btn-fg:#fff; --btn-bd:transparent;
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:13px 24px; border-radius:100px; border:1.5px solid var(--btn-bd);
  background:var(--btn-bg); color:var(--btn-fg);
  font-weight:600; font-size:15.5px; letter-spacing:.005em;
  text-decoration:none; cursor:pointer; white-space:nowrap;
  transition:transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  box-shadow:var(--shadow-sm);
}
.btn:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn:active{ transform:translateY(0); }
.btn svg{ width:17px; height:17px; fill:currentColor; }

.btn--primary{ --btn-bg:var(--pine-700); }
.btn--primary:hover{ --btn-bg:var(--pine-600); }
.btn--red{ --btn-bg:var(--red); }
.btn--red:hover{ --btn-bg:var(--red-dark); }
.btn--outline{ --btn-bg:transparent; --btn-fg:#fff; --btn-bd:rgba(255,255,255,.45); backdrop-filter:blur(6px); }
.btn--outline:hover{ --btn-bg:rgba(255,255,255,.12); --btn-bd:#fff; }
.btn--ghost{ --btn-bg:transparent; --btn-fg:var(--pine-800); --btn-bd:var(--line); box-shadow:none; }
.btn--ghost:hover{ --btn-bg:rgba(11,36,25,.05); }
.btn--quiet{
  --btn-bg:transparent; --btn-fg:var(--pine-700); --btn-bd:transparent;
  box-shadow:none; text-decoration:underline; text-underline-offset:5px;
  text-decoration-color:rgba(22,68,48,.35); padding-inline:8px;
}
.btn--quiet:hover{ text-decoration-color:currentColor; }
.btn--lg{ padding:16px 32px; font-size:16.5px; }
.btn--block{ display:flex; width:100%; }

/* tiers with light bg need dark outline buttons */
.tier .btn--outline{ --btn-fg:var(--pine-800); --btn-bd:rgba(11,36,25,.22); backdrop-filter:none; }
.tier .btn--outline:hover{ --btn-bg:var(--pine-800); --btn-fg:#fff; --btn-bd:var(--pine-800); }

/* ============================================================
   OFFER BAR
   ============================================================ */
.offerbar{
  position:relative; z-index:60;
  background:linear-gradient(90deg, var(--red) 0%, #8E1A1F 55%, var(--red-dark) 100%);
  color:#fff; min-height:var(--barH);
  display:flex; align-items:center;
}
.offerbar__inner{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  justify-content:center; padding:8px 0;
}
.offerbar__tag{
  background:var(--bulb); color:#4A2A05;
  font-size:11px; font-weight:800; letter-spacing:.13em; text-transform:uppercase;
  padding:5px 11px; border-radius:100px; white-space:nowrap;
}
.offerbar__text{ margin:0; font-size:14.5px; letter-spacing:.005em; }
.offerbar__text strong{ font-weight:700; }
.offerbar__cta{
  color:#fff; font-size:13.5px; font-weight:700; text-decoration:none;
  border-bottom:1.5px solid rgba(255,255,255,.55); padding-bottom:1px;
}
.offerbar__cta:hover{ border-color:#fff; }

.countdown{ display:flex; gap:7px; }
.countdown__unit{
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.18);
  border-radius:7px; padding:3px 8px; min-width:48px; text-align:center; line-height:1.15;
}
.countdown__unit b{ display:block; font-size:15px; font-weight:700; font-variant-numeric:tabular-nums; }
.countdown__unit span{ display:block; font-size:9.5px; text-transform:uppercase; letter-spacing:.1em; opacity:.78; }

/* ============================================================
   HEADER
   ============================================================ */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,247,239,.86);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.header.is-stuck{ border-color:var(--line); box-shadow:0 2px 20px rgba(8,21,15,.07); }
.header__inner{ display:flex; align-items:center; gap:18px; min-height:var(--headerH); }

.brand{ display:flex; align-items:center; gap:11px; text-decoration:none; flex-shrink:0; }
.brand__mark{ width:56px; height:56px; object-fit:contain; }
.brand__text{
  font-family:var(--font-display); font-weight:900; font-size:19px;
  letter-spacing:-.025em; color:var(--pine-900); line-height:1.12; max-width:13ch;
}

.nav{ display:flex; gap:4px; margin-left:auto; }
.nav a{
  text-decoration:none; font-size:14.5px; font-weight:500; color:var(--text);
  padding:9px 12px; border-radius:100px; white-space:nowrap;
  transition:background .18s ease, color .18s ease;
}
.nav a:hover{ background:rgba(11,36,25,.06); color:var(--pine-700); }

.header__actions{ display:flex; align-items:center; gap:10px; margin-left:auto; }
.nav + .header__actions{ margin-left:12px; }

.burger{
  display:none; width:44px; height:44px; border:1px solid var(--line); background:transparent;
  border-radius:12px; padding:0; cursor:pointer; align-items:center; justify-content:center; flex-direction:column; gap:4.5px;
}
.burger span{ display:block; width:19px; height:2px; background:var(--pine-900); border-radius:2px; transition:transform .25s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; isolation:isolate;
  min-height:clamp(560px, 84vh, 820px);
  display:flex; align-items:center;
  background:var(--pine-900);
  overflow:hidden;
}
.hero__media{
  position:absolute; inset:0; z-index:-2;
  background:
    radial-gradient(90% 70% at 50% 18%, rgba(255,200,104,.20), transparent 62%),
    linear-gradient(160deg, #0d2b1d 0%, #071410 55%, #0a1e16 100%);
  background-size:cover; background-position:center 62%;
}
.hero__media::after{
  content:""; position:absolute; inset:0;
  background-image:url("images/hero.jpg");
  background-size:cover; background-position:center 60%;
  opacity:.55;
}
.hero__scrim{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(6,17,12,.72) 0%, rgba(6,17,12,.42) 34%, rgba(6,17,12,.80) 100%),
    linear-gradient(100deg, rgba(6,17,12,.86) 0%, rgba(6,17,12,.30) 62%, rgba(6,17,12,.10) 100%);
}

/* string of bulbs across the top of the hero */
.lightstring{
  position:absolute; top:0; left:0; right:0; height:76px; z-index:1; pointer-events:none;
  background-image:
    radial-gradient(circle at center, var(--bulb-soft) 0 2.4px, rgba(255,200,104,.55) 2.4px 4.4px, transparent 5.6px);
  background-size:44px 76px;
  background-repeat:repeat-x;
  background-position:0 22px;
  filter:drop-shadow(0 0 7px rgba(255,200,104,.75));
  opacity:.85;
  -webkit-mask-image:linear-gradient(180deg,#000 0 46%, transparent 74%);
          mask-image:linear-gradient(180deg,#000 0 46%, transparent 74%);
  animation:twinkle 5.5s ease-in-out infinite;
}
.lightstring::before{
  content:""; position:absolute; inset:0;
  border-bottom:1.5px solid rgba(255,225,180,.22);
  border-radius:0 0 50% 50%/0 0 26px 26px;
  height:30px;
}
@keyframes twinkle{ 0%,100%{ opacity:.85 } 45%{ opacity:.55 } 70%{ opacity:.95 } }

.hero__inner{ position:relative; z-index:2; padding:clamp(70px,9vw,110px) 0 clamp(56px,7vw,90px); color:#fff; }
.hero .eyebrow{ color:var(--bulb); }

.reviewbadge{
  display:inline-flex; align-items:center; gap:9px;
  padding:8px 16px 8px 13px; margin:0 0 24px; border-radius:100px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,200,104,.35);
  text-decoration:none; backdrop-filter:blur(6px);
  transition:background .18s ease, border-color .18s ease, transform .16s ease;
}
.reviewbadge:hover{
  background:rgba(255,255,255,.14); border-color:rgba(255,200,104,.6);
  transform:translateY(-1px);
}
.reviewbadge__stars{ color:var(--bulb); font-size:14px; letter-spacing:1px; line-height:1; }
.reviewbadge__text{ font-size:14px; font-weight:500; color:rgba(255,255,255,.92); }
.reviewbadge__text strong{ font-weight:700; color:#fff; }

.hero__title{
  font-size:clamp(46px, 8.4vw, 104px);
  font-weight:900; line-height:.94; letter-spacing:-.035em;
  margin:0 0 22px; text-shadow:0 4px 40px rgba(0,0,0,.45);
}
.hero__title em{
  font-style:italic; font-weight:500;
  color:var(--bulb);
  text-shadow:0 0 42px rgba(255,200,104,.42);
}
.hero__sub{
  font-size:clamp(16.5px, 1.9vw, 20px); line-height:1.62;
  color:rgba(255,255,255,.86); max-width:56ch; margin:0 0 32px;
}
.hero__cta{ display:flex; gap:13px; flex-wrap:wrap; margin-bottom:44px; }

.hero__points{ display:flex; flex-wrap:wrap; gap:10px 26px; }
.hero__points li{
  position:relative; padding-left:25px;
  font-size:14.5px; font-weight:500; color:rgba(255,255,255,.82);
}
.hero__points li::before{
  content:""; position:absolute; left:0; top:.52em;
  width:9px; height:9px; border-radius:50%;
  background:var(--bulb); box-shadow:0 0 10px rgba(255,200,104,.9);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust{ background:var(--pine-900); color:#fff; padding:34px 0; border-top:1px solid rgba(255,255,255,.07); }
.trust__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.trust__item{ display:flex; flex-direction:column; gap:5px; padding-left:18px; border-left:2px solid rgba(255,200,104,.4); }
.trust__item b{ font-family:var(--font-display); font-size:26px; font-weight:700; color:var(--bulb); letter-spacing:-.02em; }
.trust__item span{ font-size:14px; line-height:1.45; color:rgba(255,255,255,.72); }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proofstrip{ background:var(--pine-900); padding:0 0 34px; }
.proofstrip__grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.proofstrip__shot{
  margin:0; border-radius:var(--r-md); overflow:hidden;
  aspect-ratio:16/9; box-shadow:var(--shadow-sm);
  background:linear-gradient(150deg,#12362a,#07130e);
}
.proofstrip__shot img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width:640px){
  .proofstrip__grid{ grid-template-columns:1fr; }
  .proofstrip__shot{ aspect-ratio:16/10; }
}

/* ============================================================
   OFFER
   ============================================================ */
.offer{ background:var(--sand); }
.offer__card{
  display:grid; grid-template-columns:1.5fr .95fr; gap:0;
  background:#fff; border-radius:var(--r-xl); overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.offer__left{ padding:clamp(34px,4.2vw,58px); }
.offer__title{ font-size:clamp(32px,4.4vw,50px); margin:0 0 18px; }
.offer__body{ font-size:17.5px; color:var(--muted); max-width:52ch; margin-bottom:26px; }
.offer__body strong{ color:var(--text); font-weight:700; }

.ticklist{ display:grid; gap:12px; margin:0 0 30px; }
.ticklist li{ position:relative; padding-left:33px; font-size:15.5px; font-weight:500; }
.ticklist li::before{
  content:""; position:absolute; left:0; top:1px;
  width:21px; height:21px; border-radius:50%;
  background-color:var(--pine-700);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size:14px; background-position:center; background-repeat:no-repeat;
}
.ticklist--light li{ color:rgba(255,255,255,.9); }
.ticklist--light li::before{ background-color:var(--bulb); background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23271601'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E"); }

.offer__actions{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }

.offer__right{
  background:linear-gradient(165deg, var(--pine-800), var(--ink));
  color:#fff; padding:clamp(30px,3.4vw,44px);
  display:flex; flex-direction:column; justify-content:center; gap:22px;
  position:relative; overflow:hidden;
}
.offer__right::before{
  content:""; position:absolute; top:-40%; right:-30%; width:340px; height:340px;
  background:radial-gradient(circle, rgba(255,200,104,.20), transparent 66%);
}
.offer__rightlabel{
  position:relative; margin:0;
  font-size:12px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--bulb);
}
.countdown--big{ position:relative; gap:9px; }
.countdown--big .countdown__unit{
  flex:1; padding:12px 4px; border-radius:12px;
  background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.12);
}
.countdown--big .countdown__unit b{ font-size:27px; font-family:var(--font-display); }
.countdown--big .countdown__unit span{ font-size:9.5px; margin-top:2px; }

.offer__seats{ position:relative; }
.offer__seatsbar{
  height:7px; border-radius:100px; background:rgba(255,255,255,.13); overflow:hidden; margin-bottom:11px;
}
.offer__seatsbar i{
  display:block; height:100%; border-radius:100px;
  background:linear-gradient(90deg, var(--bulb), var(--red));
}
.offer__seats p{ margin:0; font-size:13.5px; line-height:1.5; color:rgba(255,255,255,.72); }
.offer__seats strong{ color:#fff; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages{ background:var(--cream); }

.pricetoggle{
  display:inline-flex; gap:4px; padding:5px; margin-bottom:38px;
  background:rgba(11,36,25,.07); border-radius:100px;
}
.pricetoggle__btn{
  border:0; background:transparent; cursor:pointer;
  padding:10px 20px; border-radius:100px;
  font-size:14.5px; font-weight:600; color:var(--muted);
  display:inline-flex; align-items:center; gap:8px;
  transition:background .2s ease, color .2s ease, box-shadow .2s ease;
}
.pricetoggle__btn span{
  background:var(--red); color:#fff; font-size:11px; font-weight:800;
  padding:2px 8px; border-radius:100px; letter-spacing:.03em;
}
.pricetoggle__btn.is-active{ background:#fff; color:var(--pine-900); box-shadow:var(--shadow-sm); }

.tiers{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; align-items:start; }

.tier{
  position:relative; background:#fff; border:1px solid var(--line);
  border-radius:var(--r-lg); padding:30px 26px 28px;
  display:flex; flex-direction:column;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tier:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:rgba(11,36,25,.2); }
.tier__crown{
  position:absolute; top:0; left:26px; right:26px; height:4px; border-radius:0 0 4px 4px;
}
.tier--bronze   .tier__crown{ background:linear-gradient(90deg,#D79A5E,var(--bronze)); }
.tier--silver   .tier__crown{ background:linear-gradient(90deg,#DDE3E8,var(--silver)); }
.tier--gold     .tier__crown{ background:linear-gradient(90deg,#F0CE7E,var(--gold)); }
.tier--platinum .tier__crown{ background:linear-gradient(90deg,#E3ECF2,var(--plat)); }

.tier.is-popular{
  border-color:var(--pine-700); box-shadow:var(--shadow-md);
  transform:scale(1.02);
}
.tier.is-popular:hover{ transform:scale(1.02) translateY(-5px); }
.tier__badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--pine-700); color:#fff;
  font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  padding:6px 14px; border-radius:100px; white-space:nowrap;
  box-shadow:var(--shadow-sm);
}

.tier__name{ font-size:25px; margin:6px 0 5px; }
.tier__for{ font-size:13.5px; color:var(--muted); margin:0 0 20px; min-height:2.9em; line-height:1.45; }

.tier__price{ display:flex; flex-direction:column; gap:2px; margin-bottom:24px; min-height:64px; justify-content:center; }
.tier__was{
  font-size:14px; color:var(--muted); text-decoration:line-through;
  text-decoration-color:rgba(200,38,44,.6); min-height:1.3em;
}
.tier__was::before{ content:attr(data-was); }
.tier__now{
  font-family:var(--font-display); font-size:clamp(24px,2.3vw,29px); font-weight:700;
  color:var(--pine-900); letter-spacing:-.02em; line-height:1.1;
}

.tier__list{ display:grid; gap:10px; margin-bottom:26px; flex:1; }
.tier__list li{ position:relative; padding-left:23px; font-size:14.5px; line-height:1.45; }
.tier__list li::before{
  content:""; position:absolute; left:0; top:.5em;
  width:7px; height:7px; border-radius:50%; background:var(--pine-600); opacity:.75;
}
.tier__list li:first-child{ font-weight:600; color:var(--pine-700); }
.tier__list li:first-child::before{ opacity:0; }
.tier--bronze .tier__list li:first-child::before{ opacity:.75; }

.packages__foot{
  margin:36px 0 0; text-align:center; font-size:15px; color:var(--muted);
}
.packages__foot a{ color:var(--pine-700); font-weight:600; }

/* ============================================================
   ESTIMATOR
   ============================================================ */
.estimator{ background:var(--pine-900); color:#fff; }
.estimator__grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(34px,5vw,72px); align-items:start; }
.estimator .eyebrow{ color:var(--bulb); }
.estimator h2{ font-size:clamp(31px,4.2vw,46px); margin:0 0 18px; }
.estimator .lede{ color:rgba(255,255,255,.76); }
.estimator__disclaimer{ font-size:13.5px; color:rgba(255,255,255,.5); margin-top:20px; max-width:44ch; }

.estimator__form{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.11);
  border-radius:var(--r-xl); padding:clamp(26px,3.2vw,40px);
  backdrop-filter:blur(8px);
}
.estimator__form fieldset{ border:0; padding:0; margin:0 0 26px; }
.estimator__form legend{
  font-size:14px; font-weight:600; color:rgba(255,255,255,.9); padding:0; margin-bottom:13px;
}

.chips{ display:flex; gap:9px; flex-wrap:wrap; }
.chip{ position:relative; cursor:pointer; }
.chip input{ position:absolute; opacity:0; width:0; height:0; }
.chip span{
  display:block; padding:11px 18px; border-radius:100px;
  border:1.5px solid rgba(255,255,255,.2); background:rgba(255,255,255,.04);
  font-size:14.5px; font-weight:500; color:rgba(255,255,255,.82);
  transition:all .18s ease; white-space:nowrap;
}
.chip:hover span{ border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.09); }
.chip input:checked + span{
  background:var(--bulb); border-color:var(--bulb); color:#2E1A02; font-weight:600;
  box-shadow:0 0 22px rgba(255,200,104,.28);
}
.chip input:focus-visible + span{ outline:3px solid var(--bulb); outline-offset:3px; }

.estresult{
  display:block; margin-top:4px; padding:26px;
  background:rgba(255,200,104,.09); border:1px solid rgba(255,200,104,.26);
  border-radius:var(--r-lg);
}
.estresult__label{ font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--bulb); margin:0 0 6px; }
.estresult__num{
  font-family:var(--font-display); font-size:clamp(34px,4.6vw,46px); font-weight:700;
  letter-spacing:-.03em; margin:0 0 8px; color:#fff; line-height:1.05;
}
.estresult__tier{ font-size:14.5px; color:rgba(255,255,255,.75); margin:0 0 20px; }
.estresult__tier strong{ color:var(--bulb); }
.estresult__strike{ display:block; font-size:13px; color:rgba(255,255,255,.45); margin-top:3px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process{ background:var(--cream); }
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; counter-reset:step; }
.step{ position:relative; padding-top:22px; border-top:2px solid var(--line); }
.step__n{
  position:absolute; top:-19px; left:0;
  width:38px; height:38px; border-radius:50%;
  background:var(--pine-800); color:var(--bulb);
  display:grid; place-items:center;
  font-family:var(--font-display); font-size:17px; font-weight:700;
  box-shadow:0 0 0 6px var(--cream);
}
.step h3{ font-size:20px; margin:22px 0 10px; }
.step p{ font-size:15px; color:var(--muted); margin:0; line-height:1.6; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery{ background:var(--sand); }
.gallery__grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
  width:min(100% - 40px, 1400px); margin-inline:auto;
}
.gshot{
  margin:0; border-radius:var(--r-md); overflow:hidden;
  background:linear-gradient(150deg,#12362a,#07130e);
  aspect-ratio:4/3; position:relative;
  box-shadow:var(--shadow-sm);
}
.gshot--wide{ grid-column:span 2; aspect-ratio:8/3; }
.gshot img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s cubic-bezier(.2,.7,.3,1), filter .4s ease;
}
.gshot:hover img{ transform:scale(1.045); filter:brightness(1.08); }
.gshot::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.07);
  border-radius:var(--r-md);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes{ background:var(--cream); }
.quotegrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.quotegrid .quote{
  margin:0; padding:32px 30px; background:#fff;
  border:1px solid var(--line); border-radius:var(--r-lg);
  display:flex; flex-direction:column; gap:14px;
  box-shadow:var(--shadow-sm);
}
.stars{ color:var(--gold); font-size:17px; letter-spacing:2px; }
.quotegrid .quote p{
  margin:0; font-family:var(--font-display); font-size:18px; font-weight:500;
  line-height:1.5; letter-spacing:-.01em; flex:1;
}
.quotegrid .quote cite{ font-style:normal; font-size:13.5px; font-weight:600; color:var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ background:var(--sand); }
.faq__grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(34px,5vw,72px); align-items:start; }
.faq__intro h2{ font-size:clamp(31px,4.2vw,46px); margin:0 0 16px; }
.faq__intro a{ color:var(--pine-700); font-weight:600; }

.accordion{ display:grid; gap:10px; }
.acc{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-md);
  overflow:hidden; transition:box-shadow .2s ease, border-color .2s ease;
}
.acc[open]{ box-shadow:var(--shadow-sm); border-color:rgba(11,36,25,.2); }
.acc summary{
  cursor:pointer; list-style:none; padding:19px 54px 19px 22px;
  font-size:16px; font-weight:600; position:relative;
}
.acc summary::-webkit-details-marker{ display:none; }
.acc summary::after{
  content:""; position:absolute; right:22px; top:50%; width:12px; height:12px;
  border-right:2px solid var(--pine-700); border-bottom:2px solid var(--pine-700);
  transform:translateY(-70%) rotate(45deg); transition:transform .25s ease;
}
.acc[open] summary::after{ transform:translateY(-30%) rotate(-135deg); }
.acc summary:hover{ background:rgba(11,36,25,.025); }
.acc__body{ padding:0 22px 22px; }
.acc__body p{ margin:0; font-size:15.5px; color:var(--muted); line-height:1.65; }

/* ============================================================
   QUOTE FORM
   ============================================================ */
section.quote{ background:var(--pine-900); color:#fff; }
.quote__grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(36px,5vw,72px); align-items:start; }
section.quote .eyebrow--red{ color:var(--bulb); }
.quote__pitch h2{ font-size:clamp(32px,4.4vw,50px); margin:0 0 18px; }
.quote__pitch .lede{ color:rgba(255,255,255,.78); margin-bottom:28px; }

.quote__contact{ display:grid; gap:11px; margin-top:30px; max-width:330px; }
.contactcard{
  display:flex; flex-direction:column; gap:2px; text-decoration:none;
  padding:16px 20px; border-radius:var(--r-md);
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  transition:background .2s ease, border-color .2s ease, transform .18s ease;
}
a.contactcard:hover{ background:rgba(255,255,255,.11); border-color:rgba(255,200,104,.5); transform:translateY(-2px); }
.contactcard span{ font-size:11.5px; font-weight:700; letter-spacing:.13em; text-transform:uppercase; color:var(--bulb); }
.contactcard b{ font-family:var(--font-display); font-size:22px; font-weight:700; letter-spacing:-.01em; }

.quoteform{
  background:#fff; color:var(--text);
  border-radius:var(--r-xl); padding:clamp(28px,3.4vw,44px);
  box-shadow:var(--shadow-lg);
}
.hp{ position:absolute; left:-9999px; }
.field{ margin-bottom:18px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field label{
  display:block; font-size:13.5px; font-weight:600; margin-bottom:7px; color:var(--text);
}
.field label b{ color:var(--red); }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px;
  border:1.5px solid rgba(11,36,25,.16); border-radius:var(--r-sm);
  background:#FCFBF8; font-size:15.5px;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input::placeholder, .field textarea::placeholder{ color:#9AA69F; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--pine-600); background:#fff;
  box-shadow:0 0 0 4px rgba(29,90,62,.12);
}
.field textarea{ resize:vertical; min-height:104px; }
.field select{ appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235C6B63'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; background-size:20px; padding-right:40px;
}
.quoteform .btn{ margin-top:8px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta{
  background:linear-gradient(135deg, var(--red) 0%, #8E1A1F 100%);
  color:#fff; padding:clamp(56px,7vw,84px) 0; text-align:center;
  position:relative; overflow:hidden;
}
.finalcta::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(60% 90% at 50% 0%, rgba(255,200,104,.22), transparent 65%);
}
.finalcta__inner{ position:relative; }
.finalcta h2{ font-size:clamp(29px,4.2vw,46px); margin:0 0 12px; }
.finalcta p{ font-size:17.5px; color:rgba(255,255,255,.86); margin:0 0 30px; }
.finalcta__btns{ display:flex; gap:13px; justify-content:center; flex-wrap:wrap; }
.finalcta .btn--primary{ --btn-bg:#fff; --btn-fg:var(--red-dark); }
.finalcta .btn--primary:hover{ --btn-bg:var(--cream); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--ink); color:rgba(255,255,255,.7); padding:clamp(48px,6vw,72px) 0 0; }
.footer__grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:44px; padding-bottom:44px; }
.footer__mark{ width:58px; height:58px; object-fit:contain; margin-bottom:14px; }
.footer__name{ font-family:var(--font-display); font-size:22px; font-weight:900; color:#fff; margin:0 0 10px; letter-spacing:-.02em; }
.footer__tag{ font-size:14.5px; max-width:38ch; line-height:1.6; margin:0; }
.footer__col h3{ font-size:12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--bulb); margin:0 0 16px; font-family:var(--font-body); }
.footer__col a{ display:block; text-decoration:none; font-size:15px; padding:5px 0; transition:color .18s ease; }
.footer__col a:hover{ color:#fff; }
.footer__col p{ font-size:15px; margin:5px 0; line-height:1.6; }
.footer__col a.footer__btn{ display:inline-flex; width:auto; margin-top:16px; padding:12px 22px; color:#fff; }
.footer__bar{
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.09); padding:22px 0 26px;
  font-size:13.5px; color:rgba(255,255,255,.45);
}
.footer__bar p{ margin:0; }

/* ============================================================
   GRID-CHILD OVERFLOW FIX
   ============================================================ */
/* CSS Grid items default to min-width:auto, so any unshrinkable content
   inside them (a nowrap chip label, a nowrap button) forces the whole
   track — and its sibling column — to stay that wide, even after the
   grid collapses to a single column on mobile. This was a real bug:
   the estimator section overflowed ~100px horizontally on narrow phones
   because of its "Three story / estate" chip and CTA button. min-width:0
   lets these items shrink and wrap normally instead. */
.offer__left, .offer__right,
.estimator__intro, .estimator__form,
.faq__intro, .accordion,
.quote__pitch, .quoteform{ min-width:0; }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobilebar{
  position:fixed; left:0; right:0; bottom:0; z-index:70;
  display:none; gap:10px; padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:rgba(251,247,239,.94); backdrop-filter:blur(14px);
  border-top:1px solid var(--line);
}
.mobilebar .btn{ flex:1; font-size:14.5px; padding:13px 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Header/nav collapses on its own, earlier breakpoint than the rest of
   the layout below. The desktop nav + phone button + Free Quote button
   need a fixed ~1231px and don't wrap or shrink — any viewport narrower
   than that overflowed horizontally (a real bug: showed as extra blank
   space/scroll on the right on any non-maximized browser window in the
   1080–1230px range). 1280px gives a safety margin above the measured
   1231px threshold. */
@media (max-width:1280px){
  .nav{ display:none; }
  .burger{ display:flex; }
  .header__actions{ margin-left:auto; }

  .nav.is-open{
    display:flex; flex-direction:column; gap:2px;
    position:absolute; top:100%; left:0; right:0;
    background:var(--cream); border-bottom:1px solid var(--line);
    padding:12px 20px 20px; box-shadow:var(--shadow-md);
  }
  .nav.is-open a{ padding:13px 14px; font-size:16px; border-radius:var(--r-sm); }
}

@media (max-width:1080px){
  .tiers{ grid-template-columns:repeat(2,1fr); gap:24px 20px; }
  .tier.is-popular{ transform:none; }
  .tier.is-popular:hover{ transform:translateY(-5px); }
  .steps{ grid-template-columns:repeat(2,1fr); gap:34px 26px; }
  .trust__grid{ grid-template-columns:repeat(2,1fr); gap:22px; }
  .gallery__grid{ grid-template-columns:repeat(2,1fr); }
  .gshot--wide{ grid-column:span 2; aspect-ratio:16/7; }
}

@media (max-width:900px){
  .offer__card{ grid-template-columns:1fr; }
  .estimator__grid,
  .faq__grid,
  .quote__grid{ grid-template-columns:1fr; }
  .quotegrid{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:34px; }
  .footer__brand{ grid-column:1 / -1; }
}

@media (max-width:720px){
  body{ font-size:16px; }
  .btn--phone{ display:none; }
  /* Free Quote in the header is redundant once the sticky mobilebar CTA
     is showing, and removing it is what actually fixes the header
     overflowing horizontally on narrow phones (~320-360px wide). */
  .header__actions .btn--primary{ display:none; }
  .mobilebar{ display:flex; }
  main{ padding-bottom:76px; }

  .offerbar__inner{ gap:10px; padding:9px 0; }
  .offerbar__text{ font-size:13px; width:100%; text-align:center; order:2; }
  .offerbar__tag{ order:1; }
  .offerbar__cta{ display:none; }
  .countdown{ order:3; }
  .countdown__unit{ min-width:42px; padding:2px 6px; }
  .countdown__unit b{ font-size:13.5px; }

  .brand__text{ font-size:17px; }
  .hero{ min-height:auto; }
  .hero__cta{ flex-direction:column; align-items:stretch; }
  .hero__cta .btn{ width:100%; }
  .hero__points{ gap:9px 20px; }

  .tiers{ grid-template-columns:1fr; }
  .tier__for{ min-height:0; }
  .steps{ grid-template-columns:1fr; }
  .trust__grid{ grid-template-columns:1fr; }
  .gallery__grid{ grid-template-columns:1fr; gap:12px; }
  .gshot, .gshot--wide{ grid-column:span 1; aspect-ratio:4/3; }
  .field-row{ grid-template-columns:1fr; gap:0; }
  .footer__grid{ grid-template-columns:1fr; }
  .pricetoggle{ width:100%; }
  .pricetoggle__btn{ flex:1; justify-content:center; padding:11px 10px; font-size:13.5px; }
  .chips{ gap:8px; }
  .chip span{ padding:10px 15px; font-size:14px; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

@media print{
  .offerbar,.header,.mobilebar,.finalcta,.lightstring{ display:none !important; }
  body{ background:#fff; color:#000; }
}
