/* ==========================================================================
   Coat Crafters — Core Stylesheet
   Palette: Deep Navy #0B1F33 · Cobalt #1769E0 · Steel #7E93AA · Off-white #F7F9FC
   ========================================================================== */

:root {
  --navy: #0B1F33;
  --navy-2: #10293F;
  --cobalt: #1769E0;
  --cobalt-dark: #0F54BC;
  --steel: #7E93AA;
  --off-white: #F7F9FC;
  --white: #FFFFFF;
  --text-dark: #101820;
  --text-muted: #5E6B78;
  --border-light: #D9E0E7;
  --error: #C03221;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --header-h: 76px;
  --callbar-h: 64px;
  --radius: 4px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(72px, 9vw, 128px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 200ms;
  --dur-med: 550ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: var(--cobalt); text-decoration: none; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; color: var(--navy); font-weight: 700; }

/* ---------- Focus / a11y ---------- */
:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 2px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 2000;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 600;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; color: var(--white); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: #D7E0EA; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--steel { background: #EDF1F6; }

/* Thin editorial grid lines */
.lined { position: relative; }
.lined::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(126,147,170,0.10) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  opacity: 0.9;
}
.section--navy.lined::before {
  background-image: linear-gradient(to right, rgba(126,147,170,0.14) 1px, transparent 1px);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobalt);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--cobalt); }
.section--navy .eyebrow { color: #9DC0FF; }
.section--navy .eyebrow::before { background: #9DC0FF; }

.display-1 { font-size: clamp(2.6rem, 6.2vw, 4.8rem); letter-spacing: -0.02em; font-weight: 800; }
.display-2 { font-size: clamp(2.05rem, 4.4vw, 3.4rem); letter-spacing: -0.02em; }
.display-3 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); letter-spacing: -0.01em; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--text-muted); max-width: 62ch; }
.section--navy .lead { color: #A9BBCB; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .display-2 { margin: 14px 0 16px; }
.section-head .num-tag { display: block; margin-bottom: 18px; }

.num-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--steel);
}
.section--navy .num-tag { color: var(--steel); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--cobalt); color: var(--white); }
.btn--primary:hover { background: var(--cobalt-dark); color: var(--white); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-2); color: var(--white); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--ghost { border-color: rgba(255,255,255,0.55); color: var(--white); background: transparent; }
.btn--ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--light { background: var(--white); color: var(--cobalt); }
.btn--light:hover { background: var(--off-white); color: var(--cobalt-dark); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--cobalt);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.text-link:hover::after { transform: scaleX(1); }
.text-link svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease-out); }
.text-link:hover svg { transform: translateX(4px); }
.section--navy .text-link { color: var(--white); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
  border-bottom: 1px solid transparent;
  background: transparent;
}
.site-header.is-scrolled,
.site-header--solid {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 0 rgba(11,31,51,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 40px; width: auto; }

.nav-desktop ul { display: flex; align-items: center; gap: 6px; }
.nav-desktop > ul > li > a,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 12px;
  border-radius: 3px;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { color: var(--cobalt); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle svg { width: 12px; height: 12px; transition: transform var(--dur-fast) var(--ease-out); }
.has-dropdown.is-open .dropdown-toggle svg,
.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown:focus-within .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -18px rgba(11,31,51,0.28);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), visibility var(--dur-fast);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown li a {
  display: block;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 3px;
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.dropdown li a span { display: block; font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.dropdown li a:hover { background: var(--off-white); color: var(--cobalt); }

.header-actions { display: flex; align-items: center; gap: 18px; flex: none; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  white-space: nowrap;
}
.header-phone:hover { color: var(--cobalt); }
.header-phone svg { width: 18px; height: 18px; color: var(--cobalt); }
.header-quote { padding: 13px 22px; font-size: 0.85rem; }

/* Scroll progress */
.scroll-progress {
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 3px;
}
.menu-toggle span {
  position: relative;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: background var(--dur-fast);
}
.menu-toggle span::before, .menu-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: transform var(--dur-fast) var(--ease-out), top var(--dur-fast) var(--ease-out);
}
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 880;
  background: var(--white);
  padding: 24px var(--gutter) 120px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), visibility var(--dur-fast);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav ul li { border-bottom: 1px solid var(--border-light); }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.mobile-nav a:hover { color: var(--cobalt); }
.mobile-nav .mobile-sub { padding-left: 14px; }
.mobile-nav .mobile-sub li { border-bottom: 0; }
.mobile-nav .mobile-sub a { font-size: 1rem; font-weight: 600; padding: 12px 4px; color: var(--text-muted); }
.mobile-nav__cta { margin-top: 24px; display: grid; gap: 12px; }
.mobile-nav__section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
  padding: 20px 4px 4px;
}

