/* ==========================================================================
   SteadyBars — Design System
   Palette comes straight from the brand sheet: Safety Blue (#3B70E8),
   Steady Orange (#ED672E), Foundation Gray (#F2F4F7), Secure Green (#1F7A4D),
   anchored by the deep navy used on the previous site (#1B2A57).
   Type scale runs large: the primary audience is 60+ and their adult children.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts — self-hosted variable woff2 (latin subset) so there is no third-party
   request on the critical path. The two "Fallback" faces are Arial with metric
   overrides computed from the real font files, so text set in the fallback
   occupies the same space and the swap causes no layout shift.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/manrope-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope Fallback';
  src: local('Arial');
  size-adjust: 104.22%;
  ascent-override: 102.29%;
  descent-override: 28.79%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Plus Jakarta Sans Fallback';
  src: local('Arial Bold'), local('Arial');
  size-adjust: 102.56%;
  ascent-override: 101.21%;
  descent-override: 21.65%;
  line-gap-override: 0%;
}

:root {
  /* Brand */
  --orange:       #ED672E;
  --orange-dk:    #C9501C;
  --orange-lt:    #F7935F;
  --orange-glow:  #FFB289;
  --orange-wash:  #FDEEE5;

  --blue:         #3B70E8;
  --blue-dk:      #2B57BE;
  --blue-lt:      #6E97F2;
  --blue-glow:    #9DBBF7;
  --blue-wash:    #E9F0FD;

  --green:        #1F7A4D;
  --green-wash:   #E4F3EB;

  /* Neutrals — cool navy family rather than pure grey */
  --ink:          #0F1B3D;
  --ink-2:        #16234B;
  --ink-3:        #1B2A57;
  --body:         #3B4867;
  --muted:        #66708A;
  --line:         #E1E6F0;
  --surface:      #FFFFFF;
  --surface-2:    #F2F4F7;
  --surface-3:    #E8ECF3;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Plus Jakarta Sans Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Manrope', 'Manrope Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --step--1: clamp(0.86rem, 0.83rem + 0.14vw, 0.94rem);
  --step-0:  clamp(1.03rem, 0.99rem + 0.19vw, 1.15rem);
  --step-1:  clamp(1.2rem, 1.13rem + 0.34vw, 1.42rem);
  --step-2:  clamp(1.42rem, 1.29rem + 0.62vw, 1.85rem);
  --step-3:  clamp(1.7rem, 1.45rem + 1.2vw, 2.5rem);
  --step-4:  clamp(2.05rem, 1.6rem + 2.1vw, 3.4rem);
  --step-5:  clamp(2.5rem, 1.75rem + 3.5vw, 4.6rem);

  /* Space + shape */
  --gutter:  clamp(1.15rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 8rem);
  --wrap:    1200px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(15, 27, 61, .06), 0 1px 2px rgba(15, 27, 61, .04);
  --shadow-md: 0 12px 32px -8px rgba(15, 27, 61, .14), 0 4px 10px -4px rgba(15, 27, 61, .08);
  --shadow-lg: 0 32px 70px -18px rgba(15, 27, 61, .26), 0 10px 24px -12px rgba(15, 27, 61, .14);
  --shadow-orange: 0 14px 34px -10px rgba(237, 103, 46, .5);
  --shadow-blue: 0 14px 34px -10px rgba(59, 112, 232, .5);

  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);

  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  /* Decorative elements (hero rings, marquee, installer cutout) intentionally
     bleed past the viewport; clip on <html> too so iOS Safari can't pan sideways. */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
picture { display: contents; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue-lt);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -140%);
  z-index: 2000; background: var(--ink); color: #fff;
  padding: 14px 26px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700; text-decoration: none; transition: transform .25s var(--ease-out);
}
.skip-link:focus { transform: translate(-50%, 0); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   Motion primitives (opt-in via data attributes)
   -------------------------------------------------------------------------- */
/* Scroll reveals are scoped to .js (set by a one-line inline script in <head>)
   so the page is fully visible when JavaScript is blocked or fails. Nothing
   above the fold uses them — see .hero-in below. */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity .8s var(--ease-out) var(--reveal-delay, 0ms),
    transform .9s var(--ease-out) var(--reveal-delay, 0ms);
}
.js [data-reveal="left"]  { transform: translate3d(-40px, 0, 0); }
.js [data-reveal="right"] { transform: translate3d(40px, 0, 0); }
.js [data-reveal="scale"] { transform: scale(.94); }
.js [data-reveal="rise"]  { transform: translate3d(0, 60px, 0); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Hero entrance: CSS-only, transform-only. Content is painted at full opacity
   on the first frame, so Largest Contentful Paint is not delayed by the
   animation and the hero renders without JavaScript. */
.hero-in {
  animation: hero-rise .8s var(--ease-out) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}
@keyframes hero-rise {
  from { transform: translate3d(0, 22px, 0); }
  to   { transform: none; }
}
h1 .line { display: block; }

@keyframes kenburns {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.2) translate3d(-1.5%, -1.5%, 0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse-ring {
  0%   { transform: scale(.85); opacity: .8; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50%      { transform: translateY(9px); opacity: 1; }
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(.6); }
  to   { opacity: 1; transform: scale(1); }
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes border-spin { to { --angle: 360deg; } }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 800;
  font-size: var(--step-0);
  letter-spacing: .01em;
  line-height: 1.2;
  padding: 1.05em 1.9em;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--ease-back), box-shadow .3s var(--ease-out), background-color .25s, color .25s, border-color .25s, opacity .25s;
  min-height: 56px;
}
.btn svg { flex: none; }
.btn::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.32) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease-out);
}
.btn:hover::after, .btn:focus-visible::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.985); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .6; cursor: default; transform: none !important; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-lt), var(--orange) 45%, var(--orange-dk));
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { box-shadow: 0 20px 44px -10px rgba(237, 103, 46, .62); }

