/* ============================================================
   Denco Colorado — Plumbing · Home Renovations · Landscaping
   One crew. Whole house.
   Dark navy theme, signal-red CTA system — shared stylesheet
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Navy (dominant) */
  --navy-950: #060B16;
  --navy-900: #0A1220;
  --navy-800: #0E1B33;
  --navy-700: #142950;
  --navy-600: #1B3A6B;
  --navy-500: #2A4E88;

  /* Signal red — CTAs + action moments ONLY */
  --red-700: #9E0C24;
  --red-600: #C8102E;
  --red-500: #E11B33;

  /* Whites / chrome */
  --white:  #FFFFFF;
  --cloud:  #F2F5FA;
  --silver: #C9D2E0;

  /* Steel grays */
  --steel-300: #9AA7BC;
  --steel-400: #8593AB; /* small text on navy — 6.1:1 on navy-900 (AA) */
  --steel-500: #66748C; /* light backgrounds only — fails AA on navy for small text */
  --line:      #1E2C47;
  --line-lt:   #D8DFEA;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 12px rgba(4,10,24,.35);
  --shadow-md: 0 16px 40px rgba(4,10,24,.45);
  --shadow-lg: 0 28px 72px rgba(4,10,24,.60);
  --glow-red:  0 10px 30px rgba(200,16,46,.35);

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --section-y: clamp(72px, 9vw, 120px);
  --maxw: 1280px;
  --maxw-wide: 1440px;
  --header-h: 76px;

  --ff-display: "Kanit", "Arial Narrow", system-ui, sans-serif;
  --ff-body: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --skew: -8deg;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-snap:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 180ms; --dur-base: 300ms; --dur-reveal: 700ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  font-family: var(--ff-body);
  color: var(--steel-300);
  background: var(--navy-900);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  animation: pageIn 300ms var(--ease-out);
}
@keyframes pageIn { from { opacity: 0; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 16px; }
::selection { background: var(--red-600); color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
}
h1, h2 { font-style: italic; text-transform: uppercase; }
h1 em, h2 em { font-style: italic; color: var(--silver); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--maxw-wide); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--silver);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(2.2rem, 4.8vw, 3.6rem); margin-bottom: 18px; }
.lead { font-size: 1.12rem; color: var(--steel-300); max-width: 640px; }
.center .lead { margin: 0 auto; }

/* Stripe-and-stars divider */
.stars-divider { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; margin: 14px 0; }
.stars-divider svg { display: block; }
.rv-draw { transform: scaleX(0); transform-origin: left; transition: transform 600ms var(--ease-inout); }
.rv-draw.in { transform: scaleX(1); }

/* Ghost background type */
.ghost-type {
  position: absolute;
  font-family: var(--ff-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(6rem, 18vw, 15rem);
  line-height: 1;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,210,224,.12);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* ---------- Buttons (brand angle) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  transform: skewX(var(--skew));
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-fast), color var(--dur-fast);
  position: relative;
  overflow: hidden;
}
.btn > span, .btn > svg { transform: skewX(8deg); }
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover svg { transform: skewX(8deg) translateX(3px); }
.btn--primary { background: var(--red-600); color: var(--white); box-shadow: var(--glow-red); }
.btn--primary:hover { background: var(--red-500); }
.btn--primary:active { background: var(--red-700); transform: skewX(var(--skew)) scale(.98); }
.btn--ghost { border: 1.5px solid rgba(201,210,224,.45); color: var(--white); }
.btn--ghost:hover { border-color: var(--silver); background: rgba(201,210,224,.08); }
.btn--navy { background: var(--navy-600); color: var(--white); }
.btn--navy:hover { background: var(--navy-500); }
.btn--lg { padding: 17px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; justify-content: center; }
/* one-time sheen on hero primary CTA */
.btn--sheen::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  transform: translateX(-160%);
}
.btn--sheen.sheen-play::after { transition: transform 900ms var(--ease-inout); transform: translateX(160%); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 16px 0;
  transform: translateY(-100%);
  animation: headerIn 500ms var(--ease-out) forwards;
  transition: background var(--dur-base), padding var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
@keyframes headerIn { to { transform: translateY(0); } }
.site-header.is-solid {
  background: rgba(6,11,22,.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-img { height: 46px; width: auto; display: block; transition: height var(--dur-base) var(--ease-out); }
.is-solid .logo-img { height: 38px; }
.logo-img--full { height: 62px; }
.is-solid .logo-img--full { height: 62px; }
@media (max-width: 640px){ .logo-img { height: 34px; } .is-solid .logo-img { height: 28px; } }
.logo-word {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: 1.7rem; text-transform: uppercase; letter-spacing: .01em; line-height: 1;
  color: var(--white); display: inline-flex; align-items: baseline;
}
.logo-word .d1 { color: var(--white); }
.logo-word .d2 { color: var(--red-500); }
.logo-sub { display: block; margin-left: 2px; font-family: var(--ff-display); font-weight: 600; font-size: .5rem; letter-spacing: .22em; color: var(--silver); text-transform: uppercase; margin-top: 2px; }
.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  font-family: var(--ff-display); font-weight: 600; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 8px 14px; border-radius: var(--radius-xs);
  color: var(--steel-300);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.main-nav a:hover { color: var(--white); background: rgba(201,210,224,.07); }
.main-nav a.active { color: var(--white); box-shadow: inset 0 -2px 0 var(--red-600); border-radius: 0; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; }
.header-phone svg { width: 20px; height: 20px; color: var(--red-500); }
.header-phone span { display: flex; flex-direction: column; line-height: 1.2; font-family: var(--ff-display); font-weight: 700; color: var(--white); font-size: .98rem; }
.header-phone small { font-family: var(--ff-body); font-weight: 500; font-size: .68rem; color: var(--steel-400); text-transform: uppercase; letter-spacing: .08em; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: .25s var(--ease-out); }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.nav-overlay { position: fixed; inset: 0; background: rgba(6,11,22,.7); opacity: 0; visibility: hidden; transition: .3s; z-index: 70; }
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 86vw); z-index: 80;
  background: var(--navy-950); border-left: 1px solid var(--line);
  padding: 90px 28px 28px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .32s var(--ease-out);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav > a {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem;
  text-transform: uppercase; padding: 12px 8px; color: var(--steel-300);
  border-bottom: 1px solid var(--line);
}
.mobile-nav > a.active, .mobile-nav > a:hover { color: var(--white); }
.mobile-nav .btn { margin-top: 22px; }
.m-phone { margin-top: 18px; display: flex; flex-direction: column; font-size: .85rem; color: var(--steel-400); }
.m-phone a { font-family: var(--ff-display); font-weight: 800; font-size: 1.3rem; color: var(--white); }
.m-phone a.m-text { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--silver); margin-top: 6px; display: inline-flex; align-items: center; gap: 6px; }
.m-phone a.m-text svg { width: 14px; height: 14px; color: var(--red-500); }
.header-text { white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-display); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--silver); padding: 8px 10px; border: 1px solid rgba(201,210,224,.28); border-radius: var(--radius-sm); transition: border-color var(--dur-fast), color var(--dur-fast); }
.header-text:hover { color: var(--white); border-color: var(--silver); }
.header-text svg { width: 15px; height: 15px; color: var(--red-500); }

