/* Daniel's Crew v3 — modern conversion-first system
   Brand palette fixed: navy #24235c family + orange #ef7f34 family */

@font-face {
  font-family: "Outfit";
  src: url("/fonts/outfit-var-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --navy: #24235c;
  --navy-2: #1d1c4a;
  --navy-3: #12122e;
  --navy-4: #0e0e25;
  --navy-t50: #9291ae;
  --navy-t70: #bdbdce;
  --navy-t80: #d3d3de;
  --wash: #f4f4f8;
  --line: rgba(36, 35, 92, .14);
  --orange: #ef7f34;
  --orange-2: #bf662a;
  --peach: #f5b285;
  --paper: #fce5d6;
  --body: #565664;
  --display: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --text: "Inter", "Helvetica Neue", Arial, sans-serif;
  --container: 1220px;
  --gutter: 24px;
  --section: clamp(72px, 9vw, 130px);
  --r-tile: 24px;
  --r-card: 18px;
  --r-input: 12px;
  --shadow-lg: 0 24px 60px -24px rgba(18, 18, 46, .35);
  --shadow-sm: 0 10px 30px -14px rgba(18, 18, 46, .22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--text);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 860px) { body { padding-bottom: 74px; } } /* room for sticky action bar */

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--navy); color: #fff; padding: 10px 18px; font-size: 14px; }
.skip-link:focus { left: 0; }

/* ---------- type ---------- */
h1, h2, h3, .display-font {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy-3);
  line-height: 1.06;
  letter-spacing: -0.022em;
}
.display { font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.3vw, 2.7rem); letter-spacing: -0.018em; }
h3 { font-size: 1.3rem; line-height: 1.25; letter-spacing: -0.01em; }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-2); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; background: var(--orange); border-radius: 2px; }
.on-dark .eyebrow { color: var(--peach); }
.lead { font-size: 18.5px; max-width: 44em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none; padding: 16px 30px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: background-color .22s ease, color .22s ease, border-color .22s ease,
    transform .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-solid { background: var(--orange); color: var(--navy-4); box-shadow: 0 12px 28px -12px rgba(239, 127, 52, .8); }
.btn-solid:hover { background: var(--peach); color: var(--navy-4); }
.btn-ghost { background: transparent; color: var(--navy-3); border-color: rgba(36, 35, 92, .35); }
.btn-ghost:hover { border-color: var(--navy-3); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }
.on-dark .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn[disabled] { opacity: .55; cursor: wait; transform: none; }

.link-arrow {
  font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--orange-2);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.link-arrow .arr { transition: transform .22s ease; }
.link-arrow:hover .arr { transform: translateX(5px); }
.on-dark .link-arrow { color: var(--peach); }

/* ---------- topbar + header ---------- */
.topbar { background: var(--navy-4); color: var(--navy-t70); font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 8px 0; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--peach); }
.topbar-contacts { display: flex; gap: 22px; }
@media (max-width: 720px) { .topbar-area { display: none; } .topbar-inner { justify-content: center; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 58px; width: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-a {
  font-family: var(--display); font-size: 15px; font-weight: 600; text-decoration: none;
  color: var(--navy-2); padding: 9px 14px; border-radius: 999px;
  transition: background-color .2s ease, color .2s ease;
}
.nav-a:hover { background: var(--wash); }
.nav-a.is-active { background: var(--navy-3); color: #fff; }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 12px 22px; font-size: 14px; }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: 12px; width: 46px; height: 46px; cursor: pointer; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 12px; right: 12px; height: 2px; border-radius: 2px;
  background: var(--navy); transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span { top: 22px; }
.nav-toggle span::before { left: 0; right: 0; top: -7px; }
.nav-toggle span::after { left: 0; right: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; display: none;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; padding: 14px var(--gutter) 22px; }
  .nav-a { display: block; font-size: 16.5px; padding: 13px 16px; border-radius: 14px; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--navy-4); overflow: hidden; }
.hero-photo, .hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(75deg, rgba(14, 14, 37, .96) 12%, rgba(14, 14, 37, .82) 46%, rgba(18, 18, 46, .45) 100%); }
.hero-glow { position: absolute; width: 720px; height: 720px; border-radius: 50%; right: -220px; bottom: -380px; background: radial-gradient(circle, rgba(239, 127, 52, .34), transparent 65%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 5vw, 72px); align-items: center; padding: clamp(56px, 7vw, 104px) 0; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.rating-chip {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px; padding: 8px 18px; margin-bottom: 26px;
  color: var(--navy-t80); font-size: 13.5px; font-weight: 500;
}
.rating-chip .stars { color: var(--orange); letter-spacing: 2px; font-size: 14px; }
.rating-chip strong { color: #fff; font-weight: 700; }

.hero-title { color: #fff; margin-bottom: 20px; }
.hero-title .accent { color: var(--peach); }
.hero-sub { color: var(--navy-t80); font-size: 18px; max-width: 32em; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--navy-t80); border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; padding: 7px 14px;
}
.trust-pill::before { content: "✓"; color: var(--orange); font-weight: 800; }

/* ---------- form card ---------- */
.form-card {
  background: #fff; border-radius: var(--r-tile); padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-lg);
}
.form-card h3, .on-dark .form-card h3 { font-size: 1.45rem; margin-bottom: 6px; color: var(--navy-3); }
.form-note { font-size: 14px; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--navy-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--text); font-size: 16px; color: var(--navy-2);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-input); background: #fff;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); outline: none; }
.field textarea { min-height: 104px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-actions { margin-top: 20px; }
.form-actions .btn { width: 100%; }
.form-msg { display: none; margin-top: 14px; padding: 13px 16px; font-size: 14.5px; border-radius: var(--r-input); }
.form-msg.is-ok { display: block; background: var(--wash); color: var(--navy-2); border: 1.5px solid var(--navy-t80); }
.form-msg.is-err { display: block; background: var(--paper); color: var(--orange-2); border: 1.5px solid var(--peach); }
.req-note { font-size: 12.5px; color: var(--body); margin-top: 10px; }

/* ---------- marquee ---------- */
.marquee { background: var(--orange); overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy-4); white-space: nowrap; display: inline-flex; align-items: center; gap: 44px;
}
.marquee span::after { content: "✦"; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- stats ---------- */
.stats-band { border-bottom: 1px solid var(--line); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 40px 0; }
@media (max-width: 800px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stats-inner.stats-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .stats-inner.stats-3 { grid-template-columns: 1fr; } }
.stat { text-align: center; }
.stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--navy-3); line-height: 1.05; }
.stat-num .accent { color: var(--orange); }
.stat-label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--body); margin-top: 6px; }

