/* =========================================================
   CVMA MI 35-3 — site styles
   Bold military look: black / gold / tan, condensed caps.
   ========================================================= */
:root {
  --black: #0d0d0c;
  --ink: #1d1c1a;
  --charcoal: #2a2926;
  --gold: #ffcc01;
  --gold-dark: #e0b300;
  --tan: #f1ebdc;
  --tan-dark: #e2d8c1;
  --paper: #ffffff;
  --red: #b3171d;
  --muted: #5d5a53;
  --line: rgba(0, 0, 0, .12);

  --font-head: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 2px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
sup { font-size: .5em; vertical-align: super; line-height: 0; }

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

.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--black); padding: 8px 14px; z-index: 100; font-weight: 700; }
.skip:focus { left: 8px; }

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

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 12px;
}
.eyebrow--gold { color: var(--gold); }
.h2 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: .005em;
  margin: 0 0 20px;
}
h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background .15s, color .15s, border-color .15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { font-size: 17px; padding: 16px 32px; }
.btn--gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--ghost { color: #fff; border-color: #fff; background: transparent; }
.btn--ghost:hover { background: #fff; color: var(--black); }
.btn--dark { background: var(--black); color: #fff; border-color: var(--black); }
.btn--dark:hover { background: var(--charcoal); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: 15px;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.link-arrow::after { content: "→"; transition: transform .15s; }
a:hover .link-arrow::after, .link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Utility bar ---------- */
.utility { background: var(--black); color: #cfcac0; font-size: 13px; }
.utility__inner { display: flex; justify-content: space-between; gap: 16px; padding-top: 7px; padding-bottom: 7px; }
.utility a { text-decoration: none; margin-right: 20px; }
.utility__right a:last-child, .utility__left a:last-child { margin-right: 0; }
.utility a:hover { color: var(--gold); }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  color: #fff;
  border-bottom: 4px solid var(--gold);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__logo { height: 54px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 26px; text-transform: uppercase; letter-spacing: .02em; color: #fff; margin: 0; }
.brand__sub { font-size: 11px; white-space: nowrap; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 18px; }
.nav__list { list-style: none; display: flex; flex-wrap: nowrap; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 6px;
  height: var(--header-h);
  padding: 0 10px;
  background: none; border: 0; color: #fff;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em;
  font-size: 14px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.has-menu > .nav__link::after { content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-3px); }
.nav__link:hover, .nav__item.open > .nav__link { color: var(--gold); }
.nav__link::before { content: ""; position: absolute; left: 13px; right: 13px; bottom: 0; height: 4px; background: var(--gold); transform: scaleX(0); transition: transform .15s; }
.nav__link:hover::before, .nav__item.open > .nav__link::before { transform: scaleX(1); }

.menu {
  list-style: none; margin: 0; padding: 8px 0;
  position: absolute; top: calc(100% + 4px); left: 0; min-width: 240px;
  background: var(--black);
  border-top: 4px solid var(--gold);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.nav__item.open > .menu { opacity: 1; visibility: visible; transform: none; }
.menu a { display: block; padding: 10px 20px; text-decoration: none; color: #e9e5dc; font-size: 16px; }
.menu a:hover { background: var(--charcoal); color: var(--gold); }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 3px; background: #fff; margin: 5px 0; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: flex-end;
  color: #fff;
  background: var(--black);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; pointer-events: none; }
.hero__media iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;          /* 16:9 cover */
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.15) 100%),
    linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 45%);
}
.hero__content { position: relative; width: 100%; padding-top: 120px; padding-bottom: clamp(56px, 9vh, 96px); }
.hero__title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(64px, 11vw, 150px);
  line-height: .9;
  letter-spacing: -.005em;
  margin: 0 0 20px;
}
.hero__title span { color: var(--gold); }
.hero__lead { font-size: clamp(19px, 2vw, 24px); max-width: 560px; margin: 0 0 32px; color: #eee9df; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Announcement strip ---------- */
.strip { display: block; background: var(--gold); color: var(--black); text-decoration: none; font-weight: 600; }
.strip__inner { display: flex; align-items: center; gap: 16px; padding-top: 14px; padding-bottom: 14px; }
.strip__tag { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; background: var(--black); color: var(--gold); font-size: 13px; padding: 4px 10px; }
.strip__arrow { margin-left: auto; font-size: 22px; transition: transform .15s; }
.strip:hover .strip__arrow { transform: translateX(6px); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--light { background: var(--paper); }
.section--tan { background: var(--tan); }
.section--dark { background: var(--ink); color: #fff; }
.section__head { max-width: 760px; margin-bottom: 44px; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__text p { margin: 0 0 18px; color: #3a3833; }
.split__text .link-arrow { margin-top: 10px; }
.split__media { margin: 0; position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__media figcaption {
  position: absolute; left: 0; bottom: 0;
  background: var(--black); color: var(--gold);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: 13px;
  padding: 8px 14px;
}
.split__media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 4px solid var(--gold); z-index: -1; }
.split__media.is-empty { aspect-ratio: 4 / 5; background: var(--black) url("../assets/img/patch-fallback.svg") center / 55% no-repeat; }

/* Stats */
.stats { background: var(--black); color: #fff; border-top: 4px solid var(--gold); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 24px; border-left: 1px solid rgba(255,255,255,.14); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 3.4vw, 50px); color: var(--gold); line-height: 1; margin-bottom: 8px; white-space: nowrap; }
.stat__label { font-size: 15px; text-transform: uppercase; letter-spacing: .08em; color: #cfcac0; }

/* Cards */
.cards { display: grid; gap: 24px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--paper); padding: 32px 28px; border-top: 4px solid var(--black); }
.card p { margin: 0; color: var(--muted); font-size: 17px; }
.swatch { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin-bottom: 22px; font-size: 34px; color: #fff; }
.swatch--red { background: var(--red); }
.swatch--gold { background: var(--gold); }
.swatch--black { background: var(--black); }
.swatch--ace { background: var(--black); color: #fff; border: 3px solid var(--gold); }

.tile { display: flex; flex-direction: column; background: var(--charcoal); text-decoration: none; color: #fff; transition: transform .2s; }
.tile:hover { transform: translateY(-4px); }
.tile__img {
  aspect-ratio: 16 / 10; overflow: hidden;
  background: linear-gradient(135deg, #3a3834, #121211);
  position: relative;
}
.tile__img::after { content: "CVMA"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 48px; letter-spacing: .1em; color: rgba(255,204,1,.12); }
.tile__img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tile:hover .tile__img img { transform: scale(1.04); }
.tile__body { padding: 28px; border-top: 4px solid var(--gold); flex: 1; display: flex; flex-direction: column; }
.tile__body p { color: #cfcac0; margin: 0 0 20px; flex: 1; }
.tile__body .link-arrow { align-self: flex-start; }

.action { display: flex; flex-direction: column; background: var(--paper); padding: 32px 28px; text-decoration: none; border-bottom: 4px solid transparent; transition: border-color .15s, transform .2s; }
.action:hover { border-bottom-color: var(--gold); transform: translateY(-3px); }
.action p { color: var(--muted); margin: 0 0 20px; flex: 1; font-size: 17px; }
.action .link-arrow { align-self: flex-start; }

/* Countdown */
.countdown { background: var(--gold); color: var(--black); padding: clamp(48px, 7vw, 80px) 0; }
.countdown__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.countdown .eyebrow { color: rgba(0,0,0,.65); }
.countdown .h2 { margin-bottom: 8px; }
.countdown__place { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: 20px; font-weight: 600; margin: 0 0 8px; }
.countdown p { margin: 0; }
.timer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.timer__unit { background: var(--black); color: #fff; text-align: center; padding: 18px 6px; }
.timer__unit span { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--gold); }
.timer__unit small { display: block; margin-top: 8px; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: #cfcac0; }
.timer.is-tba .timer__unit span { font-size: 26px; }

/* Videos */
.videos { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.video { margin: 0; }
.video__frame { position: relative; aspect-ratio: 16 / 9; background: var(--black); }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video figcaption { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; font-size: 20px; padding: 14px 0 0; border-top: 4px solid var(--gold); margin-top: 0; }

/* Crisis */
.crisis { background: var(--red); color: #fff; padding: 36px 0; }
.crisis__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; }
.crisis h2 { font-family: var(--font-head); text-transform: uppercase; font-size: clamp(24px, 2.8vw, 32px); margin: 0 0 6px; line-height: 1.1; }
.crisis p { margin: 0; }
.crisis__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Join */
.join { background: var(--tan-dark); padding: clamp(64px, 9vw, 112px) 0; text-align: center; }
.join__inner { display: flex; flex-direction: column; align-items: center; }
.join__title { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; font-size: clamp(40px, 6vw, 80px); line-height: 1; margin: 0 0 14px; }
.join p { margin: 0 0 30px; color: #3a3833; max-width: 560px; }

/* Footer */
.footer { background: var(--black); color: #cfcac0; padding-top: 64px; font-size: 16px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; padding-bottom: 48px; }
.footer h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; color: #fff; font-size: 15px; margin: 0 0 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__brand .brand__name { color: var(--gold); margin-bottom: 10px; }
.footer__brand p { margin: 0 0 14px; }
.footer__legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; padding-bottom: 28px; font-size: 14px; }
.footer__legal p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .brand__sub { display: none; }
}
@media (max-width: 1120px) {
  .brand__sub { display: block; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; left: 0; right: 0; top: var(--nav-top, 110px); bottom: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink);
    padding: 8px var(--gutter) 32px;
    overflow-y: auto;
    transform: translateX(100%); transition: transform .25s;
  }
  .nav.open { transform: none; }
  .nav__list { flex-direction: column; }
  .nav__link { height: auto; width: 100%; padding: 16px 0; font-size: 20px; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__link::before { display: none; }
  .menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: 0; display: none; background: transparent; padding: 0 0 8px 12px; }
  .nav__item.open > .menu { display: block; }
  .nav__cta { margin-top: 24px; padding: 16px; font-size: 18px; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 900px) {
  .split, .countdown__inner, .videos { grid-template-columns: 1fr; }
  .split__media { max-width: 480px; }
  .cards--3 { grid-template-columns: 1fr; }
  .cards--4 { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat { border-top: 1px solid rgba(255,255,255,.14); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .utility__left a:nth-child(2) { display: none; }
  .brand__logo { height: 44px; }
  .brand__name { font-size: 22px; }
  .brand__sub { font-size: 9px; }
  .cards--4 { grid-template-columns: 1fr; }
  .hero { min-height: 82vh; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .strip__inner { font-size: 15px; }
  .stat { padding: 28px 12px 28px 0; }
  .stat:nth-child(even) { padding-left: 16px; }
  .split__media::before { inset: 12px -12px -12px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* =========================================================
   Inner pages
   ========================================================= */
.nav__link[aria-current="page"], .menu a[aria-current="page"] { color: var(--gold); }

/* Page hero */
.page-hero { position: relative; background: var(--black); color: #fff; overflow: hidden; }
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.15) 100%); }
.page-hero__inner { position: relative; z-index: 1; padding-top: clamp(72px, 12vw, 150px); padding-bottom: clamp(48px, 7vw, 80px); }
.page-hero h1 { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; font-size: clamp(44px, 7.5vw, 96px); line-height: .95; margin: 0 0 16px; max-width: 900px; }
.page-hero h1 span { color: var(--gold); }
.page-hero__lead { font-size: clamp(18px, 1.8vw, 22px); color: #eee9df; max-width: 640px; margin: 0; }
.page-hero .hero__ctas { margin-top: 28px; }
.page-hero--red { background: var(--red); }
.page-hero--red::after { background: linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,0)); }
.page-hero--red .eyebrow--gold { color: #fff; }

.crumbs { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-family: var(--font-head); margin: 0 0 14px; color: #cfcac0; }
.crumbs a { text-decoration: none; color: var(--gold); }
.crumbs a:hover { text-decoration: underline; }

/* Prose */
.prose { max-width: 760px; }
.prose p, .prose li { color: #3a3833; }
.prose p { margin: 0 0 18px; }
.prose ul { padding-left: 22px; margin: 0 0 22px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--gold-dark); }
.section--dark .prose p, .section--dark .prose li { color: #d9d4ca; }
.callout { background: var(--black); color: #fff; padding: 22px 26px; border-left: 6px solid var(--gold); margin: 28px 0; }
.callout p { margin: 0; color: #eee9df !important; }
.callout strong { color: var(--gold); }

/* Checklist */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checks li { position: relative; padding-left: 38px; color: #3a3833; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; background: var(--gold); color: var(--black); font-weight: 700; font-size: 14px; display: grid; place-items: center; }

/* Photo strip */
.photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.photos img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* People */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.person { background: var(--paper); }
.section--dark .person { background: var(--charcoal); }
.person__img { aspect-ratio: 1; background: linear-gradient(135deg, #3a3834, #121211); position: relative; overflow: hidden; }
.person__img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.person__img::after { content: attr(data-initials); position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 64px; color: rgba(255,204,1,.35); }
.person__body { padding: 18px 20px 22px; border-top: 4px solid var(--gold); }
.person__role { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--muted); margin: 0 0 4px; }
.section--dark .person__role { color: var(--gold); }
.person__name { font-family: var(--font-head); text-transform: uppercase; font-weight: 600; font-size: 22px; line-height: 1.15; margin: 0; }
.person__name em { font-style: normal; color: var(--gold-dark); display: block; font-size: 17px; }
.section--dark .person__name em { color: var(--gold); }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--paper); padding: 32px 28px; position: relative; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-head); font-weight: 700; font-size: 44px; color: var(--gold-dark); line-height: 1; display: block; margin-bottom: 14px; }
.step p { margin: 0; color: var(--muted); font-size: 17px; }

/* Fee table */
.fees { width: 100%; border-collapse: collapse; background: var(--paper); }
.fees th, .fees td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.fees th { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: 14px; background: var(--black); color: #fff; }
.fees td:last-child { font-family: var(--font-head); font-weight: 600; font-size: 20px; text-align: right; }
.fees th:last-child { text-align: right; }

/* FAQ */
.faq { border-top: 2px solid var(--black); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 48px 22px 0; position: relative; font-family: var(--font-head); text-transform: uppercase; font-weight: 600; font-size: 20px; line-height: 1.25; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; display: grid; place-items: center; background: var(--gold); color: var(--black); font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 22px; color: #3a3833; max-width: 760px; }
.faq details > div p { margin: 0 0 10px; }

/* Downloads / link list */
.docs { display: grid; gap: 12px; }
.doc { display: flex; align-items: center; gap: 18px; background: var(--paper); padding: 18px 22px; text-decoration: none; border-left: 6px solid var(--gold); transition: transform .15s, background .15s; }
.doc:hover { transform: translateX(4px); }
.doc__icon { flex: none; width: 44px; height: 44px; background: var(--black); color: var(--gold); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .06em; }
.doc__title { font-family: var(--font-head); text-transform: uppercase; font-weight: 600; font-size: 18px; line-height: 1.2; }
.doc__meta { display: block; font-family: var(--font-body); text-transform: none; font-weight: 400; font-size: 15px; color: var(--muted); margin-top: 2px; }
.doc__go { margin-left: auto; font-size: 22px; }

/* Resource cards */
.res { display: flex; flex-direction: column; background: var(--paper); padding: 30px 28px; text-decoration: none; border-top: 4px solid var(--black); transition: border-color .15s, transform .2s; }
.res:hover { border-top-color: var(--gold); transform: translateY(-3px); }
.res p { color: var(--muted); margin: 0 0 20px; flex: 1; font-size: 17px; }
.res .link-arrow { align-self: flex-start; }
.res__tag { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--muted); margin-bottom: 8px; }

/* Big CTA panel */
.panel { display: grid; grid-template-columns: 1.3fr 1fr; background: var(--black); color: #fff; }
.panel__body { padding: clamp(32px, 5vw, 56px); }
.panel__body p { color: #d9d4ca; margin: 0 0 24px; }
.panel__media { position: relative; min-height: 280px; background: var(--charcoal); }
.panel__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.panel .h2 { color: #fff; }

/* Store cards */
.stores { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.store { background: var(--ink); color: #fff; padding: clamp(32px, 5vw, 56px); border-top: 6px solid var(--gold); display: flex; flex-direction: column; }
.store p { color: #d9d4ca; flex: 1; margin: 0 0 28px; }
.store .btn { align-self: flex-start; }

/* Events */
.events { display: grid; gap: 16px; }
.event { display: grid; grid-template-columns: 110px 1fr auto; gap: 24px; align-items: center; background: var(--paper); padding: 22px 24px; }
.event__date { background: var(--black); color: #fff; text-align: center; padding: 12px 6px; font-family: var(--font-head); text-transform: uppercase; line-height: 1; }
.event__date b { display: block; font-size: 40px; color: var(--gold); margin: 4px 0; }
.event__date small { font-size: 13px; letter-spacing: .1em; }
.event h3 { margin: 0 0 4px; }
.event p { margin: 0; color: var(--muted); font-size: 17px; }
.event.is-past { opacity: .6; }
.events__empty { background: var(--paper); padding: 28px; color: var(--muted); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.gallery a { display: block; overflow: hidden; background: var(--charcoal); aspect-ratio: 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery a:hover img { transform: scale(1.05); }
.gallery-block + .gallery-block { margin-top: 56px; }
.gallery-block h2 { font-family: var(--font-head); text-transform: uppercase; font-size: 30px; margin: 0 0 18px; padding-bottom: 10px; border-bottom: 4px solid var(--gold); display: inline-block; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.94); display: none; align-items: center; justify-content: center; padding: 56px 16px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox button { position: absolute; background: var(--gold); color: var(--black); border: 0; width: 48px; height: 48px; font-size: 26px; cursor: pointer; font-weight: 700; }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }

/* Members gate */
.gate { max-width: 720px; margin: 0 auto; text-align: center; background: var(--paper); padding: clamp(36px, 6vw, 64px); border-top: 6px solid var(--gold); }
.gate__lock { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--black); color: var(--gold); display: grid; place-items: center; font-size: 30px; }
.gate p { color: var(--muted); }
.gate .hero__ctas { justify-content: center; margin-top: 24px; }

/* YouTube / video wrapper */
.embed { position: relative; aspect-ratio: 16 / 9; background: var(--black); }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.fineprint { font-size: 15px; color: var(--muted); margin-top: 24px; }

@media (max-width: 900px) {
  .photos, .steps, .stores, .panel, .two-col { grid-template-columns: 1fr; }
  .event { grid-template-columns: 90px 1fr; }
  .event .btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 600px) {
  .photos { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .doc__go { display: none; }
}
