/* =========================================================
   APEX SHINE DETAILING — Design System
   Demonstration build · Upscale Sites
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --void:    #06080B;
  --carbon:  #0B0E13;
  --slate:   #121820;
  --slate-2: #1A222C;
  --slate-3: #232D39;

  /* Champagne bronze. Brushed trim, not neon — metal reflects, it does not
     emit, so the accent carries a specular highlight (--trim-hi) instead of a
     glow. 8.84:1 on --void, so it is legible as text, not just decoration. */
  --trim:     #C6A874;
  --trim-2:   #A8894F;
  --trim-3:   #7E6538;
  --trim-hi:  #EFE0C2;
  --trim-dim: rgba(198,168,116,.10);
  --trim-glow: rgba(198,168,116,.26);
  /* Text that sits ON the accent. White fails here (2.27:1); this is 8.05:1. */
  --on-trim:  #1B1408;

  --white:  #F2F7FA;
  --grey:   #98A8B4;
  --grey-2: #6A7B87;
  --grey-3: #47555F;

  --gold:   #F5B62B;
  --line:   rgba(255,255,255,.09);
  --line-2: rgba(255,255,255,.16);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Sora", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 22px;

  --shell: 1200px;
  --gut: clamp(18px, 5vw, 52px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --glow: 0 0 0 1px rgba(198,168,116,.30), 0 10px 34px -20px rgba(0,0,0,.92);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--grey);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; background: var(--slate); }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.028em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

::selection { background: var(--trim); color: var(--void); }
:focus-visible { outline: 2px solid var(--trim); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--trim); color: var(--void);
  padding: 12px 18px; border-radius: var(--r-sm);
  transition: top .2s var(--ease); font-weight: 700; font-size: 14px;
}
.skip:focus { top: 12px; }

/* ---------- Layout ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
.shell-narrow { max-width: 800px; }
.shell-wide { max-width: 1440px; }

.section { padding-block: clamp(58px, 8vw, 118px); position: relative; }
.section-sm { padding-block: clamp(42px, 5vw, 72px); }
.section--panel { background: var(--carbon); }
.section--raise { background: linear-gradient(180deg, var(--carbon) 0%, var(--void) 100%); }

/* Ambient spotlights */
.glowtop { position: relative; overflow: hidden; }
.glowtop::before {
  content: ""; position: absolute; left: 50%; top: -30%; width: 900px; height: 620px;
  transform: translateX(-50%); pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(198,168,116,.045), transparent 62%);
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase;
  color: var(--trim);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--trim); flex: none; }
.eyebrow--center::before { display: none; }

.h-xl { font-size: clamp(2.5rem, 6.4vw, 4.6rem); line-height: 1; letter-spacing: -.04em; }
.h-lg { font-size: clamp(1.95rem, 4.2vw, 3.05rem); letter-spacing: -.035em; }
.h-md { font-size: clamp(1.4rem, 2.4vw, 1.95rem); letter-spacing: -.03em; }
.h-sm { font-size: clamp(1.08rem, 1.6vw, 1.25rem); letter-spacing: -.02em; }

.lead { font-size: clamp(1rem, 1.4vw, 1.14rem); color: var(--grey); line-height: 1.68; }
.muted { color: var(--grey-2); }
.small { font-size: .875rem; }
.tiny { font-size: .78rem; }
.hl { color: var(--trim); }
.wht { color: var(--white); }

.sec-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 58px); }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--split { max-width: none; display: grid; gap: 22px 56px; align-items: end; }
@media (min-width: 900px) { .sec-head--split { grid-template-columns: 1.1fr .9fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; border-radius: var(--r);
  font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  border: 1.5px solid transparent; cursor: pointer; line-height: 1.2;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease),
              transform .18s var(--ease), box-shadow .3s var(--ease);
  text-align: center; position: relative; overflow: hidden;
}
.btn svg { flex: none; transition: transform .3s var(--ease-out); }
.btn:hover svg.arr { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(180deg, var(--trim) 0%, var(--trim-2) 100%);
  color: var(--on-trim);
  box-shadow: 0 0 0 1px rgba(198,168,116,.55), 0 8px 22px -14px rgba(0,0,0,.9);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--trim-hi), 0 14px 30px -16px rgba(0,0,0,.95); }
.btn-primary:active { transform: translateY(0); }
/* gloss sweep */
.btn-primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); transition: left .65s var(--ease-out);
}
.btn-primary:hover::after { left: 130%; }