/* ---------- sections ---------- */
.section { padding: var(--section) 0; }
.section-tight { padding: calc(var(--section) * .62) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 14px; }
.band-wash { background: var(--wash); }
.band-dark { background: var(--navy-3); position: relative; overflow: hidden; }
.band-dark p { color: var(--navy-t70); }
.band-glow { position: absolute; width: 900px; height: 900px; border-radius: 50%; left: 50%; transform: translateX(-50%); bottom: -560px; background: radial-gradient(circle, rgba(239, 127, 52, .22), transparent 65%); pointer-events: none; }

/* ---------- bento services ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } }
.tile {
  position: relative; border-radius: var(--r-tile); overflow: hidden; text-decoration: none;
  min-height: 300px; display: flex; align-items: flex-end;
  transition: transform .3s ease, box-shadow .3s ease; box-shadow: var(--shadow-sm);
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile-feature { grid-column: span 2; min-height: 380px; }
@media (max-width: 600px) { .tile-feature { grid-column: span 1; min-height: 320px; } }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover img { transform: scale(1.05); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 14, 37, .92) 0%, rgba(14, 14, 37, .38) 46%, rgba(14, 14, 37, .08) 100%); }
.tile-body { position: relative; z-index: 2; padding: 26px; width: 100%; }
.tile-body h3 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; }
.tile-feature .tile-body h3 { font-size: 1.7rem; }
.tile-body p { color: var(--navy-t80); font-size: 14.5px; line-height: 1.55; max-width: 40em; }
.tile-go {
  position: absolute; top: 18px; right: 18px; z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .25);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 19px;
  transition: background-color .25s ease, transform .25s ease;
}
.tile:hover .tile-go { background: var(--orange); color: var(--navy-4); transform: rotate(45deg); }

/* ---------- compare ---------- */
.compare { position: relative; border-radius: var(--r-tile); overflow: hidden; user-select: none; touch-action: none; box-shadow: var(--shadow-lg); }
.compare > img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.compare-after { position: absolute; inset: 0; overflow: hidden; width: 50%; border-right: 3px solid #fff; }
.compare-after img { position: absolute; inset: 0; height: 100%; width: 100vw; max-width: none; object-fit: cover; pointer-events: none; }
.compare-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; background: var(--orange); border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center; color: var(--navy-4);
  font-weight: 800; pointer-events: none; font-size: 17px;
}
.compare-label {
  position: absolute; top: 16px; z-index: 2; font-family: var(--display); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 14px;
  border-radius: 999px; pointer-events: none;
}
.compare-label.lbl-before { right: 16px; background: rgba(14, 14, 37, .78); color: #fff; }
.compare-label.lbl-after { left: 16px; background: var(--orange); color: var(--navy-4); }
.compare input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; -webkit-appearance: none; appearance: none; }

