/* ============================================================
   BLACKTHORN DEFENSE TACTICS — design system
   Charcoal + brass. Condensed display, utilitarian body, mono spec.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* color */
  --bg: #100f0d;
  --bg-raise: #171510;
  --bg-sink: #0b0a09;
  --ink: #ede8dc;
  --muted: #a89e8c;
  --faint: #6f6759;
  --brass: #c9a227;
  --brass-bright: #e0b93e;
  --brass-deep: #8c7119;
  --line: rgba(201, 162, 39, 0.16);
  --line-soft: rgba(237, 232, 220, 0.08);

  /* type */
  --display: "Big Shoulders Display", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;

  /* rhythm */
  --wrap: 1180px;
  --pad: clamp(20px, 4vw, 40px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* z scale */
  --z-nav: 50;
  --z-menu: 60;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* film grain — fixed, non-interactive, very low */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass); text-decoration: none; }
a:hover { color: var(--brass-bright); }
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--brass); color: var(--bg); }

h1, h2, h3 { text-wrap: balance; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }

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

/* ---------- type helpers ---------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.005em;
}
.mono-tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 58ch;
  text-wrap: pretty;
}
.body-copy { color: var(--muted); max-width: 65ch; }
.body-copy strong { color: var(--ink); font-weight: 600; }
.body-copy + .body-copy { margin-top: 1.1em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brass);
  color: var(--bg);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border: 1px solid var(--brass);
  cursor: pointer;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease),
    transform 0.18s var(--ease);
}
.btn:hover { background: var(--brass-bright); border-color: var(--brass-bright); color: var(--bg); }
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(237, 232, 220, 0.3);
}
.btn-ghost:hover { background: rgba(237, 232, 220, 0.06); border-color: var(--ink); color: var(--ink); }
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brass);
}
.btn-text .arrow { transition: transform 0.22s var(--ease); }
.btn-text:hover .arrow { transform: translateX(4px); }

/* ---------- topbar ---------- */
.topbar {
  background: var(--bg-sink);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  position: relative;
  z-index: 2;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
  flex-wrap: wrap;
}
.topbar a { color: var(--brass); }
.topbar a:hover { color: var(--brass-bright); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(11, 10, 9, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { width: 46px; height: 46px; object-fit: contain; }
.nav-logo .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav-logo .wordmark b {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-logo .wordmark span {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a:not(.btn) {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 9px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 2px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn)[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a:not(.btn)[aria-current="page"] { color: var(--ink); }
.nav-links .btn { padding: 11px 20px; font-size: 0.82rem; white-space: nowrap; margin-left: 8px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-soft);
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: calc(var(--z-menu) + 1);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  min-height: min(92dvh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; object-position: center 38%; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 15, 13, 0.62) 0%, rgba(16, 15, 13, 0.25) 38%, rgba(16, 15, 13, 0.88) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(16, 15, 13, 0.55) 0%, rgba(16, 15, 13, 0) 55%);
}
.hero-media img {
  filter: saturate(0.55) contrast(1.06) brightness(0.8) sepia(0.18);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  width: 100%;
  margin: 0 auto;
  padding: 150px var(--pad) 0;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
}
.hero h1 {
  font-size: clamp(2.7rem, 7.4vw, 5.9rem);
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--brass); }
.hero .lead { margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-creds {
  border-top: 1px solid var(--line-soft);
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  width: 100%;
  margin: 0 auto;
  padding: 18px var(--pad) 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
}
.hero-creds li {
  list-style: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-creds li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--brass);
  flex-shrink: 0;
}

/* ---------- interior page hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .topo { opacity: 0.5; }
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) var(--pad) clamp(48px, 6vw, 80px);
}
.crumb {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 22px;
}
.crumb a { color: var(--faint); }
.crumb a:hover { color: var(--brass); }
.crumb .sep { margin: 0 8px; color: var(--brass-deep); }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  max-width: 16ch;
  margin-bottom: 22px;
}
.page-hero h1 .accent { color: var(--brass); }
.page-hero .lead { margin-bottom: 0; }
.page-hero .hero-ctas { margin: 34px 0 0; }

/* with side image */
.page-hero.has-media .page-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.page-hero .media {
  position: relative;
  aspect-ratio: 4 / 3;
}
.page-hero .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05) brightness(0.85) sepia(0.14);
}

/* ---------- topo background layer ---------- */
.topo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='720' viewBox='0 0 720 720' fill='none' stroke='%23c9a227' stroke-width='1'%3E%3Cg opacity='0.13'%3E%3Cpath d='M-40 620 Q120 540 240 580 T520 560 T760 600'/%3E%3Cpath d='M-40 560 Q140 480 260 520 T540 500 T760 540'/%3E%3Cpath d='M-40 500 Q160 430 280 465 T560 445 T760 480'/%3E%3Cpath d='M60 380 Q170 310 300 340 Q430 370 480 300 Q520 240 440 200 Q350 160 270 210 Q180 265 210 330 Q230 372 300 340'/%3E%3Cpath d='M90 360 Q190 300 295 325 Q400 350 445 295 Q478 248 415 218 Q340 185 280 225 Q215 268 240 320 Q255 350 295 325'/%3E%3Cpath d='M130 340 Q205 295 290 312 Q370 330 405 290 Q430 255 385 235 Q330 212 287 240 Q245 268 262 305 Q272 327 290 312'/%3E%3Cpath d='M520 160 Q580 120 650 140 T760 130'/%3E%3Cpath d='M540 200 Q600 165 660 182 T760 175'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 720px 720px;
}

