/* ==========================================================================
   Brotherz Cleaning Services — brotherzcleaning.com
   Pane Perfection in Every Reflection.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --ink:          #08192a;
  --ink-2:        #12314c;
  --ink-soft:     #3f5c74;
  /* Taken straight from the logo: deep blue house, light blue squeegee */
  --brand:        #3868e8;
  --brand-deep:   #2350c4;
  --brand-bright: #58a8d8;
  --brand-glow:   #8fcbe8;
  --teal:         #58a8d8;
  --teal-soft:    #d3ebf6;
  --gold:         #f2a413;
  --gold-soft:    #fde3ab;
  --paper:        #ffffff;
  --mist:         #f2fafe;
  --line:         rgba(8, 25, 42, .09);

  /* Type */
  --font-display: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --shell:  1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --sect:   clamp(4.5rem, 9vw, 8rem);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  /* Elevation */
  --lift-1: 0 1px 2px rgba(8,25,42,.06), 0 4px 14px rgba(8,25,42,.05);
  --lift-2: 0 2px 6px rgba(8,25,42,.06), 0 14px 40px rgba(8,25,42,.09);
  --lift-3: 0 4px 12px rgba(8,25,42,.08), 0 28px 70px rgba(8,25,42,.14);

  /* Written by script.js — how far down the page you are, 0 → 1 */
  --sp: 0;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink-2);
  background: #f7fcff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.022em;
  font-weight: 700;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--brand-glow); color: var(--ink); }

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

/* ==========================================================================
   AMBIENT BACKGROUND
   A calm blue-and-white wash. Nothing moves with the scroll — no parallax.
   The only response to scrolling is a very slow tonal shift, from cool white
   at the top of the page to a soft blue at the bottom (--sp, set by script.js).
   ========================================================================== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

/* The wash — white at top, gentle blue toward the bottom */
.ambient__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 78% at 15% 4%,   #ffffff 0%, rgba(255,255,255,0) 60%),
    radial-gradient(95%  72% at 88% 10%,  #eef7ff 0%, rgba(238,247,255,0) 64%),
    linear-gradient(180deg, #ffffff 0%, #f4fafe 40%, #e7f2fb 72%, #dceffa 100%);
}

/* A second, slightly deeper wash that fades in as you move down the page.
   This is a cross-fade in place — the layer never moves. */
.ambient__wash--deep {
  opacity: calc(var(--sp) * .75);
  background:
    radial-gradient(110% 80% at 82% 92%, #d3e9f8 0%, rgba(211,233,248,0) 66%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, #dff0fa 55%, #cfe7f7 100%);
  transition: opacity .4s linear;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell--narrow { width: min(100% - (var(--gutter) * 2), 760px); }

section { padding-block: var(--sect); position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  border-radius: 2px;
}

.sect-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sect-head--center { margin-inline: auto; text-align: center; }
.sect-head--center .eyebrow { justify-content: center; }

h2.sect-title { font-size: clamp(2rem, 1.35rem + 2.7vw, 3.35rem); }
.sect-sub {
  margin-top: 1.15rem;
  font-size: clamp(1.05rem, 1rem + .32vw, 1.22rem);
  color: var(--ink-soft);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.02rem 1.85rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: 1.005rem;
  font-weight: 700;
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease, background .22s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }

/* light wipes across the button on hover — same glass language as the bg */
.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg);
  transition: left .55s cubic-bezier(.3,.8,.3,1);
  z-index: -1;
}
.btn:hover::after { left: 125%; }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-bright), var(--brand) 52%, var(--brand-deep));
  box-shadow: 0 3px 10px rgba(56,104,232,.30), 0 14px 34px rgba(56,104,232,.30);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(56,104,232,.34), 0 22px 46px rgba(56,104,232,.36);
}

