/* ═══════════════════════════════════════════════════════════════════════
   THAT'S ALL PLUMBING
   ═══════════════════════════════════════════════════════════════════════

   Same design system as aleqone.com, retuned for a trade: layered depth
   instead of flat colour, glass instead of hard edges, gradient accents,
   floating rounded panels instead of full-bleed slabs, and a motion layer
   (reveals, parallax, magnetic CTAs, cursor light) that is entirely
   optional to the content.

   THE THING THAT MAKES A TRADE SITE LOOK CHEAP is setting every single
   piece of text in heavy condensed uppercase. So condensed caps is
   rationed here: the hero headline and the section titles, and nothing
   else. Card titles, list items and body copy are normal-case Barlow with
   tight negative tracking — which is what reads "designed" rather than
   "template".

   What it keeps from the plumbing category, because the category is right
   about its own customers: navy authority, a single yellow action colour,
   a live availability indicator, and the phone number never more than a
   thumb away.

   Fonts self-hosted. No framework. No images. It has to render on one bar
   of signal in a flooded laundry.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Fonts ────────────────────────────────────────────────────────────
   `swap` so the number is readable from the first paint and reflows when
   Barlow lands, rather than the visitor staring at nothing. */
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/barlow-400.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/barlow-600.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/barlow-700.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/barlow-condensed-600.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/barlow-condensed-700.woff2") format("woff2"); }

