/* ============================================================
   LUXORIQ CASH SOLUTIONS — Core Stylesheet
   Secure Movement. Trusted Solutions.
   ============================================================ */

/* ---------- 1. FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- 2. TOKENS ---------- */
:root {
  /* Navy scale */
  --navy-950: #060F22;
  --navy-900: #0A1F44;
  --navy-800: #112A54;
  --navy-700: #1B3A6B;
  --navy-600: #2A4E85;
  --navy-line: rgba(201, 168, 76, 0.18);

  /* Gold scale */
  --gold-400: #E6D3A3;
  --gold-500: #C9A84C;
  --gold-600: #A8863A;
  /* Accessible gold for LIGHT backgrounds only (AA on paper/white) */
  --gold-ink: #6B5211;

  /* Neutrals */
  --ivory: #F5F1E6;
  --ivory-dim: rgba(245, 241, 230, 0.72);
  --ivory-faint: rgba(245, 241, 230, 0.56);
  --paper: #FAF8F3;
  --ink: #0A1F44;
  --ink-dim: #4A5A78;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Fluid type scale */
  --fs-hero: clamp(2.75rem, 7vw, 5.75rem);
  --fs-h1: clamp(2.25rem, 5vw, 4rem);
  --fs-h2: clamp(1.75rem, 3.5vw, 2.85rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fs-body: clamp(0.98rem, 1.05vw, 1.08rem);
  --fs-sm: 0.875rem;
  --fs-label: 0.7rem;

  /* Spacing (8pt) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --section-y: clamp(4.5rem, 10vw, 9rem);

  /* Layout */
  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;
}

/* ---------- 3. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--navy-900);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--gold-500); color: var(--navy-900); }

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

/* ---------- 4. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  flex: none;
}
.eyebrow--center { justify-content: center; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--ivory-dim);
  line-height: 1.75;
  max-width: 62ch;
}

.gold { color: var(--gold-500); }

/* ---------- 5. LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--paper { background: var(--paper); color: var(--ink); }
.section--paper .lead { color: var(--ink-dim); }
.section--deep { background: var(--navy-950); }

/* Gold fails contrast on light surfaces — swap to the ink-gold inside paper sections */
.section--paper .eyebrow { color: var(--gold-ink); }
.section--paper .eyebrow::before { background: var(--gold-ink); }
.section--paper .gold { color: var(--gold-ink); }
.section--paper .card-num { color: var(--gold-ink); }
.section--paper .tl-yr { color: var(--gold-ink); }
.section--paper .figure span { color: var(--gold-ink); }

.section-head { margin-bottom: var(--s-6); max-width: 60ch; }
.section-head h2 { margin-block: var(--s-2) var(--s-3); font-size: var(--fs-h2); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

.grid { display: grid; gap: var(--s-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- 6. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--gold-500);
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn > * { position: relative; z-index: 1; }

.btn--gold { background: var(--gold-500); color: var(--navy-900); }
.btn--gold::after { background: var(--gold-400); }
.btn--gold:hover { color: var(--navy-900); }

.btn--ghost { color: var(--ivory); background: transparent; }
.btn--ghost:hover { color: var(--navy-900); }

.btn--ink { color: var(--ink); border-color: var(--gold-ink); }
.btn--ink:hover { color: var(--navy-900); }

.btn .arw { transition: transform 0.4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- 7. HEADER ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  padding-block: 1.4rem;
  transition: padding 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.is-stuck {
  padding-block: 0.8rem;
  background: rgba(6, 15, 34, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--navy-line);
}
/* While the mobile menu is open the menu itself provides the surface */
.site-head.menu-open,
.site-head.menu-open.is-stuck {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.brand img {
  height: 56px;
  width: auto;
  transition: height 0.45s var(--ease);
}
.site-head.is-stuck .brand img { height: 44px; }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.2vw, 2.2rem); }
.nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.35s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ivory); }
.nav a:hover::after, .nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.head-cta { display: inline-flex; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 130;
}
.burger span {
  position: absolute;
  left: 10px;
  width: 24px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.45s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav, .head-cta { display: none; }
  .burger { display: block; }
}

/* ---------- 8. MOBILE MENU ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.75s var(--ease-out);
  pointer-events: none;
  overflow-y: auto;
}
.menu.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.menu ul { display: flex; flex-direction: column; gap: 0.35rem; }
.menu li { overflow: hidden; }
.menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  line-height: 1.35;
  display: block;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease-out), color 0.3s;
}
.menu.is-open a { transform: translateY(0); }
.menu.is-open li:nth-child(1) a { transition-delay: 0.08s; }
.menu.is-open li:nth-child(2) a { transition-delay: 0.14s; }
.menu.is-open li:nth-child(3) a { transition-delay: 0.20s; }
.menu.is-open li:nth-child(4) a { transition-delay: 0.26s; }
.menu.is-open li:nth-child(5) a { transition-delay: 0.32s; }
.menu.is-open li:nth-child(6) a { transition-delay: 0.38s; }
.menu a:hover { color: var(--gold-500); }
.menu-foot {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--navy-line);
  font-size: var(--fs-sm);
  color: var(--ivory-faint);
}

/* ---------- 9. HERO ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: 10rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(201,168,76,0.16) 0%, transparent 55%),
    radial-gradient(90% 70% at 12% 88%, rgba(42,78,133,0.5) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero .wrap { position: relative; z-index: 3; }

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 400;
  margin-block: var(--s-3) var(--s-3);
  max-width: 15ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-500);
}
.hero .lead { max-width: 54ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

/* Signature: the secure corridor line */
.corridor {
  position: absolute;
  left: 0; right: 0;
  bottom: 18%;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--navy-line) 12%,
    var(--navy-line) 88%,
    transparent 100%);
  pointer-events: none;
}
.corridor::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 130px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-400), transparent);
  filter: blur(0.5px);
  animation: run 7s var(--ease) infinite;
}
@keyframes run {
  0%   { left: -12%; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.hero-scroll {
  position: absolute;
  bottom: var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll i {
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold-500), transparent);
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ---------- 10. STAT BAR ---------- */
.statbar {
  border-block: 1px solid var(--navy-line);
  background: var(--navy-950);
}
.statbar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--navy-line);
}
.stat {
  background: var(--navy-950);
  padding: var(--s-5) var(--s-3);
  text-align: center;
}
.stat b {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 400;
  color: var(--gold-500);
  display: block;
  line-height: 1;
}
.stat span {
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-top: 0.75rem;
  display: block;
}
@media (max-width: 700px) {
  .statbar .wrap { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 11. CARDS ---------- */
.card {
  border: 1px solid var(--navy-line);
  padding: var(--s-4);
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
  background: linear-gradient(160deg, rgba(27,58,107,0.28), rgba(10,31,68,0.1));
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.card:hover { border-color: rgba(201,168,76,0.42); transform: translateY(-4px); }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-size: var(--fs-h3); margin-bottom: var(--s-2); }
.card p { color: var(--ivory-dim); font-size: 0.96rem; }

.card-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  display: block;
  margin-bottom: var(--s-3);
}

.section--paper .card {
  background: #fff;
  border-color: rgba(10,31,68,0.1);
  box-shadow: 0 1px 2px rgba(10,31,68,0.04);
}
.section--paper .card p { color: var(--ink-dim); }
.section--paper .card:hover { border-color: rgba(201,168,76,0.6); }

/* ---------- 12. SERVICE ROWS ---------- */
.srow {
  display: grid;
  grid-template-columns: 5rem 1fr 1.15fr;
  gap: var(--s-4);
  align-items: start;
  padding-block: var(--s-5);
  border-top: 1px solid var(--navy-line);
  transition: background 0.5s var(--ease);
}
.srow:last-child { border-bottom: 1px solid var(--navy-line); }
.srow:hover { background: rgba(27,58,107,0.16); }
.srow-n {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold-600);
  letter-spacing: 0.12em;
  padding-top: 0.5rem;
}
.srow h3 { font-size: var(--fs-h3); }
.srow-body p { color: var(--ivory-dim); margin-bottom: var(--s-2); }
.srow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.srow-list li {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ivory-faint);
  border: 1px solid var(--navy-line);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}