.btn--gold {
  background: linear-gradient(135deg, #ffc75a, var(--gold) 55%, #d98708);
  color: #3d2600;
  box-shadow: 0 3px 10px rgba(242,164,19,.30), 0 14px 34px rgba(242,164,19,.32);
}
.btn--gold:hover { transform: translateY(-3px); }

.btn--ghost {
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border: 1.5px solid rgba(8,25,42,.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--lift-1);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  color: var(--brand-deep);
  box-shadow: var(--lift-2);
}

.btn--lg { padding: 1.18rem 2.35rem; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(-1px) scale(.99); }

/* ==========================================================================
   Header
   ========================================================================== */
.masthead {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-block: 1.05rem;
  transition: padding .28s ease, background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity .28s ease, border-color .28s ease;
}
.masthead.is-stuck { padding-block: .62rem; }
.masthead.is-stuck::before { opacity: 1; border-bottom-color: var(--line); box-shadow: 0 6px 30px rgba(8,25,42,.07); }

.masthead__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  margin-right: auto;
  flex: none;
}
.brand__mark {
  width: 46px; height: 38px;
  flex: none;
  object-fit: contain;
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
}
.brand:hover .brand__mark { transform: scale(1.06); }
.brand__text { display: grid; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -.03em;
  color: var(--ink);
}
.brand__name b { color: var(--brand); font-weight: 800; }
.brand__tag {
  font-size: .655rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: .3rem;
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  position: relative;
  padding: .55rem .8rem;
  border-radius: 10px;
  font-size: .945rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: .3rem;
  width: 0; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transform: translateX(-50%);
  transition: width .25s cubic-bezier(.2,.8,.3,1);
}
.nav a:hover { color: var(--brand-deep); }
.nav a:hover::after,
.nav a.is-current::after { width: calc(100% - 1.7rem); }
.nav a.is-current { color: var(--brand-deep); }

/* The nav's own CTA is for the mobile menu only — on desktop the button in
   the header bar covers it, and two of them side by side looks amateurish. */
.nav .btn { display: none; }

.masthead__cta { display: flex; align-items: center; gap: .6rem; flex: none; }
.masthead__cta .btn { padding: .78rem 1.35rem; font-size: .93rem; }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  padding: .6rem .9rem;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.phone-link svg { width: 17px; height: 17px; color: var(--brand); }
.phone-link:hover { color: var(--brand-deep); background: rgba(56,104,232,.09); }

/* Menu toggle */
.menu-btn {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.8);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.menu-btn span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s cubic-bezier(.2,.8,.3,1), opacity .18s ease;
}
.menu-btn span + span { margin-top: 5px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 1.5rem + 4.3vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
}
.hero h1 .shine {
  background: linear-gradient(100deg, var(--brand-deep), var(--brand) 45%, var(--brand-bright) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem);
  color: var(--brand-deep);
  margin-top: 1.3rem;
  font-weight: 500;
}
.hero__lede {
  margin-top: 1.1rem;
  font-size: clamp(1.06rem, 1rem + .35vw, 1.19rem);
  color: var(--ink-soft);
  max-width: 33rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.15rem;
}
.hero__note {
  margin-top: 1.15rem;
  font-size: .93rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.hero__note svg { width: 16px; height: 16px; color: #16a34a; flex: none; }

/* Trust strip */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2.4rem;
}
.trust__chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.05rem;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--lift-1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-2);
}
.trust__chip svg { width: 16px; height: 16px; color: var(--brand); flex: none; }
.trust__chip.is-gold svg { color: var(--gold); }
.trust__chip.is-green svg { color: #16a34a; }

.hero__visual { position: relative; }

/* The hero pane — a real photo behind a sheet of glass */
.pane {
  position: relative;
  /* The hero photo is 3:4. Matching the frame to it means nothing gets cropped. */
  aspect-ratio: 3 / 4;
  border-radius: var(--r-xl);
  overflow: hidden;
  /* the sheen sweeps well past the right edge; without containment it inflates
     the document width even though it's clipped out of sight */
  contain: paint;
  background: linear-gradient(150deg, #e8f5ff, #bfdff6 55%, #9fcdee);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.55),
    var(--lift-3);
  transition: transform .5s cubic-bezier(.2,.8,.3,1), box-shadow .5s ease;
}
.pane:hover { transform: translateY(-6px); }
.pane img { width: 100%; height: 100%; object-fit: cover; }

.pane__frame {
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.9),
    inset 0 0 0 9px rgba(8,25,42,.06),
    inset 0 -70px 90px -50px rgba(8,25,42,.35);
  pointer-events: none;
}
/* the glint that travels across the glass */
.pane__glint {
  position: absolute;
  top: -55%;
  left: -45%;
  width: 34%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: rotate(19deg);
  filter: blur(11px);
  pointer-events: none;
  animation: glint 7.5s cubic-bezier(.5,0,.5,1) 1.6s infinite;
}
@keyframes glint {
  0%, 66%  { transform: translateX(0)     rotate(19deg); opacity: 0; }
  70%      { opacity: 1; }
  100%     { transform: translateX(620%)  rotate(19deg); opacity: 0; }
}

/* floating stat card over the pane */
.pane__badge {
  position: absolute;
  right: clamp(-8px, -1vw, 0px);
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .95rem 1.3rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--lift-3);
  animation: bob 5.5s ease-in-out infinite;
}
.pane__badge .grade {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pane__badge .lbl { font-size: .78rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.pane__badge .lbl small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .72rem; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.2,.8,.3,1), transform .75s cubic-bezier(.2,.8,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ==========================================================================
   Cards / surfaces
   ========================================================================== */
.glass {
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.85);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: var(--lift-2);
  border-radius: var(--r-lg);
}

/* ---------- Services ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(288px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
/* three services, so hold three across rather than letting one orphan */
.svc-grid--three { grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr)); }

