/* Black Ops Leadership Group — logo-aligned design system
   Palette: black · brushed silver · antique gold */

:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-panel: #101012;
  --bg-panel-2: #161618;
  --line: #2a2a2e;
  --line-gold: rgba(201, 162, 39, 0.35);
  --gold: #c9a227;
  --gold-deep: #8b6914;
  --gold-soft: #dbb84a;
  --gold-glow: rgba(201, 162, 39, 0.12);
  --silver: #b8bcc4;
  --silver-bright: #e4e6ea;
  --text: #e8eaed;
  --muted: #8a9099;
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 10px;
  --container: 1120px;
  /* Topographic terrain (procedural turbulence) — silver contour lines with
     gold index contours on a charcoal field. Tileable via stitchTiles. */
  --terrain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='480' height='480'%3E%3Cfilter id='t' x='0' y='0' width='100%25' height='100%25' color-interpolation-filters='sRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.006' numOctaves='3' seed='9' stitchTiles='stitch'/%3E%3CfeGaussianBlur stdDeviation='0.7'/%3E%3CfeColorMatrix type='matrix' values='0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0 0 0 0 1'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='2.8' intercept='-0.9'/%3E%3CfeFuncG type='linear' slope='2.8' intercept='-0.9'/%3E%3CfeFuncB type='linear' slope='2.8' intercept='-0.9'/%3E%3C/feComponentTransfer%3E%3CfeComponentTransfer%3E%3CfeFuncR type='table' tableValues='0 1 0 1 0 1 0 1 0 1 0 1 0'/%3E%3CfeFuncG type='table' tableValues='0 1 0 1 0 1 0 1 0 1 0 1 0'/%3E%3CfeFuncB type='table' tableValues='0 1 0 1 0 1 0 1 0 1 0 1 0'/%3E%3C/feComponentTransfer%3E%3CfeComponentTransfer%3E%3CfeFuncR type='discrete' tableValues='0 0 0 0 0 0 0 0 0 0 0 1'/%3E%3CfeFuncG type='discrete' tableValues='0 0 0 0 0 0 0 0 0 0 0 1'/%3E%3CfeFuncB type='discrete' tableValues='0 0 0 0 0 0 0 0 0 0 0 1'/%3E%3C/feComponentTransfer%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.72 0 0 0 0 0.74 0 0 0 0 0.77 0.45 0 0 0 0'/%3E%3C/filter%3E%3Cfilter id='g' x='0' y='0' width='100%25' height='100%25' color-interpolation-filters='sRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.006' numOctaves='3' seed='9' stitchTiles='stitch'/%3E%3CfeGaussianBlur stdDeviation='0.7'/%3E%3CfeColorMatrix type='matrix' values='0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0 0 0 0 1'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='2.8' intercept='-0.9'/%3E%3CfeFuncG type='linear' slope='2.8' intercept='-0.9'/%3E%3CfeFuncB type='linear' slope='2.8' intercept='-0.9'/%3E%3C/feComponentTransfer%3E%3CfeComponentTransfer%3E%3CfeFuncR type='table' tableValues='0 1 0 1 0'/%3E%3CfeFuncG type='table' tableValues='0 1 0 1 0'/%3E%3CfeFuncB type='table' tableValues='0 1 0 1 0'/%3E%3C/feComponentTransfer%3E%3CfeComponentTransfer%3E%3CfeFuncR type='discrete' tableValues='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1'/%3E%3CfeFuncG type='discrete' tableValues='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1'/%3E%3CfeFuncB type='discrete' tableValues='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1'/%3E%3C/feComponentTransfer%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.79 0 0 0 0 0.64 0 0 0 0 0.15 0.6 0 0 0 0'/%3E%3C/filter%3E%3Crect width='480' height='480' fill='%230b0b0c'/%3E%3Crect width='480' height='480' filter='url(%23t)'/%3E%3Crect width='480' height='480' filter='url(%23g)'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Oversized by one tile so the drift loop wraps seamlessly */
body::before {
  content: "";
  position: fixed;
  top: -480px;
  left: -480px;
  right: 0;
  bottom: 0;
  background-image: var(--terrain);
  background-size: 480px 480px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  animation: terrain-drift 180s linear infinite;
  will-change: transform;
}

@keyframes terrain-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(480px, 480px, 0); }
}

@keyframes terrain-drift-x {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(480px, 0, 0); }
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 700;
  color: var(--silver-bright);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: 0.06em;
}

h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; letter-spacing: 0.1em; }

p { margin: 0 0 1em; }
a { color: var(--gold-soft); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--silver-bright); }

ul { padding-left: 1.2em; }
li { margin-bottom: 0.35em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #080808;
  padding: 10px 16px;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-gold);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-family: var(--font-head);
  text-transform: uppercase;
}
.brand:hover { color: var(--text); }