/* Mobile sticky call bar */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  display: none; grid-template-columns: 1fr 1fr 1.15fr;
  transform: translateY(100%);
  transition: transform var(--dur-base) var(--ease-out);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 24px rgba(4,10,24,.6);
}
.call-bar.is-up { transform: translateY(0); }
.call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; font-size: .86rem; padding: 15px 6px; color: var(--white);
}
.call-bar .cb-estimate { background: var(--navy-700); }
.call-bar .cb-text { background: var(--navy-600); }
.call-bar .cb-call { background: var(--red-600); }
.call-bar svg { width: 17px; height: 17px; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
}
.hero.is-loaded .hero-bg img { animation: heroSettle 1600ms var(--ease-out) forwards, kenBurns 14s linear 1600ms infinite alternate; }
@keyframes heroSettle { to { transform: scale(1.0); } }
@keyframes kenBurns { from { transform: scale(1.0); } to { transform: scale(1.05); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,11,22,.88) 0%, rgba(6,11,22,.35) 65%), linear-gradient(to bottom, rgba(10,18,32,.25), rgba(10,18,32,0) 30%, rgba(10,18,32,0) 62%, var(--navy-900) 100%);
  opacity: 0; transition: opacity 600ms linear;
}
.hero.is-loaded .hero-bg::after { opacity: 1; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 720px; padding: 140px 0 120px; }
.hero-eyebrow { clip-path: inset(0 100% 0 0); }
.hero.is-loaded .hero-eyebrow { transition: clip-path 450ms var(--ease-inout) 100ms; clip-path: inset(0 0 0 0); }
.hero h1 { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 900; margin: 6px 0 4px; }
.hero h1 .h1-line { display: block; overflow: hidden; }
.hero h1 .h1-line > span { display: block; transform: translateY(110%); }
.hero.is-loaded .h1-line:nth-child(1) > span { transition: transform 700ms var(--ease-out) 220ms; transform: translateY(0); }
.hero.is-loaded .h1-line:nth-child(2) > span { transition: transform 700ms var(--ease-out) 340ms; transform: translateY(0); }
.hero h1 .accent { color: var(--red-500); }
.hero-divider { opacity: 0; }
.hero.is-loaded .hero-divider { opacity: 1; transition: opacity 100ms linear 480ms; }
.hero.is-loaded .hero-divider .rv-draw { transform: scaleX(1); transition-delay: 480ms; }
.hero-sub { font-size: 1.14rem; max-width: 560px; margin-top: 14px; opacity: 0; transform: translateY(20px); }
.hero.is-loaded .hero-sub { transition: opacity 600ms var(--ease-out) 560ms, transform 600ms var(--ease-out) 560ms; opacity: 1; transform: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; opacity: 0; transform: translateY(20px); }
.hero.is-loaded .hero-actions { transition: opacity 600ms var(--ease-out) 700ms, transform 600ms var(--ease-out) 700ms; opacity: 1; transform: none; }
.hero-strip { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 38px; }
.hero-strip div {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--silver); font-weight: 500;
  opacity: 0; transform: translateY(16px);
}
.hero.is-loaded .hero-strip div { opacity: 1; transform: none; transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.hero.is-loaded .hero-strip div:nth-child(1) { transition-delay: 840ms; }
.hero.is-loaded .hero-strip div:nth-child(2) { transition-delay: 920ms; }
.hero.is-loaded .hero-strip div:nth-child(3) { transition-delay: 1000ms; }
.hero-strip svg { width: 16px; height: 16px; color: var(--red-500); flex: 0 0 auto; }
.scroll-hint {
  position: absolute; bottom: 84px; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-display); font-weight: 600; font-size: .7rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--steel-400);
  padding-top: 46px; z-index: 2; opacity: 0;
}
.hero.is-loaded .scroll-hint { transition: opacity 400ms linear 1000ms; opacity: 1; }
.scroll-hint::before {
  content: ""; position: absolute; top: 0; left: 50%; width: 1.5px; height: 36px;
  background: var(--silver); animation: drop 1.9s var(--ease-out) infinite;
}
@keyframes 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} }