/* what each service includes */
.svc__incl {
  list-style: none;
  padding: 0;
  margin: .25rem 0 0;
  display: grid;
  gap: .5rem;
}
.svc__incl li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .93rem;
  color: var(--ink-2);
}
.svc__incl li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 12px;
  height: 6px;
  border-left: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.svc-note {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.6rem, 2.4vw, 2.1rem);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: var(--lift-1);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-bright), var(--brand), var(--gold));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .38s cubic-bezier(.2,.8,.3,1);
}
.svc:hover {
  transform: translateY(-7px);
  box-shadow: var(--lift-3);
  border-color: rgba(88,168,216,.5);
}
.svc:hover::before { transform: scaleX(1); }

.svc__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(88,168,216,.20), rgba(56,104,232,.14));
  color: var(--brand-deep);
  flex: none;
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.svc__icon svg { width: 27px; height: 27px; }
.svc:hover .svc__icon { transform: scale(1.09) rotate(-5deg); }

.svc h3 { font-size: 1.24rem; }
.svc p { color: var(--ink-soft); font-size: .975rem; }
.svc__go {
  margin-top: auto;
  padding-top: .45rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--brand-deep);
}
.svc__go svg { width: 15px; height: 15px; transition: transform .28s ease; }
.svc:hover .svc__go svg { transform: translateX(5px); }

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding: clamp(1.7rem, 2.4vw, 2.15rem);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--lift-1);
}
.step__n {
  counter-increment: step;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-bright), var(--brand-deep));
  box-shadow: 0 8px 20px rgba(56,104,232,.32);
}
.step__n::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.15rem; margin-bottom: .55rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Split / story ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}
.story-cards { display: grid; gap: 1rem; }
.story-card {
  padding: clamp(1.45rem, 2.2vw, 1.9rem);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--lift-1);
  border-left: 4px solid var(--brand);
  transition: transform .28s ease, box-shadow .28s ease;
}
.story-card:nth-child(2) { border-left-color: var(--brand-bright); }
.story-card:nth-child(3) { border-left-color: var(--gold); }
.story-card:hover { transform: translateX(6px); box-shadow: var(--lift-2); }
.story-card h3 { font-size: 1.14rem; margin-bottom: .5rem; }
.story-card p { color: var(--ink-soft); font-size: .97rem; }

/* stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}
.stat {
  text-align: center;
  padding: 1.35rem .9rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--lift-1);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.3rem + 1.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { display: block; margin-top: .45rem; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }

/* ---------- Service area ---------- */
.area-wrap {
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: var(--r-xl);
  text-align: center;
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.9rem;
}
.area-chips span {
  padding: .58rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(88,168,216,.16), rgba(56,104,232,.10));
  border: 1px solid rgba(56,104,232,.18);
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand-deep);
  transition: transform .22s ease, background .22s ease;
}
.area-chips span:hover { transform: translateY(-3px); background: linear-gradient(140deg, rgba(88,168,216,.3), rgba(56,104,232,.2)); }
.area-note { margin-top: 1.8rem; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(.85rem, 1.6vw, 1.2rem);
}
.shot {
  position: relative;
  /* Ten of the eleven job photos are 3:4 portrait. A 4:3 landscape tile was
     cropping 44% off each one — heads, rooflines and ladders all cut away.
     Matching the tile to the photos means they show in full. */
  aspect-ratio: 3 / 4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(150deg, #e3f2fe, #b9dcf5 60%, #94c7e9);
  box-shadow: var(--lift-1);
  display: grid;
  place-items: center;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), box-shadow .35s ease;
}
.shot:nth-child(1), .shot:nth-child(6) { grid-row: span 1; }
.shot:hover { transform: translateY(-6px) scale(1.012); box-shadow: var(--lift-3); }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* work-5 is the only landscape photo in the set. Cropping it to a portrait tile
   would cut the gutter run in half, so it sits inside the tile whole, centred,
   with the card's gradient showing above and below. */
.shot--fit img { object-fit: contain; }
/* graceful placeholder shown until real photos are dropped in /images */
.shot__ph { display: grid; place-items: center; gap: .6rem; color: var(--brand-deep); opacity: .55; text-align: center; padding: 1rem; }
.shot__ph svg { width: 42px; height: 42px; }
.shot__ph span { font-size: .8rem; font-weight: 600; letter-spacing: .04em; }
.shot__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.1rem .95rem;
  background: linear-gradient(transparent, rgba(8,25,42,.78));
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.shot:hover .shot__cap { opacity: 1; transform: none; }
/* Touch devices have no hover state, so these captions would never appear on a
   phone or tablet — where most local customers see the site. Show them always. */
@media (hover: none) {
  .shot__cap { opacity: 1; transform: none; }
}

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(285px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.review {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.6rem, 2.3vw, 2rem);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--lift-1);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--lift-3); }
.review__stars { display: flex; gap: .18rem; color: var(--gold); }
.review__stars svg { width: 18px; height: 18px; }
.review blockquote { font-size: 1.03rem; color: var(--ink-2); line-height: 1.6; }
.review blockquote::before { content: "\201C"; }
.review blockquote::after  { content: "\201D"; }
.review__who {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .5rem;
  border-top: 1px solid var(--line);
}
.review__av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-bright), var(--brand-deep));
  flex: none;
}
.review__meta b { display: block; font-size: .92rem; color: var(--ink); }
.review__meta span { font-size: .8rem; color: var(--ink-soft); }
.review__src {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: rgba(56,104,232,.10);
  padding: .25rem .55rem;
  border-radius: 6px;
  margin-left: auto;
}

/* ==========================================================================
   Quote form
   ========================================================================== */
.quote { position: relative; }
.quote__panel {
  padding: clamp(1.6rem, 3.4vw, 3.2rem);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.95);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: var(--lift-3);
}
.quote__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}

.fieldset { border: 0; padding: 0; margin: 0 0 2.1rem; }
.fieldset:last-of-type { margin-bottom: 1.4rem; }
.legend {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.15rem;
}
.legend i {
  display: grid; place-items: center;
  width: 27px; height: 27px;
  border-radius: 8px;
  font-style: normal;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-bright), var(--brand-deep));
  flex: none;
}

.rows { display: grid; gap: 1.05rem; }
.rows--2 { grid-template-columns: 1fr 1fr; }
.rows--3 { grid-template-columns: 2fr 1fr 1fr; }