/* ---------- split + media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split-media { order: -1; } }
.media-stack { position: relative; }
.media-stack > img { border-radius: var(--r-tile); box-shadow: var(--shadow-lg); }
.float-card {
  position: absolute; background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-lg);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px; max-width: 78%;
}
.float-card.pos-br { right: -14px; bottom: 26px; }
.float-card.pos-tl { left: -14px; top: 26px; }
@media (max-width: 900px) { .float-card.pos-br { right: 8px; } .float-card.pos-tl { left: 8px; } }
.float-ico {
  flex: none; width: 46px; height: 46px; border-radius: 14px; background: var(--paper);
  display: flex; align-items: center; justify-content: center; color: var(--orange-2); font-size: 21px; font-weight: 800;
}
.float-card strong { font-family: var(--display); color: var(--navy-3); font-size: 15.5px; display: block; line-height: 1.25; }
.float-card span { font-size: 12.5px; color: var(--body); }

.check-list { list-style: none; margin: 24px 0 32px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--navy-2); font-weight: 500; font-size: 16px; }
.check-list .ck {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--paper);
  color: var(--orange-2); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.on-dark .check-list li { color: var(--navy-t80); }

/* ---------- video ---------- */
.video-shell {
  border-radius: 28px; overflow: hidden; background: var(--navy-4);
  border: 1px solid rgba(255, 255, 255, .14); box-shadow: var(--shadow-lg);
  display: flex; justify-content: center; max-width: 380px; margin: 0 auto;
}
.video-shell video { width: 100%; height: auto; }

/* ---------- process ---------- */
.process-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 860px) { .process-row { grid-template-columns: 1fr; } }
.process-card { background: #fff; border-radius: var(--r-tile); padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-sm); position: relative; }
.band-wash .process-card { box-shadow: none; border: 1px solid var(--line); }
.process-num {
  width: 52px; height: 52px; border-radius: 999px; background: var(--navy-3); color: var(--peach);
  font-family: var(--display); font-weight: 800; font-size: 19px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.process-card h3 { margin-bottom: 10px; }
.process-card p { font-size: 15px; }

/* ---------- reviews carousel ---------- */
.carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 6px 22px; scrollbar-width: none; }
.carousel::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(410px, 86vw); scroll-snap-align: start; background: #fff; border-radius: var(--r-tile);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.review-card .stars { color: var(--orange); letter-spacing: 3px; font-size: 14px; }
.review-card blockquote { font-size: 15px; line-height: 1.65; color: var(--body); flex: 1; }
.review-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; border-top: 1px solid var(--line); padding-top: 14px; }
.review-name { font-family: var(--display); font-weight: 700; color: var(--navy-3); font-size: 15.5px; }
.review-src { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--body); background: var(--wash); padding: 5px 11px; border-radius: 999px; }
.carousel-nav { display: flex; gap: 10px; }
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff;
  color: var(--navy-3); font-size: 18px; cursor: pointer; transition: background-color .2s ease, color .2s ease;
}
.carousel-btn:hover { background: var(--navy-3); color: #fff; }
.review-columns { columns: 3 320px; column-gap: 22px; }
.review-columns .review-card { break-inside: avoid; margin-bottom: 22px; display: block; }
.review-columns .review-card blockquote { margin: 12px 0 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.faq details[open] { border-color: var(--orange); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--navy-3); padding: 19px 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--orange); flex: none; transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 20px; font-size: 15px; }