.btn-ghost { border-color: var(--line-2); color: var(--white); background: rgba(255,255,255,.03); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--trim); color: var(--trim); transform: translateY(-2px); }

.btn-solid { background: var(--white); color: var(--void); }
.btn-solid:hover { background: var(--trim); transform: translateY(-2px); }

.btn-lg { padding: 18px 32px; font-size: 16px; border-radius: var(--r); }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 14.5px; color: var(--trim);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: border-color .25s var(--ease), gap .25s var(--ease);
}
.link-arrow:hover { border-color: var(--trim); gap: 11px; }

/* ---------- Header ---------- */
.topbar {
  background: var(--carbon); border-bottom: 1px solid var(--line);
  font-size: 12.5px; color: var(--grey-2);
}
.topbar .shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 38px; }
.topbar-list { display: flex; align-items: center; gap: 20px; list-style: none; padding: 0; }
.topbar-list li { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar svg { color: var(--trim); opacity: .8; flex: none; }
.topbar a:hover { color: var(--white); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #3BD97F; flex: none;
  box-shadow: 0 0 0 3px rgba(59,217,127,.18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .45 } }
@media (max-width: 1000px) { .topbar { display: none; } }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,8,11,.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); background: rgba(6,8,11,.92); }
.header .shell { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 70px; }

.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand-mark { width: 36px; height: 36px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display); font-weight: 800; font-size: 18.5px;
  color: var(--white); letter-spacing: -.035em;
}
.brand-sub {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--trim); font-weight: 700; margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 9px 13px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 600; color: var(--grey);
  transition: color .2s var(--ease), background .2s var(--ease); position: relative;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav a[aria-current="page"] { color: var(--white); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; background: var(--trim); border-radius: 2px;
  box-shadow: 0 0 10px var(--trim-glow);
}

.header-cta { display: flex; align-items: center; gap: 9px; flex: none; }
.header-tel {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--white); padding: 9px 4px;
}
.header-tel svg { color: var(--trim); }
.header-tel:hover { color: var(--trim); }
@media (max-width: 1080px) { .nav, .header-tel { display: none; } }

.burger {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  cursor: pointer; flex: none; transition: border-color .2s var(--ease);
}
.burger:hover { border-color: var(--trim); }
.burger span { display: block; width: 18px; height: 1.8px; background: var(--white); border-radius: 2px; position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.8px; background: var(--white); border-radius: 2px;
  transition: transform .3s var(--ease), top .2s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); }
@media (max-width: 1080px) { .burger { display: inline-flex; } }

.drawer {
  position: fixed; inset: 0; z-index: 99; background: var(--void);
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  padding-top: 80px; overflow-y: auto;
}
body.nav-open .drawer { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
body.nav-open { overflow: hidden; }
.drawer-inner { padding: 22px var(--gut) 46px; display: flex; flex-direction: column; }
.drawer a.dl {
  font-family: var(--display); font-weight: 700; font-size: 27px; color: var(--white);
  padding: 15px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; letter-spacing: -.03em;
}
.drawer a.dl svg { color: var(--grey-3); }
.drawer-actions { display: grid; gap: 11px; margin-top: 28px; }
.drawer-meta { margin-top: 30px; display: grid; gap: 9px; font-size: 13.5px; color: var(--grey-2); }

/* ---------- Sticky mobile book bar ---------- */
.bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: 10px; padding: 11px var(--gut);
  padding-bottom: calc(11px + env(safe-area-inset-bottom));
  background: rgba(11,14,19,.94); backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}