.field { display: grid; gap: .45rem; }
.field > label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
}
.field .req { color: #dc2626; }
.field .hint { font-size: .8rem; font-weight: 500; color: var(--ink-soft); }

.control {
  width: 100%;
  padding: .92rem 1.05rem;
  border: 1.5px solid rgba(8,25,42,.14);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.control::placeholder { color: #9aacbd; }
.control:hover { border-color: rgba(8,25,42,.24); }
.control:focus {
  outline: 0;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(56,104,232,.15);
}
textarea.control { min-height: 118px; resize: vertical; }
select.control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f5c74' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 17px;
  padding-right: 2.6rem;
  cursor: pointer;
}

/* --- Big tappable service picker --- */
.picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(215px, 100%), 1fr));
  gap: .7rem;
}
.pick { position: relative; }
.pick input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}
.pick__face {
  display: flex;
  align-items: center;
  gap: .8rem;
  height: 100%;
  padding: 1rem 1.05rem;
  border: 2px solid rgba(8,25,42,.12);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.78);
  transition: border-color .22s ease, background .22s ease, transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease;
}
.pick__ico {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  flex: none;
  background: linear-gradient(140deg, rgba(88,168,216,.20), rgba(56,104,232,.13));
  color: var(--brand-deep);
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.pick__ico svg { width: 21px; height: 21px; }
.pick__txt { display: grid; gap: .12rem; min-width: 0; }
.pick__txt b { font-family: var(--font-display); font-size: .96rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.pick__txt span { font-size: .79rem; color: var(--ink-soft); line-height: 1.35; }
.pick__tick {
  margin-left: auto;
  width: 23px; height: 23px;
  border-radius: 50%;
  border: 2px solid rgba(8,25,42,.18);
  display: grid; place-items: center;
  flex: none;
  transition: background .22s ease, border-color .22s ease, transform .22s cubic-bezier(.2,.8,.3,1);
}
.pick__tick svg { width: 13px; height: 13px; color: #fff; opacity: 0; transform: scale(.5); transition: opacity .18s ease, transform .18s cubic-bezier(.2,.8,.3,1); }

.pick input:hover + .pick__face {
  border-color: rgba(88,168,216,.6);
  transform: translateY(-2px);
  box-shadow: var(--lift-1);
}
.pick input:focus-visible + .pick__face {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(56,104,232,.18);
}
.pick input:checked + .pick__face {
  border-color: var(--brand);
  background: linear-gradient(140deg, rgba(88,168,216,.14), rgba(255,255,255,.92));
  box-shadow: 0 3px 10px rgba(56,104,232,.14), 0 12px 28px rgba(56,104,232,.14);
}
.pick input:checked + .pick__face .pick__ico {
  background: linear-gradient(140deg, var(--brand-bright), var(--brand-deep));
  color: #fff;
  transform: scale(1.05);
}
.pick input:checked + .pick__face .pick__tick {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.08);
}
.pick input:checked + .pick__face .pick__tick svg { opacity: 1; transform: scale(1); }

/* --- Follow-up panels, revealed once a service is picked --- */
.subs { display: grid; gap: .85rem; margin-top: 1.1rem; }

.sub {
  padding: 1.15rem 1.25rem 1.3rem;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(238,247,255,.9), rgba(255,255,255,.75));
  border: 1px solid rgba(56,104,232,.16);
  border-left: 3px solid var(--brand);
  animation: subIn .32s cubic-bezier(.2,.8,.3,1);
}
.sub[hidden] { display: none; }

@keyframes subIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

.sub__head {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 1.05rem;
}
.sub__head svg { width: 17px; height: 17px; flex: none; }

.sub__row { display: grid; gap: .5rem; }
.sub__row + .sub__row { margin-top: 1rem; }

.sub__label {
  font-size: .83rem;
  font-weight: 700;
  color: var(--ink);
}

/* the follow-up chips sit a touch smaller than the main ones */
.sub .chip__face {
  padding: .5rem .9rem;
  font-size: .865rem;
  background: rgba(255,255,255,.9);
}

/* --- Segmented chip choices (radio) --- */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip__face {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .68rem 1.15rem;
  border: 2px solid rgba(8,25,42,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  font-size: .91rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .2s cubic-bezier(.2,.8,.3,1);
}
.chip__face svg { width: 15px; height: 15px; }
.chip input:hover + .chip__face { border-color: rgba(88,168,216,.6); transform: translateY(-2px); }
.chip input:focus-visible + .chip__face { box-shadow: 0 0 0 4px rgba(56,104,232,.18); }
.chip input:checked + .chip__face {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-bright), var(--brand-deep));
  color: #fff;
  box-shadow: 0 3px 10px rgba(56,104,232,.26), 0 10px 24px rgba(56,104,232,.26);
}