/* Logo badge sits inside a gold-ring frame that matches the seal artwork */
.brand__mark {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background:
    radial-gradient(circle at 50% 28%, rgba(201, 162, 39, 0.14), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(22, 22, 24, 0.95), rgba(8, 8, 8, 0.98));
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 2px 10px rgba(0, 0, 0, 0.45),
    inset 0 0 14px rgba(201, 162, 39, 0.06);
  display: grid;
  place-items: center;
  flex: none;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header .brand:hover .brand__mark {
  border-color: rgba(219, 184, 74, 0.75);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.15),
    0 2px 14px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(201, 162, 39, 0.12),
    inset 0 0 16px rgba(201, 162, 39, 0.1);
}

.brand__mark--footer {
  width: 46px;
  height: 46px;
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    inset 0 0 10px rgba(201, 162, 39, 0.04);
}

.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: screen;
  transform: scale(1.06);
}

.brand__mark--footer .brand__logo {
  width: 40px;
  height: 40px;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }

.brand__name {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--silver-bright);
}

.brand__sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
}

.site-motto {
  border-bottom: 1px solid var(--line);
  background: rgba(16, 16, 18, 0.85);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-motto__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 34px;
}

.site-motto__sep { color: var(--gold-deep); font-weight: 400; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--silver); }

.site-nav a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.site-nav .nav-cta a {
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 9px 16px;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.site-nav .nav-cta a:hover {
  background: var(--gold);
  color: #080808;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  padding: 8px 12px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 12px 24px 20px;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .site-motto__inner { letter-spacing: 0.16em; font-size: 0.65rem; gap: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 75% -5%, var(--gold-glow), transparent 55%),
    radial-gradient(600px 360px at 5% 100%, rgba(184, 188, 196, 0.04), transparent 60%),
    linear-gradient(180deg, #0c0c0e 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line-gold);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -480px;
  background-image: var(--terrain);
  background-size: 480px 480px;
  opacity: 0.55;
  pointer-events: none;
  animation: terrain-drift-x 120s linear infinite;
  will-change: transform;
}

/* Tactical map overlay: gridlines + coordinate numbers along top/left edges */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='1080'%3E%3Cline x1='112' y1='0' x2='112' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='116' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B028'W%3C/text%3E%3Cline x1='224' y1='0' x2='224' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='228' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B027'W%3C/text%3E%3Cline x1='336' y1='0' x2='336' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='340' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B026'W%3C/text%3E%3Cline x1='448' y1='0' x2='448' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='452' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B025'W%3C/text%3E%3Cline x1='560' y1='0' x2='560' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='564' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B024'W%3C/text%3E%3Cline x1='672' y1='0' x2='672' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='676' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B023'W%3C/text%3E%3Cline x1='784' y1='0' x2='784' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='788' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B022'W%3C/text%3E%3Cline x1='896' y1='0' x2='896' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='900' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B021'W%3C/text%3E%3Cline x1='1008' y1='0' x2='1008' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='1012' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B020'W%3C/text%3E%3Cline x1='1120' y1='0' x2='1120' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='1124' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B019'W%3C/text%3E%3Cline x1='1232' y1='0' x2='1232' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='1236' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B018'W%3C/text%3E%3Cline x1='1344' y1='0' x2='1344' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='1348' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B017'W%3C/text%3E%3Cline x1='1456' y1='0' x2='1456' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='1460' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B016'W%3C/text%3E%3Cline x1='1568' y1='0' x2='1568' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='1572' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B015'W%3C/text%3E%3Cline x1='1680' y1='0' x2='1680' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='1684' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B014'W%3C/text%3E%3Cline x1='1792' y1='0' x2='1792' y2='7' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='1796' y='16' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E84%C2%B013'W%3C/text%3E%3Cline x1='0' y1='112' x2='7' y2='112' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='4' y='126' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E33%C2%B053'N%3C/text%3E%3Cline x1='0' y1='224' x2='7' y2='224' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='4' y='238' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E33%C2%B052'N%3C/text%3E%3Cline x1='0' y1='336' x2='7' y2='336' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='4' y='350' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E33%C2%B051'N%3C/text%3E%3Cline x1='0' y1='448' x2='7' y2='448' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='4' y='462' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E33%C2%B050'N%3C/text%3E%3Cline x1='0' y1='560' x2='7' y2='560' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='4' y='574' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E33%C2%B049'N%3C/text%3E%3Cline x1='0' y1='672' x2='7' y2='672' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='4' y='686' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E33%C2%B048'N%3C/text%3E%3Cline x1='0' y1='784' x2='7' y2='784' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='4' y='798' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E33%C2%B047'N%3C/text%3E%3Cline x1='0' y1='896' x2='7' y2='896' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='4' y='910' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E33%C2%B046'N%3C/text%3E%3Cline x1='0' y1='1008' x2='7' y2='1008' stroke='%23c9a227' stroke-opacity='0.5'/%3E%3Ctext x='4' y='1022' font-family='Menlo,Consolas,monospace' font-size='10' fill='%23c9a227' fill-opacity='0.55' letter-spacing='0.5'%3E33%C2%B045'N%3C/text%3E%3C/svg%3E"),
    linear-gradient(rgba(201, 162, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.05) 1px, transparent 1px);
  background-size: 1920px 1080px, 56px 56px, 56px 56px;
  background-repeat: no-repeat, repeat, repeat;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(88px, 13vw, 160px) 0 clamp(64px, 9vw, 110px);
  max-width: 880px;
}

.page-hero .hero__inner { padding: clamp(56px, 8vw, 96px) 0 clamp(36px, 6vw, 64px); }

.hero .eyebrow { margin-bottom: 22px; }

.hero h1 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  max-width: 16ch;
}