@media (max-width: 800px) {
  .srow { grid-template-columns: 1fr; gap: var(--s-2); }
  .srow-n { padding-top: 0; }
}

/* ---------- 13. MARQUEE ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--navy-line);
  padding-block: var(--s-3);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: var(--s-6);
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide {
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  color: var(--ivory-faint);
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.35s;
}
.marquee-item:hover { color: var(--gold-500); }

/* ---------- 14. SPLIT / FEATURE ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.figure {
  position: relative;
  border: 1px solid var(--navy-line);
  padding: 0.75rem;
}
.figure img { width: 100%; }
.figure figcaption {
  padding: var(--s-3) 0.5rem 0.25rem;
  border-top: 1px solid var(--navy-line);
  margin-top: 0.75rem;
}
.figure b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  display: block;
}
.figure span {
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ivory);
  padding-left: var(--s-3);
  border-left: 2px solid var(--gold-500);
}

/* ---------- 15. TIMELINE ---------- */
.tl { position: relative; padding-left: var(--s-4); }
.tl::before {
  content: '';
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--navy-line);
}
.tl-item { position: relative; padding-bottom: var(--s-5); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--s-4) + 1px);
  top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid var(--gold-500);
}
.tl-item.is-live::before { background: var(--gold-500); box-shadow: 0 0 0 4px rgba(201,168,76,0.15); }
.tl-yr {
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  color: var(--gold-500);
  text-transform: uppercase;
}
.tl-item h3 { font-size: 1.2rem; margin-block: 0.4rem 0.5rem; }
.tl-item p { color: var(--ivory-dim); font-size: 0.95rem; max-width: 52ch; }