/* consent + submit */
.consent {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: 1.05rem 1.15rem;
  border-radius: var(--r-sm);
  background: rgba(238,246,252,.85);
  border: 1px solid rgba(56,104,232,.16);
}
.consent input {
  width: 21px; height: 21px;
  margin: .12rem 0 0;
  accent-color: var(--brand);
  flex: none;
  cursor: pointer;
}
.consent label { font-size: .845rem; color: var(--ink-soft); line-height: 1.55; cursor: pointer; }
.consent a { color: var(--brand-deep); font-weight: 600; }

.submit-row { margin-top: 1.5rem; display: grid; gap: .9rem; }
.submit-note { font-size: .845rem; color: var(--ink-soft); text-align: center; }

/* Spam trap. Hidden the standard accessible way rather than parked off-screen
   at -9999px, which inflates the document width. */
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* form status messages */
.form-status { display: none; margin-top: 1.1rem; padding: 1rem 1.15rem; border-radius: var(--r-sm); font-size: .95rem; font-weight: 600; }
.form-status.is-on { display: block; }
.form-status.is-ok  { background: #e7f8ee; color: #15803d; border: 1px solid #86efac; }
.form-status.is-bad { background: #fdeceb; color: #b91c1c; border: 1px solid #fca5a5; }

/* success takeover */
.thanks { display: none; text-align: center; padding: clamp(2rem, 5vw, 3.5rem) 1rem; }
.thanks.is-on { display: block; animation: pop .5s cubic-bezier(.2,.8,.3,1); }
.thanks__ring {
  width: 84px; height: 84px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #4ade80, #16a34a);
  box-shadow: 0 12px 34px rgba(22,163,74,.34);
}
.thanks__ring svg { width: 42px; height: 42px; color: #fff; }
.thanks h3 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.15rem); margin-bottom: .8rem; }
.thanks p { color: var(--ink-soft); max-width: 30rem; margin: 0 auto 1.6rem; }
@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

/* aside next to the form */
.aside-card {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.5rem, 2.4vw, 1.9rem);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, #ffffff 0%, #f0f9fe 55%, #e4f4fb 100%);
  border: 1px solid rgba(14,136,206,.16);
  color: var(--ink-2);
  box-shadow: var(--lift-2);
  overflow: hidden;
}
.aside-card::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  right: -80px; top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88,168,216,.18), transparent 70%);
}
.aside-card h3 { color: var(--ink); font-size: 1.25rem; position: relative; }
.aside-card .lede { font-size: .93rem; color: var(--ink-soft); position: relative; }
.aside-line {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  position: relative;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(8,25,42,.09);
}
.aside-line:first-of-type { border-top: 0; padding-top: 0; }
.aside-line svg { width: 19px; height: 19px; color: var(--brand); flex: none; margin-top: .18rem; }
.aside-line b { display: block; color: var(--ink); font-size: .95rem; font-family: var(--font-display); }
.aside-line a { color: var(--brand-deep); text-decoration: none; font-size: 1.05rem; font-weight: 700; }
.aside-line a:hover { text-decoration: underline; }
.aside-line span { font-size: .87rem; color: var(--ink-soft); display: block; }
.aside-card .btn { position: relative; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4.25rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  background: linear-gradient(150deg, #ffffff 0%, #eefaff 42%, #ddf3f6 100%);
  border: 1px solid rgba(14,136,206,.16);
  color: var(--ink-2);
  box-shadow: var(--lift-2);
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 18% 12%, rgba(88,168,216,.20), transparent 64%),
    radial-gradient(50% 50% at 86% 90%, rgba(88,168,216,.20), transparent 66%);
}
.band > * { position: relative; }
.band h2 { color: var(--ink); font-size: clamp(1.85rem, 1.4rem + 2.2vw, 2.9rem); }
.band p { margin: 1.15rem auto 0; max-width: 34rem; color: var(--ink-soft); font-size: 1.06rem; }
.band__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.1rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.foot {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, rgba(255,255,255,.85), #eef7fd);
  border-top: 1px solid rgba(14,136,206,.16);
  color: var(--ink-soft);
  padding-block: clamp(3rem, 5vw, 4.5rem) 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
}
.foot h4 {
  color: var(--ink);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.foot p { font-size: .94rem; }
.foot ul { list-style: none; padding: 0; display: grid; gap: .7rem; }
.foot a { color: var(--ink-soft); text-decoration: none; font-size: .94rem; transition: color .2s ease, padding-left .2s ease; }
.foot ul a:hover { color: var(--brand-deep); padding-left: 5px; }

.foot__tag { margin-top: 1.1rem; font-style: italic; color: var(--brand-deep); font-family: var(--font-display); font-weight: 500; }
.foot__blurb { margin-top: .9rem; max-width: 24rem; }

.foot__contact { display: grid; gap: .85rem; }
.foot__contact a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: var(--ink);
}
.foot__contact a:hover { color: var(--brand-deep); }
.foot__contact svg { width: 17px; height: 17px; color: var(--brand); flex: none; }