.hero .lead {
  max-width: 640px;
  font-size: 1.25rem;
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  vertical-align: middle;
  margin-right: 12px;
}

.lead {
  font-size: 1.2rem;
  color: var(--silver);
  max-width: 620px;
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #080808;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.25);
}

.btn--gold:hover {
  box-shadow: 0 6px 22px rgba(201, 162, 39, 0.35);
  color: #080808;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--silver-bright);
  background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  background-color: var(--bg);
}

.section--alt {
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--terrain);
  background-size: 480px 480px;
  opacity: 0.35;
  pointer-events: none;
}

.section--alt > .container { position: relative; z-index: 1; }

.section__head { max-width: 680px; margin-bottom: 44px; }

.divider {
  border: none;
  border-top: 1px solid var(--line-gold);
  margin: 48px 0;
}

/* ---------- Grid & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(145deg, var(--bg-panel-2) 0%, rgba(22, 22, 24, 0.92) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.card h3, .card h4 { color: var(--silver-bright); }
.card p { color: var(--muted); margin-bottom: 0; }
.card ul { color: var(--muted); margin: 0.6em 0 0; }

.card__num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.card__price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  display: block;
  margin: 10px 0 4px;
}

.pill {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.85rem;
  color: var(--silver);
  margin: 0 8px 10px 0;
  background: rgba(22, 22, 24, 0.8);
}

.stat { text-align: left; }

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
}

.stat span { color: var(--muted); font-size: 0.95rem; }

/* ---------- Portrait / about ---------- */
.about-jay {
  align-items: start;
  gap: 40px;
}

.portrait {
  margin: 0;
}

.portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
}

.portrait figcaption {
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table { width: 100%; border-collapse: collapse; background: var(--bg-panel-2); }

th, td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

th {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--gold);
}

tr:last-child td { border-bottom: none; }
td { color: var(--muted); }
td:first-child { color: var(--text); font-weight: 500; }

/* ---------- Quote / testimonial ---------- */
blockquote {
  margin: 0;
  padding: 28px;
  background: var(--bg-panel-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  font-size: 1.05rem;
}

blockquote footer { margin-top: 14px; color: var(--muted); font-size: 0.9rem; }

/* ---------- FAQ / details ---------- */
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-panel-2);
  margin-bottom: 12px;
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  list-style: none;
  color: var(--silver-bright);
}

.faq summary::after { content: "+"; float: right; color: var(--gold); font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p,
.faq details ul {
  color: var(--muted);
  margin: 0;
}
.faq details p + p,
.faq details p + ul,
.faq details ul + p {
  margin-top: 0.85em;
}
.faq details ul {
  padding-left: 1.2em;
  padding-bottom: 0;
}
.faq details li + li { margin-top: 0.35em; }
.faq details > :last-child { padding-bottom: 18px; }
.faq details strong { color: var(--silver-bright); font-weight: 600; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; max-width: 640px; }
.form .grid--2 { gap: 18px; }

.field label {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 7px;
}

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  padding: 13px 15px;
  font: inherit;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
  cursor: pointer;
}

.field select option {
  background: var(--bg-panel-2);
  color: var(--text);
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-note { font-size: 0.85rem; color: var(--muted); }

/* ---------- Calendly embed ---------- */
.calendly-wrap {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-panel-2);
}

.calendly-inline-widget {
  width: 100%;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 320px at 50% 0%, var(--gold-glow), transparent 70%),
    var(--bg-panel);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding: clamp(56px, 8vw, 90px) 0;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--terrain);
  background-size: 400px 400px;
  opacity: 0.35;
  pointer-events: none;
}

.cta-band__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-band p { color: var(--silver); }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 56px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer h4 { color: var(--silver-bright); font-size: 0.9rem; letter-spacing: 0.18em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--gold-soft); }

.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}

.site-footer__motto {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold-deep);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  body::before, .hero::before { animation: none; }
}