.btn-blue {
  background: linear-gradient(135deg, var(--blue-lt), var(--blue) 50%, var(--blue-dk));
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 34px -10px rgba(15, 27, 61, .35);
}
.btn-white:hover { background: var(--orange-wash); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .85); }

.btn-ghost-dark {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost-dark:hover { border-color: var(--ink); background: var(--surface-2); }

.btn-sm { padding: .7em 1.25em; min-height: 46px; font-size: var(--step--1); }
.btn-lg { padding: 1.2em 2.4em; font-size: var(--step-1); min-height: 64px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   Shared section furniture
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section); position: relative; }
.section-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .76rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
}
.section-head.center .eyebrow::after {
  content: ''; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.on-dark .eyebrow { color: var(--blue-glow); }

.section-title { font-size: var(--step-3); margin-bottom: .6rem; }
.section-title em { font-style: normal; color: var(--orange); }
.on-dark .section-title { color: #fff; }
.on-dark .section-title em { color: var(--orange-glow); }

.section-sub { font-size: var(--step-1); color: var(--muted); font-weight: 500; line-height: 1.55; }
.on-dark .section-sub { color: rgba(255, 255, 255, .72); }

.bg-gray { background: var(--surface-2); }
.bg-dark { background: var(--ink); }

.glow-blob { position: absolute; pointer-events: none; z-index: 0; }

/* --------------------------------------------------------------------------
   Scroll progress + header
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 1200;
}

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), height .4s var(--ease-out), backdrop-filter .4s;
}
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8, 14, 33, .78), rgba(8, 14, 33, 0));
  opacity: 1; transition: opacity .4s;
}
.site-header.is-stuck {
  height: 66px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.site-header.is-stuck::before { opacity: 0; }

.header-inner { display: flex; align-items: center; gap: 1.5rem; width: 100%; }
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 38px; width: auto; transition: height .4s var(--ease-out); filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }
.is-stuck .brand img { height: 32px; filter: none; }

.nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
.nav a {
  position: relative; text-decoration: none; white-space: nowrap;
  font-size: .93rem; font-weight: 700; color: #fff;
  padding: .55rem .65rem; border-radius: var(--r-sm);
  transition: color .25s, background-color .25s;
}
.is-stuck .nav a { color: var(--ink-3); }
.nav a::after {
  content: ''; position: absolute; left: .7rem; right: .7rem; bottom: .3rem; height: 2px;
  background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .35s var(--ease-out);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .6rem; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: 1.02rem; text-decoration: none;
  color: #fff; white-space: nowrap;
  padding: .65rem .4rem;
  transition: color .25s;
}
.is-stuck .header-phone { color: var(--ink); }
.header-phone:hover { color: var(--orange-glow); }
.is-stuck .header-phone:hover { color: var(--orange); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; border-radius: var(--r-sm);
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; border-radius: 2px; background: #fff;
  position: relative; transition: background-color .3s;
}
.is-stuck .nav-toggle span, .is-stuck .nav-toggle span::before, .is-stuck .nav-toggle span::after { background: var(--ink); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 24px; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .35s var(--ease-back), top .25s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent !important; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 1090;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 1rem var(--gutter) 1.6rem;
  display: grid; gap: .2rem;
  box-shadow: var(--shadow-md);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .5s var(--ease-out), visibility 0s linear .5s;
}
.mobile-menu.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path .5s var(--ease-out), visibility 0s;
}
.mobile-menu a {
  text-decoration: none; font-weight: 700; font-size: 1.1rem; color: var(--ink);
  padding: .85rem .4rem; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 960px);
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% 45%;
  transform: scale(1.06);
  animation: kenburns 26s ease-in-out infinite alternate;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(100deg, rgba(10, 18, 42, .96) 0%, rgba(10, 18, 42, .88) 36%, rgba(10, 18, 42, .55) 62%, rgba(10, 18, 42, .4) 100%),
    linear-gradient(180deg, rgba(10, 18, 42, .8) 0%, transparent 26%, transparent 62%, rgba(10, 18, 42, .88) 100%);
}
/* Brand watermark: concentric rings evoke the round grab-bar flanges */
.hero-rings {
  position: absolute; z-index: -1; pointer-events: none;
  right: -8%; top: 50%; width: min(56vw, 700px); translate: 0 -50%;
  opacity: .1; color: var(--blue-glow);
  animation: spin-slow 160s linear infinite;
}

.hero-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(157, 187, 247, .4);
  color: #E4ECFF;
  border-radius: var(--r-pill);
  padding: .5rem 1.05rem .5rem .7rem;
  font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1.4rem;
}
.live-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #46D07F; flex: none; }
.live-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #46D07F; animation: pulse-ring 2.2s var(--ease-out) infinite;
}

.hero h1 {
  /* Sized so "Grab Bar Installation" / "in Dallas–Fort Worth" each hold one line from 390px up. */
  font-size: clamp(2.2rem, 1.1rem + 2.6vw, 3.4rem);
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .45);
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--orange-glow), #FFD1B5 45%, var(--orange-lt));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, .82);
  max-width: 36ch; margin-bottom: 2rem; font-weight: 500;
}
.hero-sub strong { color: #fff; font-weight: 800; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.6rem; }
.hero-cta .btn { flex: 1 1 0; min-width: max-content; white-space: nowrap; padding-inline: 1.4em; }

.hero-assure {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .88rem; font-weight: 600; color: rgba(255, 255, 255, .66);
}
.hero-assure li { display: flex; align-items: center; gap: .45rem; list-style: none; }
.hero-assure svg { color: var(--orange-glow); flex: none; }

/* Credential strip: standalone badge artwork with a caption beneath.
   Sits on a frosted white panel in the hero (the CAPS badge is black), and on a
   soft tile (.trust-row-soft) in light sections. */
.trust-row {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-around;
  gap: .75rem 1rem; width: 100%;
  margin-top: 2rem; padding: 1.1rem 1.5rem;
  background: rgba(255, 255, 255, .94); border-radius: var(--r-lg);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, .55);
}
.trust-row-soft {
  margin-top: 1.6rem; padding: 1rem 1.4rem;
  background: var(--surface-2); border: 1px solid var(--line); box-shadow: none;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  min-width: 120px; text-align: center;
}
/* The CAPS badge carries small type; 120px is the smallest height at which
   "Certified Aging-in-Place Specialist" stays legible, so it sets the row height. */