/* Diagonal seam sections */
.seam-top { clip-path: polygon(0 3vw, 100% 0, 100% 100%, 0 100%); margin-top: -3vw; position: relative; z-index: 3; }

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; position: relative; }
.section--well { background: var(--navy-950); }
.section--raised { background: var(--navy-800); }
.section--cloud { background: var(--cloud); }
.section--cloud h1, .section--cloud h2, .section--cloud h3, .section--cloud h4 { color: var(--navy-900); }
.section--cloud .lead, .section--cloud p { color: #3d4a61; }
.section--cloud .eyebrow { color: var(--navy-500); }
.section--cloud h2 em { color: var(--red-600); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Value bar ---------- */
.value-bar { background: var(--navy-950); border-bottom: 1px solid var(--line); position: relative; z-index: 3; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-grid > div {
  display: flex; align-items: center; gap: 14px; padding: 26px 22px;
  border-left: 1px solid var(--line);
  transition: background var(--dur-fast);
}
.value-grid > div:first-child { border-left: 0; }
.value-grid > div:hover { background: var(--navy-800); }
.value-grid svg { width: 30px; height: 30px; color: var(--silver); flex: 0 0 auto; }
.value-grid b { display: block; font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; font-size: .95rem; color: var(--white); letter-spacing: .03em; }
.value-grid small { font-size: .82rem; color: var(--steel-400); }

/* ---------- Intro (asymmetric 7/5) ---------- */
.intro-grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; z-index: 1; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag-list span {
  font-family: var(--ff-display); font-weight: 600; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 6px 14px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  color: var(--steel-300); transition: border-color var(--dur-fast), color var(--dur-fast);
}
.tag-list span:hover { border-color: var(--navy-500); color: var(--silver); }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,210,224,.24); box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.media-cross { margin-bottom: -48px; z-index: 2; }

/* ---------- Service switcher ---------- */
.switcher { position: relative; }
.switch-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); position: relative; margin-bottom: clamp(28px, 4vw, 44px); }
.switch-tab {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem;
  text-transform: uppercase; letter-spacing: .04em;
  padding: 14px 22px 16px; color: var(--steel-400);
  position: relative; transition: color var(--dur-fast);
}
.switch-tab:hover { color: var(--silver); }
.switch-tab[aria-selected="true"] { color: var(--white); }
.switch-indicator {
  position: absolute; bottom: -1px; left: 0; height: 3px; background: var(--red-600);
  transition: transform 320ms var(--ease-inout), width 320ms var(--ease-inout);
}
.switch-progress {
  position: absolute; bottom: -1px; left: 0; height: 2px; background: rgba(201,210,224,.35);
  transform-origin: left; transform: scaleX(0); pointer-events: none;
}
.switch-progress.run { animation: switchCount 6s linear forwards; }
@keyframes switchCount { to { transform: scaleX(1); } }
.switch-panel { display: none; grid-template-columns: 8fr 4fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.switch-panel.is-active { display: grid; }
.switch-panel .panel-media { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,210,224,.24); box-shadow: var(--shadow-md); margin-right: calc((100vw - min(100vw - 48px, 1280px)) / -2); }
.switch-panel .panel-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.panel-media.wipe-in img { clip-path: inset(0 100% 0 0); animation: clipIn 480ms var(--ease-inout) 60ms forwards; }
@keyframes clipIn { to { clip-path: inset(0 0 0 0); } }
.panel-copy .st { opacity: 0; transform: translateY(16px); }
.switch-panel.is-active .panel-copy .st { animation: fadeUp 400ms var(--ease-out) forwards; }
.switch-panel.is-active .panel-copy .st:nth-child(1) { animation-delay: 60ms; }
.switch-panel.is-active .panel-copy .st:nth-child(2) { animation-delay: 130ms; }
.switch-panel.is-active .panel-copy .st:nth-child(3) { animation-delay: 200ms; }
.switch-panel.is-active .panel-copy .st:nth-child(4) { animation-delay: 270ms; }
.switch-panel.is-active .panel-copy .st:nth-child(5) { animation-delay: 340ms; }
.switch-panel.is-active .panel-copy .st:nth-child(6) { animation-delay: 410ms; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
.panel-copy h3 { font-size: 1.7rem; font-style: italic; text-transform: uppercase; margin-bottom: 12px; }
.mini-list { margin: 16px 0 8px; }
.mini-list li {
  padding: 8px 0 8px 2px; border-bottom: 1px solid var(--line);
  font-size: .95rem; color: var(--steel-300); display: flex; align-items: center; gap: 10px;
  border-left: 2px solid transparent; transition: border-color var(--dur-fast), padding-left var(--dur-fast);
}
.mini-list li:hover { border-left-color: var(--navy-500); padding-left: 8px; }
.mini-list svg { width: 14px; height: 14px; color: var(--red-500); flex: 0 0 auto; }
.promise-line { font-family: var(--ff-display); font-style: italic; font-weight: 600; font-size: .9rem; color: var(--silver); margin: 14px 0 20px; letter-spacing: .02em; }
.panel-links { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-display); font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; color: var(--silver); }
.text-link svg { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease-out); }
.text-link:hover { color: var(--white); }
.text-link:hover svg { transform: translateX(3px); }
.text-link--tel:hover svg { transform: none; }