.bookbar .bb-tel {
  flex: none; width: 52px; display: grid; place-items: center;
  border: 1.5px solid var(--line-2); border-radius: var(--r); color: var(--white);
}
.bookbar .bb-tel:hover { border-color: var(--trim); color: var(--trim); }
.bookbar .btn { flex: 1; }
@media (max-width: 1080px) { .bookbar { display: flex; } body { padding-bottom: 76px; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--void); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 78% 22%, rgba(198,168,116,.07), transparent 62%),
    linear-gradient(96deg, rgba(6,8,11,.96) 8%, rgba(6,8,11,.78) 46%, rgba(6,8,11,.42) 100%),
    linear-gradient(to top, var(--void) 2%, transparent 46%);
}
.hero-inner { position: relative; padding-block: clamp(60px, 10vw, 132px) clamp(36px, 5vw, 58px); }
.hero-copy { max-width: 700px; }
.hero h1 { margin: 20px 0 22px; }
.hero h1 .shine {
  background: linear-gradient(96deg, var(--trim) 12%, var(--trim-hi) 44%, var(--trim-2) 78%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { max-width: 540px; font-size: clamp(1.02rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }

.chipset { display: flex; flex-wrap: wrap; gap: 7px; }
.chip-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 100px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2);
  color: var(--white); font-size: 12.5px; font-weight: 600;
  backdrop-filter: blur(8px);
}
.chip-pill svg { color: var(--trim); }

.hero-strip {
  position: relative; margin-top: clamp(38px, 6vw, 74px);
  border-top: 1px solid var(--line); padding-top: 26px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px;
}
@media (min-width: 760px) { .hero-strip { grid-template-columns: repeat(4, 1fr); } }
.hs-v {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  color: var(--white); line-height: 1; display: flex; align-items: center; gap: 6px; letter-spacing: -.035em;
}
.hs-v .stars { display: inline-flex; gap: 1px; color: var(--gold); }
.hs-l { font-size: 12.4px; color: var(--grey-2); margin-top: 8px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: 1fr; }
.g3 { grid-template-columns: 1fr; }
.g4 { grid-template-columns: 1fr; }
@media (min-width: 620px) { .g2, .g4 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .g3 { grid-template-columns: repeat(3, 1fr); } .g4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; position: relative; overflow: hidden;
  transition: transform .38s var(--ease-out), border-color .3s var(--ease), box-shadow .38s var(--ease-out);
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 26px 50px -30px rgba(0,0,0,.9); }
.card-ico {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--trim-dim); border: 1px solid rgba(198,168,116,.24);
  display: grid; place-items: center; color: var(--trim); margin-bottom: 18px;
}
.card h3 { font-size: 1.16rem; margin-bottom: 9px; }
.card p { font-size: 14.6px; color: var(--grey-2); }

/* ---------- Vehicle size selector ---------- */
.vsel {
  display: inline-flex; padding: 5px; gap: 4px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  border-radius: 100px; position: relative; flex-wrap: wrap; justify-content: center;
}
.vsel button {
  border: 0; background: transparent; cursor: pointer;
  padding: 10px 19px; border-radius: 100px;
  font-size: 13.8px; font-weight: 700; color: var(--grey);
  transition: color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
  white-space: nowrap;
}
.vsel button:hover { color: var(--white); }
.vsel button[aria-checked="true"] {
  background: linear-gradient(180deg, var(--trim) 0%, var(--trim-2) 100%);
  color: var(--on-trim); box-shadow: 0 4px 16px -6px var(--trim-glow);
}
.vsel-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 38px; }
.vsel-note { font-size: 13px; color: var(--grey-2); }

[data-price] { font-variant-numeric: tabular-nums; transition: opacity .18s var(--ease); }
[data-price].flip { opacity: .25; }

/* ---------- Package cards ---------- */
.pkg-grid { display: grid; gap: 18px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 700px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .pkg-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.pkg {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 22px 24px; position: relative;
  transition: transform .38s var(--ease-out), border-color .3s, box-shadow .38s var(--ease-out);
}
.pkg:hover { transform: translateY(-5px); border-color: var(--line-2); }
.pkg.featured {
  border-color: rgba(198,168,116,.45);
  background: linear-gradient(180deg, rgba(198,168,116,.10), rgba(255,255,255,.018));
  box-shadow: 0 0 0 1px rgba(198,168,116,.16), 0 30px 60px -34px var(--trim-glow);
}
.pkg-flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--trim) 0%, var(--trim-2) 100%); color: var(--on-trim);
  font-size: 10.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 6px 18px -6px var(--trim-glow);
}
.pkg-name { font-family: var(--display); font-weight: 700; font-size: 1.14rem; color: var(--white); letter-spacing: -.028em; }
.pkg-for { font-size: 12.6px; color: var(--grey-2); margin-top: 6px; min-height: 34px; }
.pkg-price {
  display: flex; align-items: baseline; gap: 4px; margin: 18px 0 4px;
  font-family: var(--display); font-weight: 800; color: var(--white);
  letter-spacing: -.04em;
}
.pkg-price .cur { font-size: 1.15rem; color: var(--grey); font-weight: 600; }
.pkg-price .amt { font-size: clamp(2.1rem, 3.6vw, 2.5rem); line-height: 1; }
.pkg-time { font-size: 12.8px; color: var(--trim); font-weight: 650; display: flex; align-items: center; gap: 6px; }
.pkg-list { list-style: none; padding: 0; margin: 22px 0 24px; display: grid; gap: 10px; flex: 1; }
.pkg-list li { display: flex; gap: 9px; font-size: 13.8px; line-height: 1.5; color: var(--grey); }
.pkg-list svg { flex: none; margin-top: 3px; color: var(--trim); }
.pkg-list li.off { color: var(--grey-3); }
.pkg-list li.off svg { color: var(--grey-3); }
.pkg-divider { height: 1px; background: var(--line); margin: 4px 0 0; }