/* ---------- 16. BADGES ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1px solid;
}
.badge--live { color: #4ADE80; border-color: rgba(74,222,128,0.4); background: rgba(74,222,128,0.08); }
.badge--soon { color: var(--gold-500); border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.08); }
.badge--plan { color: var(--ivory-faint); border-color: var(--navy-line); }

/* Light-surface variants */
.section--paper .badge--live { color: #15803D; border-color: rgba(21,128,61,0.4); background: rgba(21,128,61,0.07); }
.section--paper .badge--soon { color: var(--gold-ink); border-color: rgba(107,82,17,0.4); background: rgba(107,82,17,0.06); }
.section--paper .badge--plan { color: var(--ink-dim); border-color: rgba(10,31,68,0.18); }

/* ---------- 17. FOOTER ---------- */
.site-foot {
  background: var(--navy-950);
  border-top: 1px solid var(--navy-line);
  padding-block: var(--s-6) var(--s-4);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-brand img { height: 54px; margin-bottom: var(--s-2); }
.foot-brand p { font-size: 0.9rem; color: var(--ivory-faint); max-width: 34ch; }
.foot-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s-2);
}
.foot-col li { margin-bottom: 0.6rem; }
.foot-col a, .foot-col address {
  font-size: 0.9rem;
  color: var(--ivory-faint);
  font-style: normal;
  transition: color 0.3s;
  line-height: 1.65;
}
.foot-col a:hover { color: var(--gold-500); }

.foot-bot {
  border-top: 1px solid var(--navy-line);
  padding-top: var(--s-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ivory-faint);
}

/* ---------- 18. CTA BAND ---------- */
.cta-band {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(201,168,76,0.14), transparent 60%),
    var(--navy-800);
  border-block: 1px solid var(--navy-line);
  text-align: center;
}
.cta-band h2 { font-size: var(--fs-h2); margin-block: var(--s-2) var(--s-3); }
.cta-band .lead { margin-inline: auto; margin-bottom: var(--s-4); }
.cta-actions { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; }

/* ---------- 19. PAGE HEAD ---------- */
.pagehead {
  padding-block: 11rem var(--s-6);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 80% at 80% 10%, rgba(201,168,76,0.12), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-950));
  border-bottom: 1px solid var(--navy-line);
}
.pagehead h1 { font-size: var(--fs-h1); font-weight: 400; margin-block: var(--s-2) var(--s-3); max-width: 18ch; }
.crumb {
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.crumb a:hover { color: var(--gold-500); }

/* ---------- 20. FORM ---------- */
.form { display: grid; gap: var(--s-3); }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ivory);
  background: rgba(6,15,34,0.5);
  border: 1px solid var(--navy-line);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.35s, background 0.35s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-500);
  background: rgba(6,15,34,0.85);
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245,241,230,0.3); }
.field select option { background: var(--navy-900); color: var(--ivory); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-note { font-size: 0.8rem; color: var(--ivory-faint); }
.form-status {
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid;
  display: none;
}
.form-status.ok { display: block; color: #4ADE80; border-color: rgba(74,222,128,0.4); background: rgba(74,222,128,0.07); }
.form-status.err { display: block; color: #F87171; border-color: rgba(248,113,113,0.4); background: rgba(248,113,113,0.07); }

/* ---------- 21. CONTACT TILES ---------- */
.ctile {
  border: 1px solid var(--navy-line);
  padding: var(--s-3);
  transition: border-color 0.4s, transform 0.4s var(--ease);
  display: block;
}
.ctile:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); }
.ctile h4 {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.ctile p { font-size: 0.98rem; color: var(--ivory); line-height: 1.6; }

/* ---------- 22. REVEAL (fallback-safe) ---------- */
.rv { opacity: 1; }
html.js .rv { opacity: 0; transform: translateY(24px); }
html.js .rv.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

/* ---------- 23. VIEW TRANSITIONS ---------- */
@view-transition { navigation: auto; }

::view-transition-old(root) { animation: vt-out 0.32s var(--ease) both; }
::view-transition-new(root) { animation: vt-in 0.42s var(--ease-out) both; }
@keyframes vt-out { to { opacity: 0; } }
@keyframes vt-in { from { opacity: 0; } }

.brand img { view-transition-name: brandmark; }

/* ---------- 24. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html.js .rv { opacity: 1 !important; transform: none !important; }
  @view-transition { navigation: none; }
}

/* ---------- 25. UTIL ---------- */
.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;
}
.skip {
  position: absolute; top: -60px; left: var(--gutter);
  z-index: 200;
  background: var(--gold-500); color: var(--navy-900);
  padding: 0.7rem 1.2rem;
  font-size: var(--fs-sm); font-weight: 600;
  transition: top 0.3s;
}
.skip:focus { top: 12px; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