/* ---------- sections ---------- */
.section { padding-block: clamp(72px, 10vw, 128px); position: relative; }
.section-tight { padding-block: clamp(56px, 7vw, 88px); }
.sec-head { margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head .mono-tag { display: block; margin-bottom: 18px; }
.sec-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  max-width: 18ch;
}
.sec-head h2 .accent { color: var(--brass); }
.sec-head .lead { margin-top: 18px; }

/* ---------- statement (editorial intro) ---------- */
.statement {
  border-top: 1px solid var(--line-soft);
}
.statement .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
.statement h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.statement h2 .accent { color: var(--brass); }
.statement-side { padding-top: 10px; }
.statement-side .body-copy { margin-bottom: 22px; }

/* ---------- course roster ---------- */
.roster { border-top: 1px solid var(--line); position: relative; }
.roster-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1.45fr) minmax(0, 0.85fr) 48px;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px) 6px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: inherit;
  transition: background 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.roster-row:hover { background: var(--bg-raise); padding-left: 14px; }
.roster-code {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--brass);
}
.roster-row h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.2s;
}
.roster-row:hover h3 { color: var(--brass-bright); }
.roster-row p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-top: 8px;
  max-width: 52ch;
}
.roster-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.roster-arrow {
  font-size: 1.5rem;
  color: var(--faint);
  text-align: center;
  transition: transform 0.25s var(--ease), color 0.2s;
}
.roster-row:hover .roster-arrow { transform: translateX(6px); color: var(--brass); }
.roster-thumb { display: none; }
@media (min-width: 1024px) {
  .roster-row {
    grid-template-columns: 92px minmax(0, 1.45fr) minmax(0, 0.72fr) 176px 48px;
  }
  .roster-thumb {
    display: block;
    width: 176px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    opacity: 0;
    transform: translateX(10px) scale(0.98);
    pointer-events: none;
    filter: saturate(0.7) contrast(1.05) brightness(0.9) sepia(0.14);
    border: 1px solid var(--line);
    transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
  }
  .roster-row:hover .roster-thumb {
    opacity: 1;
    transform: none;
  }
}

/* ---------- split (doctrine) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.split .sticky-col { position: sticky; top: 110px; }
.quote-display {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  max-width: 16ch;
}
.quote-display .accent { color: var(--brass); }

.principles { list-style: none; }
.principles li {
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 18px;
}
.principles li:first-child { padding-top: 6px; }
.principles li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--brass);
  margin-top: 9px;
}
.principles h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.principles p { font-size: 0.95rem; color: var(--muted); max-width: 52ch; }

/* ---------- framed photo ---------- */
.photo-frame {
  position: relative;
  border: 1px solid var(--line);
  padding: 10px;
}
.photo-frame::before,
.photo-frame::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--brass);
}
.photo-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.photo-frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.photo-frame img {
  width: 100%;
  filter: saturate(0.7) contrast(1.06) brightness(0.86) sepia(0.16);
}
.photo-frame .crop-right {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 80% center;
}
.photo-frame figcaption {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 12px 4px 2px;
}

/* ---------- full-bleed band ---------- */
.band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(90px, 13vw, 170px);
}
.band-media,
.band-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.band-media img {
  object-fit: cover;
  filter: saturate(0.55) contrast(1.05) brightness(0.62) sepia(0.2);
}
.band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 10, 9, 0.86) 12%, rgba(11, 10, 9, 0.45) 60%, rgba(11, 10, 9, 0.25) 100%);
}
.band .wrap { position: relative; z-index: 2; }
.band h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  max-width: 14ch;
  margin-bottom: 20px;
}
.band h2 .accent { color: var(--brass); }
.band .lead { margin-bottom: 32px; }