/* ==========================================================================
   HERO — scroll-transformed garage
   ========================================================================== */
.hero-transform { position: relative; height: 300vh; }
.hero-panel .text-link { color: var(--white); }
.hero-panel .text-link::after { background: var(--white); }
.hero-stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media .img-after { z-index: 2; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 3;
  background: linear-gradient(78deg, rgba(11,31,51,0.62) 0%, rgba(11,31,51,0.22) 46%, rgba(11,31,51,0) 72%);
  pointer-events: none;
}

/* JS not active: stack images so both remain visible */
.no-js .hero-transform,
.no-motion .hero-transform { height: auto !important; }
.no-js .hero-stage, .no-motion .hero-stage { min-height: 100svh; }

.hero-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  z-index: 4;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(11,31,51,0.12);
  opacity: 0;
  pointer-events: none;
}
.hero-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(11,31,51,0.35);
}
.hero-handle svg { width: 22px; height: 22px; }
.hero-tag {
  position: absolute;
  top: calc(50% + 46px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-block: calc(var(--header-h) + 48px) clamp(56px, 9vh, 110px);
}
.hero-panel { max-width: 620px; color: var(--white); }
.hero-panel h1 { color: var(--white); margin: 18px 0 20px; }
.hero-panel .lead { color: #C6D3E0; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 34px; }
.hero-note {
  margin-top: 26px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #9DB0C4;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-label {
  position: absolute;
  bottom: 26px;
  z-index: 6;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(11,31,51,0.72);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: 2px;
  backdrop-filter: blur(3px);
}
.hero-label--before { left: var(--gutter); }
.hero-label--after { right: var(--gutter); opacity: 0; }

.hero-complete {
  position: absolute;
  z-index: 6;
  right: var(--gutter);
  bottom: clamp(90px, 16vh, 150px);
  max-width: 400px;
  background: rgba(11,31,51,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 3px solid var(--cobalt);
  padding: 26px 28px;
  opacity: 0;
  visibility: hidden;
}
.hero-complete h2 { color: var(--white); font-size: 1.45rem; margin-bottom: 10px; }
.hero-complete p { color: #A9BBCB; font-size: 0.95rem; margin-bottom: 18px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #D7E0EA;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: cue-drop 1.8s var(--ease-out) infinite;
}
@keyframes cue-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
  counter-reset: trust;
}
.trust-item { border-top: 2px solid var(--navy); padding-top: 22px; }
.trust-item .trust-num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cobalt);
  display: block;
  margin-bottom: 12px;
}
.trust-item h3 { font-size: 1.16rem; margin-bottom: 8px; }
.trust-item p { font-size: 0.95rem; color: var(--text-muted); }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 36px);
}
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.card:hover { border-color: var(--steel); transform: translateY(-4px); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--navy); }
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--white);
  background: rgba(11,31,51,0.78);
  padding: 6px 10px;
  border-radius: 2px;
}
.card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.28rem; }
.card-body p { font-size: 0.95rem; color: var(--text-muted); flex: 1; }
.card-link {
  margin-top: 8px;
  align-self: flex-start;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.card:hover .card-link::after, .card-link:hover::after { transform: scaleX(1); }
.card-link svg { width: 15px; height: 15px; }

.chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
  border: 1px solid rgba(23,105,224,0.35);
  padding: 5px 10px;
  border-radius: 2px;
}