.trust-icon {
  height: 120px; display: flex; align-items: center; justify-content: center;
}
.trust-icon img { height: 56px; width: auto; }
.trust-icon img[src*="badge-caps"] { height: 120px; }
.trust-glyph {
  display: grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%; color: #fff;
  background: linear-gradient(145deg, var(--blue-lt), var(--blue));
  box-shadow: 0 8px 18px -8px rgba(46, 110, 220, .65);
}
.trust-glyph svg { width: 30px; height: 30px; }
.trust-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-3); line-height: 1.25; white-space: nowrap;
}

/* Estimator card */
.estimator {
  position: relative;
  background: rgba(255, 255, 255, .97);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, .6);
  animation: floaty 7s ease-in-out infinite;
  box-shadow: var(--shadow-lg), 0 0 70px -14px rgba(59, 112, 232, .55), 0 0 120px -30px rgba(237, 103, 46, .45);
}
.estimator-tag {
  display: inline-block; background: var(--blue-wash); color: var(--blue-dk);
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: var(--r-pill); margin-bottom: .9rem;
}
.estimator h2 { font-size: var(--step-2); margin-bottom: .3rem; }
.estimator .hint { font-size: .88rem; color: var(--muted); margin-bottom: 1.3rem; }

.bar-picker { display: flex; gap: .45rem; margin-bottom: 1.3rem; }
.bar-picker button {
  flex: 1; min-height: 52px;
  background: var(--surface-2); border: 2px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer;
  font-weight: 800; font-size: 1.05rem; color: var(--ink-3);
  transition: all .3s var(--ease-back);
}
.bar-picker button:hover { border-color: var(--blue-lt); transform: translateY(-2px); }
.bar-picker button[aria-pressed="true"] {
  background: var(--ink); border-color: var(--ink); color: var(--orange-glow);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

.estimator-price {
  display: flex; align-items: baseline; gap: .5rem;
  padding: 1.1rem 1.25rem; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  color: #fff; margin-bottom: .55rem;
}
.estimator-price .amount {
  font-family: var(--font-display); font-size: clamp(2.3rem, 5vw, 3rem);
  font-weight: 800; color: var(--orange-glow); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.estimator-price .unit { font-size: .82rem; color: rgba(255, 255, 255, .6); font-weight: 700; }
.estimator-note {
  font-size: .82rem; color: var(--muted); text-align: center; margin-bottom: 1.1rem;
  font-variant-numeric: tabular-nums;
}
.estimator-note b { color: var(--green); }
.estimator .btn + .btn { margin-top: .55rem; }
.estimator-alt {
  display: block; width: 100%; margin-top: .8rem; padding: .25rem 0;
  background: none; border: 0; cursor: pointer; font: inherit; font-size: .84rem; font-weight: 700;
  color: var(--blue); text-align: center; text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: transparent; transition: text-decoration-color .25s, color .25s;
}
.estimator-alt:hover, .estimator-alt:focus-visible { text-decoration-color: currentColor; color: var(--orange); }
.estimator-foot {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: 1rem; font-size: .78rem; color: var(--muted); font-weight: 600; text-align: center;
}
.estimator-foot svg { color: var(--green); flex: none; }

.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; translate: -50% 0;
  display: grid; place-items: center; gap: .4rem;
  color: rgba(255, 255, 255, .55); font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
  text-decoration: none;
}
.scroll-cue svg { animation: bob 2.4s var(--ease-soft) infinite; }

/* --------------------------------------------------------------------------
   Trust marquee
   -------------------------------------------------------------------------- */
.marquee {
  background: var(--ink-2); color: rgba(255, 255, 255, .82);
  border-block: 1px solid rgba(157, 187, 247, .18);
  overflow: hidden; position: relative;
  padding-block: .95rem;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink-2), transparent); }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: .6rem;
  padding-inline: 1.6rem;
  font-size: .84rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span.dot { color: var(--orange); padding-inline: 0; }

