/* ============ Reset & Base ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: oklch(0.975 0.008 235);
  font-family: 'Karla', sans-serif;
  color: oklch(0.32 0.035 252);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }

:root {
  --navy-900: oklch(0.2 0.045 260);
  --navy-850: oklch(0.24 0.04 255);
  --navy-800: oklch(0.28 0.04 253);
  --navy-700: oklch(0.32 0.035 252);
  --navy-600: oklch(0.42 0.03 250);
  --navy-500: oklch(0.5 0.03 250);
  --navy-450: oklch(0.55 0.025 248);
  --blue-mid: oklch(0.55 0.11 250);
  --amber: oklch(0.62 0.15 50);
  --amber-dark: oklch(0.56 0.15 50);
  --cream: oklch(0.975 0.008 235);
  --blue-gray: oklch(0.93 0.018 240);
  --border: oklch(0.88 0.02 240);
  --border-soft: oklch(0.85 0.025 242);
  --card: oklch(0.99 0.003 235);
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Karla', sans-serif;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy-850);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-head p { font-size: 17px; line-height: 1.65; color: var(--navy-600); }
.section-cream { background: var(--cream); }
.section-bluegray { background: var(--blue-gray); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-amber { background: var(--amber); color: oklch(0.99 0.005 60); }
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-outline-light {
  border: 1.5px solid oklch(0.9 0.02 240 / 0.7);
  color: oklch(0.99 0.003 235);
  background: transparent;
}
.btn-outline-light:hover { background: oklch(1 0 0 / 0.1); }
.btn-navy { background: var(--navy-850); color: var(--cream); }
.btn-navy:hover { background: oklch(0.32 0.05 255); }

/* ============ Noise overlay (anti-hairline utility) ============ */
@keyframes riseIn { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes auroraDrift { 0% { transform: translate(-8%, 0) scale(1); } 50% { transform: translate(10%, -6%) scale(1.15); } 100% { transform: translate(-8%, 0) scale(1); } }
@keyframes auroraDrift2 { 0% { transform: translate(6%, 0) scale(1.1); } 50% { transform: translate(-10%, 8%) scale(0.95); } 100% { transform: translate(6%, 0) scale(1.1); } }

.noise-overlay {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ============ Nav ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.site-header.is-solid {
  background: oklch(0.975 0.008 235 / 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: oklch(0.88 0.02 240 / 0.8);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* Round ASD Works badge (shared with the pressure-washing site): the cream
   circle is self-contained so one mark reads on dark hero + light solid nav. */
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo {
  height: 108px; width: auto; display: block;
  transition: height 0.35s ease;
}
.is-solid .brand-logo { height: 60px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: oklch(0.95 0.01 235);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.35s ease;
}
.is-solid .nav-links a { color: var(--navy-700); }
.nav-links a:hover { color: var(--amber); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  color: oklch(0.99 0.003 235);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.35s ease;
}
.is-solid .nav-phone { color: var(--navy-850); }
.nav-cta-btn {
  background: var(--amber);
  color: oklch(0.99 0.005 60);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background 0.25s ease;
}
.nav-cta-btn:hover { background: var(--amber-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid oklch(0.82 0.03 245);
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  min-height: 44px;
  justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: oklch(0.99 0.003 235);
  transition: background 0.35s ease;
}
.is-solid .nav-toggle span { background: var(--navy-850); }
.nav-toggle span:nth-child(2) { background: var(--amber) !important; }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 12px 4px;
}
.nav-mobile .nav-phone-mobile { color: var(--blue-mid); font-weight: 700; }
.nav-mobile .nav-cta-btn { text-align: center; margin-top: 8px; }

@media (max-width: 920px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .brand-logo { height: 68px; }
  .is-solid .brand-logo { height: 46px; }
  .hero-inner { padding-top: 120px; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, oklch(0.35 0.06 258) 0%, oklch(0.52 0.07 250) 60%, oklch(0.72 0.05 245) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: luminosity;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.24 0.06 258 / 0.55) 0%, oklch(0.35 0.06 258 / 0.55) 55%, oklch(0.6 0.06 250 / 0.35) 100%);
}
.hero .noise-overlay {
  position: absolute; inset: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.snow-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
/* accumulation pile renders above hero content AND the bottom divider spikes
   (z6 > divider z5) so growth is visible from the first second; pointer-events
   stay off so CTAs remain clickable */
.snow-canvas--pile { z-index: 6; }
.hero-inner {
  position: relative; z-index: 4;
  max-width: 1240px; margin: 0 auto;
  padding: 178px 24px 110px;
  width: 100%; box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 640px; animation: riseIn 0.9s ease-out both; }
.hero-copy .eyebrow { color: oklch(0.93 0.03 235); margin-bottom: 18px; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 7.5vw, 92px);
  line-height: 0.98;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: oklch(0.99 0.003 235);
  text-wrap: balance;
  margin-bottom: 22px;
}
.hero-copy > p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: oklch(0.93 0.02 240);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px 24px;
  margin-bottom: 36px;
  max-width: 520px;
  list-style: none;
  padding: 0;
}
.hero-badges li { display: flex; align-items: center; gap: 10px; }
.hero-badges .dot { width: 9px; height: 9px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }
.hero-badges span.label { color: oklch(0.97 0.01 235); font-weight: 600; font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-stars { margin: 0; color: oklch(0.88 0.025 240); font-size: 14px; }
.hero-stars .stars { color: var(--amber); letter-spacing: 2px; }

/* ---- Fold guarantee: everything through the trusted-stars line must sit
   above the fold on any screen; compress the copy stack as height shrinks ---- */
@media (min-width: 921px) and (max-height: 900px) {
  .brand-logo { height: 84px; }
  .hero-inner { padding-top: 128px; align-items: start; }
  .hero-copy .eyebrow { margin-bottom: 12px; }
  .hero-copy h1 { font-size: clamp(40px, 5.8vw, 70px); margin-bottom: 16px; }
  .hero-copy > p { margin-bottom: 22px; }
  .hero-badges { margin-bottom: 24px; gap: 10px 22px; }
  .hero-actions { margin-bottom: 20px; }
}
@media (min-width: 921px) and (max-height: 740px) {
  .brand-logo { height: 66px; }
  .hero-inner { padding-top: 96px; }
  .hero-copy .eyebrow { margin-bottom: 8px; font-size: 12px; }
  .hero-copy h1 { font-size: clamp(34px, 4.6vw, 54px); margin-bottom: 12px; }
  .hero-copy > p { font-size: 16px; margin-bottom: 16px; }
  .hero-badges { margin-bottom: 16px; gap: 7px 20px; }
  .hero-badges span.label { font-size: 14px; }
  .hero-actions { margin-bottom: 14px; }
  .hero-actions .btn { padding: 13px 26px; font-size: 14px; }
}
@media (min-width: 921px) and (max-height: 620px) {
  .brand-logo { height: 54px; }
  .hero-inner { padding-top: 78px; }
  .hero-copy h1 { font-size: clamp(30px, 3.9vw, 44px); }
  .hero-copy > p { font-size: 15px; margin-bottom: 12px; max-width: 460px; }
  .hero-badges { margin-bottom: 12px; }
  .hero-actions { margin-bottom: 12px; }
  .hero-actions .btn { padding: 11px 22px; font-size: 13px; }
}
@media (max-width: 920px) and (max-height: 860px) {
  .brand-logo { height: 56px; }
  .hero-inner { padding-top: 92px; }
  .hero-copy .eyebrow { margin-bottom: 10px; font-size: 12px; }
  .hero-copy h1 { font-size: clamp(34px, 8.6vw, 44px); margin-bottom: 14px; }
  .hero-copy > p { font-size: 15.5px; margin-bottom: 18px; }
  .hero-badges { margin-bottom: 18px; gap: 8px 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-badges span.label { font-size: 13.5px; }
  .hero-badges .dot { width: 7px; height: 7px; }
  .hero-actions { margin-bottom: 14px; gap: 10px; }
  .hero-actions .btn { padding: 13px 22px; font-size: 13.5px; }
}
@media (max-width: 920px) and (max-height: 680px) {
  .brand-logo { height: 48px; }
  .hero-inner { padding-top: 76px; }
  .hero-copy h1 { font-size: clamp(28px, 7.4vw, 36px); margin-bottom: 10px; }
  .hero-copy > p { font-size: 14.5px; margin-bottom: 14px; }
  .hero-badges { margin-bottom: 14px; gap: 6px 14px; }
  .hero-actions { margin-bottom: 12px; }
  .hero-actions .btn { padding: 11px 18px; font-size: 12.5px; }
  .hero-stars { font-size: 13px; }
}

/* Quote card */
.quote-card {
  background: oklch(0.99 0.003 235 / 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid oklch(0.99 0.003 235 / 0.5);
  border-top: 4px solid var(--amber);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 14px;
  box-shadow: 0 18px 50px oklch(0.2 0.05 258 / 0.35);
  max-width: 500px; width: 100%;
  box-sizing: border-box;
  justify-self: end;
  animation: riseIn 0.9s ease-out 0.15s both;
  position: relative; z-index: 4;
}
.quote-card h2 {
  font-family: var(--font-display);
  font-weight: 800; font-size: 28px;
  text-transform: uppercase;
  color: var(--navy-850);
  margin-bottom: 6px;
}
.quote-card > p { color: var(--navy-600); font-size: 15px; line-height: 1.5; margin-bottom: 18px; }
.quote-form { display: grid; gap: 13px; }
.quote-form label {
  display: grid; gap: 6px;
  color: oklch(0.32 0.035 252);
  font-size: 13.5px; font-weight: 700;
}
.quote-form label .optional { font-weight: 400; color: var(--navy-450); }
.quote-form input, .quote-form select, .quote-form textarea {
  background: oklch(0.985 0.005 235);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--navy-850);
  font-size: 16px;
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--blue-mid);
  outline: none;
}
.quote-form textarea { resize: vertical; }
.quote-submit {
  background: var(--amber);
  color: oklch(0.99 0.005 60);
  border: none; cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 15px 20px; border-radius: 999px;
  min-height: 44px;
}
.quote-submit:hover { background: var(--amber-dark); }
.quote-fineprint { text-align: center; color: var(--navy-450); font-size: 12.5px; margin: 0; }
.quote-success { text-align: center; padding: 34px 10px; }
.quote-success h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  text-transform: uppercase; color: var(--blue-mid);
  margin-bottom: 10px;
}
.quote-success p { color: var(--navy-600); font-size: 16px; line-height: 1.6; }
.quote-success a { color: var(--amber); font-weight: 700; text-decoration: none; }
.quote-card[data-sent="true"] .quote-form-wrap { display: none; }
.quote-card[data-sent="true"] .quote-success { display: block; }
.quote-card:not([data-sent="true"]) .quote-success { display: none; }

/* Jagged section dividers (icicle / EKG shape) */
.divider {
  display: block;
  width: 100%;
  height: clamp(46px, 6vw, 74px);
  /* The SVG path fills solid from its flat top edge down to the teeth, so the
     top 10% (y 0→32 of the 320 viewBox) is a solid horizontal band. Pull the
     divider up by that band height (+1px for the AA seam) so the band tucks
     behind the same-colored section above and only the jagged teeth remain. */
  margin: calc(clamp(46px, 6vw, 74px) * -0.1 - 1px) 0 0;
  line-height: 0;
  position: relative;
  z-index: 5;
}
.divider path, .divider--hero path { fill: currentColor; }

/* blue-gray spikes (matching the section above) dripping into cream (services→about, gallery→reviews) */
.divider--bg-to-cream { background: var(--cream); color: var(--blue-gray); }
/* cream spikes (matching the section above) dripping into blue-gray (about→gallery, reviews→faq) */
.divider--cream-to-bg { background: var(--blue-gray); color: var(--cream); }
/* blue-gray spikes dripping into the dark CTA — bg matches the CTA gradient */
.divider--bg-to-dark {
  background: linear-gradient(120deg, oklch(0.3 0.055 258), oklch(0.42 0.07 252));
  color: var(--blue-gray);
}
/* hero: blue-gray spikes rising up into the hero image (flipped) */
.divider--hero {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: clamp(54px, 7vw, 82px);
  margin: 0; line-height: 0;
  background: transparent;
  color: var(--blue-gray);
  transform: scaleY(-1);
  z-index: 5;
}

/* ============ Services ============ */
.services { padding: 90px 24px 100px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px oklch(0.4 0.06 255 / 0.14); }
.service-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.service-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-body h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy-850);
}
.service-body p { color: var(--navy-600); font-size: 15.5px; line-height: 1.6; flex: 1; }
.service-link {
  color: var(--amber); text-decoration: none; font-weight: 700;
  font-size: 14px; letter-spacing: 0.8px; text-transform: uppercase;
  transition: letter-spacing 0.25s ease;
}
.service-link:hover { letter-spacing: 1.8px; }