:root {
  --navy-900: #0A1B33;
  --navy-800: #10294B;
  --navy-700: #17396A;
  --navy-600: #1E5299;
  --navy-500: #2A6FD6;
  --navy-050: #EAF1FC;

  --gold:      #FFC42E;
  --gold-600:  #EFAC00;
  --gold-soft: #FFF4D8;

  --red:      #E03A2F;
  --red-700:  #B32219;

  --text:          #101B2B;
  --muted:         #5B6779;
  --muted-2:       #8794A6;
  --bg:            #F5F8FC;
  --bg-tint:       #E9F1FA;
  --surface:       #FFFFFF;
  --border:        #E4EAF3;
  --border-strong: #CDD8E8;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 24px;

  --shadow:      0 1px 2px rgba(16,32,60,.05), 0 6px 20px rgba(16,32,60,.06);
  --shadow-lift: 0 10px 28px rgba(16,32,60,.10), 0 30px 70px rgba(16,32,60,.13);

  --brand-grad: linear-gradient(135deg, #17396A 0%, #1E5299 48%, #2F79DD 100%);
  --gold-grad:  linear-gradient(135deg, #FFD05A 0%, #FFC42E 45%, #F2AB00 100%);

  /* Real value published by app.js. The fallback is the measured height
     at default text size, so the no-JS case lands exactly too. */
  --hdr-h: 76px;

  --wrap: 1160px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  --head: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* CONDENSED CAPS IS RATIONED — hero h1 and section h2 only. Everything
   else, including every card title, is normal-case Barlow. */
h1, .h-cond {
  font-family: var(--head); font-weight: 700; text-transform: uppercase;
  line-height: .93; letter-spacing: -.005em; margin: 0 0 .3em;
}
h2 {
  font-family: var(--head); font-weight: 700; text-transform: uppercase;
  line-height: .96; letter-spacing: -.005em; margin: 0 0 .3em;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
}
h1 { font-size: clamp(2.9rem, 7vw, 5rem); }
h3 {
  font-family: var(--body); font-weight: 700; font-size: 1.16rem;
  letter-spacing: -.014em; line-height: 1.3; margin: 0 0 .35em;
}
p { margin: 0 0 1em; }
a { color: var(--navy-600); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 780px; }

[hidden] { display: none !important; }
section[id] { scroll-margin-top: 92px; }

.skip { position: absolute; left: -9999px; background: var(--text); color: #fff; padding: 12px 18px; z-index: 300; border-radius: 0 0 10px 0; }
.skip:focus { left: 0; top: 0; }
:focus-visible { outline: 3px solid var(--navy-500); outline-offset: 3px; border-radius: 6px; }

/* ── Buttons ──────────────────────────────────────────────────────────
   Pill-free, generous radius, gradient on the primary, and a lift that
   reads as weight rather than a bounce. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 50px; padding: 13px 24px; border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--body); font-size: 1rem; font-weight: 700;
  letter-spacing: -.005em; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .25s var(--ease),
              background .2s var(--ease), filter .2s var(--ease);
}
.btn-lg { min-height: 58px; padding: 16px 30px; font-size: 1.1rem; border-radius: 14px; }

/* Gold is the call colour and appears on nothing decorative, so on any
   screen the gold thing is the thing to press. */
.btn-gold { background-image: var(--gold-grad); color: #241A00; box-shadow: 0 8px 22px rgba(255,196,46,.36); }
.btn-gold:hover { filter: brightness(1.04); box-shadow: 0 14px 34px rgba(255,196,46,.48); }

.btn-navy { background-image: var(--brand-grad); color: #fff; box-shadow: 0 8px 22px rgba(30,82,153,.30); }
.btn-navy:hover { filter: brightness(1.08); box-shadow: 0 14px 34px rgba(30,82,153,.40); }

.btn-line { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); backdrop-filter: blur(4px); }
.btn-line:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn-quiet { background: var(--surface); color: var(--navy-700); border-color: var(--border-strong); box-shadow: var(--shadow); }
.btn-quiet:hover { background: var(--navy-050); border-color: var(--navy-500); }

/* ── Header ───────────────────────────────────────────────────────────
   Glass, like aleqone's. Transparent over the hero so the navy reads
   full-bleed, then solidifies once you've scrolled past it. */
.hdr {
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.hdr-in { display: flex; align-items: center; gap: 18px; padding: 14px 22px; max-width: var(--wrap); margin: 0 auto; }
.hdr.stuck {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(1.7) blur(14px);
  -webkit-backdrop-filter: saturate(1.7) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(30,82,153,.05), 0 10px 30px rgba(16,32,60,.06);
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  border-radius: 13px; color: #fff;
  background-image: var(--brand-grad);
  box-shadow: 0 6px 16px rgba(30,82,153,.34);
}
.brand-txt { display: flex; flex-direction: column; line-height: 1.02; }
.brand-1 { font-family: var(--body); font-weight: 700; font-size: 1.16rem; letter-spacing: -.028em; color: #fff; }
.brand-2 { font-size: .64rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.hdr.stuck .brand-1 { color: var(--text); }
.hdr.stuck .brand-2 { color: var(--navy-500); }

.nav { display: none; gap: 2px; }
.nav a {
  font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.82);
  text-decoration: none; padding: 9px 14px; border-radius: 10px;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.12); }
.hdr.stuck .nav a { color: var(--muted); }
.hdr.stuck .nav a:hover { color: var(--text); background: var(--bg-tint); }
@media (min-width: 1000px) { .nav { display: flex; } }

.hdr-call { min-height: 44px; padding: 10px 18px; font-size: .96rem; }
@media (max-width: 560px) { .brand-2 { display: none; } .hdr-call { padding: 10px 14px; } }

/* ── HERO ─────────────────────────────────────────────────────────────
   Depth, not a flat block: a navy base, two radial glows that parallax
   on scroll, a giant hairline tap mark behind the copy, and a cursor
   light on mouse devices. Same construction as the aleqone hero.

   THE PHOTO SLOT: the trade sites this borrows from are ~60% photograph
   of a real tradie and a real van. There isn't one yet, so the right-hand
   column carries the availability panel and the layout stands on its own.
   A photo drops into .hero-media later without touching anything else. */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--navy-900);
  /* Pull the hero up UNDER the transparent header so the navy runs to the
     very top of the window. --hdr-h is published by app.js from the
     header's real height; the :root fallback covers the no-JS case. */
  margin-top: calc(-1 * var(--hdr-h)); padding-top: var(--hdr-h);
}
.hero-glow {
  position: absolute; inset: -30% -10% auto -10%; height: 150%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(760px 460px at 18% 4%, rgba(47,121,221,.42), transparent 68%),
    radial-gradient(680px 420px at 88% 22%, rgba(30,82,153,.55), transparent 70%),
    radial-gradient(520px 340px at 66% 92%, rgba(255,196,46,.10), transparent 72%);
}
/* Faint pipework grid, fading out downward. Texture with no image request. */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
          mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}
/* The giant hairline tap, parallaxed — aleqone's hero-letter, as a tap.
   Positioned to bleed off the RIGHT edge rather than sitting centred: a
   partial mark reads as texture, whereas a mark cropped through its
   middle just reads as stray lines. Hidden below 1000px, where there's
   no room for it to be anything but clutter. */
.hero-mark {
  display: none;
  position: absolute; right: -8%; top: -14%; width: min(620px, 52vw); height: auto;
  z-index: 0; pointer-events: none;
  color: rgba(154, 196, 255, .07);
}
@media (min-width: 1000px) { .hero-mark { display: block; } }
/* Cursor-following light; JS sets --gx/--gy on mouse devices only. */
.hero-light {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--gx, 70%) var(--gy, 30%), rgba(120,180,255,.16), transparent 70%);
  transition: opacity .4s var(--ease);
}

.hero-in {
  position: relative; z-index: 1;
  display: grid; gap: 40px; align-items: center;
  padding: clamp(44px, 6vw, 80px) 22px clamp(60px, 7vw, 96px);
  max-width: var(--wrap); margin: 0 auto;
}
@media (min-width: 1000px) { .hero-in { grid-template-columns: 1.05fr .95fr; gap: 56px; } }

/* Pill eyebrow, straight from the aleqone hero. */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold); background: rgba(255,196,46,.13);
  border: 1px solid rgba(255,196,46,.28);
  padding: 7px 14px; border-radius: 999px; margin: 0 0 20px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #4BD98A; box-shadow: 0 0 0 0 rgba(75,217,138,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(75,217,138,0); } 100% { box-shadow: 0 0 0 0 rgba(75,217,138,0); } }

