:root {
  --navy: #650c10;
  --navy-2: #4a0a0d;
  --wine: #a9791f;
  --wine-dark: #8a611a;
  --sand: #efe4c8;
  --paper: #f6efdd;
  --white: #fffaf0;
  --ink: #2b2117;
  --muted: #5c4d3a;
  --line: #e6dcc4;
  --soft: #f1e9d4;
  --shadow: 0 18px 50px rgba(43, 33, 23, .10);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.top-rule {
  height: 7px;
  background: linear-gradient(90deg, var(--wine) 0 24%, var(--navy) 24% 76%, var(--wine) 76% 100%);
}

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 0 14px;
}
.brand-mark {
  width: 76px;
  aspect-ratio: 1;
  object-fit: contain;
}
.brand-mark:last-child { justify-self: end; }
.brand-copy { text-align: center; }
.eyebrow {
  margin: 0 0 4px;
  color: var(--wine);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.brand-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: .06em;
}
.brand-copy a.brand-link { text-decoration: none; }
.brand-subtitle {
  margin: 6px 0 0;
  color: var(--wine);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 6px;
  padding-top: 16px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: var(--soft);
  outline: none;
}
.site-nav a.active {
  color: var(--navy);
  background: var(--sand);
}

main { overflow: hidden; }
.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 84px 0;
}
.section + .section { border-top: 1px solid var(--line); }

.intro {
  position: relative;
  padding-top: 44px;
  padding-bottom: 60px;
}
.intro::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -360px;
  top: -160px;
  background: radial-gradient(circle, rgba(169,121,31,.10), rgba(169,121,31,0) 69%);
  pointer-events: none;
}
.intro-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.intro-grid .intro-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}
.intro-crest {
  width: 220px;
  aspect-ratio: 1;
  object-fit: contain;
  align-self: center;
  filter: drop-shadow(0 8px 14px rgba(43,33,23,.18));
}
.intro-combo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .intro-crest { width: 170px; justify-self: center; }
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--wine);
}
.intro h2 {
  margin: 20px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.07;
  font-weight: 500;
  letter-spacing: -.025em;
}
.intro-copy {
  padding-top: 0;
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: #5c4d3a;
}
.intro-copy p { margin: 0 0 22px; }
.intro-copy p:last-child { margin-bottom: 0; }

.options {
  padding-top: 0;
  border-top: 0 !important;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.option-card {
  position: relative;
  min-height: 200px;
  padding: 32px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(43,33,23,.055);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.option-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 18px;
  background:
    linear-gradient(var(--wine), var(--wine)) top left / 0% 2px no-repeat,
    linear-gradient(var(--wine), var(--wine)) top right / 2px 0% no-repeat,
    linear-gradient(var(--wine), var(--wine)) bottom right / 0% 2px no-repeat,
    linear-gradient(var(--wine), var(--wine)) bottom left / 2px 0% no-repeat;
  transition: background-size .45s ease;
}
.option-card:hover::before,
.option-card:focus-visible::before {
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
}
.option-card:hover,
.option-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #d8c9a0;
  outline: none;
}
.option-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 6px 10px rgba(43,33,23,.22));
  transition: transform .3s ease;
}
.option-icon svg { width: 100%; height: 100%; }
.option-card:hover .option-icon,
.option-card:focus-visible .option-icon {
  transform: scale(1.15);
}
.option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.arrow {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  transition: background .24s ease, color .24s ease, border-color .24s ease;
}
.option-card:hover .arrow,
.option-card:focus-visible .arrow {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.mission-wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  background: #a3383b;
  color: white;
  border-radius: var(--radius);
  overflow: hidden;
}
.mission-section {
  width: 100%;
  margin: 0;
  padding: 46px 40px;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.mission-card {
  padding: 24px 28px;
  border-radius: var(--radius);
  background: #6d2023;
  border: 1px solid rgba(0,0,0,.22);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mission-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mission-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  padding: 5px;
}
.mission-icon svg, .mission-icon img { width: 100%; height: 100%; object-fit: contain; }
.mission-card h3 {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e7cf9a;
}
.mission-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.98rem, 1.4vw, 1.12rem);
  line-height: 1.5;
  color: rgba(255,255,255,.92);
}

.section-heading {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
}
.section-heading-center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.section-heading-center h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 630px;
  justify-self: end;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(43,33,23,.07);
}
.video-shell {
  aspect-ratio: 16/9;
  background: #140a06;
}
.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom video player (replaces native controls to avoid the browser's default control-bar shadow) */
.video-shell.custom-player {
  position: relative;
  overflow: hidden;
}
.video-shell.custom-player video { cursor: pointer; }
.player-overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,10,6,.5);
  border: 2px solid rgba(231,207,154,.85);
  border-radius: 50%;
  color: #f4e5b2;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.player-overlay-icon { width: 26px; height: 26px; margin-left: 3px; }