/* ============ About ============ */
.about { padding: 100px 24px; }
.about-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 48px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  aspect-ratio: 4/5; max-height: 560px; width: 100%; object-fit: cover;
  border-radius: 14px;
}
.about-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--navy-850); color: oklch(0.98 0.005 235);
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 12px 22px; border-radius: 999px;
}
.about-copy h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 60px); line-height: 1;
  text-transform: uppercase; color: var(--navy-850);
  margin-bottom: 18px; text-wrap: balance;
}
.about-copy > p.lead { font-size: 17px; line-height: 1.65; color: var(--navy-600); margin-bottom: 34px; }
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.about-feature {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.about-feature h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy-850);
  margin-bottom: 6px;
}
.about-feature p { color: var(--navy-600); font-size: 15px; line-height: 1.55; }

/* ============ Gallery ============ */
.gallery { padding: 90px 24px 100px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 18px;
}
.gallery-grid img {
  aspect-ratio: 4/3; width: 100%; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--border-soft);
}
.gallery-cta { text-align: center; margin-top: 40px; }

/* ============ Reviews ============ */
.reviews { padding: 100px 24px; position: relative; overflow: hidden; }
.reviews .container { position: relative; z-index: 1; }
.reviews-snow {
  position: absolute; inset: 0;
  pointer-events: none;
  color: var(--blue-mid);
}
.reviews-snow .flake { position: absolute; }
.flake-1 { width: 300px; height: 300px; top: -70px; left: -80px; opacity: 0.07; transform: rotate(12deg); }
.flake-2 { width: 190px; height: 190px; top: 40px; right: 7%; opacity: 0.06; transform: rotate(-18deg); }
.flake-3 { width: 150px; height: 150px; top: 44%; left: 3%; opacity: 0.05; transform: rotate(25deg); }
.flake-4 { width: 220px; height: 220px; bottom: -60px; left: 20%; opacity: 0.06; transform: rotate(-8deg); }
.flake-5 { width: 120px; height: 120px; top: 14%; left: 30%; opacity: 0.05; transform: rotate(40deg); }
.flake-6 { width: 180px; height: 180px; top: 36%; right: -50px; opacity: 0.07; transform: rotate(15deg); }
.flake-7 { width: 260px; height: 260px; bottom: -80px; right: 14%; opacity: 0.065; transform: rotate(22deg); }
.flake-8 { width: 140px; height: 140px; bottom: 8%; left: 52%; opacity: 0.05; transform: rotate(-30deg); }
@media (max-width: 720px) {
  .flake-3, .flake-5, .flake-8 { display: none; }
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.review-card .stars { color: var(--amber); letter-spacing: 3px; font-size: 16px; }
.review-card p { color: var(--navy-700); font-size: 16px; line-height: 1.65; flex: 1; }
.review-card .attribution { color: var(--navy-500); font-size: 14px; font-weight: 700; }

/* ============ FAQ ============ */
.faq { padding: 90px 24px 100px; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 0 24px;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; padding: 20px 0;
  color: var(--navy-850); font-weight: 700; font-size: 17px;
}
.faq-item summary .icon {
  color: var(--amber); font-family: var(--font-display);
  font-weight: 800; font-size: 22px; flex-shrink: 0;
}
.faq-item[open] summary .icon { transform: rotate(45deg); display: inline-block; }
.faq-item p { margin: 0; padding: 0 0 22px; color: var(--navy-600); font-size: 16px; line-height: 1.65; }

/* ---- FAQ cold-wind ambience (doodle gusts fly across, snow rides the wind) ----
   Enter/exit happens fully offscreen (section clips overflow), so nothing ever
   pops in or out. Cycle durations are deliberately co-prime-ish (10/11/13/17/19s)
   so the ensemble almost never repeats the same arrangement. */
.faq { position: relative; overflow: hidden; }
.faq .container { position: relative; z-index: 1; }
.faq-wind { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* doodle gust: the fully-drawn svg glides across the section (entering and
   leaving offscreen); each stroke flutters gently out of phase (--pd) so the
   doodle feels wind-borne rather than a rigid sticker */
.faq-wind .gust {
  position: absolute; left: 0; top: var(--t, 30%);
  transform: translateX(-600px);
  animation: gustFly var(--d, 14s) linear infinite;
  animation-delay: var(--dl, 0s);
}
.faq-wind .gust path {
  fill: none; stroke: oklch(0.35 0.04 252 / 0.38); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  animation: gustBob var(--gb, 4.2s) ease-in-out infinite alternate;
  animation-delay: calc(-1 * var(--pd, 0s));
}
.faq-wind .gust-fine path { stroke-width: 1.7; }
@keyframes gustFly {
  0%   { transform: translateX(-600px) translateY(0); }
  62%  { transform: translateX(100vw) translateY(var(--dy, -16px)); }
  100% { transform: translateX(100vw) translateY(var(--dy, -16px)); }
}
@keyframes gustBob {
  from { transform: translateY(-4px); }
  to   { transform: translateY(4px); }
}

/* blown snow: steady flight across (.fx) + slow diagonal swoop (.fsw) + quick
   bob (.fy) — three offset rhythms so each flake rides a wavy, gusty path */
.faq-wind .fx {
  position: absolute; left: 0; top: var(--t, 40%);
  transform: translateX(-80px);
  animation: flakeFly var(--d, 12s) linear infinite;
  animation-delay: var(--dl, 0s);
}
@keyframes flakeFly {
  0%   { transform: translateX(-80px) translateY(0); }
  70%  { transform: translateX(calc(100vw + 40px)) translateY(var(--fall, 24px)); }
  100% { transform: translateX(calc(100vw + 40px)) translateY(var(--fall, 24px)); }
}
.faq-wind .fsw {
  display: block;
  animation: flakeSwoop var(--sd, 3.6s) ease-in-out infinite alternate;
  animation-delay: calc(-1 * var(--sp, 0s));
}
@keyframes flakeSwoop {
  from { transform: translate(-18px, -9px); }
  to   { transform: translate(18px, 9px); }
}
.faq-wind .fy {
  display: block;
  width: var(--s, 7px); height: var(--s, 7px); border-radius: 50%;
  background: radial-gradient(circle, oklch(1 0 0) 0 38%, oklch(1 0 0 / 0) 72%);
  animation: flakeBob var(--bd, 2.3s) ease-in-out infinite alternate;
  animation-delay: calc(-1 * var(--bp, 0s));
}
.faq-wind .fy-blue { background: radial-gradient(circle, oklch(0.88 0.03 248) 0 38%, oklch(0.88 0.03 248 / 0) 72%); }
@keyframes flakeBob {
  from { transform: translateY(-5px); }
  to   { transform: translateY(5px); }
}

/* ============ CTA banner ============ */
.cta {
  background: linear-gradient(120deg, oklch(0.3 0.055 258), oklch(0.42 0.07 252));
  padding: 90px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta .noise-overlay {
  position: absolute; inset: 0;
  opacity: 0.035; mix-blend-mode: overlay; pointer-events: none;
}
.cta-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.cta-inner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 5.5vw, 66px); line-height: 1;
  text-transform: uppercase; color: oklch(0.99 0.003 235);
  text-wrap: balance; margin-bottom: 18px;
}
.cta-inner > p { font-size: 18px; line-height: 1.6; color: oklch(0.88 0.025 240); margin-bottom: 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============ Footer ============ */
.footer {
  background: linear-gradient(160deg, oklch(0.22 0.048 259), oklch(0.18 0.042 261));
  position: relative; overflow: hidden;
}
.footer .noise-overlay {
  position: absolute; inset: 0; opacity: 0.035;
  mix-blend-mode: overlay; pointer-events: none;
}
.aurora { position: absolute; filter: blur(40px); pointer-events: none; border-radius: 50%; }
.aurora--one {
  top: -120px; left: 10%; width: 480px; height: 320px;
  background: radial-gradient(ellipse, oklch(0.6 0.12 250 / 0.28), transparent 70%);
  animation: auroraDrift 11s ease-in-out infinite;
}
.aurora--two {
  top: -100px; right: 8%; width: 420px; height: 300px;
  background: radial-gradient(ellipse, oklch(0.62 0.12 200 / 0.22), transparent 70%);
  animation: auroraDrift2 13s ease-in-out infinite;
}
.ft-top { position: relative; }
.ft-wm-wrap {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.ft-wm {
  font-family: var(--font-display); font-weight: 800; line-height: 0.9;
  font-size: clamp(50px, 9vw, 130px); text-align: right;
  padding: 0 32px 6px 0; text-transform: uppercase;
}
.ft-wm-l1 { color: oklch(0.42 0.03 250 / 0.55); }
.ft-wm-l2 { display: block; color: oklch(0.62 0.15 50 / 0.35); }
.fw-letter {
  display: inline-block; opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.4, 0.5, 1), transform 0.7s cubic-bezier(0.34, 1.4, 0.5, 1);
  transition-delay: calc(var(--i) * 40ms);
}
.footer.is-revealed .fw-letter { opacity: 1; transform: translateY(0); }

.foot-rise {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--i) * 70ms);
}
.footer.is-revealed .foot-rise { opacity: 1; transform: translateY(0); }