/* ---------- Before / After ---------- */
.ba {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--slate); user-select: none; touch-action: pan-y;
  border: 1px solid var(--line); isolation: isolate;
}
.ba-frame { position: relative; aspect-ratio: 16/10; }
.ba-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px;
  background: var(--trim); transform: translateX(-1px); pointer-events: none;
  box-shadow: 0 0 18px var(--trim-glow), 0 0 3px rgba(255,255,255,.7);
}
.ba-knob {
  position: absolute; top: 50%; left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(6,8,11,.72); backdrop-filter: blur(10px);
  border: 1.5px solid var(--trim); color: var(--trim);
  display: grid; place-items: center; pointer-events: none;
  box-shadow: 0 0 26px -4px var(--trim-glow); transition: transform .18s var(--ease);
}
.ba:hover .ba-knob, .ba.is-drag .ba-knob { transform: translate(-50%, -50%) scale(1.09); }
.ba-tag {
  position: absolute; top: 13px; z-index: 3;
  font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; pointer-events: none; backdrop-filter: blur(8px);
}
.ba-tag.before { left: 13px; background: rgba(6,8,11,.76); color: var(--grey); border: 1px solid var(--line-2); }
.ba-tag.after { right: 13px; background: var(--trim); color: var(--on-trim); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; z-index: 4; }
.ba-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; pointer-events: none;
  padding: 44px 18px 16px;
  background: linear-gradient(to top, rgba(6,8,11,.94), transparent);
}
.ba-caption strong { display: block; font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--white); letter-spacing: -.028em; }
.ba-caption span { font-size: 12.6px; color: var(--grey-2); }

.ba-showcase { display: grid; gap: 28px; align-items: center; }
@media (min-width: 980px) { .ba-showcase { grid-template-columns: 1.3fr 1fr; gap: 52px; } }

/* ---------- Comparison (tunnel wash) ---------- */
.versus { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 820px) { .versus { grid-template-columns: 1fr 1fr; } }
.vs-col { padding: clamp(26px, 4vw, 40px); }
.vs-col:first-child { background: rgba(255,255,255,.02); border-bottom: 1px solid var(--line); }
@media (min-width: 820px) { .vs-col:first-child { border-bottom: 0; border-right: 1px solid var(--line); } }
.vs-col:last-child { background: linear-gradient(180deg, rgba(198,168,116,.07), rgba(198,168,116,.01)); }
.vs-tag { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.vs-col:first-child .vs-tag { color: var(--grey-3); }
.vs-col:last-child .vs-tag { color: var(--trim); }
.vs-col h3 { font-size: 1.24rem; margin-bottom: 4px; }
.vs-price { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--white); margin: 10px 0 2px; letter-spacing: -.04em; }
.vs-sub { font-size: 13px; color: var(--grey-2); }
.vlist { list-style: none; padding: 0; margin-top: 22px; display: grid; gap: 13px; }
.vlist li { display: flex; gap: 11px; font-size: 15px; line-height: 1.5; }
.vlist svg { flex: none; margin-top: 3px; }
.vlist.neg { color: var(--grey-2); }
.vlist.neg svg { color: var(--grey-3); }
.vlist.pos { color: var(--grey); }
.vlist.pos svg { color: var(--trim); }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; display: grid; gap: 0; counter-reset: s; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 0 0 30px 54px; counter-increment: s; }
@media (min-width: 900px) { .step { padding: 58px 22px 0 0; } }
.step::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: -2px; z-index: 2;
  font-family: var(--display); font-size: 13.5px; font-weight: 700;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--void); border: 1.5px solid var(--trim); color: var(--trim);
  box-shadow: 0 0 18px -6px var(--trim-glow);
}
@media (min-width: 900px) { .step::before { top: 0; } }
.step::after { content: ""; position: absolute; background: var(--line); left: 18px; top: 38px; bottom: 0; width: 1.5px; }
@media (min-width: 900px) {
  .step::after { left: 38px; top: 18px; right: 0; bottom: auto; width: auto; height: 1.5px; }
  .step:last-child::after { display: none; }
}
.step h3 { font-size: 1.1rem; margin-bottom: 7px; }
.step p { font-size: 14.4px; color: var(--grey-2); }
.step-when { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--trim); margin-bottom: 9px; display: block; }