/* ---------- Pinned trade chapters ---------- */
.chapters { position: relative; }
.chapter { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.chapter-bg { position: absolute; inset: -6% 0; z-index: 0; }
.chapter-bg img { width: 100%; height: 100%; object-fit: cover; }
.chapter-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,11,22,.92) 0%, rgba(6,11,22,.55) 55%, rgba(6,11,22,.25) 100%); }
.chapter .container { position: relative; z-index: 2; }
.chapter-num {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: clamp(5rem, 12vw, 12rem); line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,210,224,.18);
  position: absolute; right: 4vw; bottom: 6vh; z-index: 1; pointer-events: none;
}
.chapter-content { max-width: 560px; padding: 90px 0; }
.chapter h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 10px 0 16px; }
.chapter .proof-lines { margin: 20px 0 28px; }
.chapter .proof-lines li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; font-size: 1.02rem; color: var(--silver); }
.chapter .proof-lines svg { width: 18px; height: 18px; color: var(--red-500); flex: 0 0 auto; margin-top: 4px; }
@media (min-width: 1024px) {
  .chapters.sticky-on { }
  .chapters.sticky-on .chapter { position: sticky; top: 0; }
}

/* ---------- Counter stats ---------- */
.stats-band { background: var(--cloud); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b {
  display: block; font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: clamp(2.8rem, 5vw, 4.2rem); color: var(--navy-900); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .stars-divider { margin: 10px auto; }
.stat small { display: block; font-family: var(--ff-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--steel-500); }

/* ---------- Cards / gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 550ms var(--ease-out); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,11,22,.82), rgba(6,11,22,.05) 55%);
  opacity: .55; transition: opacity var(--dur-base);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: .85; }
.gallery-item:hover .gallery-cap { transform: translateY(0); opacity: 1; }
.gallery-item:hover { outline: 1px solid rgba(201,210,224,.35); outline-offset: -1px; }
.gallery-cap {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  display: flex; flex-direction: column;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem; color: var(--white);
  text-transform: uppercase; letter-spacing: .02em;
  transform: translateY(8px); opacity: 0; transition: .3s var(--ease-out);
}
.gallery-cap small {
  font-size: .68rem; letter-spacing: .14em; color: var(--silver); font-weight: 600;
  margin-bottom: 2px;
}
.gal-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--ff-display); font-weight: 700; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--silver);
  background: rgba(14,27,51,.9); padding: 5px 12px;
  transform: skewX(var(--skew)); border-radius: var(--radius-xs);
}
.gal-tag span { display: inline-block; transform: skewX(8deg); }
.gallery-caption-line { font-size: .85rem; color: var(--steel-400); font-weight: 400; text-transform: none; letter-spacing: 0; font-family: var(--ff-body); margin-top: 3px; }

/* Filter pills */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-pill {
  font-family: var(--ff-display); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 9px 20px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); color: var(--steel-300);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), transform 200ms var(--ease-snap);
}
.filter-pill:hover { border-color: var(--navy-500); color: var(--silver); }
.filter-pill.is-active { background: var(--navy-600); border-color: var(--navy-600); color: var(--silver); }
.filter-pill:active { transform: scale(.96); }
.gallery-item.filter-out { opacity: 0; transform: scale(.96); transition: opacity 200ms, transform 200ms; }
.gallery-item.filter-hidden { display: none; }
.gallery-item.filter-in { animation: fadeUp 250ms var(--ease-out) both; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { padding: 28px 24px; background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 280ms var(--ease-out), border-color 280ms; }
.process-step:hover { transform: translateY(-6px); border-color: var(--navy-500); }
.process-step .num {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: 2.6rem; color: transparent; -webkit-text-stroke: 1.5px var(--navy-500);
  line-height: 1; display: block; margin-bottom: 14px;
}
.process-step h3 { font-size: 1.2rem; text-transform: uppercase; margin-bottom: 8px; }
.process-step p { font-size: .93rem; color: var(--steel-300); }

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

/* Area chips (contact + about pages) */
.area-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.area-list span {
  font-family: var(--ff-display); font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--silver); background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 6px 12px; white-space: nowrap;
}