/* ---------- chips + galleries ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1.5px solid var(--line); padding: 10px 18px; font-size: 14px; font-weight: 600;
  color: var(--navy-2); border-radius: 999px; background: #fff; display: inline-flex; align-items: center; gap: 8px;
}
.chip::before { content: "✓"; color: var(--orange); font-weight: 800; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-tag {
  position: absolute; left: 12px; bottom: 12px; font-family: var(--display); font-weight: 700;
  background: rgba(14, 14, 37, .82); color: #fff; font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.gallery-tag.tag-after { background: var(--orange); color: var(--navy-4); }

/* ---------- page hero (interior) ---------- */
.page-hero { position: relative; background: var(--navy-4); overflow: hidden; }
.page-hero .hero-photo img { opacity: .5; }
.page-hero-scrim { position: absolute; inset: 0; background: linear-gradient(78deg, rgba(14, 14, 37, .96) 16%, rgba(14, 14, 37, .7) 58%, rgba(18, 18, 46, .42) 100%); }
.page-hero-inner { position: relative; padding: clamp(58px, 7vw, 96px) 0; max-width: 820px; }
.crumb {
  display: inline-flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 600;
  color: var(--navy-t70); background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px; padding: 7px 16px; margin-bottom: 22px;
}
.crumb a { color: #fff; text-decoration: none; }
.crumb a:hover { color: var(--peach); }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero .sub { color: var(--navy-t80); font-size: 17.5px; max-width: 38em; margin-bottom: 26px; }

/* ---------- areas ---------- */
.area-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 800px) { .area-cols { grid-template-columns: 1fr; } }
.callout { background: #fff; border-radius: var(--r-tile); padding: 28px; box-shadow: var(--shadow-sm); margin-top: 26px; }

/* ---------- CTA band ---------- */
.cta-inner { position: relative; text-align: center; padding: clamp(70px, 9vw, 120px) 0; max-width: 760px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 16px; }
.cta-inner p { color: var(--navy-t70); margin-bottom: 34px; font-size: 17.5px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-4); color: var(--navy-t70); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(30px, 5vw, 60px); padding: clamp(52px, 7vw, 84px) 0 46px; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-row { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.footer-brand-row img { width: 52px; height: 52px; }
.footer-wordmark { font-family: var(--display); font-weight: 700; color: #fff; font-size: 20px; line-height: 1.15; }
.footer-wordmark small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--peach); margin-top: 3px; }
.site-footer p { font-size: 14px; line-height: 1.7; }
.footer-head { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-list { list-style: none; display: grid; gap: 9px; font-size: 14px; }
.footer-list a { color: var(--navy-t70); text-decoration: none; transition: color .2s ease; }
.footer-list a:hover { color: var(--peach); }
.footer-contact { list-style: none; display: grid; gap: 14px; font-size: 14px; }
.footer-contact .lbl { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-t50); }
.footer-contact a { color: #fff; text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: var(--peach); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 20px 0; font-size: 13px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 10px; align-items: center; }
.footer-legal a { color: var(--navy-t70); text-decoration: none; }
.footer-legal a:hover { color: var(--peach); }

/* ---------- sticky mobile action bar ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; display: none;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(14, 14, 37, .96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 860px) { .action-bar { display: flex; } }
.action-bar .btn { flex: 1; padding: 14px 10px; font-size: 14.5px; }
.action-bar .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }

/* ---------- prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 42px 0 14px; }
.prose p, .prose li { font-size: 15.5px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose .updated { font-family: var(--display); font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--body); margin-bottom: 32px; }

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--d, 0s); }
  [data-reveal].is-in { opacity: 1; transform: none; }
  .hero-grid > * { opacity: 0; transform: translateY(24px); animation: rise .8s ease forwards; }
  .hero-grid > *:nth-child(2) { animation-delay: .15s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}
