/* =========================================================================
   Atlanta roadside — one stylesheet, both sites.
   Per-site colour comes from CSS custom properties injected in <head>,
   so nothing here needs to know which company it is dressing.
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #14161a;
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.02; letter-spacing: -0.01em; margin: 0; text-wrap: balance; }
p { margin: 0 0 1em; text-wrap: pretty; }
svg { width: 1em; height: 1em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 12px 18px; z-index: 999; }
.skip:focus { left: 8px; top: 8px; }

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

.wrap { width: min(1200px, 100% - 40px); margin-inline: auto; }
.wrap-narrow { width: min(720px, 100% - 40px); margin-inline: auto; }

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 24px; border: 0; border-radius: 4px;
  font-family: var(--display); font-size: 20px; font-weight: 700;
  letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  position: relative;
}
.btn:active { transform: translateY(1px); }
.btn-ico { display: grid; place-items: center; font-size: 22px; flex: 0 0 auto; }
.btn-txt { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.btn-lead { font-size: 1em; }
.btn-sub { font-family: Inter, sans-serif; font-size: 12px; font-weight: 500; opacity: .72; letter-spacing: .02em; text-transform: uppercase; margin-top: 3px; }

.btn-call { background: var(--accent); color: var(--accent-ink); box-shadow: 0 4px 0 var(--accent-deep), 0 10px 30px -8px color-mix(in oklab, var(--accent) 60%, transparent); }
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--accent-deep), 0 18px 40px -10px color-mix(in oklab, var(--accent) 70%, transparent); }
.btn-call:active { box-shadow: 0 2px 0 var(--accent-deep); }

.btn-flow { background: #14161a; color: #fff; box-shadow: 0 4px 0 #000; }
.btn-flow:hover { transform: translateY(-2px); background: #232830; }

.btn-ghost { background: transparent; color: inherit; border: 2px solid currentColor; }
.btn-ghost:hover { background: currentColor; color: var(--paper); }
.site-head .btn-ghost:hover { color: var(--ink); }

.btn-danger { background: #d32116; color: #fff; box-shadow: 0 4px 0 #8f1109; }
.btn-sm { padding: 10px 16px; font-size: 16px; }
.btn-wide { width: 100%; justify-content: center; }
.btn-link { background: none; border: 0; padding: 0; color: var(--signal); text-decoration: underline; cursor: pointer; font-size: 14px; }

.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 100px; background: #f0f1f4; color: #14161a; text-decoration: none; font-size: 15px; font-weight: 600; transition: background .14s; }
.chip:hover { background: var(--accent); color: var(--accent-ink); }
.chip-lg { padding: 12px 22px; font-size: 17px; font-family: var(--display); font-size: 19px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }

/* -------------------------------------------------------------- header -- */