.player-overlay:hover, .player-overlay:focus-visible {
  background: var(--wine);
  transform: scale(1.08);
  outline: none;
}
.video-shell.custom-player.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}
.player-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 12px;
  background: linear-gradient(to top, rgba(10,6,3,.72), rgba(10,6,3,0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.video-shell.custom-player.is-playing .player-bar,
.video-shell.custom-player.show-bar .player-bar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.player-btn {
  flex: 0 0 auto;
  background: none;
  border: none;
  padding: 4px;
  display: flex;
  color: #f4e5b2;
  cursor: pointer;
  transition: color .2s ease;
}
.player-btn svg { width: 18px; height: 18px; }
.player-btn:hover, .player-btn:focus-visible { color: #fff; outline: none; }
.player-time {
  flex: 0 0 auto;
  color: #f4e5b2;
  font-size: .74rem;
  white-space: nowrap;
  min-width: 76px;
}
.player-progress {
  flex: 1 1 auto;
  height: 4px;
  accent-color: var(--wine);
  cursor: pointer;
}
@media (max-width: 560px) {
  .player-time { display: none; }
}
.video-meta {
  padding: 21px 24px 23px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.video-meta strong {
  color: var(--navy);
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.video-meta small { color: var(--muted); }

.dreaming-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dreaming-top {
  display: flex;
  justify-content: center;
}
.dreaming-top .dreaming-item {
  width: calc((100% - 28px) / 3);
}
.dreaming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dreaming-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(43,33,23,.06);
  transition: transform .3s ease, box-shadow .3s ease, z-index .3s ease;
}
.dreaming-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.dreaming-item:hover,
.dreaming-item:focus-visible {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 20px 34px rgba(43,33,23,.28);
  z-index: 5;
  outline: none;
}
@media (max-width: 680px) {
  .dreaming-grid { grid-template-columns: repeat(2, 1fr); }
  .dreaming-top .dreaming-item { width: calc((100% - 14px) / 2); }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,10,6,.86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 999;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  transform: scale(.94);
  transition: transform .25s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-caption {
  max-width: min(92vw, 1100px);
  margin: 18px 0 0;
  padding: 14px 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover { background: var(--wine); transform: rotate(90deg); }

/* Citizen hero (image + intro copy) */
.citizen-hero {
  padding-top: 74px;
  padding-bottom: 64px;
}
.citizen-hero-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 52px;
  align-items: start;
}
.citizen-photo {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.citizen-hero .intro-copy { padding-top: 0; text-align: justify; }
@media (max-width: 900px) {
  .citizen-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .citizen-photo { max-width: 340px; margin: 0 auto; }
}

/* Manifesto band (reuses mission-wrap red band) */
.manifesto-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.85;
  color: rgba(255,255,255,.94);
}
.manifesto-copy p { margin: 0 0 24px; }
.manifesto-copy p:last-child { margin-bottom: 0; }
.manifesto-copy p:first-child {
  color: #e7cf9a;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.opensea-cta {
  text-align: center;
  margin: 12px 0 0;
}
.opensea-cta img {
  width: 220px;
  max-width: 60%;
  margin: 0 auto;
  transition: transform .22s ease;
}
.opensea-cta a:hover img,
.opensea-cta a:focus-visible img {
  transform: translateY(-4px) scale(1.04);
}

/* Book landing (the-origin) */
.book-hero { padding-top: 74px; padding-bottom: 20px; }
.book-hero-grid {
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: 52px;
  align-items: start;
}
.book-cover {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.book-hero .intro-copy p { text-align: justify; }
.book-hero h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.book-downloads {
  padding: 8px 0 30px;
  text-align: center;
}
.book-downloads p { margin: 0 0 18px; color: var(--muted); }
.book-downloads mark {
  background: #f4e0a0;
  color: var(--ink);
  padding: 0 4px;
}
.download-row {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}
.download-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.download-btn img {
  width: 58px;
  height: 76px;
  object-fit: contain;
  transition: transform .22s ease;
}
.download-btn:hover img,
.download-btn:focus-visible img {
  transform: translateY(-4px) scale(1.04);
}
.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.part-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  text-decoration: none;
  padding: 26px 20px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(43,33,23,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.part-card:hover,
.part-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #d8c9a0;
  outline: none;
}
.part-card img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1024 / 816;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(43,33,23,.14);
}
.part-card .part-eyebrow {
  color: var(--wine);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.part-card .part-title {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
}
.book-footnote {
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
  padding-top: 8px;
}
.book-footnote a {
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
}
.book-footnote a:hover,
.book-footnote a:focus-visible { text-decoration: underline; }
@media (max-width: 900px) {
  .book-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .book-cover { max-width: 260px; margin: 0 auto; }
  .parts-grid { grid-template-columns: 1fr; }
}

/* Internal page article layout */
.page-hero {
  position: relative;
  padding-top: 74px;
  padding-bottom: 56px;
  text-align: center;
}
.page-hero .section-kicker { justify-content: center; }
.page-hero .section-kicker::before { display: none; }
.page-hero h1 {
  margin: 16px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.02em;
}
.page-hero p {
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}
.article {
  padding-top: 0;
  padding-bottom: 84px;
}
.article-copy {
  max-width: 760px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink);
}
.article-copy p { margin: 0 0 26px; }
.article-copy p:last-child { margin-bottom: 0; }
.chapter-heading {
  margin: 46px 0 22px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.article-copy > .chapter-heading:first-child { margin-top: 0; }
.chapter-subheading {
  margin: 34px 0 16px;
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
}
.chapter-divider {
  text-align: center;
  margin: 30px 0;
}
.chapter-divider img { width: 46px; height: auto; margin: 0 auto; opacity: .8; }
.chapter-figure {
  margin: 26px 0;
  text-align: center;
}
.chapter-figure img {
  max-width: 100%;
  max-height: 480px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(43,33,23,.1);
}
.table-wrap {
  margin: 26px 0;
  overflow-x: auto;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.data-table th, .data-table td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
}
.data-table th {
  background: var(--soft);
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .06em;
}
.data-table td { color: var(--ink); }
.data-table tr:nth-child(even) td { background: rgba(241,233,212,.4); }

.article-copy ol {
  margin: 0 0 26px;
  padding-left: 1.35em;
}
.article-copy ol li {
  margin-bottom: 16px;
}
.article-copy ol li:last-child { margin-bottom: 0; }
.article-copy ol li strong { color: var(--navy); }

.anthem-box {
  margin: 30px 0;
  padding: 30px 34px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.anthem-box h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}
.anthem-box .anthem-credit {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .85rem;
}
.anthem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.anthem-grid h4 { margin-bottom: 4px; }
.anthem-grid p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.7;
}
.anthem-listen {
  text-align: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.anthem-listen a {
  color: var(--wine-dark);
  font-weight: 700;
  text-decoration: none;
}
.anthem-listen a:hover, .anthem-listen a:focus-visible { text-decoration: underline; }
@media (max-width: 680px) {
  .anthem-grid { grid-template-columns: 1fr; gap: 20px; }
  .anthem-box { padding: 24px 22px; }
}

/* Language switcher */
.lang-switch {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 6px;
}
.lang-switch a {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.lang-switch a:hover, .lang-switch a:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.lang-switch a.active {
  background: var(--wine);
  border-color: var(--wine);
  color: white;
  pointer-events: none;
}

/* Press release image gallery */
.press-gallery { margin: 34px 0 6px; }
.press-gallery-label {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--wine-dark);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .02em;
  margin: 6px 0 16px;
}
.press-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}
.press-gallery-row-narrow {
  grid-template-columns: repeat(2, 1fr);
  max-width: 440px;
  margin: 0 auto 30px;
}
.press-gallery-item {
  display: block;
  text-align: center;
  text-decoration: none;
}
.press-gallery-item img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(43,33,23,.1);
  transition: transform .22s ease, box-shadow .22s ease;
}
.press-gallery-item:hover img,
.press-gallery-item:focus-visible img {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.press-gallery-caption {
  display: block;
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--navy);
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
@media (max-width: 680px) {
  .press-gallery-row, .press-gallery-row-narrow { grid-template-columns: repeat(2, 1fr); max-width: none; }
}

.anthem-video {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #140a06;
}
.anthem-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #140a06;
}
.media-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px auto 0;
}
.media-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(43,33,23,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.media-actions a:hover,
.media-actions a:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #d8c9a0;
  outline: none;
}

/* Articles listing */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-row {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(43,33,23,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.article-row:hover,
.article-row:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #d8c9a0;
  outline: none;
}
.article-row img {
  width: 64px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  flex: 0 0 64px;
}
.article-row-body { flex: 1; }
.article-eyebrow {
  display: block;
  color: var(--wine);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.article-row-title {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.32;
}
.article-row-sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .86rem;
  font-style: italic;
}
.article-row .arrow { margin-left: 8px; flex: 0 0 32px; }
@media (max-width: 680px) {
  .article-row { padding: 16px 18px; gap: 16px; }
  .article-row img { width: 48px; height: 68px; flex: 0 0 48px; }
  .article-row-title { font-size: 1.02rem; }
  .article-row .arrow { display: none; }
}

/* Article page */
.scripture-quote {
  margin: 24px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--wine);
  background: var(--soft);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--muted);
}
.scripture-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 700;
  color: var(--wine-dark);
  font-size: .85rem;
}
.article-infographic {
  text-align: center;
  margin: 44px 0 0;
}
.article-infographic img {
  max-width: 220px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(43,33,23,.1);
  transition: transform .22s ease;
}
.article-infographic a:hover img,
.article-infographic a:focus-visible img { transform: translateY(-4px) scale(1.02); }
.article-infographic p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .85rem;
}
.article-nav {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 0 0 84px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.article-nav a {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}
.article-nav a:hover, .article-nav a:focus-visible {
  background: var(--wine-dark);
  transform: translateY(-2px);
}
.article-nav a.ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}
.article-nav a.ghost:hover, .article-nav a.ghost:focus-visible {
  background: var(--soft);
  transform: translateY(-2px);
}