/* ---------- credential table ---------- */
.cred-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.cred-cell {
  padding: clamp(26px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cred-cell:nth-child(odd) { border-right: 1px solid var(--line); }
.cred-cell:nth-last-child(-n + 2) { border-bottom: 0; }
.cred-cell .mono-tag { color: var(--faint); }
.cred-cell h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.015em;
  color: var(--brass);
}
.cred-cell p { font-size: 0.94rem; color: var(--muted); max-width: 44ch; }

/* ---------- spec sheet (course pages) ---------- */
.spec-sheet {
  border: 1px solid var(--line);
  background: var(--bg-raise);
}
.spec-sheet header {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.spec-sheet header h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.spec-rows { padding: 8px 26px 22px; }
.spec-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.93rem;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row dt {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  padding-top: 3px;
}
.spec-row dd { color: var(--ink); }
.spec-sheet .btn { margin: 0 26px 26px; width: calc(100% - 52px); justify-content: center; }

/* ---------- check list (curriculum) ---------- */
.check-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}
.check-cols h3 {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.check-list { list-style: none; }
.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 12px 0;
  font-size: 0.96rem;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--brass);
  margin-top: 8px;
}
.check-list strong { color: var(--ink); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(36px, 5vw, 72px);
}
.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}
.faq-item h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
}
.faq-item h3::before {
  content: "Q";
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--brass);
  padding-top: 2px;
}
.faq-item p {
  font-size: 0.94rem;
  color: var(--muted);
  padding-left: 32px;
  max-width: 52ch;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--bg-sink);
  text-align: center;
  padding-block: clamp(84px, 12vw, 150px);
}
.cta-band .topo { opacity: 0.75; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  margin: 0 auto 18px;
  max-width: 16ch;
}
.cta-band h2 .accent { color: var(--brass); }
.cta-band .lead { margin: 0 auto 36px; }
.cta-phone {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  color: var(--brass);
  margin-bottom: 8px;
}
.cta-phone:hover { color: var(--brass-bright); }
.cta-phone-note {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 38px;
}
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--bg-sink);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 88px) 0 28px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 56px;
}
.footer-brand img { width: 72px; margin-bottom: 18px; }
.footer-brand .fbrand-name {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.footer-brand .fbrand-tag {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.footer-brand p { font-size: 0.9rem; color: var(--muted); max-width: 36ch; margin-bottom: 20px; }
.footer-phone {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--brass);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--faint);
}
.footer-bottom a { color: var(--faint); }
.footer-bottom a:hover { color: var(--brass); }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact-list { list-style: none; display: flex; flex-direction: column; }
.contact-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-list .mono-tag { display: block; color: var(--faint); margin-bottom: 8px; }
.contact-list .big {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-list a.big { color: var(--brass); }
.contact-list a.big:hover { color: var(--brass-bright); }
.contact-list small { display: block; font-size: 0.84rem; color: var(--muted); margin-top: 4px; }

.form-card {
  border: 1px solid var(--line);
  background: var(--bg-raise);
  padding: clamp(28px, 4vw, 44px);
}
.form-card h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.form-card > p { font-size: 0.93rem; color: var(--muted); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  padding: 13px 15px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.95rem;
  width: 100%;
  border-radius: 0;
  transition: border-color 0.2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a227'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--faint);
  text-align: center;
  margin-top: 16px;
}
.honeypot { position: absolute; left: -9999px; }

/* ---------- utility bands ---------- */
.raised { background: var(--bg-raise); border-block: 1px solid var(--line-soft); }
.ruled-top { border-top: 1px solid var(--line-soft); }

/* ---------- reveal motion ----------
   Content is fully visible by default; .in (added on viewport entry)
   plays a one-shot entrance. If JS or IO never runs, nothing is hidden. */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
}
.reveal.in { animation: rise 0.7s var(--ease) both; }
.reveal-stagger.in > * { animation: rise 0.6s var(--ease) backwards; }
.reveal-stagger.in > *:nth-child(2) { animation-delay: 0.07s; }
.reveal-stagger.in > *:nth-child(3) { animation-delay: 0.14s; }
.reveal-stagger.in > *:nth-child(4) { animation-delay: 0.21s; }
.reveal-stagger.in > *:nth-child(5) { animation-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(6) { animation-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) {
  .reveal.in,
  .reveal-stagger.in > * { animation: none !important; }
  .btn, .btn-text .arrow, .roster-row, .roster-thumb, .roster-arrow { transition: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: var(--z-menu);
    background: rgba(11, 10, 9, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) {
    font-family: var(--display);
    font-size: 1.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink);
    padding: 10px 18px;
  }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links a:not(.btn)[aria-current="page"] { color: var(--brass); }
  .nav-links .btn { margin-top: 18px; }
  .nav-toggle { display: block; }
  .split .sticky-col { position: static; }
}
@media (max-width: 860px) {
  .statement .wrap,
  .split,
  .check-cols,
  .faq-cols,
  .contact-grid,
  .page-hero.has-media .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero .media { order: -1; max-height: 320px; aspect-ratio: auto; }
  .page-hero .media img { height: 320px; }
  .roster-row { grid-template-columns: 64px 1fr 36px; }
  .roster-meta { display: none; }
  .cred-table { grid-template-columns: 1fr; }
  .cred-cell:nth-child(odd) { border-right: 0; }
  .cred-cell:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .cred-cell:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { max-width: none; }
}
@media (max-width: 540px) {
  body { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .roster-row { grid-template-columns: 1fr 36px; }
  .roster-code { grid-column: 1 / -1; margin-bottom: -6px; }
  .hero-content { padding-top: 110px; }
  .topbar .wrap { justify-content: center; text-align: center; }
  .topbar .tb-left { display: none; }
}