/* ---------- Included checklist ---------- */
.incl-grid { display: grid; gap: 30px; }
@media (min-width: 860px) { .incl-grid { grid-template-columns: 1fr 1fr; gap: 26px 52px; } }
.incl-col h3 { font-size: 1.1rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.incl-col h3 svg { color: var(--trim); }
.incl-list { list-style: none; padding: 0; display: grid; gap: 11px; }
.incl-list li { display: flex; gap: 10px; font-size: 14.6px; color: var(--grey); line-height: 1.5; }
.incl-list svg { flex: none; margin-top: 4px; color: var(--trim); }

/* ---------- Add-on calculator ---------- */
.calc {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
}
.calc-body { padding: clamp(22px, 3.5vw, 32px); }
.addons { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .addons { grid-template-columns: 1fr 1fr; } }
.addon { position: relative; }
.addon input { position: absolute; opacity: 0; width: 0; height: 0; }
.addon label {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 100%;
  padding: 15px 17px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer; background: rgba(255,255,255,.02); transition: all .2s var(--ease);
}
.addon label:hover { border-color: var(--line-2); background: rgba(255,255,255,.045); }
.addon input:checked + label { border-color: var(--trim); background: var(--trim-dim); }
.addon input:focus-visible + label { outline: 2px solid var(--trim); outline-offset: 2px; }
.addon-t { font-size: 14.4px; font-weight: 650; color: var(--white); }
.addon-d { font-size: 12.4px; color: var(--grey-2); margin-top: 2px; }
.addon-p { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--trim); flex: none; }

.calc-total {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px clamp(22px, 3.5vw, 32px); border-top: 1px solid var(--line);
  background: rgba(198,168,116,.05);
}
.calc-total .ct-l { font-size: 13px; color: var(--grey-2); }
.calc-total .ct-v {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--white); line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums;
}

/* ---------- Pricing table ---------- */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); }
table.price {
  width: 100%; border-collapse: collapse; min-width: 640px;
  font-size: 14.6px;
}
table.price th, table.price td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.price thead th {
  font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--white);
  background: rgba(255,255,255,.04); letter-spacing: -.01em; white-space: nowrap;
}
table.price tbody th { font-weight: 650; color: var(--white); }
table.price td { color: var(--grey); font-variant-numeric: tabular-nums; }
table.price tbody tr:last-child th, table.price tbody tr:last-child td { border-bottom: 0; }
table.price tbody tr:hover { background: rgba(255,255,255,.025); }
table.price .pop { color: var(--trim); font-weight: 700; }

/* ---------- Reviews ---------- */
.rev {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; height: 100%;
}
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.rev blockquote { font-size: 15.4px; line-height: 1.62; color: var(--grey); flex: 1; }
.rev blockquote::before { content: "\201C"; }
.rev blockquote::after { content: "\201D"; }
.rev-person { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.rev-person img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.rev-name { font-weight: 700; font-size: 14.2px; color: var(--white); }
.rev-meta { font-size: 12.4px; color: var(--grey-2); margin-top: 2px; }

/* ---------- Areas ---------- */
.area-links { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; padding: 0; }
.area-links li span, .area-links li a {
  display: inline-block; padding: 7px 13px; border-radius: 100px;
  background: rgba(255,255,255,.035); border: 1px solid var(--line);
  font-size: 13.2px; color: var(--grey); transition: all .2s var(--ease);
}
.area-links li a:hover { border-color: var(--trim); color: var(--trim); }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 42px 22px 0;
  font-family: var(--display); font-weight: 650; font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--white); position: relative; letter-spacing: -.024em; transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--trim); }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 13px; height: 13px; margin-top: -6px;
  background: var(--trim); transition: transform .3s var(--ease);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq-body { padding: 0 42px 24px 0; font-size: 15.2px; color: var(--grey-2); max-width: 74ch; }
.faq-body p + p { margin-top: 11px; }

/* ---------- Booking flow ---------- */
.booker {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.9);
}
.booker-head { padding: 24px clamp(20px, 4vw, 34px) 0; }
.bk-progress { display: flex; align-items: center; gap: 11px; }
.bk-track { flex: 1; height: 4px; background: rgba(255,255,255,.08); border-radius: 100px; overflow: hidden; }
.bk-fill { height: 100%; background: linear-gradient(90deg, var(--trim-2), var(--trim)); border-radius: 100px; width: 20%; transition: width .45s var(--ease-out); box-shadow: 0 0 12px var(--trim-glow); }
.bk-label { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-2); white-space: nowrap; }