/* ---------- Feature list (We Show Up) ---------- */
.split { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.feature-list { margin-top: 24px; }
.feature-list li { display: flex; gap: 16px; padding: 13px 0; }
.feature-list svg { width: 21px; height: 21px; color: var(--red-500); flex: 0 0 auto; margin-top: 3px; }
.feature-list b { display: block; font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; font-size: 1.02rem; color: var(--white); letter-spacing: .02em; }
.feature-list p { font-size: .93rem; color: var(--steel-300); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: clamp(90px, 11vw, 150px) 0; text-align: center; overflow: hidden; }
.cta-band-bg { position: absolute; inset: -8% 0; z-index: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-bg::after { content: ""; position: absolute; inset: 0; background: rgba(6,11,22,.82); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); margin: 10px 0 16px; }
.cta-band p { max-width: 560px; margin: 0 auto; color: var(--silver); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 32px; }
.rotator { display: inline-block; position: relative; color: var(--red-500); min-width: 5ch; text-align: left; }
.rotator .rot-word { display: inline-block; }
.rotator .rot-word.rot-out { animation: rotOut 260ms var(--ease-inout) forwards; }
.rotator .rot-word.rot-in { animation: rotIn 320ms var(--ease-out); }
@keyframes rotOut { to { opacity: 0; transform: translateY(-14px); } }
@keyframes rotIn { from { opacity: 0; transform: translateY(16px); } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 170px 0 90px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,11,22,.94) 0%, rgba(6,11,22,.72) 60%, rgba(6,11,22,.5) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: .82rem; color: var(--steel-400); margin-bottom: 14px; opacity: 0; animation: fadeUp 300ms var(--ease-out) 80ms forwards; }
.breadcrumb a:hover { color: var(--silver); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); overflow: hidden; }
.page-hero h1 > span { display: block; transform: translateY(110%); animation: maskRise 600ms var(--ease-out) 140ms forwards; }
@keyframes maskRise { to { transform: translateY(0); } }
.page-hero .lead { margin-top: 16px; opacity: 0; animation: fadeUp 500ms var(--ease-out) 380ms forwards; }

/* Urgent bar */
.urgent-bar { background: var(--navy-800); border: 1px solid var(--line); border-left: 3px solid var(--red-600); border-radius: var(--radius-sm) ; padding: 14px 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 26px; font-size: .98rem; color: var(--silver); }
.urgent-bar a { font-family: var(--ff-display); font-weight: 800; color: var(--white); display: inline-flex; align-items: center; gap: 8px; }
.urgent-bar a:hover { color: var(--red-500); }
.urgent-bar svg { width: 17px; height: 17px; color: var(--red-500); }

/* Sticky subnav */
.subnav { position: sticky; top: 0; z-index: 50; background: rgba(6,11,22,.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.subnav-inner { display: flex; gap: 4px; position: relative; overflow-x: auto; scrollbar-width: none; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  font-family: var(--ff-display); font-weight: 700; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .05em; white-space: nowrap;
  padding: 15px 20px 17px; color: var(--steel-400); transition: color var(--dur-fast);
}
.subnav a:hover { color: var(--silver); }
.subnav a.is-current { color: var(--white); }
.subnav-indicator { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--red-600); transition: transform 320ms var(--ease-inout), width 320ms var(--ease-inout); }

/* Trade chapter (services page) */
.trade { padding: var(--section-y) 0; position: relative; }
.trade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; z-index: 1; }
.trade-grid.flip .trade-media { order: 2; }
.trade-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,210,224,.24); box-shadow: var(--shadow-md); }
.trade-media img { width: 100%; height: 100%; object-fit: cover; }
.trade .ghost-type { top: -8px; right: 0; font-size: clamp(5rem, 10vw, 9rem); z-index: 0; }
.svc-list { display: grid; grid-template-columns: 1fr; gap: 0; margin: 20px 0 26px; }
.svc-item { padding: 14px 0 14px 2px; border-bottom: 1px solid var(--line); border-left: 2px solid transparent; transition: border-color var(--dur-fast), padding-left var(--dur-fast); }
.svc-item:hover { border-left-color: var(--navy-500); padding-left: 10px; }
.svc-item h3 { font-size: 1.05rem; text-transform: uppercase; margin-bottom: 4px; }
.svc-item p { font-size: .92rem; color: var(--steel-300); }
.trade-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

/* What moves the price */
.price-factors { background: var(--navy-800); border: 1px solid var(--line); border-left: 3px solid var(--red-600); border-radius: var(--radius-sm); padding: 18px 20px 16px; margin: 0 0 26px; }
.price-factors h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-style: italic; color: var(--silver); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.price-factors h4 svg { width: 15px; height: 15px; color: var(--red-500); }
.price-factors ul { display: grid; gap: 6px; }
.price-factors li { font-size: .9rem; color: var(--steel-300); padding-left: 16px; position: relative; }
.price-factors li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; background: var(--navy-500); transform: skewX(var(--skew)); }
.price-factors li b { color: var(--white); font-weight: 600; }
.price-factors p { font-size: .82rem; color: var(--steel-400); margin-top: 10px; }

/* FAQ (details/summary; FAQPage schema lives in the page head) */
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); margin-top: 36px; }
.faq-group h3 { font-size: 1.05rem; text-transform: uppercase; font-style: italic; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 2px solid var(--red-600); display: inline-block; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; padding: 14px 0; font-family: var(--ff-display); font-weight: 600; font-size: .98rem; color: var(--white); line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: 0 0 auto; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: var(--radius-xs); display: grid; place-items: center; color: var(--silver); font-weight: 700; transition: background var(--dur-fast); }
.faq[open] summary::after { content: "–"; background: var(--navy-700); }
.faq summary:hover::after { border-color: var(--navy-500); }
.faq p { font-size: .92rem; color: var(--steel-300); padding: 0 40px 16px 0; }
.faq p a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* Contact: text strip */
.text-strip { max-width: 760px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 22px; padding: 14px 18px; background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .92rem; color: var(--steel-300); }
.text-strip .btn { padding: 10px 18px; font-size: .84rem; }
.text-strip b { color: var(--white); }

