/* =============================================================================
   AURORA  -  cinematic night / water concept plumber template
   Pinnacle Web Design
   One variable family (Archivo wdth 62-125) voiced three ways:
   display = wide + heavy, labels = semi-wide caps, body = normal.
   ========================================================================== */

:root {
  --bg0:    #05090f;
  --bg1:    #081019;
  --panel:  #0c1723;
  --panel2: #10202f;

  --aqua:      #5fd9ea;
  --aqua-deep: #2ba6bf;
  --aqua-ink:  #04232b;
  --glow:      rgba(95, 217, 234, 0.32);

  --txt:   #ecf5f9;
  --body:  #a8bcc9;
  --muted: #64798a;
  --line:  rgba(236, 245, 249, 0.09);
  --line2: rgba(236, 245, 249, 0.18);

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --r: 18px;
  --r-lg: 26px;
  --shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
  --header-h: 76px;
}

/* ---------- reset / base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-variation-settings: "wdth" 100;
  background:
    radial-gradient(90% 60% at 80% -10%, rgba(43, 166, 191, 0.09), transparent 60%),
    var(--bg0);
  color: var(--body);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html.tk-pending body { opacity: 0; }
body { opacity: 1; transition: opacity .4s ease; }
body.nav-locked { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
::selection { background: var(--aqua); color: var(--aqua-ink); }
:focus-visible { outline: 2px solid var(--aqua); outline-offset: 3px; border-radius: 3px; }

/* ---------- type voices ---------------------------------------------------- */
.display, .hero-title, .section-title, .loader-count, .stat-num, .footer-wordmark {
  font-variation-settings: "wdth" 122;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: .98;
  color: var(--txt);
}
.kicker {
  display: flex; align-items: center; gap: .65rem;
  font-variation-settings: "wdth" 112;
  font-weight: 600; font-size: .74rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--aqua);
}
.kicker.center { justify-content: center; }
.kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 12px var(--glow); flex: none; }

