/* =========================================================
   Restore — Holiday Lighting + Pressure & Soft Washing
   Theme tokens swap with <html data-season="holiday|wash">
   ========================================================= */
:root {
  --bg: #04070e;
  --bg-2: #080d1a;
  --surface: #0d1426;
  --surface-2: #121b33;
  --line: rgba(255, 236, 200, 0.12);
  --text: #f5f0e6;
  --muted: #a7aec0;
  --accent: #f4c979;          /* warm gold */
  --accent-2: #ffe3ad;
  --accent-ink: #1a1204;
  --hot: #d62b45;             /* cranberry */
  --pine: #1f7a4d;
  --glow: rgba(255, 196, 102, 0.55);
  --hero-veil: linear-gradient(90deg, rgba(4,7,14,.72) 0%, rgba(4,7,14,.25) 55%, rgba(4,7,14,0) 100%), linear-gradient(180deg, rgba(4,7,14,.55) 0%, rgba(4,7,14,.1) 35%, rgba(4,7,14,.5) 72%, var(--bg) 100%);
  --radius: 22px;
  --radius-sm: 14px;
  --display: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1240px;
  color-scheme: dark;
}
html[data-season="wash"] {
  --bg: #f5f7fb;
  --bg-2: #eaeff8;
  --surface: #ffffff;
  --surface-2: #f0f4fb;
  --line: rgba(10, 22, 51, 0.1);
  --text: #0a1633;
  --muted: #56617a;
  --accent: #1d3cff;          /* Restore blue */
  --accent-2: #3dea5e;        /* Restore lime */
  --accent-ink: #ffffff;
  --hot: #1d3cff;
  --glow: rgba(29, 60, 255, 0.35);
  --hero-veil: linear-gradient(90deg, rgba(5,12,34,.88) 0%, rgba(5,12,34,.55) 50%, rgba(5,12,34,.2) 100%);
  color-scheme: light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

/* Season visibility */
html[data-season="holiday"] .only-wash,
html[data-season="wash"] .only-hol { display: none !important; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 12.5px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.04; }
h1 { font-size: clamp(46px, 7.6vw, 104px); }
h2 { font-size: clamp(36px, 5vw, 66px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.15; }
h1 em, h2 em { font-style: italic; color: var(--accent); }
html[data-season="holiday"] h1 em, html[data-season="holiday"] h2 em { text-shadow: 0 0 40px var(--glow); }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 60ch; }
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(40px, 5vw, 64px); max-width: 780px; }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 28px; border-radius: 999px;
  font: 600 16px/1 var(--sans); letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: var(--accent-ink);
  box-shadow: 0 10px 40px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,.5);
}
html[data-season="wash"] .btn-primary { background: var(--accent); }
.btn-primary:hover { box-shadow: 0 16px 50px -6px var(--glow), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-ghost { border: 1px solid rgba(255,255,255,.28); color: #fff; backdrop-filter: blur(8px); background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-line { border: 1px solid var(--line); color: var(--text); }
.btn-line:hover { border-color: var(--accent); color: var(--accent); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Announcement bar ---------- */
.announce {
  position: relative; z-index: 60;
  background: linear-gradient(90deg, #6d0f1f, var(--hot), #6d0f1f);
  color: #fff; font: 500 14px/1.3 var(--sans); text-align: center; padding: 10px 16px;
}
html[data-season="wash"] .announce { background: var(--text); }
.announce strong { font-weight: 700; }
.announce a { text-decoration: underline; text-underline-offset: 3px; }
.announce .count { font-variant-numeric: tabular-nums; color: var(--accent-2); font-weight: 700; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: blur(18px) saturate(1.4); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,.12); }
.brand b { display: block; font: 600 22px/1 var(--display); letter-spacing: -.01em; }
.brand small { display: block; font: 500 11px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav-links { display: flex; gap: 26px; font: 500 15px/1 var(--sans); white-space: nowrap; }
.nav-phone { white-space: nowrap; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { font: 600 15px/1 var(--sans); color: var(--text); display: flex; gap: 8px; align-items: center; }
.nav-phone svg { width: 16px; color: var(--accent); }
.nav .btn { padding: 13px 22px; font-size: 15px; }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); }
.menu-btn span { display: block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; border-radius: 2px; }
.mobile-menu { display: none; }

/* On a dark photo hero, keep the unscrolled nav readable in wash mode */
html[data-season="wash"] .nav:not(.scrolled) { color: #fff; }
html[data-season="wash"] .nav:not(.scrolled) .nav-links a,
html[data-season="wash"] .nav:not(.scrolled) .brand small { color: rgba(255,255,255,.75); }
html[data-season="wash"] .nav:not(.scrolled) .nav-phone { color: #fff; }
html[data-season="wash"] .nav:not(.scrolled) .menu-btn span { background: #fff; }
html[data-season="wash"] .nav { margin-bottom: -78px; }
html[data-season="holiday"] .nav { margin-bottom: -78px; }

/* ---------- HERO (holiday) ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: end;
  overflow: hidden; isolation: isolate; color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: kenburns 28s ease-in-out infinite alternate; }
@keyframes kenburns { to { transform: scale(1.18) translate(-1.5%, -1%); } }
.hero-hol .hero-media img { filter: brightness(.22) saturate(.4); transition: filter 1.8s cubic-bezier(.2,.7,.2,1); }
.hero-hol.lit .hero-media img { filter: brightness(1.05) saturate(1.15) contrast(1.05); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--hero-veil); pointer-events: none; }
.hero-hol::before {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 60%, rgba(255,190,90,.18), transparent 70%);
  opacity: 0; transition: opacity 2s ease;
}
.hero-hol.lit::before { opacity: 1; }
#snow { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.garland { position: absolute; top: 60px; left: 0; width: 100%; height: 120px; z-index: 1; pointer-events: none; overflow: visible; }
.garland .wire { fill: none; stroke: #0d2a1a; stroke-width: 2.5; }
.garland .bulb { transition: fill .35s ease, filter .35s ease; fill: #2a2a2a; }
.garland .bulb.on { filter: drop-shadow(0 0 6px var(--c)) drop-shadow(0 0 16px var(--c)); fill: var(--c); }
.garland .cap { fill: #1c3326; }

.hero-content { padding: 180px 0 clamp(60px, 9vh, 110px); position: relative; }
.hero-content .eyebrow { color: var(--accent-2); }
.hero h1 { max-width: 13ch; margin: 22px 0 26px; text-wrap: balance; }
.hero-hol h1 { opacity: .35; transition: opacity 1.4s ease .2s, text-shadow 1.4s ease; }
.hero-hol.lit h1 { opacity: 1; }
.hero .lede { color: rgba(255,255,255,.9); max-width: 54ch; text-shadow: 0 2px 18px rgba(0,0,0,.6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; align-items: center; }
.switch {
  display: inline-flex; align-items: center; gap: 12px; padding: 8px 18px 8px 8px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(10px);
  font: 600 14px/1 var(--sans); color: #fff;
}
.switch .knob { width: 50px; height: 28px; border-radius: 999px; background: rgba(255,255,255,.2); position: relative; transition: background .3s; }
.switch .knob::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; transition: transform .35s cubic-bezier(.3,1.4,.5,1); }
.lit .switch .knob { background: var(--accent); box-shadow: 0 0 20px var(--glow); }
.lit .switch .knob::after { transform: translateX(22px); }

.hero-proof { display: flex; flex-wrap: wrap; gap: 14px 34px; margin-top: 54px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.proof-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255,255,255,.78); }
.proof-item b { font: 600 26px/1 var(--display); color: #fff; }
.stars { color: #ffcc4d; letter-spacing: 2px; font-size: 14px; }

/* ---------- HERO (wash) ---------- */
.hero-wash { align-items: center; }
.hero-wash .hero-media img { animation-duration: 36s; }
.hero-wash-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; padding: 150px 0 90px; }
.hero-wash .hero-content { padding: 0; }
.hero-wash h1 em { color: var(--accent-2); }
.hero-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 100px -20px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.18); background: #0a1633; }
.hero-card figcaption { display: flex; justify-content: space-between; padding: 16px 20px; font-size: 14px; color: rgba(255,255,255,.8); }
.hero-card figcaption b { color: #fff; }

/* ---------- Ticker ---------- */
.ticker { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 20px 0; }
.ticker-track { display: flex; gap: 56px; width: max-content; animation: tick 40s linear infinite; }
.ticker span { font: 500 italic 22px/1 var(--display); color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 56px; }
.ticker span::after { content: "✦"; font-style: normal; color: var(--accent); font-size: 14px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Showcase (holiday) ---------- */
.showcase-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(150px, 17vw, 230px);
}
.tile { position: relative; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; background: var(--surface); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s; }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.75)); }
.tile figcaption { position: absolute; left: 22px; bottom: 18px; right: 22px; z-index: 1; color: #fff; }
.tile figcaption b { display: block; font: 500 22px/1.2 var(--display); }
.tile figcaption small { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); }
.t1 { grid-column: span 7; grid-row: span 2; }
.t2 { grid-column: span 5; grid-row: span 1; }
.t3 { grid-column: span 5; grid-row: span 1; }
.t4 { grid-column: span 4; grid-row: span 1; }
.t5 { grid-column: span 4; grid-row: span 1; }
.t6 { grid-column: span 4; grid-row: span 1; }

/* ---------- Style picker (holiday) ---------- */
.style-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.style-tabs { display: inline-flex; padding: 6px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); margin: 30px 0 26px; }
.style-tabs button { padding: 12px 22px; border-radius: 999px; font: 600 15px/1 var(--sans); color: var(--muted); transition: all .3s; }
.style-tabs button.active { background: var(--accent); color: var(--accent-ink); box-shadow: 0 6px 24px -6px var(--glow); }
.style-tabs button[data-style="multi"].active { background: linear-gradient(90deg, #e63950, #f4c979, #2fbf71, #3d7bff); color: #fff; }
.style-stage { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8); }
.style-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease, transform 6s ease; transform: scale(1.04); }
.style-stage img.show { opacity: 1; transform: scale(1); }
.style-notes { display: grid; gap: 14px; }
.style-notes li { list-style: none; display: flex; gap: 14px; color: var(--muted); }
.style-notes li::before { content: ""; flex: none; width: 10px; height: 10px; margin-top: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--glow); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; counter-reset: step; }
.steps::before { content: ""; position: absolute; top: 34px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: .5; }
.step { position: relative; padding: 0 6px; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--accent); color: var(--accent);
  font: 500 26px/1 var(--display); margin-bottom: 26px; position: relative;
  box-shadow: 0 0 0 8px var(--bg), 0 0 30px -4px var(--glow);
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 16px; }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  padding: 34px 30px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .4s ease, border-color .4s ease;
}
.card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 50%, transparent); }
.card::before { content: ""; position: absolute; width: 240px; height: 240px; top: -120px; right: -120px; border-radius: 50%; background: radial-gradient(var(--glow), transparent 70%); opacity: .35; }
.card .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); margin-bottom: 24px; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 23px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 16px; }