.ft-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 90px 24px 0; }
.ft-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr 1.05fr; gap: 48px 64px; }

.ft-pill {
  display: inline-block; background: oklch(0.62 0.15 50 / 0.14); color: var(--amber);
  font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; border: 1px solid oklch(0.62 0.15 50 / 0.3);
  margin-bottom: 20px;
}
.ft-heading {
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.5px;
  font-size: clamp(26px, 3vw, 34px); text-transform: uppercase; line-height: 1.15;
  color: oklch(0.98 0.005 235); margin-bottom: 14px; max-width: 420px;
}
.ft-copy { color: oklch(0.72 0.03 248); font-size: 15px; line-height: 1.6; margin-bottom: 26px; max-width: 420px; }
.ft-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--amber); color: oklch(0.99 0.005 60);
  font-weight: 700; padding: 14px 10px 14px 22px; border-radius: 999px;
  text-decoration: none; font-size: 14px; letter-spacing: 0.6px; text-transform: uppercase;
}
.ft-cta-circle {
  display: inline-flex; width: 28px; height: 28px; border-radius: 50%;
  background: oklch(0.18 0.03 220 / 0.16); align-items: center; justify-content: center;
}
.ft-cta-circle svg { width: 15px; height: 15px; }
.ft-nav { margin-top: 34px; border-top: 1px solid oklch(1 0 0 / 0.12); max-width: 420px; }
.ft-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 2px; border-bottom: 1px solid oklch(1 0 0 / 0.12);
  text-decoration: none; color: oklch(0.98 0.005 235);
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s ease;
}
.ft-nav-row svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.ft-nav-row:hover { color: var(--amber); }