.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.section-head { max-width: 720px; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .kicker { margin-bottom: 1.2rem; }
.section-title { font-size: clamp(2.1rem, 4.6vw, 3.8rem); }
.section-title em { font-style: normal; color: var(--aqua); }
.section-lead { margin-top: 1.15rem; font-size: 1.08rem; max-width: 56ch; }

/* ---------- buttons -------------------------------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-variation-settings: "wdth" 110; font-weight: 700; font-size: .92rem; letter-spacing: .02em;
  padding: 1rem 1.7rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.75,.25,1), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-solid { background: var(--aqua); color: var(--aqua-ink); box-shadow: 0 10px 34px -10px var(--glow); }
.btn-solid:hover { background: #8ce6f2; box-shadow: 0 16px 44px -12px var(--glow); }
.btn-ghost { border-color: var(--line2); color: var(--txt); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--aqua); color: var(--aqua); }
.btn-sm { padding: .66rem 1.2rem; font-size: .84rem; }
.btn-block { width: 100%; padding-top: 1.1rem; padding-bottom: 1.1rem; }

/* ---------- preloader ------------------------------------------------------ */
.loader { display: none; }
html.js .loader {
  display: grid; place-items: center;
  position: fixed; inset: 0; z-index: 300; background: var(--bg0);
  transition: transform .7s cubic-bezier(.75,0,.2,1);
}
html.js .loader.is-done { transform: translateY(-101%); }
.loader-inner { display: grid; justify-items: center; gap: 1.2rem; }
.loader-brand { font-variation-settings: "wdth" 112; font-weight: 600; font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.loader-count { font-size: clamp(3.5rem, 10vw, 6.5rem); }
.loader-bar { width: min(280px, 60vw); height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.loader-bar i { display: block; width: 100%; height: 100%; background: var(--aqua); transform: scaleX(0); transform-origin: left; box-shadow: 0 0 16px var(--glow); }

/* ---------- header ---------------------------------------------------------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 18px 0; transition: padding .3s ease, background .3s ease, border-color .3s ease; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { padding: 11px 0; background: rgba(5, 9, 15, .78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; color: var(--aqua-ink); background: var(--aqua); border-radius: 12px; box-shadow: 0 6px 22px -8px var(--glow); flex: none; }
.brand-mark svg { width: 21px; height: 21px; }
.brand-name { font-variation-settings: "wdth" 116; font-weight: 700; font-size: 1.12rem; color: var(--txt); letter-spacing: -.01em; }
.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a { font-size: .93rem; font-weight: 500; color: var(--body); transition: color .2s ease; }
.nav a:hover { color: var(--txt); }
.nav .nav-phone { display: none; }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: inline-flex; align-items: center; gap: .45rem; font-variation-settings: "wdth" 110; font-weight: 600; font-size: .88rem; color: var(--aqua); }
.header-phone svg { width: 1.05em; height: 1.05em; }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--txt); border-radius: 2px; transition: transform .3s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- hero ------------------------------------------------------------ */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s ease-out both; will-change: transform; backface-visibility: hidden; }
@keyframes heroZoom { from { transform: scale(1.12) translateZ(0); } to { transform: scale(1.02) translateZ(0); } }
.hero-veil { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(5,9,15,.78) 0%, rgba(5,9,15,.25) 34%, rgba(5,9,15,.66) 72%, var(--bg0) 100%),
  linear-gradient(90deg, rgba(5,9,15,.75) 0%, rgba(5,9,15,.24) 55%, rgba(5,9,15,.05) 100%); }
/* Soft radial gradients only: no blur filter and no infinite animation, so
   scrolling over the hero never has to re-composite an expensive layer. */
.hero-aurora { position: absolute; inset: -10%; pointer-events: none; background:
  radial-gradient(40% 36% at 22% 68%, rgba(95,217,234,.13), transparent 72%),
  radial-gradient(36% 32% at 74% 26%, rgba(43,166,191,.1), transparent 72%); }

.hero-inner { position: relative; z-index: 1; padding-top: 9rem; padding-bottom: clamp(3.4rem, 6vw, 5.5rem); }
.hero-inner > .kicker { margin-bottom: clamp(1.2rem, 2.5vw, 2rem); }
.hero-title { font-size: clamp(2.9rem, 8.2vw, 7rem); }
.hero-title em { font-style: normal; color: var(--aqua); text-shadow: 0 0 44px var(--glow); }
.hero-line { display: block; }

.rotator { position: relative; display: inline-grid; text-align: left; }
.rotator-word { grid-area: 1 / 1; opacity: 0; transform: translateY(.55em); transition: opacity .45s ease, transform .55s cubic-bezier(.2,.75,.25,1); will-change: transform; white-space: nowrap; }
.rotator-word.is-active { opacity: 1; transform: none; }
.rotator-word.is-out { opacity: 0; transform: translateY(-.45em); }

.hero-foot { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.6rem 3rem; margin-top: 2.2rem; }
.hero-sub { font-size: 1.13rem; max-width: 34rem; color: #c3d3dd; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid var(--line2); }
.hero-proof li { position: relative; padding-left: 1.15rem; font-size: .88rem; font-weight: 500; color: #cfdde5; letter-spacing: .02em; }
.hero-proof li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 10px var(--glow); }

.hero-scroll { position: absolute; right: 30px; bottom: 30px; z-index: 1; width: 1px; height: 74px; background: var(--line2); overflow: hidden; }
.hero-scroll i { position: absolute; left: 0; top: -40%; width: 100%; height: 40%; background: var(--aqua); animation: scrollHint 2s cubic-bezier(.6,0,.3,1) infinite; }
@keyframes scrollHint { to { top: 110%; } }

/* hero load choreography */
html.js .hero-item { opacity: 0; transform: translateY(26px); }
html.js body.is-loaded .hero-item { opacity: 1; transform: none; transition: opacity .8s ease, transform .9s cubic-bezier(.2,.75,.25,1); transition-delay: calc(var(--i) * 95ms); }
html:not(.js) .hero-item { opacity: 1; }

/* ---------- outline marquee -------------------------------------------------- */
.marquee { position: relative; padding: clamp(1.6rem, 3vw, 2.6rem) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: inline-flex; align-items: center; white-space: nowrap; animation: marquee 36s linear infinite; }
.marquee-track span {
  font-variation-settings: "wdth" 122; font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem); letter-spacing: -.01em; padding: 0 2.2rem;
  color: transparent; -webkit-text-stroke: 1px rgba(236, 245, 249, .34);
}
.marquee-track b { color: var(--aqua); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- services: sticky deck -------------------------------------------- */
.stack { display: grid; gap: 1.6rem; }
.stack-card {
  position: sticky; top: calc(var(--header-h) + 18px + var(--n) * 14px);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.6rem, 3.5vw, 3.5rem);
  background: linear-gradient(160deg, var(--panel2), var(--panel) 60%);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3.6vw, 3.2rem);
  box-shadow: var(--shadow);
  min-height: min(64vh, 560px);
  align-items: center;
}
.stack-no { font-variation-settings: "wdth" 122; font-weight: 800; font-size: .95rem; color: var(--aqua); letter-spacing: .1em; }
.stack-copy h3 { font-variation-settings: "wdth" 120; font-weight: 800; font-size: clamp(1.7rem, 3.2vw, 2.6rem); letter-spacing: -.02em; line-height: 1.02; color: var(--txt); margin-top: .9rem; }
.stack-copy > p { margin-top: 1rem; max-width: 46ch; }
.stack-points { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.3rem; }
.stack-points li { font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: #cfdde5; border: 1px solid var(--line2); border-radius: 999px; padding: .42rem .85rem; }
.stack-link { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.7rem; font-variation-settings: "wdth" 112; font-weight: 700; font-size: .95rem; color: var(--aqua); }
.stack-link svg { width: 1.1em; height: 1.1em; transition: transform .25s ease; }
.stack-link:hover svg { transform: translateX(5px); }
.stack-media { position: relative; border-radius: var(--r); overflow: hidden; height: 100%; min-height: 300px; }
.stack-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(95,217,234,.1), rgba(5,9,15,.28) 70%); mix-blend-mode: multiply; pointer-events: none; }
.stack-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- stats -------------------------------------------------------------- */
.statband { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(16,32,47,.5), transparent); }
.statband-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(2.4rem, 4.5vw, 3.8rem) 1.6rem; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num { display: block; font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
.stat-num i { font-style: normal; }
.stat-label { display: block; margin-top: .55rem; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------- why us --------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2.6rem, 5vw, 5rem); align-items: center; }
.why-media { position: relative; }
.why-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.why-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transform: translateY(var(--py, 0)) scale(1.08); will-change: transform; }
.why-chip { position: absolute; left: -16px; bottom: 34px; display: flex; align-items: center; gap: .8rem; background: rgba(12, 23, 35, .85); backdrop-filter: blur(10px); border: 1px solid var(--line2); border-radius: var(--r); padding: .95rem 1.2rem; }
.why-chip strong { font-variation-settings: "wdth" 122; font-weight: 800; font-size: 1.9rem; color: var(--aqua); line-height: 1; }
.why-chip span { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--body); max-width: 12ch; line-height: 1.35; }
.why-list { margin-top: 1.9rem; display: grid; gap: .85rem; }
.why-list li { display: flex; align-items: center; gap: .9rem; color: #d4e0e8; font-size: 1rem; }
.tick { position: relative; flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(95,217,234,.12); border: 1px solid rgba(95,217,234,.4); }
.tick::after { content: ""; position: absolute; left: 7px; top: 4px; width: 5px; height: 9px; border-right: 2px solid var(--aqua); border-bottom: 2px solid var(--aqua); transform: rotate(45deg); }
.why-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.2rem; }
.why-note { font-size: .85rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- process / flow --------------------------------------------------------- */
.flow { position: relative; }
.flow-line { position: absolute; left: 0; right: 0; top: -30px; width: 100%; height: 120px; color: var(--aqua); opacity: .55; }
.flow-line path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2s cubic-bezier(.3,0,.2,1) .2s; }
.flow.is-visible .flow-line path { stroke-dashoffset: 0; }
.flow-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.5vw, 3rem); padding-top: clamp(4rem, 8vw, 6.5rem); }
.step-no { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--panel2); border: 1px solid var(--line2); font-variation-settings: "wdth" 118; font-weight: 800; color: var(--aqua); }
.step h3 { font-variation-settings: "wdth" 116; font-weight: 700; font-size: 1.32rem; color: var(--txt); margin: 1.1rem 0 .55rem; }
.step p { font-size: .98rem; max-width: 34ch; }