/* ==========================================================================
   BEFORE / AFTER COMPARISON
   ========================================================================== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 3vw, 44px); }
.ba-compare {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10.5;
  background: var(--navy);
  --pos: 50%;
}
.ba-compare img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-compare .ba-after { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(11,31,51,0.25);
  z-index: 3;
  pointer-events: none;
}
.ba-knob {
  position: absolute;
  top: 50%; left: var(--pos);
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(11,31,51,0.4);
  pointer-events: none;
  transition: box-shadow var(--dur-fast), outline-color var(--dur-fast);
}
.ba-knob svg { width: 20px; height: 20px; }
.ba-tag {
  position: absolute;
  top: 14px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(11,31,51,0.72);
  padding: 6px 12px;
  border-radius: 2px;
  pointer-events: none;
}
.ba-tag--before { left: 14px; }
.ba-tag--after { right: 14px; }
.ba-viz {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 3;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #D7E0EA;
  background: rgba(11,31,51,0.6);
  padding: 4px 9px;
  border-radius: 2px;
  pointer-events: none;
}
.ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.ba-compare:focus-within .ba-knob { outline: 3px solid var(--cobalt); outline-offset: 3px; box-shadow: 0 4px 20px rgba(23,105,224,0.45); }
.compare-caption { padding-top: 14px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.compare-caption strong { font-family: var(--font-display); font-size: 1.02rem; color: var(--navy); }
.section--navy .compare-caption strong { color: var(--white); }
.compare-caption span { font-size: 0.85rem; color: var(--text-muted); }
.section--navy .compare-caption span { color: var(--steel); }

/* ==========================================================================
   SPLIT SECTION (why us)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.split-media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 4.4; }
.split-media img { width: 100%; height: 112%; object-fit: cover; }
.split-media .viz-badge { position: absolute; left: 14px; bottom: 14px; z-index: 2; }
.check-list { display: grid; gap: 18px; margin-top: 28px; }
.check-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; }
.check-list svg { width: 22px; height: 22px; color: var(--cobalt); margin-top: 3px; }
.check-list strong { display: block; font-family: var(--font-display); font-size: 1.02rem; color: var(--navy); margin-bottom: 2px; }
.section--navy .check-list strong { color: var(--white); }
.check-list p { font-size: 0.93rem; color: var(--text-muted); }
.section--navy .check-list p { color: #A9BBCB; }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.process-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.process-timeline { position: relative; padding-left: 42px; }
.process-line {
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border-light);
}
.process-line-fill {
  position: absolute;
  inset: 0;
  background: var(--cobalt);
  transform: scaleY(0);
  transform-origin: top;
}
.p-step { position: relative; padding: 26px 0 26px 6px; border-bottom: 1px solid var(--border-light); transition: opacity var(--dur-fast); }
.p-step:last-child { border-bottom: 0; }
.p-step::before {
  content: "";
  position: absolute;
  left: -37px; top: 38px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-light);
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}
.p-step.is-active::before { background: var(--cobalt); border-color: var(--cobalt); box-shadow: 0 0 0 5px rgba(23,105,224,0.15); }
.p-step .p-step-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cobalt);
  display: block;
  margin-bottom: 8px;
}
.p-step h3 { font-size: 1.34rem; margin-bottom: 8px; }
.p-step p { color: var(--text-muted); font-size: 0.97rem; max-width: 52ch; }
.process-media { position: sticky; top: calc(var(--header-h) + 24px); }
.process-media .media-frame { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 4.6; background: var(--navy); }
.process-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.process-media img.is-current { opacity: 1; }
.process-media .viz-badge { position: absolute; z-index: 3; left: 14px; bottom: 14px; }

/* ==========================================================================
   FINISH EXPLORER
   ========================================================================== */