.site-head { position: relative; z-index: 60; background: var(--ink); color: #fff; }
.head-strip {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  padding: 7px 20px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  color: var(--accent-ink); font-weight: 700;
}
.head-strip .strip-msg { opacity: .85; font-weight: 600; text-transform: none; letter-spacing: 0; }
.head-strip .strip-sep { opacity: .5; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; display: inline-block; margin-right: 6px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }
.strip-live { display: inline-flex; align-items: center; }

.head-bar { display: flex; align-items: center; gap: 28px; padding: 14px 0; width: min(1200px, 100% - 40px); margin-inline: auto; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 6px; background: var(--accent); color: var(--accent-ink); font-size: 24px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt b { font-family: var(--display); font-size: 25px; letter-spacing: -0.01em; }
.brand-txt small { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; opacity: .62; margin-top: 2px; }

.head-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-top { background: none; border: 0; color: #fff; padding: 10px 14px; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; border-radius: 4px; transition: background .14s; }
.nav-top:hover { background: rgba(255,255,255,.1); }
.nav-drop { position: relative; }
.drop-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, -6px);
  background: #fff; color: #14161a; border-radius: 10px; padding: 14px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.5); min-width: 460px;
  opacity: 0; visibility: hidden; transition: opacity .16s, transform .16s, visibility .16s;
}
.nav-drop[data-open] .drop-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.drop-grid-tight { grid-template-columns: 1fr; }
.drop-grid a { display: block; padding: 10px 12px; border-radius: 6px; text-decoration: none; transition: background .12s; }
.drop-grid a:hover { background: #f4f5f7; }
.drop-grid b { display: block; font-family: var(--display); font-size: 19px; }
.drop-grid small { display: block; font-size: 13px; color: #6a7180; line-height: 1.3; }

.head-cta { display: flex; gap: 8px; flex: 0 0 auto; }
.head-burger { display: none; background: none; border: 0; padding: 10px; cursor: pointer; flex-direction: column; gap: 5px; }
.head-burger span { display: block; width: 26px; height: 2.5px; background: #fff; transition: transform .2s, opacity .2s; }
.head-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.head-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.head-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.head-mobile { background: #15181e; padding: 8px 20px 22px; }
.hm-group { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hm-group b { display: block; font-family: var(--display); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.hm-group a { display: block; padding: 9px 0; color: #fff; text-decoration: none; font-size: 17px; }

/* ---------------------------------------------------------- sticky bar -- */

.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(12,13,16,.94); backdrop-filter: blur(12px); gap: 10px; border-top: 1px solid rgba(255,255,255,.12); }
.sticky-bar a, .sticky-bar button { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; border-radius: 6px; border: 0; font-family: var(--display); font-size: 19px; font-weight: 700; text-decoration: none; cursor: pointer; }
.sb-call { background: var(--accent); color: var(--accent-ink); }
.sb-flow { background: rgba(255,255,255,.12); color: #fff; }
.sticky-bar svg { width: 20px; height: 20px; }

/* ---------------------------------------------------------------- hero -- */

.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding: clamp(60px, 11vw, 130px) 0 clamp(50px, 8vw, 96px); isolation: isolate; }
/* Tighter when the film is running, so the scene, the rating and the road all
   land inside the first screen on a laptop instead of below the fold. */
.hero.has-film { padding: clamp(42px, 6.4vw, 78px) 0 clamp(36px, 5vw, 64px); }
.hero.has-film .hero-h1 { font-size: clamp(42px, 7.6vw, 94px); }
.hero.has-film .hero-sub { margin: 16px 0 26px; }
.hero.has-film .hero-note { margin-top: 20px; }
.hero.has-film .hero-strip { margin-top: 24px; }
.hero.has-film .ratingbadge { margin-top: 20px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-road {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 120%, color-mix(in oklab, var(--accent) 26%, transparent), transparent 62%),
    radial-gradient(80% 60% at 15% 0%, rgba(255,255,255,.07), transparent 60%),
    repeating-linear-gradient(115deg, transparent 0 58px, rgba(255,255,255,.022) 58px 60px);
}
.hero-sweep {
  position: absolute; top: -40%; left: -30%; width: 60%; height: 180%;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--accent) 22%, transparent), transparent);
  filter: blur(60px); transform: rotate(12deg);
  animation: sweep 9s ease-in-out infinite;
}
@keyframes sweep { 0%, 100% { transform: translateX(-10%) rotate(12deg); opacity: .5; } 50% { transform: translateX(120%) rotate(12deg); opacity: .95; } }
.hero-grain { position: absolute; inset: 0; opacity: .5; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E"); }

/* ------------------------------------------------------- hero scene film -- */

/* The looping situation film. Frames cross-fade; JS advances them, and if JS
   never runs the first frame simply stays up — a still hero, not a blank one. */
/* Anchored to the hero floor as a band rather than stretched over the whole
   hero: the scenes are 16:9 and the hero runs ~1100px tall, so filling it would
   scale the art 1.6x and crop the road out of sight. A band keeps the aspect
   close to the artwork's own. */
.film { position: absolute; left: 0; right: 0; bottom: 0; top: auto; height: min(100%, 68%); overflow: hidden; }
.film-frame {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.1s ease, transform 7s linear;
  transform: scale(1.06);
}
.film-frame.is-on { opacity: 1; transform: scale(1.13); }
.film .sc { width: 100%; height: 100%; display: block; }

/* Real photography. object-fit:cover fills the band at any width without
   letterboxing; the slow scale is a drift, not a zoom — it should read as the
   photograph breathing, never as motion competing with the headline. */
.film-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.film-photo .film-frame { transform: scale(1.03); transition: opacity 1.4s ease, transform 11s linear; }
.film-photo .film-frame.is-on { transform: scale(1.11); }
.has-film .film-photo { opacity: .86; }
/* Photographs carry their own contrast, so the scrim has to work harder here
   than it did over flat drawn art. */
.has-film:has(.film-photo) .hero-bg::after {
  background:
    linear-gradient(96deg, var(--ink) 0%, color-mix(in oklab, var(--ink) 90%, transparent) 42%, color-mix(in oklab, var(--ink) 35%, transparent) 78%),
    linear-gradient(to top, var(--ink) 2%, transparent 46%);
}

/* The hero text sits over this, so the film is held back — and a scrim keeps the
   headline at full contrast no matter which frame is showing. Legibility of the
   phone number beats any amount of atmosphere. */
.has-film .film { opacity: .72; }
.has-film .hero-road { opacity: .5; }
.has-film .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(96deg, var(--ink) 0%, color-mix(in oklab, var(--ink) 82%, transparent) 34%, transparent 68%),
    linear-gradient(to top, transparent 62%, color-mix(in oklab, var(--ink) 72%, transparent) 100%);
}

.film-caps { position: absolute; right: 26px; bottom: 24px; display: grid; }
.film-cap {
  grid-area: 1 / 1; display: flex; align-items: center; gap: 11px;
  padding: 11px 17px 11px 13px; border-radius: 100px;
  background: rgba(8,8,10,.62); backdrop-filter: blur(9px);
  border: 1px solid color-mix(in oklab, var(--accent) 26%, transparent);
  opacity: 0; transform: translateY(9px); transition: opacity .5s ease, transform .5s ease;
  white-space: nowrap;
}
.film-cap.is-on { opacity: 1; transform: none; }
.film-ico { font-size: 19px; line-height: 1; }
.film-cap b { font-size: 13.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; }
.film-cap i { font-style: normal; font-size: 12.5px; color: rgba(255,255,255,.62); }

/* --- scene motion. Each class is used by engine/scenes.mjs. --- */
.sc-tyre { fill: #0d0f14; stroke: var(--accent); stroke-width: 2.5; }
.sc-rim  { fill: none; stroke: var(--accent); stroke-width: 2; opacity: .55; }

.sc-dashes { animation: scRoll 1.5s linear infinite; }
@keyframes scRoll { to { transform: translateX(-120px); } }

.sc-beacon { animation: scFlash .85s steps(1, end) infinite; transform-origin: center; }
@keyframes scFlash { 0%, 49% { opacity: 1; } 50%, 100% { opacity: .18; } }

.sc-hazard circle { animation: scFlash 1.1s steps(1, end) infinite; }
.sc-hazard circle:last-child { animation-delay: .55s; }

.sc-float { animation: scFloat 6s ease-in-out infinite; }
@keyframes scFloat { 0%, 100% { transform: translate(560px, 384px); } 50% { transform: translate(560px, 375px); } }

.sc-bolt { animation: scPulse 1.7s ease-in-out infinite; transform-origin: center; }
@keyframes scPulse { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }

.sc-cells rect { animation: scDrain 3.4s ease-in-out infinite; }
.sc-cells rect:nth-child(2) { animation-delay: .2s; }
.sc-cells rect:nth-child(3) { animation-delay: .4s; }
.sc-cells rect:nth-child(4) { animation-delay: .6s; }
.sc-cells rect:nth-child(5) { animation-delay: .8s; }
@keyframes scDrain { 0%, 100% { opacity: .12; } 40% { opacity: .9; } }

.sc-spin-slow { animation: scSpin 14s linear infinite; transform-origin: 316px 518px; }
@keyframes scSpin { to { transform: rotate(360deg); } }

.sc-keys { animation: scSwing 4.5s ease-in-out infinite; transform-origin: 176px 144px; }
@keyframes scSwing { 0%, 100% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } }

.sc-tool { animation: scSlide 5s ease-in-out infinite; }
@keyframes scSlide { 0%, 100% { transform: translate(830px, 250px); } 50% { transform: translate(830px, 226px); } }

.sc-fill { animation: scPulse 2.6s ease-in-out infinite; }
.sc-drip { animation: scDrip 2.4s ease-in infinite; }
@keyframes scDrip { 0% { transform: translateY(-16px); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(46px); opacity: 0; } }

.sc-crank { animation: scCrank 1.5s ease-in-out infinite; }
@keyframes scCrank { 0%, 100% { transform: rotate(0deg); } 30% { transform: rotate(48deg); } 60% { transform: rotate(-14deg); } }

.sc-warn { animation: scFlash 1.3s steps(1, end) infinite; }
.sc-spark circle { animation: scPulse 1.1s ease-in-out infinite; }
.sc-shatter { animation: scPulse 2.2s ease-in-out infinite; }

.sc-line { animation: scTension 3s ease-in-out infinite; }
@keyframes scTension { 0%, 100% { stroke-width: 4.5; opacity: .85; } 50% { stroke-width: 6; opacity: 1; } }

.sc-wrench { animation: scTurn 4s ease-in-out infinite; transform-origin: 336px 310px; }
@keyframes scTurn { 0%, 100% { transform: translate(250px, 300px) rotate(0deg); } 50% { transform: translate(250px, 300px) rotate(-17deg); } }

.sc-steam circle { animation: scRise 5s ease-out infinite; }
.sc-steam circle:nth-child(2) { animation-delay: 1.3s; }
.sc-steam circle:nth-child(3) { animation-delay: 2.6s; }
@keyframes scRise { 0% { transform: translateY(10px) scale(.7); opacity: 0; } 35% { opacity: .5; } 100% { transform: translateY(-70px) scale(1.5); opacity: 0; } }

.sc-hood { animation: scPulse 3.6s ease-in-out infinite; }
.sc-windows rect { animation: scFlash 4s steps(1, end) infinite; }
.sc-windows rect:nth-child(even) { animation-delay: 1.7s; }

/* ------------------------------------------------------- rating badge --- */

.ratingbadge {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  padding: 9px 16px 9px 13px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px); margin-top: 26px;
}
.rb-stars { display: inline-flex; gap: 1px; font-size: 15px; line-height: 1; }
.rb-stars .st { color: rgba(255,255,255,.22); }
.rb-stars .st.is-on { color: var(--accent); }
.rb-stars .st.is-half { background: linear-gradient(90deg, var(--accent) 50%, rgba(255,255,255,.22) 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rb-val { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: .01em; }
.rb-count { font-size: 12.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.rb-hero { margin-top: 28px; }

/* On the light contact page the same badge needs the opposite treatment. */
.rb-inline { margin-top: 0; background: color-mix(in oklab, var(--accent) 10%, transparent); border-color: color-mix(in oklab, var(--accent) 30%, transparent); padding: 6px 13px 6px 10px; }
.rb-inline .rb-val { color: var(--ink); }
.rb-inline .rb-count { color: #5b6270; }
.rb-inline .rb-stars .st { color: rgba(0,0,0,.16); }
.rb-inline .rb-stars .st.is-on { color: var(--accentDeep, var(--accent)); }

.hero-inner { width: min(1200px, 100% - 40px); margin-inline: auto; position: relative; }
.hero-eyebrow { display: inline-flex; align-items: center; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 0 0 22px; padding: 7px 14px 7px 12px; border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); border-radius: 100px; background: color-mix(in oklab, var(--accent) 9%, transparent); }
.hero-h1 { font-size: clamp(46px, 9.5vw, 118px); line-height: .92; letter-spacing: -0.025em; text-transform: uppercase; max-width: 15ch; }
.hero-h1 em { font-style: normal; color: var(--accent); display: block; }
.hero-sub { font-family: var(--display); font-size: clamp(19px, 2.6vw, 30px); font-weight: 600; letter-spacing: .01em; margin: 22px 0 34px; opacity: .92; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 30px; padding: 20px 24px; border-left: 4px solid var(--accent); background: rgba(255,255,255,.055); border-radius: 0 8px 8px 0; max-width: 62ch; font-size: 17px; line-height: 1.55; }
.hero-note b { color: var(--accent); }
.hero-strip { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px; padding: 0; margin: 34px 0 0; font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }
.hero-strip li { display: flex; align-items: center; gap: 8px; }
.hero-strip svg { width: 15px; height: 15px; color: var(--accent); }

/* ------------------------------------------------------------ sections -- */

.sec { padding: clamp(52px, 7.5vw, 96px) 0; }
.sec-alt { background: #f6f7f9; }
.sec-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 14px; }
.sec-h2 { font-size: clamp(32px, 5vw, 58px); letter-spacing: -0.02em; margin-bottom: 16px; max-width: 22ch; }
.sec-lede { font-size: clamp(17px, 2vw, 21px); color: #4c545f; max-width: 66ch; margin-bottom: 40px; }

/* ------------------------------------------------------- situation grid -- */

.sit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(178px, 1fr)); gap: 14px; }
.sit-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  padding: 22px 20px 20px; border: 2px solid #e3e6ea; border-radius: 12px;
  background: #fff; cursor: pointer; text-align: left;
  transition: transform .15s ease, border-color .15s, box-shadow .15s, background .15s;
}
.sit-tile:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 18px 38px -18px rgba(0,0,0,.35); }
.sit-tile[aria-pressed="true"], .sit-tile.is-on { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 10%, #fff); }
.sit-ico { font-size: 34px; line-height: 1; margin-bottom: 10px; }
.sit-label { font-family: var(--display); font-size: 22px; font-weight: 700; line-height: 1.05; }
.sit-sub { font-size: 13px; color: #6a7180; line-height: 1.3; }
.sec-triage { background: linear-gradient(180deg, #fff, #f6f7f9); }

/* ------------------------------------------------------------ the diff -- */

.diff { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.diff-p { font-size: 17.5px; color: #3c434e; max-width: 54ch; }
.diff-p em { color: #14161a; font-style: italic; }
.diff .ph-actions { margin-top: 28px; }
.diff-vs { display: grid; gap: 16px; }
.vs-card { border-radius: 12px; padding: 26px 28px; }
.vs-card ol { margin: 0; padding-left: 20px; }
.vs-card li { margin-bottom: 9px; font-size: 16px; }
.vs-tag { display: inline-block; font-family: var(--display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; font-weight: 700; }
.vs-a { background: #f2f3f5; color: #6a7180; }
.vs-a .vs-tag { background: #dfe2e7; color: #4c545f; }
.vs-b { background: var(--ink); color: #fff; box-shadow: 0 26px 60px -26px rgba(0,0,0,.6); }
.vs-b .vs-tag { background: var(--accent); color: var(--accent-ink); }
.vs-b b { color: var(--accent); }

/* ------------------------------------------------------- decision tool -- */

.fot { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: start; }
.fot-panel { background: #fff; border: 2px solid #e3e6ea; border-radius: 14px; padding: 28px; }
.fot-kicker { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 8px; }
.fot-h { font-size: 28px; margin-bottom: 8px; }
.fot-lede { font-size: 15.5px; color: #5b626d; margin-bottom: 20px; }
.fot-opts { display: grid; gap: 8px; }
.fot-out { position: sticky; top: 20px; }
.fot-empty { display: grid; place-items: center; gap: 12px; padding: 60px 30px; border: 2px dashed #d4d8de; border-radius: 14px; color: #8b929d; text-align: center; }
.fot-empty svg { width: 34px; height: 34px; }
.fot-empty p { margin: 0; }
.fot-result { background: var(--ink); color: #fff; border-radius: 14px; padding: 30px; }
.fot-verdict { font-family: var(--display); font-size: 26px; font-weight: 800; line-height: 1.1; color: var(--accent); margin-bottom: 16px; }
.fot-detail p { font-size: 15.5px; opacity: .92; }
.fot-detail b { color: var(--accent); }
.fot-detail ul { padding-left: 20px; font-size: 15.5px; opacity: .92; }
.fot-detail li { margin-bottom: 7px; }
.fot-fine { font-size: 12.5px; opacity: .55; border-top: 1px solid rgba(255,255,255,.14); padding-top: 14px; margin: 18px 0 0; line-height: 1.45; }
.fot-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.opt { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 2px solid #e3e6ea; border-radius: 8px; cursor: pointer; font-size: 16px; transition: border-color .12s, background .12s; background: #fff; }
.opt:hover { border-color: #b9bfc8; }
.opt:has(input:checked) { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 11%, #fff); font-weight: 600; }
.opt input { width: 20px; height: 20px; accent-color: var(--accent-deep); flex: 0 0 auto; margin: 0; }
.opt-list { display: grid; gap: 8px; }

/* ---------------------------------------------------------------- grids -- */

.cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.cardgrid-4 { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.card { background: #fff; border: 1px solid #e3e6ea; border-radius: 12px; padding: 26px; transition: transform .15s, box-shadow .15s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -22px rgba(0,0,0,.3); }
.card b { display: block; font-family: var(--display); font-size: 23px; margin-bottom: 8px; }
.card p { margin: 0; font-size: 15.5px; color: #4c545f; }
.card-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 8px; background: color-mix(in oklab, var(--accent) 16%, #fff); color: var(--accent-deep); font-size: 21px; margin-bottom: 14px; }

.svcgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.svccard { position: relative; display: block; padding: 26px 26px 52px; border-radius: 12px; background: #fff; border: 1px solid #e3e6ea; text-decoration: none; transition: transform .15s, box-shadow .15s, border-color .15s; }
.svccard:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 22px 44px -22px rgba(0,0,0,.35); }
.sc-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; background: var(--ink); color: var(--accent); font-size: 22px; margin-bottom: 16px; }
.svccard b { display: block; font-family: var(--display); font-size: 25px; margin-bottom: 6px; }
.svccard p { margin: 0; font-size: 15px; color: #6a7180; }
.sc-go { position: absolute; bottom: 22px; left: 26px; color: var(--accent-deep); font-size: 20px; transition: transform .15s; display: block; }
.svccard:hover .sc-go { transform: translateX(6px); }

.areagrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 14px; }
.areacard { position: relative; display: block; padding: 28px 26px 50px; border-radius: 12px; background: var(--ink); color: #fff; text-decoration: none; overflow: hidden; transition: transform .15s; }
.areacard::after { content: ''; position: absolute; inset: auto -20% -60% auto; width: 200px; height: 200px; border-radius: 50%; background: color-mix(in oklab, var(--accent) 22%, transparent); filter: blur(30px); }
.areacard:hover { transform: translateY(-4px); }
.areacard b { display: block; font-family: var(--display); font-size: 28px; margin-bottom: 6px; position: relative; }
.areacard p { margin: 0; font-size: 14.5px; opacity: .72; position: relative; }
.areacard .ac-go { position: absolute; bottom: 22px; left: 26px; color: var(--accent); font-size: 20px; transition: transform .15s; }
.areacard:hover .ac-go { transform: translateX(6px); }
.area-note { margin-top: 26px; font-size: 15.5px; color: #6a7180; }

.artgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(292px, 1fr)); gap: 16px; }
.artcard { display: flex; flex-direction: column; gap: 8px; padding: 26px; border-radius: 12px; background: #fff; border: 1px solid #e3e6ea; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.artcard:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(0,0,0,.32); }
.ac-tag { align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; background: color-mix(in oklab, var(--accent) 18%, #fff); color: var(--accent-deep); }
.artcard b { font-family: var(--display); font-size: 25px; line-height: 1.06; }
.artcard p { margin: 0; font-size: 15px; color: #6a7180; flex: 1; }
.ac-go { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--accent-deep); }
.ac-go svg { width: 16px; height: 16px; transition: transform .15s; }
.artcard:hover .ac-go svg { transform: translateX(4px); }

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 18px; }
.tcard { padding: 28px; border-radius: 12px; background: #fff; border: 1px solid #e3e6ea; }
.tc-n { display: block; font-family: var(--display); font-size: 46px; font-weight: 800; color: color-mix(in oklab, var(--accent) 55%, #fff); line-height: 1; margin-bottom: 8px; }
.tcard b { display: block; font-family: var(--display); font-size: 24px; margin-bottom: 8px; }
.tcard p { margin: 0; font-size: 15.5px; color: #4c545f; }
.sec-trust { background: #f6f7f9; }

/* ------------------------------------------------------------- gallery -- */

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.gallery-lg { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.pslot { margin: 0; position: relative; }

/* The drawn plate. Scene art fills it, a gradient veil keeps the caption legible
   over whatever the art is doing underneath. */
.pslot-box {
  position: relative; aspect-ratio: var(--ratio, 4/3); border-radius: 14px; overflow: hidden;
  display: grid; align-content: end; padding: 20px; isolation: isolate;
  background: var(--ink); border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 18px 40px -26px rgba(0,0,0,.75);
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .5s;
}
.pslot-box .sc { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.pslot-veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.4) 42%, transparent 72%);
}
.pslot-txt {
  color: #fff; font-family: var(--display); font-weight: 600; font-size: 15.5px; line-height: 1.35;
  letter-spacing: .01em; text-wrap: balance; position: relative;
}
.pslot.is-art .pslot-box::after {
  content: "Illustration — real photograph pending";
  position: absolute; top: 12px; left: 12px; z-index: 1;
  font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent); background: rgba(0,0,0,.62); border: 1px solid color-mix(in oklab, var(--accent) 34%, transparent);
  padding: 5px 9px; border-radius: 100px; backdrop-filter: blur(4px);
}
.pslot-box:hover { transform: translateY(-5px); box-shadow: 0 30px 56px -28px rgba(0,0,0,.85); }

/* A real photograph, the moment one is dropped in. */
.pslot.has-photo { border-radius: 14px; overflow: hidden; background: var(--ink); }
.pslot-img { width: 100%; aspect-ratio: var(--ratio, 4/3); object-fit: cover; display: block; }
.pslot-cap { padding: 12px 16px 14px; font-size: 14px; color: #fff; background: var(--ink); }
.slot-note { margin-top: 22px; padding: 18px 22px; border-left: 4px solid var(--accent); background: color-mix(in oklab, var(--accent) 8%, transparent); border-radius: 0 8px 8px 0; font-size: 15px; color: #4c545f; }
.slot-note code { background: rgba(0,0,0,.07); padding: 1px 6px; border-radius: 3px; font-size: 13.5px; }

/* ---------------------------------------------------------- cta / foot -- */

.cta-band { background: var(--ink); color: #fff; padding: clamp(46px, 6vw, 76px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent 0 22px, color-mix(in oklab, var(--accent) 6%, transparent) 22px 44px); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; position: relative; }
.cta-inner h2 { font-size: clamp(29px, 4.2vw, 46px); margin-bottom: 8px; }
.cta-inner p { margin: 0; opacity: .74; max-width: 46ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-foot { background: #0c0d10; color: #fff; padding: clamp(44px, 6vw, 72px) 0 0; }
.foot-top { display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: 46px; width: min(1200px, 100% - 40px); margin-inline: auto; padding-bottom: 44px; }
.foot-brand .brand-mark { margin-bottom: 14px; }
.foot-brand b { display: block; font-family: var(--display); font-size: 26px; margin-bottom: 8px; }
.foot-brand p { font-size: 15px; opacity: .62; margin-bottom: 20px; }
.foot-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 26px; }
.foot-cols b { display: block; font-family: var(--display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.foot-cols a { display: block; padding: 5px 0; font-size: 14.5px; color: rgba(255,255,255,.66); text-decoration: none; transition: color .12s; }
.foot-cols a:hover { color: #fff; }
.foot-nap { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; width: min(1200px, 100% - 40px); margin-inline: auto; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 14.5px; color: rgba(255,255,255,.66); }
.foot-nap a { color: var(--accent); text-decoration: none; }
.foot-legal { display: flex; gap: 22px; flex-wrap: wrap; justify-content: space-between; width: min(1200px, 100% - 40px); margin-inline: auto; padding: 20px 0 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12.5px; color: rgba(255,255,255,.42); }
.foot-legal span:last-child { max-width: 62ch; }

/* ------------------------------------------------------- page interior -- */

.crumbs { background: #f2f3f5; font-size: 13.5px; padding: 11px 0; color: #6a7180; }
.crumbs a { color: #6a7180; text-decoration: none; }
.crumbs a:hover { color: var(--accent-deep); text-decoration: underline; }
.crumbs i { margin: 0 8px; opacity: .5; font-style: normal; }

.pagehead { background: var(--ink); color: #fff; padding: clamp(44px, 6.5vw, 84px) 0; position: relative; overflow: hidden; }
.pagehead::after { content: ''; position: absolute; top: -50%; right: -10%; width: 45%; height: 200%; background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 20%, transparent), transparent); }
.pagehead > .wrap { position: relative; }

/* Interior page headers get the same drawn scene as the hero film, held further
   back and anchored right so the headline keeps its full contrast. */
/* Explicit stacking. The scrim is a positioned ::after that comes after .wrap in
   DOM order, so without these it paints straight over the headline and greys it
   out — which is exactly what it did. Art below, scrim above it, text on top. */
.pagehead.has-art { isolation: isolate; padding-block: clamp(56px, 8vw, 104px); }
.ph-film { position: absolute; inset: 0; overflow: hidden; opacity: .62; z-index: 0; }
.ph-film .sc, .ph-img { width: 100%; height: 100%; display: block; }
.ph-img { object-fit: cover; object-position: center 42%; }
.pagehead.has-art::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(96deg, var(--ink) 0%, color-mix(in oklab, var(--ink) 78%, transparent) 40%, transparent 78%);
}
.pagehead.has-art > .wrap { z-index: 2; }
.ph-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.ph-h1 { font-size: clamp(36px, 6.5vw, 72px); letter-spacing: -0.025em; max-width: 18ch; }
.ph-lede { font-size: clamp(17px, 2.2vw, 22px); opacity: .78; max-width: 60ch; margin: 18px 0 0; }
.ph-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pagehead-area .ph-h1 { max-width: 20ch; }

.sec-answer { padding-top: clamp(36px, 5vw, 56px); padding-bottom: 0; }
.answer { border: 2px solid var(--ink); border-radius: 14px; padding: 28px 30px; background: #fff; position: relative; }
.answer::before { content: 'Quick answer'; position: absolute; top: -11px; left: 24px; background: var(--ink); color: #fff; font-family: var(--display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; padding: 3px 12px; border-radius: 3px; }
.answer-q { font-family: var(--display); font-size: 24px; font-weight: 700; margin: 0 0 10px; }
.answer-a p { font-size: 16.5px; margin: 0; color: #33393f; }
.answer-meta { font-size: 13px; color: #6a7180; margin: 16px 0 0; padding-top: 14px; border-top: 1px solid #e6e8ec; }
.answer-meta a { color: var(--accent-deep); font-weight: 700; }

.prose { font-size: 17.5px; color: #2b3038; }
.prose h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 40px 0 14px; }
.prose h3 { font-size: 23px; margin: 30px 0 10px; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 20px; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--accent-deep); font-weight: 600; text-underline-offset: 3px; }
.prose b { color: #14161a; }

.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; gap: 4px; max-width: 860px; }
.steps li { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid #e3e6ea; }
.steps li:last-child { border-bottom: 0; }
.step-n { flex: 0 0 auto; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--accent); font-family: var(--display); font-size: 21px; font-weight: 800; }
.steps b { display: block; font-family: var(--display); font-size: 24px; margin-bottom: 5px; }
.steps p { margin: 0; font-size: 16px; color: #4c545f; }
.steps a { color: var(--accent-deep); font-weight: 600; }

.corridors { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; }
.corr { padding: 24px 26px; border-radius: 12px; background: #fff; border: 1px solid #e3e6ea; border-left: 5px solid var(--accent); }
.corr b { display: block; font-family: var(--display); font-size: 24px; margin-bottom: 8px; }
.corr p { margin: 0; font-size: 15.5px; color: #4c545f; }
.corr a { color: var(--accent-deep); font-weight: 600; }

.sitlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.sitlist li { padding: 22px 0; border-bottom: 1px solid #dfe2e7; }
.sitlist li:last-child { border-bottom: 0; }
.sitlist b { display: block; font-family: var(--display); font-size: 25px; margin-bottom: 6px; }
.sitlist p { margin: 0; font-size: 16px; color: #4c545f; max-width: 76ch; }
.sitlist a { color: var(--accent-deep); font-weight: 600; }

.related { margin-top: 40px; padding: 24px 26px; background: #f6f7f9; border-radius: 12px; }
.related b { display: block; font-family: var(--display); font-size: 13px; letter-spacing: .13em; text-transform: uppercase; color: #6a7180; margin-bottom: 10px; }
.related ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.related a { color: var(--accent-deep); font-weight: 700; text-underline-offset: 3px; }

/* ----------------------------------------------------------------- faq -- */

.faq { display: grid; gap: 2px; max-width: 900px; }
.faq-item { border-bottom: 1px solid #dfe2e7; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; font-family: var(--display); font-size: 22px; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); position: relative; transition: transform .2s; }
.faq-item summary i::before, .faq-item summary i::after { content: ''; position: absolute; inset: 50% 7px auto; height: 2.5px; background: var(--accent); transform: translateY(-50%); }
.faq-item summary i::after { transform: translateY(-50%) rotate(90deg); transition: opacity .2s; }
.faq-item[open] summary i::after { opacity: 0; }
.faq-a { padding: 0 0 22px; font-size: 16.5px; color: #4c545f; max-width: 76ch; }
.faq-a p { margin: 0 0 .8em; }
.faq-a a { color: var(--accent-deep); font-weight: 600; }

/* ------------------------------------------------------------- article -- */

.article { padding-bottom: 60px; }
.art-head { background: var(--ink); color: #fff; padding: clamp(42px, 6vw, 76px) 0; margin-bottom: 40px; }
.tldr { margin: 0 0 36px; padding: 26px 28px; border-radius: 12px; background: color-mix(in oklab, var(--accent) 12%, #fff); border: 1px solid color-mix(in oklab, var(--accent) 35%, #fff); }
.tldr b { display: block; font-family: var(--display); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.tldr ul, .tldr ol { margin: 0; padding-left: 22px; }
.tldr li { margin-bottom: 8px; font-size: 16.5px; }
.tldr p { margin: 0; font-size: 16.5px; }
.art-faq { margin-top: 50px; }
.art-faq h2 { font-size: 32px; margin-bottom: 18px; }
.art-help { margin-top: 44px; padding: 30px; border-radius: 12px; background: var(--ink); color: #fff; }
.art-help p { font-size: 17px; margin: 0; }
.art-help b { color: var(--accent); }

/* ------------------------------------------------------------- urgent --- */

.sec-urgent { padding: 30px 0 0; }
.urgent { border: 2px solid #d32116; border-radius: 12px; padding: 26px 28px; background: #fff5f4; }
.u-title { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 25px; font-weight: 800; color: #a4130e; margin: 0 0 12px; }
.u-title svg { width: 26px; height: 26px; flex: 0 0 auto; }
.urgent p { font-size: 16.5px; color: #3c434e; }
.u-list { margin: 0; padding-left: 22px; }
.u-list li { margin-bottom: 9px; font-size: 16.5px; }
.u-fine { font-size: 14px !important; color: #6a7180 !important; margin: 14px 0 0 !important; padding-top: 14px; border-top: 1px solid #f0c9c6; }
.urgent .btn { margin-top: 10px; }

/* ------------------------------------------------------------- contact -- */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 16px; }
.cc { padding: 30px 28px; border-radius: 14px; background: #fff; border: 1px solid #e3e6ea; display: flex; flex-direction: column; }
.cc-call { background: var(--ink); color: #fff; border-color: var(--ink); }
.cc-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 10px; background: color-mix(in oklab, var(--accent) 18%, #fff); color: var(--accent-deep); font-size: 22px; margin-bottom: 16px; }
.cc-call .cc-ico { background: var(--accent); color: var(--accent-ink); }
.cc b { font-family: var(--display); font-size: 25px; margin-bottom: 6px; }
.cc p { font-size: 15px; color: #6a7180; flex: 1; }
.cc-call p { color: rgba(255,255,255,.7); }
.cc-big { font-family: var(--display); font-size: 30px; font-weight: 800; color: var(--accent-deep); text-decoration: none; margin-top: 12px; background: none; border: 0; padding: 0; text-align: left; cursor: pointer; }
.cc-call .cc-big { color: var(--accent); }
.cc-sm { font-size: 21px; }

.napdl { display: grid; grid-template-columns: minmax(130px, 190px) 1fr; gap: 0; margin: 0; }
.napdl dt { font-family: var(--display); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: #6a7180; padding: 14px 0; border-top: 1px solid #dfe2e7; }
.napdl dd { margin: 0; padding: 14px 0; border-top: 1px solid #dfe2e7; font-size: 16.5px; }
.napdl a { color: var(--accent-deep); font-weight: 700; }
.nap-note { margin-top: 28px; padding: 20px 24px; background: #fff; border-radius: 10px; border-left: 4px solid var(--accent); font-size: 15px; color: #4c545f; }

/* ============================================================ THE FLOW == */

.flow-shell { position: fixed; inset: 0; z-index: 200; display: grid; place-items: end center; }
.flow-shell[hidden] { display: none; }
.flow-scrim { position: absolute; inset: 0; background: rgba(8,9,12,.72); backdrop-filter: blur(6px); animation: fadein .2s ease; }
@keyframes fadein { from { opacity: 0; } }
.flow-panel {
  position: relative; width: min(760px, 100%); max-height: 94dvh; display: flex; flex-direction: column;
  background: #fff; border-radius: 18px 18px 0 0; overflow: hidden;
  box-shadow: 0 -20px 80px -20px rgba(0,0,0,.6);
  animation: rise .3s cubic-bezier(.2,.9,.3,1);
}
@keyframes rise { from { transform: translateY(40px); opacity: .4; } }
@media (min-width: 780px) {
  .flow-shell { place-items: center; }
  .flow-panel { border-radius: 18px; max-height: 90dvh; }
}
.flow-head { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-bottom: 1px solid #e6e8ec; background: #fff; }
.flow-rail { display: flex; gap: 6px; flex: 1; }
.flow-rail span { height: 5px; flex: 1; border-radius: 100px; background: #e0e3e8; transition: background .3s; }
.flow-rail span.on { background: var(--accent); }
.flow-x { background: none; border: 0; font-size: 30px; line-height: 1; color: #8b929d; cursor: pointer; padding: 0 4px; }
.flow-x:hover { color: #14161a; }

.flow-body { overflow-y: auto; padding: 28px 26px 20px; flex: 1; -webkit-overflow-scrolling: touch; }
.flow-kicker { font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 8px; }
.flow-h { font-size: clamp(27px, 5vw, 38px); margin-bottom: 8px; }
.flow-lede { font-size: 16px; color: #5b626d; margin-bottom: 22px; }
.flow-hint { font-size: 14px; color: #8b929d; margin: -4px 0 14px; }
.flow-q { font-size: 24px; margin-bottom: 14px; }
.sit-grid-home { margin-top: 4px; }
.flow-step .sit-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.flow-step .sit-tile { padding: 16px 14px; }
.flow-step .sit-ico { font-size: 27px; margin-bottom: 6px; }
.flow-step .sit-label { font-size: 18px; }
.flow-step .sit-sub { font-size: 12px; }

.fld { margin-bottom: 16px; }
.fld label { display: block; font-size: 13.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #5b626d; margin-bottom: 7px; }
.fld input[type="text"], .fld input[type="tel"], .fld select, .fld textarea {
  width: 100%; padding: 14px 16px; font-size: 16.5px; font-family: inherit;
  border: 2px solid #dfe2e7; border-radius: 8px; background: #fff; color: inherit;
  transition: border-color .14s;
}
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--accent); outline: none; }
.fld-grid { display: grid; grid-template-columns: 92px 1fr 1fr; gap: 12px; }
.fld-grid-2 { grid-template-columns: 1fr 1fr; }
.fld-row { display: grid; gap: 8px; }
.chk { display: flex !important; align-items: center; gap: 11px; font-size: 15.5px !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 500 !important; color: #2b3038 !important; cursor: pointer; padding: 11px 14px; border: 2px solid #e3e6ea; border-radius: 8px; margin-bottom: 0 !important; }
.chk:has(input:checked) { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 9%, #fff); }
.chk input { width: 20px; height: 20px; accent-color: var(--accent-deep); flex: 0 0 auto; margin: 0; }

.btn-locate { width: 100%; justify-content: center; background: var(--ink); color: #fff; margin-bottom: 14px; }
.btn-locate:hover { background: #232830; }
.loc-state { font-size: 14.5px; margin: 0 0 16px; min-height: 1.2em; }
.loc-state.ok { color: #14803c; font-weight: 600; }
.loc-state.err { color: #b21810; }

.flow-callout { margin: 12px 0 0; padding: 15px 18px; background: color-mix(in oklab, var(--accent) 12%, #fff); border-radius: 8px; font-size: 15px; }
.flow-callout a { color: var(--accent-deep); font-weight: 700; }
.flow-safety { border: 2px solid #d32116; background: #fff5f4; border-radius: 10px; padding: 20px 22px; margin-bottom: 18px; }
.flow-safety-inline { margin-top: 14px; }
.fs-title { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-size: 22px; font-weight: 800; color: #a4130e; margin: 0 0 10px; }
.fs-title svg { width: 22px; height: 22px; flex: 0 0 auto; }
.fs-body { font-size: 15.5px; margin: 0 0 16px; }
.fs-list { margin: 0; padding-left: 20px; font-size: 15px; }
.fs-list li { margin-bottom: 7px; }
.fs-list a { color: #a4130e; font-weight: 700; }
.fs-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.flow-emergency { margin-top: 14px; border: 2px solid #d32116; background: #fff5f4; border-radius: 10px; padding: 18px 20px; }
.flow-emergency p { font-size: 15.5px; display: flex; gap: 10px; }
.flow-emergency svg { width: 22px; height: 22px; flex: 0 0 auto; color: #d32116; }

.photo-block { margin: 22px 0; padding: 22px; border-radius: 12px; background: #f6f7f9; }
.pb-title { font-family: var(--display); font-size: 22px; font-weight: 800; margin: 0 0 4px; }
.pb-title span { font-family: Inter, sans-serif; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #8b929d; font-weight: 600; margin-left: 8px; }
.pb-lede { font-size: 15px; color: #5b626d; margin-bottom: 16px; }
.pb-drop { display: grid; place-items: center; gap: 5px; padding: 30px 20px; border: 2px dashed #c6ccd4; border-radius: 10px; background: #fff; cursor: pointer; text-align: center; transition: border-color .14s, background .14s; }
.pb-drop:hover { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 6%, #fff); }
.pb-ico { font-size: 30px; }
.pb-cta { font-family: var(--display); font-size: 21px; font-weight: 700; }
.pb-sub { font-size: 13px; color: #8b929d; }
.pb-preview { display: flex; gap: 14px; align-items: center; margin-top: 14px; }
.pb-preview img { width: 96px; height: 96px; object-fit: cover; border-radius: 8px; }
.pb-meta p { font-size: 14px; margin: 0 0 5px; word-break: break-all; }
.pb-note { font-size: 12.5px; color: #8b929d; margin: 14px 0 0; line-height: 1.5; }

.flow-review { margin-top: 20px; padding: 18px 20px; border-radius: 10px; background: var(--ink); color: #fff; }
.fr-title { font-family: var(--display); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin: 0 0 10px; }
.fr-summary { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 13px; line-height: 1.65; white-space: pre-wrap; word-break: break-word; margin: 0; color: rgba(255,255,255,.9); }
.flow-fine { font-size: 12.5px; color: #8b929d; margin: 14px 0 0; line-height: 1.5; }

.flow-done { text-align: center; padding: 20px 0 10px; }
.done-mark { display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50%; background: #16a34a; color: #fff; margin: 0 auto 20px; animation: pop .4s cubic-bezier(.2,1.4,.4,1); }
.done-mark svg { width: 38px; height: 38px; }
@keyframes pop { from { transform: scale(.3); opacity: 0; } }
.flow-done .flow-h { margin-bottom: 18px; }
.next-list { text-align: left; list-style: none; padding: 0; margin: 0 0 24px; counter-reset: n; }
.next-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #e6e8ec; }
.next-list li:last-child { border-bottom: 0; }
.next-n { flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--accent); font-family: var(--display); font-weight: 800; font-size: 16px; }
.next-list b { display: block; font-family: var(--display); font-size: 19px; }
.next-list p { margin: 2px 0 0; font-size: 14.5px; color: #5b626d; }

.flow-foot { display: flex; align-items: center; gap: 12px; padding: 14px 26px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid #e6e8ec; background: #fff; flex-wrap: wrap; }
.foot-spacer { flex: 1; }
.btn-back { background: #f0f1f4; color: #4c545f; }
.btn-next, .btn-send { background: var(--accent); color: var(--accent-ink); box-shadow: 0 3px 0 var(--accent-deep); }
.btn-send { background: #16a34a; color: #fff; box-shadow: 0 3px 0 #0f7a35; }
.btn-next svg, .btn-send svg { width: 18px; height: 18px; }
.flow-callout-call { font-size: 14px; color: var(--accent-deep); font-weight: 700; text-decoration: none; }
.flow-callout-call:hover { text-decoration: underline; }

/* ------------------------------------------------------------ reviews --- */

.revwall { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.rev { padding: 26px; border-radius: 12px; background: #fff; border: 1px solid #e3e6ea; }
.rev-stars { color: #f5a623; font-size: 19px; letter-spacing: 2px; margin-bottom: 10px; }
.rev-body { font-size: 16px; color: #2b3038; margin-bottom: 14px; }
.rev-meta { font-size: 13.5px; color: #8b929d; }
.rev-empty { padding: 40px 30px; border: 2px dashed #cdd2d9; border-radius: 12px; text-align: center; color: #6a7180; }
.rev-empty b { display: block; font-family: var(--display); font-size: 24px; color: #14161a; margin-bottom: 8px; }

.bigstat { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.bs { padding: 28px; border-radius: 12px; background: var(--ink); color: #fff; text-align: center; }
.bs-n { display: block; font-family: var(--display); font-size: 54px; font-weight: 800; color: var(--accent); line-height: 1; }
.bs-l { display: block; font-size: 13.5px; letter-spacing: .08em; text-transform: uppercase; opacity: .68; margin-top: 8px; }
.bs-pending { background: #f2f3f5; color: #6a7180; border: 2px dashed #cdd2d9; }
.bs-pending .bs-n { color: #b9bfc8; font-size: 40px; }

/* -------------------------------------------------------- what happens -- */

.timeline { display: grid; gap: 0; max-width: 900px; }
.tl { display: grid; grid-template-columns: 74px 1fr; gap: 22px; position: relative; padding-bottom: 30px; }
.tl:last-child { padding-bottom: 0; }
.tl::before { content: ''; position: absolute; left: 36px; top: 44px; bottom: -6px; width: 3px; background: linear-gradient(180deg, var(--accent), color-mix(in oklab, var(--accent) 20%, transparent)); }
.tl:last-child::before { display: none; }
.tl-n { display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50%; background: var(--ink); color: var(--accent); font-family: var(--display); font-size: 27px; font-weight: 800; position: relative; z-index: 1; }
.tl-b b { display: block; font-family: var(--display); font-size: 27px; margin-bottom: 6px; padding-top: 16px; }
.tl-b p { margin: 0; font-size: 16.5px; color: #4c545f; max-width: 62ch; }
.tl-b a { color: var(--accent-deep); font-weight: 600; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1040px) {
  .diff, .fot { grid-template-columns: 1fr; }
  .fot-out { position: static; }
  .foot-top { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 900px) {
  body { font-size: 16.5px; }
  .head-nav, .head-cta { display: none; }
  .head-burger { display: flex; margin-left: auto; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 78px; }
  .flow-shell { z-index: 200; }
  .napdl { grid-template-columns: 1fr; }
  .napdl dt { padding-bottom: 0; border-top: 1px solid #dfe2e7; }
  .napdl dd { padding-top: 4px; border-top: 0; }
  .tl { grid-template-columns: 52px 1fr; gap: 16px; }
  .tl-n { width: 52px; height: 52px; font-size: 21px; }
  .tl::before { left: 25px; top: 34px; }
  .tl-b b { padding-top: 8px; font-size: 23px; }
}
@media (max-width: 560px) {
  .hero-note { padding: 16px 18px; font-size: 16px; }
  .btn { padding: 14px 20px; font-size: 18px; width: 100%; justify-content: center; }
  .btn-sm { width: auto; }
  .hero-actions, .ph-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .fld-grid { grid-template-columns: 1fr 1fr; }
  .fld-grid .fld:first-child { grid-column: 1 / -1; }
  .sit-grid { grid-template-columns: 1fr 1fr; }
  .flow-body { padding: 22px 18px 16px; }
  .flow-foot { padding: 12px 18px calc(14px + env(safe-area-inset-bottom)); }
  .flow-foot .btn { width: auto; flex: 1; }
  .flow-callout-call { display: none; }
  .foot-legal { flex-direction: column; gap: 10px; }
}

/* ------------------------------------------------------------ printing -- */

@media print {
  .site-head, .sticky-bar, .flow-shell, .cta-band, .site-foot { display: none !important; }
  body { padding: 0; font-size: 12pt; }
  .pagehead, .art-head { background: none !important; color: #000 !important; }
}