/* ---------- reviews ------------------------------------------------------------------ */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review { background: rgba(12, 23, 35, .6); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 1.8rem; backdrop-filter: blur(8px); transition: transform .3s ease, border-color .3s ease; }
.review:hover { transform: translateY(-6px); border-color: rgba(95,217,234,.35); }
.stars { display: block; color: var(--aqua); letter-spacing: .14em; margin-bottom: 1.1rem; text-shadow: 0 0 14px var(--glow); }
.review blockquote { color: #dde8ee; font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.3rem; }
.review figcaption { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------- areas ---------------------------------------------------------------------- */
.areas-panel { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--panel2), var(--panel)); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(2.2rem, 5vw, 4.2rem); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; box-shadow: var(--shadow); }
.areas-aurora { position: absolute; inset: -30%; background:
  radial-gradient(30% 34% at 82% 20%, rgba(95,217,234,.14), transparent 70%),
  radial-gradient(26% 30% at 12% 86%, rgba(43,166,191,.12), transparent 70%);
  filter: blur(26px); pointer-events: none; }
.areas-body, .areas-tags { position: relative; }
.areas-tags { display: flex; flex-wrap: wrap; gap: .65rem; }
.areas-tags li { font-size: .88rem; font-weight: 600; letter-spacing: .03em; color: #d4e0e8; border: 1px solid var(--line2); border-radius: 999px; padding: .6rem 1.05rem; transition: border-color .25s ease, color .25s ease, box-shadow .25s ease; }
.areas-tags li:hover { border-color: var(--aqua); color: var(--aqua); box-shadow: 0 0 18px -6px var(--glow); }
.areas-body .btn { margin-top: 1.8rem; }

/* ---------- faq ------------------------------------------------------------------------- */
.faq-wrap { max-width: 900px; }
.faq-list { border-top: 1px solid var(--line2); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; text-align: left; padding: 1.5rem 0; font-variation-settings: "wdth" 112; font-weight: 700; font-size: 1.14rem; color: var(--txt); transition: color .2s ease; }
.faq-q:hover { color: var(--aqua); }
.faq-icon { position: relative; flex: none; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--aqua); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.is-open .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding-bottom: 1.5rem; max-width: 64ch; }