/* --------------------------------------------------------------------------
   Stats / why it matters
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid; gap: clamp(1rem, 2.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.stat-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.9rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .8s var(--ease-out) .1s;
}
.stat-card.is-in::before { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.stat-value {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1;
  color: var(--orange); margin-bottom: .5rem;
  font-variant-numeric: tabular-nums; letter-spacing: -.03em;
}
.stat-label { font-size: .96rem; font-weight: 700; color: var(--ink-3); line-height: 1.45; }
.stat-source { font-size: .72rem; color: var(--muted); margin-top: .55rem; letter-spacing: .04em; }
.stats-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 2rem; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.price-formula {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .8rem 1.2rem;
  margin: -1rem auto 2.6rem; max-width: 760px;
}
.formula-chip {
  display: inline-flex; align-items: baseline; gap: .5rem;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--r-pill); padding: .7rem 1.3rem;
  font-weight: 700; color: var(--ink-3); font-size: .95rem;
}
.formula-chip b { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); letter-spacing: -.02em; }
.formula-chip.accent { border-color: var(--orange); background: var(--orange-wash); }
.formula-chip.accent b { color: var(--orange-dk); }
.formula-plus { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--muted); }

.price-grid {
  display: grid; gap: clamp(1rem, 2.2vw, 1.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: 1000px; margin-inline: auto;
}
.price-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.4rem 1.6rem 2rem;
  text-align: center;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(165deg, var(--ink), var(--ink-3)) padding-box,
    conic-gradient(from var(--angle), var(--orange), var(--blue-lt), var(--orange-glow), var(--orange)) border-box;
  color: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
  transform: scale(1.035);
  animation: border-spin 8s linear infinite;
}
.price-card.featured:hover { transform: scale(1.035) translateY(-8px); }

.badge-popular {
  position: absolute; top: -14px; left: 50%; translate: -50% 0;
  background: linear-gradient(135deg, var(--orange-lt), var(--orange));
  color: #fff; font-size: .68rem; font-weight: 900;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .45rem 1.1rem; border-radius: var(--r-pill);
  white-space: nowrap; box-shadow: 0 6px 18px -4px rgba(237, 103, 46, .6);
}
.price-qty {
  font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .7rem;
}
.featured .price-qty { color: var(--blue-glow); }
.price-amount {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 6vw, 3.9rem); line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums; letter-spacing: -.03em;
}
.featured .price-amount { color: var(--orange-glow); }
.price-each { font-size: .88rem; color: var(--muted); margin-top: .7rem; font-weight: 600; }
.featured .price-each { color: rgba(255, 255, 255, .62); }
.price-save {
  display: inline-block; margin-top: .8rem;
  background: var(--green-wash); color: var(--green);
  font-size: .74rem; font-weight: 800; letter-spacing: .06em;
  padding: .3rem .75rem; border-radius: var(--r-pill);
}
.featured .price-save { background: rgba(70, 208, 127, .16); color: #7FE0A6; }
.price-card > .btn { margin-top: auto; }
.price-card:has(> .btn) > *:nth-last-child(2) { margin-bottom: 1.6rem; }

.price-toggle-wrap { text-align: center; margin-top: 2rem; }
.price-toggle {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; border: 1.5px dashed var(--orange);
  color: var(--ink-3); font-weight: 800; font-size: .92rem;
  padding: .85rem 1.7rem; border-radius: var(--r-pill); cursor: pointer;
  transition: background-color .3s, transform .3s var(--ease-back);
}
.price-toggle:hover { background: var(--orange-wash); transform: translateY(-2px); }
.price-toggle svg { transition: transform .4s var(--ease-back); }
.price-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.price-extra {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease-out), opacity .45s;
  opacity: 0;
}
.price-extra.is-open { grid-template-rows: 1fr; opacity: 1; }
.price-extra > div { overflow: hidden; }
.price-extra .price-grid { margin-top: 1.5rem; }
.price-extra .price-card { padding: 1.8rem 1.2rem; }
.price-extra .price-amount { font-size: clamp(2.2rem, 4.5vw, 2.7rem); }

.price-assurance {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem;
  margin-top: 2.6rem; font-size: .9rem; font-weight: 700; color: var(--ink-3);
}
.price-assurance li { display: flex; align-items: center; gap: .5rem; list-style: none; }
.price-assurance svg { color: var(--blue); flex: none; }

.guarantee-strip {
  max-width: 860px; margin: 2.4rem auto 0;
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--blue-wash); border: 1px solid rgba(59, 112, 232, .25);
  border-radius: var(--r-md); padding: 1.1rem 1.4rem;
}
.guarantee-strip .g-icon {
  width: 48px; height: 48px; flex: none; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center;
}
.guarantee-strip b { color: var(--ink); display: block; font-size: 1rem; }
.guarantee-strip span { font-size: .92rem; color: var(--body); }

/* --------------------------------------------------------------------------
   Included grid
   -------------------------------------------------------------------------- */
.included {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--blue-dk), var(--blue) 55%, #2a5cc9);
}
.included .glow-blob {
  width: 620px; height: 620px; top: -240px; right: -180px;
  background: radial-gradient(circle, rgba(255, 178, 137, .35) 0%, rgba(255, 178, 137, .12) 40%, transparent 70%);
}
.included .eyebrow { color: #FFD9C4; }
.included .section-sub { color: rgba(255, 255, 255, .8); }

.include-grid {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  max-width: 1000px; margin-inline: auto;
  position: relative; z-index: 1;
}
.include-item {
  display: flex; align-items: center; gap: .95rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-md); padding: 1.1rem 1.25rem;
  color: #fff; font-size: 1rem; font-weight: 700;
  transition: background-color .35s, transform .35s var(--ease-out), border-color .35s;
}
.include-item:hover { background: rgba(255, 255, 255, .18); transform: translateY(-4px); border-color: rgba(255, 178, 137, .6); }
.check-ring { width: 34px; height: 34px; flex: none; }
.check-ring circle { fill: rgba(255, 178, 137, .18); stroke: var(--orange-glow); stroke-width: 1.5; }
.check-ring path {
  fill: none; stroke: var(--orange-glow); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 26; stroke-dashoffset: 26;
  transition: stroke-dashoffset .6s var(--ease-out) var(--reveal-delay, 0ms);
}
.include-item.is-in .check-ring path { stroke-dashoffset: 0; }