.finish-explorer { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 4vw, 64px); align-items: center; }
.finish-preview { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 16 / 11; background: var(--navy); }
.finish-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 500ms var(--ease-out), transform 700ms var(--ease-out);
}
.finish-preview img.is-current { opacity: 1; transform: scale(1); }
.finish-preview .viz-badge { position: absolute; z-index: 3; left: 14px; bottom: 14px; }
.finish-name { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-family: var(--font-display); color: var(--navy); margin: 12px 0 8px; }
.section--navy .finish-name { color: var(--white); }
.finish-desc { color: var(--text-muted); font-size: 0.98rem; min-height: 3.2em; }
.section--navy .finish-desc { color: #A9BBCB; }
.finish-apps { margin-top: 14px; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--steel); }
.finish-swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.swatch {
  display: grid;
  grid-template-rows: 54px auto;
  gap: 8px;
  padding: 10px 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  transition: border-color var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.swatch:hover { border-color: var(--steel); transform: translateY(-2px); }
.swatch[aria-pressed="true"] { border-color: var(--cobalt); box-shadow: 0 0 0 2px rgba(23,105,224,0.25); }
.swatch-chip { border-radius: 2px; border: 1px solid rgba(11,31,51,0.12); }
.swatch-name { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; }

/* ==========================================================================
   EDITORIAL GALLERY GRID
   ========================================================================== */
.edit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: clamp(14px, 1.6vw, 22px);
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.g-item:hover img, .g-item:focus-visible img { transform: scale(1.06); }
.g-item .g-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 18px;
  background: linear-gradient(to top, rgba(11,31,51,0.85), rgba(11,31,51,0));
  color: var(--white);
}
.g-caption strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.g-caption span { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #9DB0C4; margin-top: 3px; }
.g-item .viz-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.g-a { grid-column: span 4; grid-row: span 3; }
.g-b { grid-column: span 2; grid-row: span 2; }
.g-c { grid-column: span 2; grid-row: span 3; }
.g-d { grid-column: span 2; grid-row: span 2; }
.g-e { grid-column: span 2; grid-row: span 3; }
.g-f { grid-column: span 4; grid-row: span 3; }

.viz-badge {
  display: inline-block;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #E4EAF1;
  background: rgba(11,31,51,0.66);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 4px 9px;
  border-radius: 2px;
}

/* ---------- Gallery page ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(30px, 4vw, 48px); }
.filter-btn {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--border-light);
  background: var(--white);
  padding: 11px 20px;
  border-radius: 3px;
  transition: all var(--dur-fast) var(--ease-out);
}
.filter-btn:hover { border-color: var(--steel); }
.filter-btn[aria-pressed="true"] { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.gallery-grid .g-item { aspect-ratio: 4 / 3; height: auto; }
.gallery-grid .g-item.is-hidden { display: none; }
.gallery-grid .g-item.is-wide { grid-column: span 2; aspect-ratio: 8 / 3; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(7,15,25,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  border: 0;
  max-width: none; max-height: none;
  width: 100%; height: 100%;
}
.lightbox::backdrop { background: rgba(7,15,25,0.94); }
.lightbox figure { max-width: min(1120px, 100%); }
.lightbox img { max-height: 74vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: var(--radius); }
.lightbox figcaption { color: #C6D3E0; text-align: center; padding-top: 16px; font-size: 0.92rem; }
.lightbox figcaption strong { color: var(--white); font-family: var(--font-display); display: block; }
.lb-btn {
  position: absolute;
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast);
}
.lb-btn:hover { background: rgba(255,255,255,0.2); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   PLACEHOLDER NOTE (development only)
   ========================================================================== */
.placeholder-note {
  border: 1px dashed var(--steel);
  background: #EFF3F8;
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  text-align: left;
}
.placeholder-note .ph-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--steel);
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.placeholder-note h3 { margin-bottom: 8px; }
.placeholder-note p { color: var(--text-muted); font-size: 0.95rem; max-width: 64ch; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.cta-band .cta-media { position: absolute; inset: 0; opacity: 0.32; }
.cta-band .cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: #A9BBCB; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 32px; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.cta-phone:hover { color: #9DC0FF; }
.cta-phone svg { width: 22px; height: 22px; color: #9DC0FF; }
.cta-small { margin-top: 22px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); font-weight: 700; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--dur-fast);
}
.faq-item summary:hover { color: var(--cobalt); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast), border-color var(--dur-fast);
}
.faq-item summary .faq-icon svg { width: 14px; height: 14px; }
.faq-item[open] summary { color: var(--cobalt); }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--cobalt); border-color: var(--cobalt); color: var(--white); }
.faq-item .faq-answer { padding: 0 44px 26px 4px; color: var(--text-muted); font-size: 0.98rem; max-width: 70ch; }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding-block: calc(var(--header-h) + clamp(56px, 8vw, 96px)) clamp(56px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(126,147,170,0.12) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin: 16px 0 18px; max-width: 18ch; }
.page-hero .lead { color: #A9BBCB; max-width: 64ch; }
.page-hero .hero-cta { margin-top: 30px; }
.crumbs { position: relative; z-index: 2; margin-bottom: 8px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs li { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--steel); display: flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "/"; color: rgba(126,147,170,0.5); }
.crumbs a { color: #9DB0C4; }
.crumbs a:hover { color: var(--white); }
.crumbs [aria-current] { color: var(--white); }

/* ==========================================================================
   CONTENT BLOCKS (prose-ish)
   ========================================================================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 4vw, 64px); align-items: start; }
.half { max-width: 60ch; }
.half h2, .half h3 { margin-bottom: 14px; }
.half p + p { margin-top: 14px; }
.half p { color: var(--text-muted); }
.bullet-list { display: grid; gap: 12px; margin-top: 18px; }
.bullet-list li { position: relative; padding-left: 26px; color: var(--text-dark); font-size: 0.97rem; }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 0.62em;
  width: 10px; height: 2px;
  background: var(--cobalt);
}
.media-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.ratio-43 { aspect-ratio: 4/3; }
.ratio-169 { aspect-ratio: 16/9; }
.ratio-11 { aspect-ratio: 1/1; }

/* Service detail rows (services page) */
.service-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(44px, 5vw, 72px);
  border-top: 1px solid var(--border-light);
}
.service-row:first-of-type { border-top: 0; }
.service-row--flip .service-row-media { order: 2; }
.service-row h2 { margin: 12px 0 16px; }
.service-row .lead { margin-bottom: 6px; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 22px 0 26px; }
.benefit-list li { display: flex; gap: 10px; align-items: baseline; font-size: 0.95rem; }
.benefit-list li::before { content: ""; flex: none; width: 8px; height: 8px; background: var(--cobalt); border-radius: 1px; transform: translateY(-1px); }

/* Process tabs */
.tabs-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: clamp(32px, 4vw, 52px); }