/* ---------- contact ----------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.6rem, 5vw, 5rem); align-items: start; }
.contact-list { margin-top: 2.1rem; border-top: 1px solid var(--line2); }
.contact-list > div { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.contact-list dt { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); padding-top: .25rem; }
.contact-list dd { color: #d4e0e8; font-weight: 500; }
.contact-list a:hover { color: var(--aqua); }

.contact-card { background: linear-gradient(165deg, var(--panel2), var(--panel)); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.7rem, 3.2vw, 2.6rem); box-shadow: var(--shadow); }
.quote-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(5, 9, 15, .55); border: 1px solid var(--line2); border-radius: 12px;
  padding: .9rem 1rem; color: var(--txt); font: inherit; font-size: .98rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(95,217,234,.16); }
.field select option { color: var(--aqua-ink); background: #eaf6f9; }
.form-note { font-size: .78rem; color: var(--muted); }
.form-success { background: rgba(95,217,234,.08); border: 1px solid rgba(95,217,234,.4); border-radius: var(--r); padding: 2rem; display: grid; gap: .4rem; }
.form-success strong { font-variation-settings: "wdth" 116; font-weight: 700; font-size: 1.4rem; color: var(--txt); }

/* ---------- footer ---------------------------------------------------------------------------- */
.site-footer { position: relative; border-top: 1px solid var(--line); background: #04070c; padding-top: clamp(3.6rem, 6vw, 5.5rem); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { margin-top: 1.15rem; color: var(--muted); max-width: 32ch; font-size: .95rem; }
.footer-col h4 { font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--txt); margin-bottom: 1.15rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a, .footer-col li { color: var(--body); font-size: .95rem; }
.footer-col a:hover { color: var(--aqua); }
.footer-wordmark { font-size: clamp(3.4rem, 14.5vw, 12.5rem); white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(236,245,249,.1); line-height: .82; margin-top: .5rem; user-select: none; pointer-events: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.7rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.footer-bottom .credit a { color: var(--aqua); }
.footer-bottom .credit a:hover { text-decoration: underline; }

/* ---------- sticky mobile bar ------------------------------------------------------------------- */
.mobile-bar { display: none; }

/* ---------- scroll reveals ----------------------------------------------------------------------- */
html.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .8s cubic-bezier(.2,.75,.25,1); }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* =============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1060px) {
  .statband-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); padding-left: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .nav { position: fixed; inset: 0; z-index: 99; flex-direction: column; justify-content: center; gap: 1.5rem; background: rgba(4, 7, 12, .96); backdrop-filter: blur(14px); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .35s ease, transform .35s ease, visibility .35s; }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { font-variation-settings: "wdth" 118; font-weight: 800; font-size: 2rem; color: var(--txt); }
  .nav .nav-phone { display: block; font-variation-settings: "wdth" 100; font-weight: 500; font-size: 1.05rem; color: var(--aqua); margin-top: .6rem; }
  .nav-toggle { display: flex; }
  .header-phone, .header-cta .btn-sm { display: none; }

  .stack-card { position: static; grid-template-columns: 1fr; min-height: 0; }
  .stack-media { min-height: 0; }
  .stack-media img { aspect-ratio: 16 / 10; }

  .why-grid, .areas-panel, .contact-grid { grid-template-columns: 1fr; }
  .why-media { max-width: 480px; }
  .flow-line { display: none; }
  .flow-steps { grid-template-columns: 1fr; gap: 2.4rem; padding-top: 1rem; }
  .review-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }

  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; transition: transform .35s ease; box-shadow: 0 -10px 30px -18px rgba(0,0,0,.8); }
  .mobile-bar.is-hidden { transform: translateY(100%); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 1.05rem; font-variation-settings: "wdth" 112; font-weight: 700; font-size: .95rem; }
  .mobile-bar a svg { width: 1.1em; height: 1.1em; }
  .mobile-bar-call { background: var(--aqua); color: var(--aqua-ink); }
  .mobile-bar-quote { background: var(--panel2); color: var(--txt); border-top: 1px solid var(--line2); }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .field-row { grid-template-columns: 1fr; }
  .statband-grid { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(even) { border-left: none; padding-left: 0; }
  .stat:nth-child(2) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-foot { margin-top: 1.8rem; }
  .why-chip { left: 8px; }
}

/* =============================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html.js .loader { display: none; }
  html.js .hero-item, html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-bg img { animation: none; transform: none; }
  .rotator-word { transition: none; }
  .why-frame img { transform: none; }
}