.included-cta { text-align: center; margin-top: 3rem; position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   Finishes
   -------------------------------------------------------------------------- */
.finish-showcase {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.finish-visual {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.finish-visual img { width: 100%; height: auto; display: block; }
.finish-zoom {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  cursor: zoom-in; position: relative; text-align: left;
}
.finish-zoom img { transition: transform .6s var(--ease-out); }
.finish-zoom:hover img { transform: scale(1.02); }
.finish-zoom:focus-visible { outline: 3px solid var(--blue-lt); outline-offset: -3px; }
.zoom-hint {
  position: absolute; top: 1rem; right: 1rem;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(15, 27, 61, .82); color: #fff; backdrop-filter: blur(6px);
  font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .45rem .8rem; border-radius: var(--r-pill);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.finish-zoom:hover .zoom-hint, .finish-zoom:focus-visible .zoom-hint { opacity: 1; transform: none; }
@media (hover: none) { .zoom-hint { opacity: 1; transform: none; } }

/* Lightbox (native <dialog>) */
.lightbox {
  border: 0; padding: 0; background: transparent; max-width: none; max-height: none;
  width: 100vw; height: 100dvh; margin: 0; inset: 0;
  display: none; place-items: center;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(8, 15, 38, .78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.lightbox-inner {
  position: relative; display: grid; gap: .9rem; justify-items: center;
  padding: 1rem; animation: pop-in .35s var(--ease-out);
}
.lightbox-inner img {
  width: auto; height: auto; max-width: min(92vw, 1080px); max-height: 82dvh;
  border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-lg);
}
.lightbox-caption { color: rgba(255, 255, 255, .85); font-weight: 600; font-size: .95rem; text-align: center; }
.lightbox-close {
  position: absolute; top: -.4rem; right: -.4rem; z-index: 1;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--ink); display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: background-color .25s, color .25s, transform .3s var(--ease-back);
}
.lightbox-close:hover { background: var(--orange); color: #fff; transform: rotate(90deg); }

/* Booking lightbox — the Google scheduler needs real height, so the frame
   fills most of the viewport rather than shrink-wrapping like the image one. */
.lightbox-booking .lightbox-inner { width: min(96vw, 1040px); }
.lightbox-frame {
  width: 100%; height: min(84dvh, 900px);
  border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-lg);
}
.lightbox-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.lightbox-caption a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.lightbox-caption a:hover { color: var(--orange-lt); }
.finish-visual .float-chip {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: var(--ink); color: #fff; border-radius: var(--r-md);
  padding: .75rem 1rem; font-size: .8rem; font-weight: 800; letter-spacing: .04em;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .6rem;
}
.finish-visual .float-chip b { color: var(--orange-glow); font-family: var(--font-display); font-size: 1.3rem; }

.finish-grid {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.finish-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: .9rem .9rem 1rem; text-align: center;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.finish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.finish-card img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: var(--r-sm); margin-bottom: .6rem; }
.finish-card b { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--ink); letter-spacing: -.01em; }
.finish-card span { display: block; font-size: .74rem; color: var(--muted); font-weight: 600; margin-top: .1rem; }

.spec-row {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.spec-item { display: flex; align-items: center; gap: .9rem; }
.spec-item .spec-icon {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  display: grid; place-items: center; color: var(--orange-glow);
}
.spec-item b { display: block; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.01em; }
.spec-item span { font-size: .8rem; color: rgba(255, 255, 255, .62); font-weight: 600; }

/* --------------------------------------------------------------------------
   Process timeline
   -------------------------------------------------------------------------- */
.process { position: relative; }
.process-track { position: relative; max-width: 1000px; margin-inline: auto; }
.process-line {
  position: absolute; left: 34px; top: 40px; bottom: 40px; width: 3px;
  background: var(--line); border-radius: 3px; overflow: hidden;
}
.process-line::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  transform: scaleY(var(--fill, 0)); transform-origin: 50% 0;
  transition: transform .2s linear;
}
.process-step {
  position: relative; display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 1.6rem; align-items: start;
  padding-bottom: 2.8rem;
}
.process-step:last-child { padding-bottom: 0; }
.step-dot {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--muted);
  position: relative; z-index: 1;
  transition: all .5s var(--ease-back);
}
.process-step.is-in .step-dot {
  border-color: var(--orange); color: var(--orange);
  box-shadow: 0 0 0 8px rgba(237, 103, 46, .1);
}
.step-body h3 { font-size: var(--step-2); margin-bottom: .45rem; padding-top: .7rem; }
.step-body p { color: var(--muted); font-size: 1.02rem; max-width: 60ch; }
.step-time {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-dk); background: var(--blue-wash);
  padding: .35rem .8rem; border-radius: var(--r-pill);
}

/* --------------------------------------------------------------------------
   Placement guide
   -------------------------------------------------------------------------- */
.place-grid {
  display: grid; gap: clamp(1rem, 2.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  max-width: 1080px; margin-inline: auto;
}
.place-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.7rem;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s;
}
.place-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.place-figure {
  background: linear-gradient(165deg, var(--surface-2), var(--surface-3));
  border-radius: var(--r-md); padding: 1.2rem; margin-bottom: 1.3rem;
  aspect-ratio: 4 / 3; display: grid; place-items: center;
}
.place-figure svg { width: 100%; height: 100%; }
.place-figure .fixture { fill: none; stroke: var(--ink-3); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: .42; }
.place-figure .tile { stroke: var(--muted); stroke-width: 1.2; opacity: .2; }
.place-figure .bar {
  fill: none; stroke: var(--orange); stroke-width: 7; stroke-linecap: round;
  stroke-dasharray: var(--len, 260); stroke-dashoffset: var(--len, 260);
  transition: stroke-dashoffset 1.1s var(--ease-out) var(--reveal-delay, 200ms);
}
.place-card.is-in .place-figure .bar { stroke-dashoffset: 0; }
.place-figure .anchor { fill: var(--blue); opacity: 0; transition: opacity .4s ease 1s; }
.place-card.is-in .place-figure .anchor { opacity: 1; }
.place-card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.place-card p { font-size: .96rem; color: var(--muted); }
.place-spec {
  display: inline-block; margin-top: .9rem;
  font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-dk); background: var(--blue-wash);
  padding: .35rem .75rem; border-radius: var(--r-pill);
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-item {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 1; background: var(--surface-3);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(15, 27, 61, .85));
  color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s var(--ease-out);
}
.gallery-item:hover figcaption { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.reviews { background: var(--ink); position: relative; overflow: hidden; }
.reviews .glow-blob {
  width: 680px; height: 680px; bottom: -280px; left: -200px;
  background: radial-gradient(circle, rgba(59, 112, 232, .45) 0%, rgba(59, 112, 232, .16) 42%, transparent 70%);
}

.rating-summary {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.rating-score {
  font-family: var(--font-display); font-size: 3.4rem; font-weight: 800;
  color: var(--orange-glow); line-height: 1;
}
.rating-meta { text-align: left; color: rgba(255, 255, 255, .7); font-size: .92rem; }
.rating-meta .stars { color: var(--orange-glow); font-size: 1.25rem; letter-spacing: .14em; }
.rating-meta a { color: var(--blue-glow); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(157, 187, 247, .4); }
.rating-meta a:hover { border-bottom-color: var(--blue-glow); }

.review-viewport { overflow: hidden; position: relative; z-index: 1; }
.review-track {
  display: flex; gap: clamp(1rem, 2.2vw, 1.5rem);
  transition: transform .7s var(--ease-out);
}
.review-card {
  flex: 0 0 calc((100% - 2 * clamp(1rem, 2.2vw, 1.5rem)) / 3);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg); padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
}
.review-card .quote-mark {
  font-family: var(--font-display); font-size: 3.6rem; line-height: .8;
  color: var(--orange); opacity: .7; margin-bottom: .4rem;
}
.review-card .stars { color: var(--orange-glow); letter-spacing: .14em; margin-bottom: .9rem; }
.review-card p {
  color: rgba(255, 255, 255, .88); font-size: 1.05rem; line-height: 1.65;
  margin-bottom: 1.4rem; flex: 1;
}
.review-author { display: flex; align-items: center; gap: .8rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: grid; place-items: center;
  font-weight: 900; color: #fff; font-size: .95rem;
}
.review-name { font-weight: 800; color: #fff; font-size: .95rem; }
.review-city { font-size: .8rem; color: rgba(255, 255, 255, .5); }

.review-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.4rem; position: relative; z-index: 1; }
.review-nav[hidden] { display: none; }
.review-btn {
  width: 50px; height: 50px; border-radius: 50%;
  background: transparent; border: 1.5px solid rgba(255, 255, 255, .28);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: all .3s var(--ease-back);
}
.review-btn:hover:not(:disabled) { background: var(--orange); border-color: var(--orange); color: #fff; transform: scale(1.08); }
.review-btn:disabled { opacity: .3; cursor: default; }
.review-dots { display: flex; gap: .15rem; }
.review-dots button {
  min-width: 36px; height: 32px; padding: 0; border: 0; cursor: pointer;
  background: none; display: grid; place-items: center;
}
.review-dots button::before {
  content: ''; display: block;
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  transition: width .35s var(--ease-out), background-color .35s var(--ease-out), border-radius .35s;
}
.review-dots button[aria-current="true"]::before { background: var(--orange-glow); width: 26px; border-radius: var(--r-pill); }

.review-cta { text-align: center; margin-top: 2.2rem; position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   About / locally owned
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
.about-media { position: relative; }
.about-media .van {
  aspect-ratio: 3 / 2; display: grid; place-items: center;
  /* matches the backdrop baked into van.jpg so the letterbox is invisible */
  background: #F8F7F8;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.about-media .van img { width: 100%; height: 100%; object-fit: contain; }
.about-media .team {
  position: absolute; left: -11%; bottom: -7%; width: 26%;
  filter: drop-shadow(0 20px 30px rgba(15, 27, 61, .3));
}
.about-copy h2 { font-size: var(--step-3); margin-bottom: 1rem; }
.about-copy h2 em { font-style: normal; color: var(--orange); }
.about-copy p { color: var(--muted); margin-bottom: 1rem; font-size: 1.02rem; }
.about-copy blockquote {
  font-family: var(--font-display); font-weight: 800; font-size: var(--step-1);
  color: var(--ink); border-left: 4px solid var(--orange); padding-left: 1rem; margin: 1.4rem 0;
  letter-spacing: -.01em;
}
/* --------------------------------------------------------------------------
   Service area
   -------------------------------------------------------------------------- */
.area-hero {
  display: grid; gap: clamp(1rem, 2.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 2.6rem;
}
.city-card {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--r-md); padding: 1.7rem;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-left-color .45s;
}
.city-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-left-color: var(--orange); }
.city-card h3 { font-size: var(--step-1); margin-bottom: .6rem; }
.city-card p { font-size: .96rem; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; max-width: 900px; margin: 0 auto 2.4rem; }
.chip {
  background: var(--surface); border: 1px solid var(--blue); color: var(--blue-dk);
  font-size: .82rem; font-weight: 800; letter-spacing: .05em;
  padding: .5rem 1.1rem; border-radius: var(--r-pill);
  transition: all .3s var(--ease-back);
}
.chip:hover { background: var(--blue); color: #fff; transform: translateY(-3px) scale(1.04); }

/* Commercial strip */
.commercial {
  background: linear-gradient(135deg, var(--ink-3), var(--ink));
  color: #fff; border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid; gap: 1.6rem; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  align-items: center;
}
.commercial h3 { color: #fff; font-size: var(--step-2); margin-bottom: .6rem; }
.commercial h3 em { font-style: normal; color: var(--orange-glow); }
.commercial p { color: rgba(255, 255, 255, .74); font-size: 1rem; }
.commercial ul { list-style: none; display: grid; gap: .45rem; margin-top: 1rem; }
.commercial li { display: flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 600; color: rgba(255, 255, 255, .86); }
.commercial li svg { color: var(--orange-glow); flex: none; }
.commercial .cta-col { display: grid; gap: .7rem; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem .3rem; text-align: left;
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 700; color: var(--ink);
  letter-spacing: -.01em;
  transition: color .25s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--line); display: grid; place-items: center;
  position: relative; margin-top: .2rem;
  transition: all .4s var(--ease-back);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--ink-3); border-radius: 2px;
  transition: transform .4s var(--ease-back), background-color .3s;
}
.faq-icon::before { width: 13px; height: 2px; }
.faq-icon::after  { width: 2px; height: 13px; }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--orange); border-color: var(--orange); rotate: 180deg; }
.faq-q[aria-expanded="true"] .faq-icon::before,
.faq-q[aria-expanded="true"] .faq-icon::after { background: #fff; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }

.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease-out);
}
.faq-a.is-open { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 3rem 1.6rem .3rem; color: var(--muted); font-size: 1.02rem; }