/* Stats row (service areas) */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}
.area-card:hover { border-color: var(--steel); transform: translateY(-3px); }
.area-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.area-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-shell {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 48px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.field label .req { color: var(--error); }
.field .hint { font-size: 0.8rem; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--border-light);
  border-radius: 3px;
  padding: 13px 15px;
  background: var(--off-white);
  font-size: 0.97rem;
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--steel); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(23,105,224,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--error); }
.field-error { display: none; font-size: 0.82rem; color: var(--error); font-weight: 600; }
.field.has-error .field-error { display: block; }
.field input[type="file"] { padding: 11px 13px; background: var(--white); }
.field input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--cobalt); }
.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.consent-row label { font-family: var(--font-body); font-weight: 400; font-size: 0.9rem; color: var(--text-muted); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0; }
.form-actions { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.form-status { font-size: 0.92rem; font-weight: 600; }
.form-status--error { color: var(--error); }
.form-alt { margin-top: 18px; font-size: 0.92rem; color: var(--text-muted); }
.privacy-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; }
.btn[disabled] { opacity: 0.65; cursor: progress; }

/* Info cards (contact) */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.info-card svg { width: 26px; height: 26px; color: var(--cobalt); }
.info-card h3 { font-size: 1.05rem; }
.info-card p, .info-card a { font-size: 0.97rem; color: var(--text-muted); }
.info-card a { font-weight: 700; color: var(--navy); }
.info-card a:hover { color: var(--cobalt); }
.map-placeholder {
  border: 1px dashed var(--steel);
  background:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(126,147,170,0.12) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(126,147,170,0.12) 34px 35px),
    #EFF3F8;
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--cobalt); }
.map-placeholder strong { font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; }
.map-placeholder span { color: var(--text-muted); font-size: 0.92rem; max-width: 46ch; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy); color: #A9BBCB; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-block: clamp(56px, 6vw, 84px);
}
.footer-brand img { height: 42px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.94rem; max-width: 40ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(126,147,170,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #C6D3E0;
  transition: all var(--dur-fast) var(--ease-out);
}
.footer-social a:hover { background: var(--cobalt); border-color: var(--cobalt); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h3 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: #A9BBCB; font-size: 0.95rem; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--cobalt); flex: none; margin-top: 3px; }
.footer-contact a { color: var(--white); font-weight: 600; }
.footer-contact a:hover { color: #9DC0FF; }
.footer-bottom {
  border-top: 1px solid rgba(126,147,170,0.22);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom a { color: #C6D3E0; }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   MOBILE CALL BAR
   ========================================================================== */
.mobile-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: var(--callbar-h);
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: var(--cobalt);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 -4px 20px rgba(11,31,51,0.25);
}
.mobile-call-bar svg { width: 22px; height: 22px; flex: none; }
.mobile-call-bar:hover, .mobile-call-bar:active { color: var(--white); background: var(--cobalt-dark); }

/* ==========================================================================
   MISC
   ========================================================================== */
.center { text-align: center; }
.center .section-head { margin-inline: auto; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.section-foot { margin-top: clamp(36px, 4vw, 56px); display: flex; justify-content: center; }
.img-shadow { box-shadow: 0 30px 60px -30px rgba(11,31,51,0.35); }

.detail-list { display: grid; gap: 10px; margin-top: 10px; }
.detail-list li { display: grid; grid-template-columns: 130px 1fr; gap: 14px; font-size: 0.95rem; padding-block: 10px; border-bottom: 1px solid var(--border-light); }
.detail-list dt { font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.detail-list dd { color: var(--text-muted); }

/* Thank-you / 404 */
.message-page { min-height: 70vh; display: flex; align-items: center; }
.message-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(23,105,224,0.1);
  color: var(--cobalt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
}
.message-icon svg { width: 38px; height: 38px; }

/* Progressive-enhancement default: content visible without JS */
[data-reveal], [data-clip], [data-parallax] { will-change: transform, opacity; }