/* ---------- Split (res / commercial) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.split-card { position: relative; min-height: 520px; border-radius: var(--radius); overflow: hidden; display: flex; align-items: flex-end; color: #fff; }
.split-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.split-card:hover img { transform: scale(1.05); }
.split-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.85)); }
.split-card .inner { position: relative; z-index: 1; padding: 40px; display: grid; gap: 14px; }
.split-card p { color: rgba(255,255,255,.8); max-width: 44ch; }
.split-card .btn { justify-self: start; margin-top: 8px; }

/* ---------- Quote forms ---------- */
.quote { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.quote-side { position: sticky; top: 120px; display: grid; gap: 22px; }
.quote-side .contact-line { display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 18px; }
.quote-side .contact-line span { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); color: var(--accent); }
.quote-side .contact-line svg { width: 20px; }
.form {
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(26px, 4vw, 44px); display: grid; gap: 26px;
  box-shadow: 0 50px 120px -50px rgba(0,0,0,.7);
}
.form fieldset { border: 0; display: grid; gap: 12px; }
.form legend { font: 600 13px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface-2); font-size: 15px; font-weight: 500; cursor: pointer; transition: all .2s;
}
.chip input:checked + span { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--text); box-shadow: 0 0 0 1px var(--accent) inset; }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fields .full { grid-column: 1 / -1; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--surface-2); color: var(--text); font: 400 16px/1.4 var(--sans); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
.form .btn { width: 100%; padding: 20px; font-size: 17px; }
.form-note { font-size: 13.5px; color: var(--muted); text-align: center; }
.form-status { font-weight: 600; text-align: center; min-height: 1em; }
.form-status.ok { color: #3ddc84; }
.form-status.err { color: #ff6b6b; }
.hp { position: absolute; left: -9999px; }

/* ---------- Bridge band ---------- */
.bridge { position: relative; overflow: hidden; border-radius: 32px; min-height: 440px; display: grid; align-items: center; color: #fff; }
.bridge img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bridge::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,10,30,.92), rgba(3,10,30,.55) 60%, rgba(3,10,30,.1)); }
.bridge .inner { position: relative; z-index: 1; padding: clamp(32px, 6vw, 80px); max-width: 680px; display: grid; gap: 20px; }
.bridge .eyebrow { color: #7cf29a; }
.bridge h2 em { color: #7cf29a; text-shadow: none; }
.bridge p { color: rgba(255,255,255,.82); }

/* ---------- Before / after ---------- */
.ba {
  position: relative; overflow: hidden; border-radius: var(--radius); user-select: none; touch-action: pan-y;
  --pos: 50%; aspect-ratio: 16/10; background: #111; cursor: ew-resize;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .after { clip-path: inset(0 0 0 var(--pos)); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff; transform: translateX(-1px); box-shadow: 0 0 20px rgba(0,0,0,.4); }
.ba .handle::after {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; background: #fff; color: #0a1633;
  display: grid; place-items: center; font: 700 20px/1 var(--sans); letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.ba .tag { position: absolute; top: 16px; padding: 7px 12px; border-radius: 999px; font: 700 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(6px); }
.ba .tag.b { left: 16px; }
.ba .tag.a { right: 16px; background: #1d3cff; }
.ba.tall { aspect-ratio: 4/5; }

.results-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.results-tabs button { padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line); font: 600 14.5px/1 var(--sans); color: var(--muted); transition: all .2s; }
.results-tabs button.active, .results-tabs button:hover { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
html[data-season="holiday"] .results-tabs button.active, html[data-season="holiday"] .results-tabs button:hover { color: #fff; background: #1d3cff; border-color: #1d3cff; }
.results-stage { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; align-items: stretch; }
.results-stage .ba { aspect-ratio: auto; min-height: 520px; height: 100%; }
.results-info { border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.results-info .meta { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
html[data-season="holiday"] .results-info .meta { color: #7cf29a; }
.results-info p { color: var(--muted); }
.results-info .thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: auto; }
.results-info .thumbs button { aspect-ratio: 1; border-radius: 10px; overflow: hidden; opacity: .55; transition: opacity .2s, outline-color .2s; outline: 2px solid transparent; outline-offset: 2px; }
.results-info .thumbs button.active { opacity: 1; outline-color: var(--accent); }
.results-info .thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Services bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 280px; gap: 16px; }
.svc { position: relative; border-radius: var(--radius); overflow: hidden; color: #fff; display: flex; align-items: flex-end; }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.svc:hover img { transform: scale(1.07); }
.svc::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,10,30,0) 25%, rgba(4,10,30,.88)); }
.svc .inner { position: relative; z-index: 1; padding: 28px; display: grid; gap: 6px; }
.svc .n { font: 600 12px/1 var(--sans); letter-spacing: .18em; color: #7cf29a; }
.svc h3 { font-size: 27px; }
.svc p { color: rgba(255,255,255,.78); font-size: 15px; max-width: 42ch; max-height: 0; opacity: 0; overflow: hidden; transition: all .5s ease; }
.svc:hover p, .svc:focus-within p { max-height: 120px; opacity: 1; }
.svc .go { position: absolute; top: 22px; right: 22px; z-index: 1; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.14); backdrop-filter: blur(8px); transition: transform .3s, background .3s; }
.svc:hover .go { transform: rotate(-45deg); background: #3dea5e; color: #04210d; }
.s1 { grid-column: span 3; grid-row: span 2; }
.s2 { grid-column: span 3; }
.s3 { grid-column: span 3; }
.s4 { grid-column: span 2; }
.s5 { grid-column: span 2; }
.s6 { grid-column: span 2; }

/* ---------- Method ---------- */
.method { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.gauges { display: grid; gap: 18px; }
.gauge { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.gauge-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.gauge-top b { font: 500 24px/1 var(--display); }
.gauge-top span { font: 600 15px/1 var(--sans); color: var(--muted); font-variant-numeric: tabular-nums; }
.bar { height: 10px; border-radius: 99px; background: var(--surface-2); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, #3dea5e, #1d3cff); transition: width 1.8s cubic-bezier(.2,.7,.2,1); }
.gauge p { margin-top: 12px; color: var(--muted); font-size: 15px; }
.method-steps { display: grid; gap: 26px; margin-top: 34px; }
.method-steps li { list-style: none; display: grid; grid-template-columns: 52px 1fr; gap: 18px; }
.method-steps .k { font: 500 italic 34px/1 var(--display); color: var(--accent); }
html[data-season="holiday"] .method-steps .k { color: #7cf29a; }
.method-steps h3 { font-size: 21px; margin-bottom: 4px; }
.method-steps p { color: var(--muted); font-size: 16px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.stat { padding: 44px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font: 500 clamp(44px, 5vw, 68px)/1 var(--display); color: var(--accent); }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 15px; }

/* ---------- Commercial strip ---------- */
.comm { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.comm figure { border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; position: relative; }
.comm img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.comm figure:hover img { transform: scale(1.06); }
.comm figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 12px; border-radius: 999px; background: rgba(0,0,0,.6); backdrop-filter: blur(8px); color: #fff; font-size: 13px; font-weight: 600; }
.comm-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; margin: 30px 0; }
.comm-list li { list-style: none; display: flex; gap: 12px; color: var(--muted); }
.comm-list li::before { content: "✓"; color: var(--accent); font-weight: 700; }
html[data-season="holiday"] .comm-list li::before { color: #7cf29a; }

/* ---------- Owner ---------- */
.owner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.owner-photos { position: relative; aspect-ratio: 1; }
.owner-photos img { position: absolute; border-radius: var(--radius); object-fit: cover; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.owner-photos .p1 { width: 72%; height: 78%; left: 0; top: 0; }
.owner-photos .p2 { width: 52%; height: 56%; right: 0; bottom: 0; border: 6px solid var(--bg); }
.owner-badge { position: absolute; left: 6%; bottom: 8%; z-index: 2; padding: 16px 20px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 20px 50px -20px rgba(0,0,0,.6); display: flex; gap: 14px; align-items: center; }
.owner-badge b { font: 500 32px/1 var(--display); color: var(--accent); }
.owner-badge span { font-size: 13px; color: var(--muted); line-height: 1.35; }
.sig { font: italic 400 34px/1 var(--display); color: var(--accent); margin-top: 8px; }

/* ---------- Reviews ---------- */
.reviews { columns: 3 320px; column-gap: 18px; }
.review { break-inside: avoid; margin-bottom: 18px; padding: 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.review q { display: block; font: 400 19px/1.55 var(--display); quotes: "“" "”"; margin: 16px 0 24px; }
.review .who { display: flex; gap: 12px; align-items: center; }
.review .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); }
.review .who b { display: block; font-size: 15px; }
.review .who small { color: var(--muted); font-size: 13px; }
.review-top { display: flex; justify-content: space-between; align-items: center; }
.g-badge { font-size: 12px; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.rating-banner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.rating-banner b { font: 500 64px/1 var(--display); color: var(--accent); }

/* ---------- Gallery ---------- */
.gal-filters { display: flex; gap: 8px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.gal-filters button { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); font-weight: 600; font-size: 14.5px; color: var(--muted); }
.gal-filters button.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.gallery { columns: 4 240px; column-gap: 12px; }
.gallery button { display: block; width: 100%; margin-bottom: 12px; border-radius: 14px; overflow: hidden; break-inside: avoid; cursor: zoom-in; }
.gallery img { width: 100%; height: auto; transition: transform .8s, filter .4s; }
.gallery button:hover img { transform: scale(1.04); }
.gallery button.hide { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(2,4,10,.94); display: none; place-items: center; padding: 30px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1400px, 100%); max-height: 86vh; border-radius: 14px; box-shadow: 0 40px 120px rgba(0,0,0,.7); }
.lightbox .lb-cap { color: rgba(255,255,255,.8); text-align: center; margin-top: 14px; font-size: 15px; }
.lb-btn { position: absolute; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font-size: 26px; display: grid; place-items: center; }
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Areas ---------- */
.areas { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.towns span { padding: 11px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 15px; font-weight: 500; }
.towns span.home { border-color: var(--accent); color: var(--accent); }
.map { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; border: 0; }
html[data-season="holiday"] .map iframe { filter: invert(.92) hue-rotate(180deg) saturate(.6) brightness(.9); }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; gap: 20px; font: 500 21px/1.35 var(--display); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 300 30px/1 var(--sans); color: var(--accent); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 26px; max-width: 70ch; }

/* ---------- Final CTA ---------- */
.final { position: relative; overflow: hidden; text-align: center; color: #fff; padding: clamp(110px, 14vw, 180px) 0; isolation: isolate; }
.final img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.final::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 70% at 50% 50%, rgba(4,7,14,.45), rgba(4,7,14,.88)); }
html[data-season="wash"] .final::after { background: linear-gradient(180deg, rgba(5,12,34,.75), rgba(5,12,34,.9)); }
.final h2 { max-width: 16ch; margin: 18px auto 20px; }
.final p { color: rgba(255,255,255,.82); max-width: 54ch; margin: 0 auto; }
.final .hero-actions { justify-content: center; }
.final .eyebrow { color: var(--accent-2); }
html[data-season="wash"] .final .eyebrow { color: #7cf29a; }
html[data-season="wash"] .final h2 em { color: #7cf29a; }

/* ---------- Footer ---------- */
footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 80px 0 110px; font-size: 15px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot h4 { font: 600 12.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.foot ul { list-style: none; display: grid; gap: 10px; color: var(--muted); }
.foot a:hover { color: var(--text); }
.foot p { color: var(--muted); margin-top: 16px; max-width: 36ch; }
.legal { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 13.5px; }

/* ---------- Mobile bar ---------- */
.mbar { display: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) { .nav-phone { display: none; } }
@media (max-width: 1080px) {
  .nav-links, .nav-phone { display: none; }
  .menu-btn { display: block; }
  .mobile-menu.open { display: grid; position: fixed; inset: 78px 0 auto 0; z-index: 49; background: var(--bg); border-bottom: 1px solid var(--line); padding: 18px 20px 26px; gap: 4px; }
  .mobile-menu a { padding: 14px 4px; font: 500 22px/1 var(--display); border-bottom: 1px solid var(--line); color: var(--text); }
  .hero-wash-grid, .style-wrap, .quote, .method, .owner, .areas { grid-template-columns: 1fr; gap: 44px; }
  .quote-side { position: static; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .steps::before { display: none; }
  .cards { grid-template-columns: 1fr 1fr; }
  .results-stage { grid-template-columns: 1fr; }
  .results-stage .ba { min-height: 0; aspect-ratio: 4/3; }
  .foot { grid-template-columns: 1fr 1fr; }
  .comm { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 32px); }
  .nav .btn { display: none; }
  .garland { top: 70px; height: 80px; }
  .hero-content { padding-top: 150px; }
  .hero-proof { gap: 16px 24px; }
  .showcase-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; gap: 10px; }
  .t1 { grid-column: span 2; grid-row: span 2; }
  .t2, .t3 { grid-column: span 2; }
  .t4, .t5 { grid-column: span 1; }
  .t6 { grid-column: span 2; }
  .tile figcaption b { font-size: 17px; }
  .cards, .split, .fields, .comm-list { grid-template-columns: 1fr; }
  .split-card { min-height: 420px; }
  .split-card .inner { padding: 28px; }
  .steps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .s1, .s2, .s3, .s4, .s5, .s6 { grid-column: auto; grid-row: auto; }
  .svc p { max-height: none; opacity: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .foot { grid-template-columns: 1fr; }
  .style-tabs button { padding: 11px 16px; font-size: 14px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .switch { order: 3; }
  .mbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
    padding: 8px; border-radius: 999px; background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(16px); border: 1px solid var(--line);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,.6);
  }
  .mbar .btn { padding: 15px; font-size: 15px; }
  .lb-prev, .lb-next { top: auto; bottom: 24px; transform: none; }
}

/* Phone: leave room for the Ava chat bubble; keep brand on one line */
@media (max-width: 720px) {
  .mbar { right: 84px; }
  .brand small { display: none !important; }
}