.hero h1 { color: #fff; max-width: 11ch; }
.hero h1 span { display: block; background-image: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.04rem, 1.7vw, 1.2rem); color: #B9CEE8; max-width: 44ch; margin: 20px 0 30px; line-height: 1.62; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Trust chips under the CTAs — aleqone's .hero-chip. Short, true, scannable. */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.chips li {
  font-size: .84rem; font-weight: 600; color: #C6D9EE;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; padding: 6px 14px;
}

/* ── Availability panel (hero right) ─────────────────────────────────
   Where the reference sites put "4.8★ · 800+ reviews · 125,000+ jobs".
   Those are earned numbers this business hasn't earned yet, so this
   carries only what is true, and the rating row below stays `hidden`
   until there is a real Google profile to fill it from. */
.panel {
  position: relative;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 30px 70px rgba(0,0,0,.36);
  overflow: hidden;
}
.panel-top { display: flex; align-items: center; gap: 12px; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.panel-top .dot { width: 10px; height: 10px; border-radius: 50%; background: #4BD98A; flex: none; box-shadow: 0 0 0 0 rgba(75,217,138,.7); animation: pulse 2.2s infinite; }
.panel-top b { display: block; font-size: 1.02rem; font-weight: 700; letter-spacing: -.015em; color: #fff; line-height: 1.25; }
.panel-top span { font-size: .84rem; color: #9DB8D6; }

.tgrid { display: grid; grid-template-columns: 1fr 1fr; }
.tile { padding: 22px 20px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.tile:nth-child(2n) { border-right: 0; }
.tile:nth-last-child(-n+2) { border-bottom: 0; }
.tile-ico {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 12px;
  color: #9FC8FF; background: rgba(120,180,255,.13); box-shadow: inset 0 0 0 1px rgba(159,200,255,.2);
}
.tile b { display: block; font-size: 1.06rem; font-weight: 700; letter-spacing: -.02em; color: #fff; line-height: 1.2; }
.tile span { font-size: .82rem; color: #93AECB; }

.rating-slot { padding: 18px 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; gap: 12px; color: #C6D9EE; }

/* ── Section scaffolding ─────────────────────────────────────────────
   No more full-bleed colour slabs stacked on each other. One calm page
   background, white cards floating on it, and a single rounded navy
   panel for the emergency band. */
.sec { padding: clamp(64px, 8vw, 108px) 0; }
.sec-flush { padding-top: 0; }
.sec-tint { background: linear-gradient(180deg, var(--bg-tint), var(--bg)); }
.sec-head { max-width: 720px; margin: 0 0 46px; }
.sec-head.mid { margin-left: auto; margin-right: auto; text-align: center; }
.kick {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy-600); background: var(--navy-050);
  padding: 6px 13px; border-radius: 999px; margin: 0 0 16px;
}
.sec-head h2 { color: var(--navy-900); }
.sec-head p { color: var(--muted); font-size: 1.06rem; margin: 16px 0 0; }

/* ── Cards ────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
@media (min-width: 940px) { .grid-3 { display: flex; flex-wrap: wrap; justify-content: center; } .grid-3 > * { flex: 0 1 calc((100% - 40px) / 3); } }

.card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px 26px; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
/* Gradient hairline that draws in on hover — aleqone's .tile::before. */
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background-image: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--border-strong); }
.card:hover::before { transform: scaleX(1); }
.card h3 { color: var(--navy-900); }
.card p { margin: 0; color: var(--muted); font-size: .97rem; }

.card-ico {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 17px;
  color: var(--navy-600);
  background: linear-gradient(140deg, var(--navy-050), #E4EEFF);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: transform .35s var(--ease);
}
.card:hover .card-ico { transform: translateY(-2px) scale(1.05); }

/* ── Emergency band — a floating rounded panel, not a full-bleed slab.
   This one change is most of the difference between "designed" and
   "template". ──────────────────────────────────────────────────────── */
.band {
  position: relative; overflow: hidden; color: #fff;
  border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 54px) clamp(26px, 4vw, 48px);
  background: linear-gradient(135deg, #A3160E 0%, var(--red) 52%, #F0603F 100%);
  box-shadow: 0 20px 50px rgba(224,58,47,.28);
  display: grid; gap: 26px; align-items: center;
}
@media (min-width: 900px) { .band { grid-template-columns: 1fr auto; gap: 44px; } }
.band::after {
  content: ""; position: absolute; inset: -40% -20% auto auto; width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(255,255,255,.16), transparent);
  pointer-events: none;
}
.band > * { position: relative; z-index: 1; }
.band h2 { color: #fff; }
.band h2 em { font-style: normal; color: #FFD98A; }
.band p { color: rgba(255,255,255,.9); margin: 12px 0 0; max-width: 54ch; }
.band .btn { background: #fff; color: var(--red-700); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.band .btn:hover { background: #FFF3F2; }

/* ── Steps ────────────────────────────────────────────────────────── */
.steps { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(226px, 1fr)); }
.step { position: relative; }
.step-n {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 16px;
  border-radius: 14px; font-weight: 700; font-size: 1.12rem; color: #fff; letter-spacing: -.02em;
  background-image: var(--brand-grad); box-shadow: 0 8px 20px rgba(30,82,153,.28);
}
.step h3 { color: var(--navy-900); }
.step p { color: var(--muted); font-size: .97rem; margin: 0; }

/* ── Promises (two-column list with gold ticks) ──────────────────── */
.plist { display: grid; gap: 26px 34px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); list-style: none; padding: 0; margin: 0; }
.plist li { display: flex; gap: 15px; align-items: flex-start; }
.plist .tick {
  width: 34px; height: 34px; flex: none; border-radius: 11px; display: grid; place-items: center;
  color: #7A5500; background-image: var(--gold-grad); box-shadow: 0 5px 14px rgba(255,196,46,.34);
}
.plist h3 { margin: 0 0 3px; color: var(--navy-900); font-size: 1.05rem; }
.plist p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ── Areas ────────────────────────────────────────────────────────── */
.areas { list-style: none; padding: 0; margin: 0 auto 22px; max-width: 860px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areas li {
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 18px; font-weight: 600; font-size: .94rem; color: var(--navy-800);
  box-shadow: var(--shadow);
  transition: transform .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.areas li:hover { transform: translateY(-2px); border-color: var(--navy-500); color: var(--navy-600); }
.areas-note { color: var(--muted); margin: 0; font-size: .96rem; text-align: center; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-lift); border-color: var(--border-strong); }
.faq summary {
  cursor: pointer; list-style: none; padding: 19px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; font-size: 1.04rem; letter-spacing: -.012em; color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2.5px solid var(--navy-500); border-bottom: 2.5px solid var(--navy-500);
  transform: rotate(45deg) translateY(-2px); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq details p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: .98rem; }

/* ── Contact ──────────────────────────────────────────────────────── */
.contact { display: grid; gap: 30px; align-items: start; }
@media (min-width: 940px) { .contact { grid-template-columns: 1fr 1fr; gap: 52px; } }
.contact-lede { color: var(--muted); font-size: 1.06rem; max-width: 44ch; }
.dl { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.dl li { display: flex; gap: 14px; align-items: baseline; }
.dl b { min-width: 4.6em; color: var(--navy-600); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dl span { color: var(--text); }

.ready-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 30px 28px;
}
.ready-card h3 { color: var(--navy-900); font-size: 1.24rem; }
.ready-card > p { color: var(--muted-2); font-size: .88rem; margin: 0 0 20px; }
.ready { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 13px; }
.ready li { position: relative; padding-left: 27px; font-size: .96rem; color: var(--muted); }
.ready li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; border-radius: 50%;
  background-image: var(--gold-grad); box-shadow: 0 0 0 3px rgba(255,196,46,.2);
}
.ready b { color: var(--navy-900); }
.ready-card .btn { width: 100%; }

/* ── Footer ───────────────────────────────────────────────────────── */
.ft { background: var(--navy-900); color: #8FA6C0; padding: 62px 0 26px; position: relative; overflow: hidden; }
.ft::before {
  content: ""; position: absolute; inset: auto 0 -60% 0; height: 120%; pointer-events: none;
  background: radial-gradient(700px 300px at 20% 0%, rgba(47,121,221,.22), transparent 70%);
}
.ft-in { position: relative; display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .ft-in { grid-template-columns: 1.7fr 1fr 1fr; gap: 46px; } }
.ft .brand-1 { color: #fff; }
.ft-tag { margin: 16px 0 0; font-size: .96rem; color: #7C93AE; max-width: 34ch; }
.ft-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.ft-col a, .ft-col span { display: block; color: #8FA6C0; text-decoration: none; font-size: .96rem; margin-bottom: 9px; transition: color .18s var(--ease); }
.ft-col a:hover { color: #fff; }
.ft-phone {
  font-size: 1.5rem !important; font-weight: 700; letter-spacing: -.028em;
  background-image: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent !important;
}
.ft-fine {
  position: relative; border-top: 1px solid rgba(255,255,255,.09); margin-top: 42px; padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .85rem; color: #6C8199;
}
.ft-fine p { margin: 0; }

/* ── Sticky mobile call bar ───────────────────────────────────────────
   The highest-value element on the page: on a phone the call button is
   never more than a thumb away, at any scroll position. */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 9px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.8) blur(16px); -webkit-backdrop-filter: saturate(1.8) blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(16,32,60,.09);
}
.callbar .btn { width: 100%; min-height: 50px; font-size: 1rem; padding: 12px 10px; }
@media (min-width: 860px) { .callbar { display: none; } }
@media (max-width: 859px) { .ft { padding-bottom: 96px; } }

/* ── Motion system ────────────────────────────────────────────────────
   Same construction as aleqone's siteMotion: reveals with a per-card
   stagger, parallaxed hero layers, magnetic CTAs. All of it is gated on
   `html.js` and on prefers-reduced-motion, so with JS off, broken, or
   motion turned down, every word is simply on the page. */
@media (prefers-reduced-motion: no-preference) {
  .js .rv { opacity: 0; transform: translateY(24px); }
  .js .rv-in {
    opacity: 1; transform: none;
    transition: opacity .75s var(--ease), transform .75s var(--ease);
    transition-delay: var(--rv-delay, 0ms);
  }
  .hero-glow, .hero-mark { will-change: transform; }
}

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

/* Printing this page nearly always means somebody wants the number on
   paper. Give them that, not a navy hero that empties a cartridge. */
@media print {
  .callbar, .nav, .hero-cta, .hdr-call, .chips, .hero-glow, .hero-grid, .hero-mark, .hero-light { display: none; }
  .hero, .band, .ft, .sec-tint { background: #fff !important; color: #000 !important; box-shadow: none !important; }
  .hero h1, .hero h1 span, .hero-sub, .band h2, .band h2 em, .band p, .panel-top b, .tile b, .ft-phone {
    color: #000 !important; -webkit-text-fill-color: #000 !important;
  }
  .panel, .card, .ready-card { border: 1px solid #999 !important; box-shadow: none !important; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
  body { font-size: 12pt; }
}