/* Cross-trade band */
.cross-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; position: relative; }
.cross-line { position: absolute; top: -18px; left: 8%; right: 8%; height: 2px; background: var(--navy-500); transform-origin: left; }
.cross-card { background: var(--white); border: 1px solid var(--line-lt); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform 280ms var(--ease-out), box-shadow 280ms; }
.cross-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cross-card h3 { color: var(--navy-900); font-size: 1.05rem; text-transform: uppercase; margin-bottom: 6px; }
.cross-card p { font-size: .9rem; }

/* ---------- About page ---------- */
.creed-list { max-width: 860px; }
.creed-row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line-lt); }
.creed-num {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: 3.2rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px var(--navy-500);
  clip-path: inset(0 100% 0 0);
}
.creed-row.in .creed-num { animation: clipIn 400ms var(--ease-inout) forwards; }
.creed-row b { display: block; font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-style: italic; font-size: 1.25rem; color: var(--navy-900); margin-bottom: 4px; }
.creed-row p { font-size: .97rem; }
.red-underline { position: relative; white-space: nowrap; }
.red-underline::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--red-600); transform: scaleX(0); transform-origin: left; }
.red-underline.draw::after { transition: transform 500ms var(--ease-inout) 300ms; transform: scaleX(1); }

.type-moment { padding: var(--section-y) 0; }
.type-moment .tm-line { display: block; overflow: hidden; font-family: var(--ff-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: clamp(2.6rem, 7.5vw, 6.4rem); line-height: 1.02; color: var(--white); }
.type-moment .tm-line > span { display: block; transform: translateY(110%); }
.type-moment .tm-line.in > span { transition: transform 700ms var(--ease-out); transform: translateY(0); }
.type-moment .tm-line:nth-child(2).in > span { transition-delay: 120ms; }
.type-moment .tm-line:nth-child(3).in > span { transition-delay: 240ms; }
.type-moment .tm-line .red { color: var(--red-500); }

/* ---------- Contact page ---------- */
.phone-hero { text-align: left; }
.phone-micro { font-family: var(--ff-display); font-weight: 700; font-size: .85rem; letter-spacing: .16em; text-transform: uppercase; color: var(--silver); display: flex; align-items: center; gap: 10px; }
.phone-micro svg { width: 20px; height: 20px; color: var(--red-500); }
.phone-micro.pulse svg { animation: pulseOnce 600ms var(--ease-snap) 900ms; }
@keyframes pulseOnce { 0%{transform:scale(1)} 50%{transform:scale(1.12)} 100%{transform:scale(1)} }
.giant-phone { display: block; font-family: var(--ff-display); font-weight: 900; font-style: italic; font-size: clamp(2.4rem, 6vw, 4.5rem); color: var(--white); overflow: hidden; margin: 6px 0 4px; }
.giant-phone > span { display: block; transform: translateY(110%); animation: maskRise 600ms var(--ease-out) 200ms forwards; }
.giant-phone:hover { color: var(--red-500); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.form-card { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-md); }
.form-card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.form-intro { font-size: .95rem; color: var(--steel-300); margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--steel-300); margin-bottom: 7px; transition: color var(--dur-fast); }
.form-row:focus-within label { color: var(--silver); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 13px 15px;
  background: var(--navy-900); color: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-xs);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--navy-500); background: var(--navy-800); }
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row .field-error { display: none; font-size: .8rem; color: var(--red-500); margin-top: 6px; }
.form-row.has-error input, .form-row.has-error select, .form-row.has-error textarea { border-color: var(--red-600); border-width: 1.5px; animation: shake 300ms var(--ease-inout); }
.form-row.has-error .field-error { display: block; animation: fadeUp 200ms var(--ease-out); }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 50%{transform:translateX(4px)} 75%{transform:translateX(-4px)} }
.micro-note { font-size: .78rem; color: var(--steel-400); margin-top: 12px; }
.seg-control { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; border: 1px solid var(--line); border-radius: var(--radius-xs); overflow: hidden; background: var(--navy-900); }
.seg-control input { position: absolute; opacity: 0; pointer-events: none; }
.seg-control label {
  margin: 0; padding: 11px 6px; text-align: center; cursor: pointer;
  font-size: .72rem; position: relative; z-index: 1;
  transition: color 240ms var(--ease-inout);
}
.seg-fill { position: absolute; top: 0; bottom: 0; left: 0; width: 25%; background: var(--navy-600); transition: transform 240ms var(--ease-inout); z-index: 0; }
.seg-control input:checked + label { color: var(--white); }
.seg-micro { font-size: .78rem; color: var(--steel-400); margin-top: 7px; }
.form-success, .form-error { display: none; padding: 18px 20px; border-radius: var(--radius-sm); margin-top: 18px; font-size: .95rem; }
.form-success { background: rgba(42,78,136,.25); border: 1px solid var(--navy-500); color: var(--silver); }
.form-success h3 { text-transform: uppercase; font-style: italic; margin-bottom: 6px; }
.form-error { background: rgba(200,16,46,.12); border: 1px solid var(--red-600); color: var(--silver); }
.form-card.sent form { opacity: .6; pointer-events: none; }
.form-success.show, .form-error.show { display: block; animation: successIn 320ms var(--ease-out); }
@keyframes successIn { from { opacity: 0; transform: translateY(-12px); } }
.next-steps { margin-top: 34px; position: relative; }
.next-steps .step { display: flex; gap: 16px; padding: 14px 0; }
.next-steps .num { font-family: var(--ff-display); font-weight: 900; font-style: italic; font-size: 1.6rem; color: transparent; -webkit-text-stroke: 1.2px var(--navy-500); line-height: 1.2; flex: 0 0 44px; }
.next-steps b { display: block; font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; font-size: .98rem; color: var(--white); }
.next-steps p { font-size: .9rem; }
.contact-cards { display: grid; gap: 14px; margin-top: 26px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; transition: border-color var(--dur-fast), transform 280ms var(--ease-out);
}
.contact-card:hover { border-color: var(--navy-500); transform: translateY(-3px); }
.contact-card .ic { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--navy-700); display: grid; place-items: center; flex: 0 0 auto; }
.contact-card .ic svg { width: 21px; height: 21px; color: var(--silver); }
.contact-card h3 { font-size: .95rem; text-transform: uppercase; }
.contact-card p { font-size: .9rem; color: var(--steel-300); word-break: break-word; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); border-top: 1px solid var(--line); padding: 70px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer-about p { font-size: .92rem; color: var(--steel-400); margin-top: 16px; max-width: 340px; }
.footer-col h4 { font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-style: italic; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: .92rem; color: var(--steel-400); transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--silver); }
.footer-contact li { display: flex; align-items: center; gap: 10px; color: var(--steel-400); font-size: .92rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--steel-400); flex: 0 0 auto; }
.footer-divider { display: flex; justify-content: center; padding: 8px 0 22px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: .82rem; color: var(--steel-400);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90; background: rgba(6,11,22,.94);
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transition: opacity 200ms linear, visibility 200ms;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 88vw); max-height: 84vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); transform: scale(.94); opacity: 0; transition: transform 240ms var(--ease-out), opacity 240ms; }
.lightbox.is-open img { transform: scale(1); opacity: 1; }
.lightbox-close, .lightbox-nav {
  position: absolute; color: var(--silver); font-size: 2.2rem; line-height: 1;
  width: 52px; height: 52px; display: grid; place-items: center;
  transition: color var(--dur-fast), background var(--dur-fast); border-radius: 50%;
}
.lightbox-close:hover, .lightbox-nav:hover { color: var(--white); background: rgba(201,210,224,.1); }
.lightbox-close { top: 22px; right: 26px; }
.lightbox-nav.prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal system ---------- */
.rv    { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.rv-l  { opacity: 0; transform: translateX(-36px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.rv-r  { opacity: 0; transform: translateX(36px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.rv-scale { opacity: 0; transform: scale(.96); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.rv-clip { clip-path: inset(0 100% 0 0); transition: clip-path 800ms var(--ease-inout); }
.rv.in, .rv-l.in, .rv-r.in, .rv-scale.in { opacity: 1; transform: none; }
.rv-clip.in { clip-path: inset(0 0 0 0); }
[data-d="1"] { transition-delay: 90ms; }
[data-d="2"] { transition-delay: 180ms; }
[data-d="3"] { transition-delay: 270ms; }
[data-d="4"] { transition-delay: 360ms; }
[data-d="5"] { transition-delay: 450ms; }

/* ---------- View transitions ---------- */
@view-transition { navigation: auto; }

/* Grid blowout guard — 1fr tracks must not expand to child min-content */
.intro-grid > *, .split > *, .contact-grid > *, .trade-grid > *, .switch-panel > *, .cross-cards > *, .footer-top > *, .faq-grid > * { min-width: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .switch-panel .panel-media { margin-right: 0; }
  .header-text { display: none; }
}
@media (max-width: 1023px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .header-cta .btn, .header-text { display: none; }
  .burger { display: flex; }
  .intro-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .media-cross { margin-bottom: 0; }
  .switch-panel, .switch-panel.is-active { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid > div { border-left: 0; border-top: 1px solid var(--line); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-grid, .trade-grid.flip { grid-template-columns: 1fr; }
  .trade-grid.flip .trade-media { order: 0; }
  .cross-cards { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .chapter { min-height: auto; }
  .chapter-content { padding: 70px 0; }
  .ghost-type { display: none; }
}
@media (max-width: 860px) {
  body { font-size: 16px; padding-bottom: 58px; }
  .call-bar { display: grid; }
  .switch-tabs { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .switch-tabs::-webkit-scrollbar { display: none; }
  .switch-tab { scroll-snap-align: start; flex: 0 0 auto; }
  .hero-content { padding: 130px 0 100px; }
  .scroll-hint { display: none; }
  .seg-control { grid-template-columns: repeat(2, 1fr); }
  .seg-fill { display: none; }
  .seg-control input:checked + label { background: var(--navy-600); }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .creed-row { grid-template-columns: 64px 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .rv, .rv-l, .rv-r, .rv-clip, .rv-scale { opacity: 1; transform: none; clip-path: none; }
  .rv-draw { transform: scaleX(1); }
  .hero-bg img { transform: none; }
  .hero .h1-line > span, .page-hero h1 > span, .giant-phone > span, .type-moment .tm-line > span { transform: none; }
  .hero-eyebrow { clip-path: none; }
  .hero-sub, .hero-actions, .hero-strip div, .scroll-hint, .breadcrumb, .page-hero .lead { opacity: 1; transform: none; }
  .creed-num { clip-path: none; }
  .switch-progress { display: none; }
}

/* ---------- Service area — route board ---------- */
.route-section { overflow: hidden; }
.route-board {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(20,41,80,.30) 0%, rgba(6,11,22,0) 58%),
    var(--navy-900);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.route-col {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(24px, 2.4vw, 34px) clamp(20px, 2vw, 28px) clamp(30px, 3vw, 42px);
  border-left: 1px solid var(--line);
  isolation: isolate;
}
.route-col:first-child { border-left: 0; }
.route-col::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--navy-500), var(--red-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.route-col:hover::after, .route-col:focus-within::after { transform: scaleX(1); }

/* oversized compass letter, anchored bottom-right, clipped by the column */
.route-ghost {
  position: absolute; right: 4px; bottom: -.26em; z-index: -1;
  font-family: var(--ff-display); font-style: italic; font-weight: 900;
  font-size: clamp(7rem, 10vw, 11rem); line-height: .8;
  color: var(--white); opacity: .04;
  pointer-events: none; user-select: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.route-col:hover .route-ghost { opacity: .075; transform: translateY(-6px); }

.route-head { margin-bottom: 20px; }
.route-head h3 {
  font-family: var(--ff-display); font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem); color: var(--white); margin: 0;
}
.route-rule { display: block; width: 40px; height: 3px; margin: 10px 0 9px; background: var(--red-600); }
.route-corridor {
  display: block; font-family: var(--ff-display); font-weight: 600;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--steel-300);
}

/* the route spine — a highway centerline the city stops sit on */
.route-cities {
  list-style: none; margin: 0; padding: 0 0 0 20px; position: relative; flex: 1 1 auto;
}
.route-cities::before {
  content: ""; position: absolute; left: 3px; top: 4px; bottom: 0; width: 2px;
  background-image: linear-gradient(180deg, var(--navy-600) 55%, transparent 55%);
  background-size: 2px 11px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
}
.route-cities li {
  position: relative; display: flex; align-items: baseline; gap: 10px;
  padding: 12px 0; border-top: 1px solid rgba(30,44,71,.6);
  transition: transform var(--dur-fast) var(--ease-out);
}
.route-cities li:first-child { border-top: 0; padding-top: 2px; }
.route-cities li:hover { transform: translateX(4px); }
.rc-mark {
  position: absolute; left: -20px; top: .62em;
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid var(--navy-500); background: var(--navy-900);
  transition: background var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.route-cities li:hover .rc-mark { background: var(--red-600); border-color: var(--red-500); box-shadow: 0 0 0 4px rgba(200,16,46,.16); }
.rc-name {
  font-family: var(--ff-display); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .015em;
  font-size: clamp(.95rem, 1.15vw, 1.08rem); color: var(--silver);
  transition: color var(--dur-fast);
}
.route-cities li:hover .rc-name { color: var(--white); }
.rc-meta {
  margin-left: auto; font-family: var(--ff-body); font-size: .66rem;
  letter-spacing: .09em; text-transform: uppercase; color: var(--steel-300); white-space: nowrap;
}
.rc-meta b { color: var(--white); font-weight: 700; letter-spacing: .12em; }
.route-cities li.is-base .rc-mark {
  background: var(--red-600); border-color: var(--red-500);
  box-shadow: 0 0 0 4px rgba(200,16,46,.14);
}
.route-cities li.is-base .rc-name { color: var(--white); }

.route-stub {
  position: relative; display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap; margin-top: 18px; padding: 22px clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--line); border-left: 3px solid var(--red-600);
  border-radius: var(--radius); background: var(--navy-900);
}
.stub-perf {
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 9px 1px; background-repeat: repeat-x;
}
.route-stub p { margin: 0; flex: 1 1 340px; color: var(--steel-300); font-size: .95rem; }
.route-stub p b { color: var(--white); font-weight: 600; }
.stub-call {
  display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto;
  font-family: var(--ff-display); font-style: italic; font-weight: 800;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem); text-transform: uppercase;
  color: var(--white); text-decoration: none; letter-spacing: .01em;
  transition: color var(--dur-fast), transform var(--dur-fast) var(--ease-out);
}
.stub-call svg { width: 20px; height: 20px; color: var(--red-500); flex: 0 0 auto; }
.stub-call:hover, .stub-call:focus-visible { color: var(--red-500); transform: translateX(3px); }

@media (max-width: 1000px) {
  .route-board { grid-template-columns: repeat(2, 1fr); }
  .route-col:nth-child(3) { border-left: 0; }
  .route-col:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .route-board { grid-template-columns: 1fr; }
  .route-col { border-left: 0; padding-bottom: 30px; }
  .route-col + .route-col { border-top: 1px solid var(--line); }
  .route-ghost { font-size: 6.5rem; }
  .route-stub { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .route-col:hover .route-ghost, .route-cities li:hover, .stub-call:hover { transform: none; }
}