/* --------------------------------------------------------------------------
   Quote / booking form
   -------------------------------------------------------------------------- */
.quote {
  background: linear-gradient(170deg, var(--surface-2), var(--surface-3));
  position: relative; overflow: hidden;
}
.quote-shell {
  max-width: 780px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; position: relative; z-index: 1;
}
.quote-progress { height: 5px; background: var(--surface-3); }
.quote-progress i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  width: 33.33%; transition: width .55s var(--ease-out);
}
.quote-body { padding: clamp(1.6rem, 4vw, 2.8rem); }
.quote-steps { font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: .8rem; }
.quote-body h3 { font-size: var(--step-2); margin-bottom: .4rem; }
.quote-body .lede { color: var(--muted); margin-bottom: 1.8rem; font-size: 1rem; }

.fieldset { border: 0; }
.option-grid { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.option {
  position: relative; display: flex; align-items: center; gap: .8rem;
  border: 2px solid var(--line); border-radius: var(--r-md);
  padding: 1.05rem 1.1rem; cursor: pointer; background: var(--surface);
  font-weight: 700; color: var(--ink-3);
  transition: all .3s var(--ease-back);
}
.option:hover { border-color: var(--blue-lt); transform: translateY(-2px); }
.option input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.option .tick {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  border: 2px solid var(--line); display: grid; place-items: center;
  transition: all .3s var(--ease-back);
}
.option .tick::after {
  content: ''; width: 9px; height: 9px; border-radius: 50%; background: #fff;
  transform: scale(0); transition: transform .3s var(--ease-back);
}
.option:has(input:checked) { border-color: var(--orange); background: var(--orange-wash); box-shadow: 0 6px 18px -8px rgba(237, 103, 46, .45); }
.option:has(input:checked) .tick { background: var(--orange); border-color: var(--orange); }
.option:has(input:checked) .tick::after { transform: scale(1); }
.option:has(input:focus-visible) { outline: 3px solid var(--blue-lt); outline-offset: 2px; }

.field-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 800; color: var(--ink-3); letter-spacing: .02em; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface);
  border: 2px solid var(--line); border-radius: var(--r-sm);
  padding: .9rem 1rem; font-size: 1rem; min-height: 54px;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(59, 112, 232, .13);
}
.field .error { font-size: .8rem; font-weight: 700; color: var(--orange-dk); min-height: 0; }
.field.has-error input, .field.has-error select { border-color: var(--orange); }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .8rem; color: var(--muted); margin-top: 1rem; }
.consent input { margin-top: .3rem; accent-color: var(--blue); width: 18px; height: 18px; flex: none; }