.ft-col-title {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  letter-spacing: 1px; text-transform: uppercase; color: oklch(0.88 0.025 240);
  margin-bottom: 16px;
}
.ft-col-copy { color: oklch(0.72 0.03 248); font-size: 14.5px; line-height: 1.6; margin-bottom: 28px; }
.ft-links { display: flex; flex-direction: column; gap: 10px; }
.ft-links a { color: oklch(0.72 0.03 248); text-decoration: none; font-size: 14.5px; }
.ft-links a:hover { color: oklch(0.98 0.005 235); }

.ft-contact { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ft-contact li { display: flex; align-items: flex-start; gap: 10px; color: oklch(0.72 0.03 248); font-size: 14.5px; line-height: 1.5; }
.ft-contact a { color: oklch(0.75 0.1 60); text-decoration: none; font-weight: 700; }
.ft-ico { flex-shrink: 0; width: 18px; height: 18px; color: var(--amber); margin-top: 1px; }
.ft-ico svg { width: 100%; height: 100%; }
.ft-cred {
  display: inline-flex; align-items: center; gap: 8px; color: oklch(0.72 0.03 248);
  font-size: 13.5px; margin: 0 0 22px;
}
.ft-cred svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.ft-pay-label { font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: oklch(0.55 0.025 248); margin-bottom: 10px; }
.ft-pay { display: flex; gap: 8px; flex-wrap: wrap; }
.ft-pay span { border: 1px solid oklch(1 0 0 / 0.14); border-radius: 6px; padding: 6px 12px; font-size: 12.5px; color: oklch(0.72 0.03 248); }

.ft-bottom {
  position: relative; border-top: 1px solid oklch(0.32 0.05 258);
  margin-top: 56px; padding: 24px 0; display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.ft-bottom p { color: oklch(0.6 0.035 250); font-size: 13.5px; margin: 0; }
.ft-bottom-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ft-social { display: flex; gap: 10px; }
.ft-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid oklch(1 0 0 / 0.14);
  display: flex; align-items: center; justify-content: center;
  color: oklch(0.72 0.03 248); text-decoration: none;
}
.ft-social a svg { width: 16px; height: 16px; }
.ft-social a:hover { color: var(--amber); border-color: var(--amber); }
.ft-legal { display: flex; gap: 10px; align-items: center; color: oklch(0.6 0.035 250); font-size: 13.5px; }
.ft-legal a { color: oklch(0.6 0.035 250); text-decoration: none; }
.ft-legal a:hover { color: oklch(0.98 0.005 235); }

@media (max-width: 900px) {
  .ft-grid { grid-template-columns: 1fr; gap: 40px; }
  .ft-wm { font-size: 56px; padding-right: 20px; }
}
@media (max-width: 600px) {
  .ft-bottom { justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .fw-letter, .foot-rise { transition: none; opacity: 1; transform: none; }
  .faq-wind { display: none; }
}