.bstep { padding: 24px clamp(20px, 4vw, 34px) clamp(24px, 4vw, 32px); }
.bstep[hidden] { display: none; }
.bstep > h3 { font-size: clamp(1.3rem, 2.4vw, 1.72rem); margin-bottom: 7px; }
.bstep > p.sub { font-size: 14.6px; color: var(--grey-2); margin-bottom: 24px; }

.opt-grid { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .opt-grid { grid-template-columns: repeat(2, 1fr); } }
.opt-grid.cols3 { grid-template-columns: 1fr; }
@media (min-width: 620px) { .opt-grid.cols3 { grid-template-columns: repeat(3, 1fr); } }

.opt { position: relative; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt label {
  display: flex; align-items: flex-start; gap: 12px; height: 100%;
  padding: 16px 17px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer; background: rgba(255,255,255,.02); transition: all .2s var(--ease);
}
.opt label:hover { border-color: var(--line-2); background: rgba(255,255,255,.045); }
.opt input:checked + label { border-color: var(--trim); background: var(--trim-dim); box-shadow: 0 0 0 1px rgba(198,168,116,.3); }
.opt input:focus-visible + label { outline: 2px solid var(--trim); outline-offset: 2px; }
.opt-ico { color: var(--trim); flex: none; margin-top: 1px; }
.opt-txt { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.opt-t { font-weight: 700; font-size: 14.8px; color: var(--white); line-height: 1.3; }
.opt-d { font-size: 12.6px; color: var(--grey-2); line-height: 1.45; }
.opt-price { font-family: var(--display); font-weight: 700; font-size: 14.6px; color: var(--trim); flex: none; }

.slots { display: grid; gap: 9px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 560px) { .slots { grid-template-columns: repeat(4, 1fr); } }
.slot input { position: absolute; opacity: 0; width: 0; height: 0; }
.slot { position: relative; }
.slot label {
  display: block; text-align: center; padding: 13px 8px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-size: 14px; font-weight: 650; color: var(--grey); cursor: pointer;
  background: rgba(255,255,255,.02); transition: all .2s var(--ease);
}
.slot label:hover { border-color: var(--line-2); color: var(--white); }
.slot input:checked + label { border-color: var(--trim); background: var(--trim-dim); color: var(--trim); }
.slot input:disabled + label { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.slot input:focus-visible + label { outline: 2px solid var(--trim); outline-offset: 2px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .flabel { font-size: 13.2px; font-weight: 700; color: var(--white); }
.field .req { color: var(--trim); }
.field input, .field textarea, .field select {
  padding: 14px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: rgba(255,255,255,.03); font-size: 15.4px; color: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); width: 100%; font-family: var(--sans);
}
.field input::placeholder, .field textarea::placeholder { color: var(--grey-3); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--trim); box-shadow: 0 0 0 3px rgba(198,168,116,.16);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #FF6B6B; }
.field .err { font-size: 12.4px; color: #FF8585; font-weight: 650; }
.field .err[hidden] { display: none; }
.fgrid { display: grid; gap: 15px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .fgrid.two { grid-template-columns: 1fr 1fr; } }

.bnav {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px clamp(20px, 4vw, 34px); border-top: 1px solid var(--line);
  background: rgba(255,255,255,.025); flex-wrap: wrap;
}
.bnav .spacer { flex: 1; }
.btn-back {
  background: transparent; border: 0; color: var(--grey-2); font-weight: 650; font-size: 14.2px;
  cursor: pointer; padding: 10px 4px; display: inline-flex; align-items: center; gap: 7px;
}
.btn-back:hover { color: var(--white); }
.btn-back[hidden] { display: none; }
.running {
  display: flex; flex-direction: column; gap: 2px; margin-right: auto;
}
.running .rl { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-3); font-weight: 700; }
.running .rv {
  font-family: var(--display); font-weight: 800; font-size: 1.32rem; color: var(--white);
  letter-spacing: -.035em; font-variant-numeric: tabular-nums; line-height: 1;
}

.summary { list-style: none; padding: 0; display: grid; gap: 0; margin-bottom: 22px; }
.summary li { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14.6px; }
.summary li:first-child { border-top: 1px solid var(--line); }
.summary .sk { color: var(--grey-2); flex: none; }
.summary .sv { font-weight: 650; color: var(--white); text-align: right; }
.summary li.total { border-bottom: 0; padding-top: 18px; }
.summary li.total .sk { color: var(--white); font-weight: 700; font-size: 15.5px; }
.summary li.total .sv { color: var(--trim); font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: -.035em; }

.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.2px; color: var(--grey-2); line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--trim); }

.booked { text-align: center; padding: clamp(34px, 6vw, 58px) clamp(20px, 4vw, 34px); }
.booked-ico {
  width: 66px; height: 66px; border-radius: 50%; background: var(--trim-dim);
  border: 1.5px solid rgba(198,168,116,.4);
  color: var(--trim); display: grid; place-items: center; margin: 0 auto 22px;
  box-shadow: 0 0 40px -10px var(--trim-glow);
}
.booked h3 { font-size: clamp(1.45rem, 3vw, 1.95rem); margin-bottom: 11px; }
.booked > p { color: var(--grey-2); max-width: 52ch; margin: 0 auto; }
.sms-preview {
  max-width: 400px; margin: 30px auto 0; text-align: left;
  background: var(--slate); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px 20px; position: relative;
}
.sms-preview::before {
  content: "SMS"; position: absolute; top: -9px; left: 18px;
  background: var(--trim); color: var(--on-trim); font-size: 9.5px; font-weight: 800;
  letter-spacing: .14em; padding: 3px 9px; border-radius: 100px;
}
.sms-preview p { font-size: 14.2px; color: var(--white); line-height: 1.55; }
.sms-preview .sms-meta { font-size: 11.5px; color: var(--grey-3); margin-top: 10px; }

/* ---------- Split ---------- */
.split { display: grid; gap: 30px; align-items: center; }
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; gap: 58px; } .split.rev > *:first-child { order: 2; } }
.split-media { border-radius: var(--r-lg); overflow: hidden; position: relative; border: 1px solid var(--line); }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.checks { list-style: none; padding: 0; display: grid; gap: 11px; margin-top: 24px; }
.checks li { display: flex; gap: 11px; font-size: 15px; align-items: flex-start; color: var(--grey); }
.checks svg { color: var(--trim); flex: none; margin-top: 4px; }