.quote-actions { display: flex; gap: .8rem; margin-top: 1.8rem; align-items: center; }
.quote-actions .btn-back {
  background: none; border: 0; cursor: pointer;
  font-weight: 800; color: var(--muted); padding: .8rem .4rem;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color .25s;
}
.quote-actions .btn-back:hover { color: var(--ink); }
.quote-actions .btn { margin-left: auto; }

.quote-alt {
  text-align: center; margin-top: 1.6rem; font-size: .92rem; color: var(--muted);
}
.quote-alt a { font-weight: 800; color: var(--orange-dk); text-decoration: none; border-bottom: 2px solid rgba(237, 103, 46, .3); }
.quote-alt a:hover { border-bottom-color: var(--orange); }

.quote-success { text-align: center; padding: 1rem 0 .5rem; }
.quote-success .success-ring {
  width: 92px; height: 92px; margin: 0 auto 1.4rem;
  border-radius: 50%; background: var(--green-wash);
  display: grid; place-items: center;
  animation: pop-in .6s var(--ease-back) both;
}
.quote-success .success-ring svg { color: var(--green); }
.quote-success .success-ring path {
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: draw .6s var(--ease-out) .3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.quote-success h3 { margin-bottom: .6rem; }
.quote-success p { color: var(--muted); margin-bottom: 1.6rem; }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; }
.success-actions .btn svg { flex: none; }
.quote-success .success-note { font-size: .84rem; margin: 1rem 0 0; }
@media (max-width: 520px) {
  .success-actions { flex-direction: column; }
  .success-actions .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Final CTA + footer
   -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(150deg, var(--ink), #1c3a7a 60%, var(--ink));
  text-align: center; position: relative; overflow: hidden;
  isolation: isolate;
}
.final-cta .hero-rings {
  right: auto; left: 50%; translate: -50% -50%; width: min(80vw, 820px); opacity: .08; color: var(--orange-glow);
}
.final-cta > .wrap { position: relative; z-index: 1; }
.final-cta h2 { font-size: var(--step-4); color: #fff; margin-bottom: .8rem; }
.final-cta h2 em { font-style: normal; color: var(--orange-glow); }
.final-cta p { color: rgba(255, 255, 255, .7); font-size: var(--step-1); margin-bottom: 2.2rem; }
.final-cta .cta-row { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.final-phone {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.4rem); color: var(--orange-glow);
  text-decoration: none; margin-bottom: 1.6rem; letter-spacing: -.02em;
  transition: color .3s, transform .3s var(--ease-back);
}
.final-phone:hover { color: #FFD1B5; transform: scale(1.03); }

.compliance-bar {
  background: var(--orange); color: #fff;
  text-align: center; padding: 1rem var(--gutter);
  font-size: .86rem; font-weight: 700; letter-spacing: .04em;
}

.site-footer { background: var(--ink); color: rgba(255, 255, 255, .58); padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; border-top: 3px solid var(--blue); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; margin-bottom: 2.5rem; }
.site-footer .footer-logo { height: 34px; width: auto; margin-bottom: 1rem; }
.site-footer h4 { color: #fff; font-size: .95rem; font-family: var(--font-body); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer ul { list-style: none; display: grid; gap: .3rem; }
.site-footer a { color: rgba(255, 255, 255, .66); text-decoration: none; font-size: .93rem; transition: color .25s; }
.site-footer ul a { display: inline-block; padding-block: .3rem; }
.site-footer a:hover { color: var(--orange-glow); }
.site-footer p { font-size: .92rem; }
.footer-legal { font-size: .78rem; color: rgba(255, 255, 255, .45); margin-top: 1rem; max-width: 40ch; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .82rem;
}
.footer-bottom .links { display: flex; flex-wrap: wrap; gap: .3rem 1.1rem; }

/* --------------------------------------------------------------------------
   Sticky mobile action bar + back to top
   -------------------------------------------------------------------------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1150;
  display: none; gap: 1px;
  background: rgba(15, 27, 61, .12);
  transform: translateY(110%);
  transition: transform .5s var(--ease-out);
  box-shadow: 0 -6px 24px rgba(15, 27, 61, .18);
  padding-bottom: env(safe-area-inset-bottom);
}
.action-bar.is-visible { transform: translateY(0); }
.action-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: .7rem .4rem; text-decoration: none;
  font-size: .74rem; font-weight: 800; letter-spacing: .04em;
  min-height: 60px;
}
.action-bar .ab-call  { background: var(--orange); color: #fff; }
.action-bar .ab-text  { background: var(--blue); color: #fff; }
.action-bar .ab-quote { background: var(--ink); color: #fff; }

.to-top {
  position: fixed; right: 20px; bottom: 24px; z-index: 1140;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--ink); color: var(--orange-glow);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px) scale(.85); pointer-events: none;
  transition: all .4s var(--ease-back);
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--orange); color: #fff; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1120px) {
  .nav a { font-size: .86rem; padding: .5rem .5rem; }
  .header-phone { font-size: .95rem; }
}

@media (max-width: 1080px) {
  .review-card { flex: 0 0 calc((100% - clamp(1rem, 2.2vw, 1.5rem)) / 2); }
  .finish-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { min-height: 0; }
  .hero-sub { max-width: 48ch; }
  .estimator { max-width: 460px; animation: none; }
  .hero-rings { opacity: .06; right: -25%; width: 90vw; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .header-actions { margin-left: auto; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.featured { transform: none; order: -1; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .price-extra .price-grid { max-width: 420px; }
  .finish-showcase { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 560px; margin-inline: auto; }
  .commercial { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .brand img { height: 30px; }
  .header-phone span { display: none; }
  .review-card { flex: 0 0 100%; }
  .action-bar { display: flex; }
  body { padding-bottom: 62px; }
  .to-top { display: none; }
  .process-line { left: 26px; }
  .process-step { grid-template-columns: 54px minmax(0, 1fr); gap: 1.1rem; }
  .step-dot { width: 54px; height: 54px; font-size: 1.25rem; }
  .step-body h3 { padding-top: .35rem; }
  .hero-cta .btn { flex-basis: 100%; min-width: 0; white-space: normal; }
  .trust-row { gap: .6rem .5rem; padding: 1rem .6rem; }
  .trust-item { min-width: 0; flex: 1 1 0; }
  .trust-label { white-space: normal; font-size: .64rem; }
  .trust-icon { height: 110px; }
  .trust-icon img { height: 44px; }
  .trust-icon img[src*="badge-caps"] { height: 110px; }
  .trust-glyph { width: 54px; height: 54px; }
  .trust-glyph svg { width: 26px; height: 26px; }
  .faq-a p { padding-right: 1rem; }
  .quote-actions { flex-wrap: wrap; }
  .quote-actions .btn { width: 100%; margin-left: 0; order: -1; }
  .final-cta .cta-row .btn { width: 100%; max-width: 380px; }
  .finish-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .bar-picker { flex-wrap: wrap; }
  .bar-picker button { flex: 1 1 28%; }
  .rating-summary { gap: 1rem; }
  .formula-chip { width: 100%; justify-content: center; }
  .formula-plus { display: none; }
}

/* --------------------------------------------------------------------------
   Reduced motion — the audience skews older; honour the preference fully.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .line-mask > span { transform: none !important; }
  .check-ring path, .place-figure .bar { stroke-dashoffset: 0 !important; }
  .place-figure .anchor { opacity: 1 !important; }
  .marquee-track { animation: none !important; }
  .hero-media img { animation: none !important; transform: scale(1.02) !important; }
}

@media print {
  .site-header, .action-bar, .to-top, .scroll-cue, .marquee { display: none !important; }
  body { padding-bottom: 0; }
}