.hours-box {
  margin-top: 1.15rem;
  padding: .95rem 1.1rem;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(14,136,206,.14);
  font-size: .9rem;
}
.hours-box b { color: var(--ink); display: block; margin-bottom: .55rem; font-size: .84rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .18rem 0;
}
.hours-row span:first-child { color: var(--ink-2); font-weight: 600; }
.hours-row span:last-child  { color: var(--ink-soft); white-space: nowrap; }
.hours-live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .55rem;
  font-size: .82rem;
  font-weight: 700;
}
.hours-live::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: ping 2s ease-out infinite;
}
.hours-live.is-shut { color: #b91c1c; }
.hours-live.is-shut::before { background: #ef4444; animation: none; }
.hours-live.is-open { color: #15803d; }
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.social { display: flex; gap: .55rem; margin-top: 1.3rem; }
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(14,136,206,.16);
  box-shadow: var(--lift-1);
  transition: background .22s ease, transform .22s ease, border-color .22s ease;
}
.social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.social a:hover svg { color: #fff; }
.social svg { width: 18px; height: 18px; color: var(--brand-deep); transition: color .22s ease; }

.foot__base {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-block: 1.6rem;
  border-top: 1px solid rgba(8,25,42,.09);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .87rem;
}
.foot__legal { display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* ==========================================================================
   Mobile action bar
   ========================================================================== */
.dock {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  display: none;
  gap: .55rem;
  padding: .65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 26px rgba(8,25,42,.1);
}
.dock a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  padding: .88rem .5rem;
  border-radius: 13px;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease;
}
.dock a:active { transform: scale(.97); }
.dock svg { width: 17px; height: 17px; }
.dock__call { background: rgba(56,104,232,.11); color: var(--brand-deep); }
.dock__text { background: rgba(242,164,19,.15); color: #9a6503; }
.dock__quote { background: linear-gradient(135deg, var(--brand-bright), var(--brand-deep)); color: #fff; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-hero { padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.legal-hero h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.2rem); }
.legal-hero .eff {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.2rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.legal-hero .eff svg { width: 15px; height: 15px; color: var(--brand); }

.crumbs { display: flex; gap: .5rem; align-items: center; font-size: .87rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.crumbs a { text-decoration: none; color: var(--brand-deep); font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs svg { width: 13px; height: 13px; }

.legal-body {
  padding: clamp(1.75rem, 3.5vw, 3.25rem);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--lift-2);
}
.legal-body h2 {
  font-size: clamp(1.28rem, 1.15rem + .6vw, 1.6rem);
  margin: 2.5rem 0 .85rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.legal-body > h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body p { margin-bottom: 1.05rem; color: var(--ink-2); }
.legal-body ul { margin: 0 0 1.15rem 1.3rem; display: grid; gap: .5rem; color: var(--ink-2); }
.legal-body a { color: var(--brand-deep); font-weight: 600; }
.legal-body .lead { font-size: 1.09rem; color: var(--ink-soft); }

.legal-toc {
  padding: 1.35rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(238,246,252,.9);
  border: 1px solid rgba(56,104,232,.14);
  margin-bottom: 2.5rem;
}
.legal-toc b { display: block; font-family: var(--font-display); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--brand-deep); margin-bottom: .85rem; }
.legal-toc ol { margin: 0; padding-left: 1.15rem; display: grid; gap: .45rem; font-size: .93rem; }
.legal-toc a { color: var(--ink-2); text-decoration: none; font-weight: 500; }
.legal-toc a:hover { color: var(--brand-deep); text-decoration: underline; }

.legal-contact {
  margin-top: 2.5rem;
  padding: 1.6rem 1.75rem;
  border-radius: var(--r-md);
  background: linear-gradient(150deg, #f4fbff, #e2f4f8);
  border: 1px solid rgba(14,136,206,.18);
  color: var(--ink-2);
}
.legal-contact h3 { color: var(--ink); font-size: 1.12rem; margin-bottom: .85rem; }
.legal-contact a { color: var(--brand-deep); font-weight: 700; text-decoration: none; }
.legal-contact a:hover { text-decoration: underline; }
.legal-contact p { margin-bottom: .4rem; font-size: .95rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .quote__layout { grid-template-columns: 1fr; }
  /* relative, not static — the card's ::before glow is absolutely positioned,
     and a static parent lets it escape and widen the page */
  .aside-card { position: relative; top: auto; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

/* Below this the full nav gets cramped, so it folds into the menu button. */
@media (max-width: 1023px) {
  html { scroll-padding-top: 78px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  /* 4/3.4 cropped 36% off the portrait hero photo on phones. 4/5 keeps almost
     all of it while stopping the image running away down a small screen. */
  .pane { aspect-ratio: 4 / 5; }
  .split { grid-template-columns: 1fr; }
  .nav, .masthead__cta .btn, .phone-link span { display: none; }
  .menu-btn { display: grid; }
  .masthead__cta { gap: .35rem; }
  .phone-link { padding: .7rem; border: 1.5px solid var(--line); background: rgba(255,255,255,.8); }

  /* slide-down mobile menu */
  .nav {
    position: absolute;
    top: calc(100% + .55rem);
    left: 0; right: 0;
    display: grid;
    gap: .2rem;
    padding: 1rem;
    border-radius: var(--r-lg);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: var(--lift-3);
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-12px) scale(.98);
    pointer-events: none;
    transition: opacity .26s ease, transform .26s cubic-bezier(.2,.8,.3,1);
  }
  .nav.is-open { display: grid; opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: .95rem 1rem; border-radius: 12px; font-size: 1.02rem; }
  .nav a:hover { background: rgba(56,104,232,.08); }
  .nav a::after { display: none; }
  .nav .btn { display: inline-flex; margin-top: .5rem; }

  .dock { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 720px) {
  /* Portrait tiles show the photos uncropped, but stacked one-per-row on a
     phone the gallery ran to roughly 5,000px of scrolling. Two across keeps
     every photo whole and cuts the section to about a quarter of that. */
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot__cap { font-size: .72rem; padding: .55rem .6rem; }

  .rows--2, .rows--3 { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .foot__base { flex-direction: column; text-align: center; }
  .picker { grid-template-columns: 1fr; }
  .quote__panel { padding: 1.35rem 1.15rem; }
  .btn { width: 100%; }
  .hero__actions .btn, .band__actions .btn { width: 100%; }
  .review__src { margin-left: 0; }
  .review__who { flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .brand__tag { display: none; }
  .pane__badge { right: 4px; padding: .75rem 1rem; }
}

/* ==========================================================================
   Motion & print
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ambient__wash--deep { opacity: .4; }
  .pane { transform: none; }
}

@media print {
  .ambient, .masthead, .dock, .band, .quote { display: none !important; }
  body { background: #fff; color: #000; }
  .legal-body { box-shadow: none; border: 0; background: none; padding: 0; }
}