.float-stat {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  background: rgba(6,8,11,.84); backdrop-filter: blur(14px);
  border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 15px 18px; max-width: 210px;
}
.float-stat .fv { font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--trim); line-height: 1; letter-spacing: -.04em; }
.float-stat .fl { font-size: 12.4px; color: var(--grey-2); margin-top: 7px; }

/* ---------- Page hero ---------- */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12.8px; color: var(--grey-3); }
.crumbs a:hover { color: var(--trim); }
.page-hero {
  background: var(--carbon); border-bottom: 1px solid var(--line);
  padding-block: clamp(34px, 4.5vw, 54px) clamp(40px, 6vw, 66px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; left: 50%; top: -60%; width: 800px; height: 560px;
  transform: translateX(-50%); pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(198,168,116,.04), transparent 62%);
}
.page-hero .shell { position: relative; }
.page-hero h1 { margin: 18px 0 16px; }
.page-hero .lead { max-width: 62ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--carbon); }
.cta-band-media { position: absolute; inset: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.cta-band-media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 20% 50%, rgba(6,8,11,.96), rgba(6,8,11,.72) 60%, rgba(6,8,11,.5));
}
.cta-inner { position: relative; display: grid; gap: 26px; align-items: center; }
@media (min-width: 940px) { .cta-inner { grid-template-columns: 1.2fr .8fr; gap: 56px; } }
.cta-actions { display: flex; flex-direction: column; gap: 11px; }
@media (min-width: 560px) and (max-width: 939px) { .cta-actions { flex-direction: row; flex-wrap: wrap; } }
.cta-note { font-size: 12.8px; color: var(--grey-3); margin-top: 4px; }