.signature-block {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.signature-block p { margin: 0 0 6px; }
.signature-block a {
  color: var(--wine-dark);
  text-decoration: none;
}
.signature-block a:hover, .signature-block a:focus-visible { text-decoration: underline; }

.toc {
  max-width: 760px;
  margin: 0 auto 44px;
  padding: 28px 32px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.toc-title {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 28px;
}
.toc li { break-inside: avoid; margin-bottom: 8px; }
.toc li.toc-sub { padding-left: 16px; font-size: .92rem; }
.toc a {
  text-decoration: none;
  color: var(--muted);
  transition: color .18s ease;
}
.toc a:hover, .toc a:focus-visible { color: var(--wine); outline: none; }
@media (max-width: 680px) {
  .toc ul { columns: 1; }
  .toc { padding: 22px 20px; }
}
.page-cta {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 0 0 84px;
  text-align: center;
}
.page-cta a {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}
.page-cta a:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
}

.site-footer {
  background: #1f0a0a;
  color: #d8c9a0;
  border-top: 5px solid var(--wine);
}
.footer-main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 62px 0 42px;
  display: grid;
  grid-template-columns: 1.1fr .6fr 1.3fr;
  gap: 70px;
}
.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "shield title"
    "copy   copy";
  column-gap: 16px;
  row-gap: 10px;
  align-items: center;
}
.footer-title {
  grid-area: title;
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}
.footer-copy {
  grid-area: copy;
  margin: 0;
  max-width: 430px;
  color: #c9b98e;
  font-size: .93rem;
}
.footer-shield {
  grid-area: shield;
  width: 42px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
}
.footer-heading {
  margin: 0 0 17px;
  color: white;
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  text-decoration: none;
  color: #cdbd92;
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: white; outline: none; }
.socials {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 26px;
}
.socials a {
  flex: 1 1 0;
  height: 40px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  color: #d8c9a0;
  font-size: .68rem;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.socials a:hover,
.socials a:focus-visible {
  background: var(--wine);
  border-color: var(--wine);
  color: white;
  outline: none;
}
.footer-contact-heading { margin-top: 0; }
.footer-contact {
  margin: 0;
  color: #cdbd92;
  font-size: .88rem;
  line-height: 1.7;
}
.footer-quote {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 38px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1rem;
  color: #e7cf9a;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-bottom-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #a99b78;
  font-size: .82rem;
}
.legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.legal a { text-decoration: none; }
.legal a:hover,
.legal a:focus-visible { color: white; outline: none; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .intro-grid, .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .section-heading p { justify-self: start; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .top-rule { height: 5px; }
  .header-inner {
    width: min(calc(100% - 28px), var(--max));
    min-height: 82px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .intro-crest { width: 162px; }
  .eyebrow { font-size: .58rem; letter-spacing: .13em; }
  .brand-copy h1 { font-size: 1.36rem; }
  .section { width: min(calc(100% - 28px), var(--max)); padding: 62px 0; }
  .mission-wrap { width: min(calc(100% - 28px), var(--max)); }
  .mission-section { padding: 40px 24px; }
  .intro { padding-top: 64px; padding-bottom: 50px; }
  .intro h2 { font-size: clamp(2.25rem, 12vw, 3.3rem); }
  .options { padding-top: 0; }
  .option-grid, .mission-grid, .video-grid { grid-template-columns: 1fr; }
  .option-card { min-height: 126px; }
  .mission-card { padding: 22px; }
  .video-meta { align-items: flex-start; flex-direction: column; gap: 4px; }
  .footer-main {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 34px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner {
    width: min(calc(100% - 28px), var(--max));
    min-height: 110px;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .legal { gap: 14px 20px; }
  .page-hero { padding-top: 50px; padding-bottom: 34px; }
}