/* ---------- Footer ---------- */
.footer { background: var(--carbon); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 74px) 0; }
.footer h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--grey-3); margin-bottom: 17px;
}
.footer a:hover { color: var(--trim); }
.footer-grid { display: grid; gap: 34px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; } }
.footer-blurb { font-size: 14.2px; margin-top: 18px; max-width: 34ch; color: var(--grey-2); }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; font-size: 14.2px; }
.footer .nap { display: grid; gap: 12px; font-size: 14.2px; font-style: normal; }
.footer .nap div { display: flex; gap: 10px; align-items: flex-start; }
.footer .nap svg { color: var(--trim); flex: none; margin-top: 3px; }
.footer-bottom {
  margin-top: clamp(38px, 5vw, 58px); border-top: 1px solid var(--line);
  padding-block: 22px; display: flex; flex-wrap: wrap; gap: 11px 24px;
  align-items: center; justify-content: space-between; font-size: 12.6px; color: var(--grey-3);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

.demo-strip {
  background: var(--void); border-top: 1px solid var(--line);
  padding-block: 14px; font-size: 12.4px; color: var(--grey-3);
}
.demo-strip .shell { display: flex; flex-wrap: wrap; gap: 8px 15px; align-items: center; justify-content: center; text-align: center; }
.demo-strip a { color: var(--trim); font-weight: 700; border-bottom: 1px solid rgba(198,168,116,.35); }
.demo-strip a:hover { color: var(--white); border-color: var(--white); }
.demo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--trim); flex: none; box-shadow: 0 0 0 3px rgba(198,168,116,.18); }

/* ---------- Reveal ---------- */
.js .rv { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.js .rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .07s; }
.rv-d2 { transition-delay: .14s; }
.rv-d3 { transition-delay: .21s; }
.rv-d4 { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Utilities ---------- */
.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; }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 18px; } .mt-3 { margin-top: 28px; } .mt-4 { margin-top: 40px; }
.center { text-align: center; }

/* =========================================================
   UNIFIED PHOTO GRADE
   Every photograph on this site is stock, from a different shoot, with a
   different white balance and exposure. That mismatch — not the layout — is
   the main reason the page reads templated. One treatment, applied by
   container, so a photo added later inherits it automatically.
   ========================================================= */

/* Base normalisation. grayscale() is what actually collapses the white-balance
   divergence between shoots; sepia() then puts everything on one warm axis;
   saturate/contrast/brightness hold exposure to a single range. Add .no-grade
   to any image that must stay untouched (logos, diagrams). */
img:not(.no-grade) {
  filter: saturate(.70) contrast(1.09) brightness(.94) grayscale(.18) sepia(.14);
}

/* Cool shadows over the warm base — the split-tone that reads as one
   photographer. isolation keeps the blend off the page background. */
.hero-media,
.ba-frame,
.split-media,
.cta-band-media { isolation: isolate; }

.hero-media::before,
.ba-frame::before,
.split-media::before,
.cta-band-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(18,34,52,.10) 0%, rgba(10,20,32,.60) 100%);
  mix-blend-mode: multiply;
}

/* The slider furniture has to clear the grade layer. */
.ba-line, .ba-knob, .ba-tag { z-index: 3; }

/* =========================================================
   SECTION RHYTHM
   Ten sections at identical padding is what makes the scroll feel like one
   long block. These give density somewhere to go.
   ========================================================= */
.section--tight { padding-block: clamp(38px, 4.5vw, 64px); }
.section--airy  { padding-block: clamp(80px, 11vw, 172px); }

/* Edge to edge. One moment where the page opens up and the container drops
   away — used on the before/after, which is the strongest thing on the page
   and was boxed in a 1200px shell like everything else. */
.section--bleed { padding-block: 0; background: var(--void); }
.bleed { width: 100%; max-width: none; padding-inline: 0; }
.bleed .ba-frame { aspect-ratio: 21/9; border-radius: 0; border-inline: 0; }
@media (max-width: 780px) {
  .bleed .ba-frame { aspect-ratio: 4/5; }
}
/* Caption sits back inside the shell so it stays readable. */
.bleed-caption {
  max-width: var(--shell); margin-inline: auto;
  padding: 20px var(--gut) 0;
}

/* =========================================================
   TESTIMONIAL MONOGRAMS
   Replaces stock headshots of real people presented as customers. Initials in
   the accent, so the card still has a mark without borrowing a face.
   ========================================================= */
.mono {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 14px;
  letter-spacing: .04em; color: var(--trim);
  background: linear-gradient(180deg, rgba(198,168,116,.15), rgba(198,168,116,.04));
  border: 1px solid rgba(198,168,116,.32);
}

/* Full-bleed variant of the before/after. The grid collapses to one column so
   the frame can run the full viewport, and everything that is words stays
   inside the shell where it is still readable. */
.section--bleed .shell.bleed { max-width: none; padding-inline: 0; }
.section--bleed .ba-showcase { grid-template-columns: 1fr; gap: 32px; }
.section--bleed .sec-head,
.section--bleed .ba-showcase > *:not(.ba) {
  max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut);
}
.section--bleed .ba-frame { border-radius: 0; aspect-ratio: 21/9; }
@media (max-width: 780px) { .section--bleed .ba-frame { aspect-ratio: 4/5; } }
