/* ==========================================================================
   Ghana @ 70 High Life Celebration — stylesheet
   Design tokens per Website Blueprint, Part Two.
   ========================================================================== */

:root {
  --green: #0F3D2E;
  --green-deep: #092A20;
  --green-mid: #1B5E43;
  --gold: #C8A02E;
  --gold-light: #E3C463;
  --red: #CE1126;
  --sand: #F2ECE0;
  --cream: #FBF8F2;
  --ink: #22302B;
  --muted: #5C6B65;
  --white: #FFFFFF;

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, p { margin: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--green-deep); color: var(--sand); }
.section--dark .muted { color: rgba(242,236,224,0.7); }
.section--green { background: var(--green); color: var(--sand); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }

/* ---------- Flag strip ---------- */
.flag-strip {
  height: 4px;
  display: flex;
  width: 100%;
}
.flag-strip span { flex: 1; }
.flag-strip .r { background: var(--red); }
.flag-strip .g { background: var(--gold); }
.flag-strip .e { background: var(--green); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section--dark .eyebrow,
.section--green .eyebrow { color: var(--gold-light); }

.rule {
  width: 46px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0.9rem 0 1.6rem;
}
.rule--center { margin-left: auto; margin-right: auto; }

h1, .h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}
h2, .h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.18;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  color: var(--green);
}
.section--dark h2, .section--green h2 { color: var(--white); }
h3, .h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--green);
  line-height: 1.3;
}
.section--dark h3, .section--green h3 { color: var(--gold-light); }
p { color: var(--ink); }
.section--dark p, .section--green p { color: rgba(242,236,224,0.88); }
.lede { font-size: 1.1rem; line-height: 1.7; max-width: 60ch; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.section--dark .btn-outline, .section--green .btn-outline { color: var(--gold-light); border-color: var(--gold-light); }
.section--dark .btn-outline:hover, .section--green .btn-outline:hover { background: var(--gold-light); color: var(--green-deep); }
.btn-gold { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,242,0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(15,61,46,0.1);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--green);
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.brand span { color: var(--gold); }
.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--green); border-color: var(--gold); }
.header-cta { display: none; }
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: none; border: 1.5px solid var(--green); border-radius: var(--radius);
  color: var(--green);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform 220ms ease;
  z-index: 99;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav .wrap { padding-top: 2rem; padding-bottom: 2rem; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  color: var(--green);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(15,61,46,0.1);
}
.mobile-nav .btn { margin-top: 1.5rem; width: 100%; }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 4px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--green-deep);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 22%;
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,42,32,0.55) 0%, rgba(9,42,32,0.35) 40%, rgba(9,42,32,0.88) 100%);
}
.hero.kb .hero__media { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns {
  0% { transform: scale(1) translate3d(0,0,0); }
  100% { transform: scale(1.09) translate3d(-1%,-1%,0); }
}
@media (prefers-reduced-motion: reduce) { .hero.kb .hero__media { animation: none; } }
.hero__content { position: relative; z-index: 2; padding: 6.5rem 0 4rem; width: 100%; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--sand); max-width: 44ch; margin-bottom: 0.6rem; }
.hero__detail { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.03em; color: var(--gold-light); margin-bottom: 2rem; }

/* ---------- Countdown ---------- */
.countdown-band { background: var(--green-deep); color: var(--sand); padding: 2.4rem 0; }
.countdown-band .wrap { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; text-align: center; }
.countdown-label { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; color: var(--gold-light); }
.countdown { display: flex; gap: clamp(1rem, 4vw, 2.6rem); }
.countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: 3.6rem; }
.countdown__num { font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 3rem); color: var(--gold); line-height: 1; }
.countdown__unit-label { font-family: var(--font-heading); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-top: 0.5rem; }
.countdown-band__after { display: none; font-size: 1.1rem; }
.countdown-band__after a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Split / two column sections ---------- */
.split {
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}
.split img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

.stat-row { grid-template-columns: repeat(2,1fr); margin-top: 2.25rem; }
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(4,1fr); } }
.stat-row .stat { border-left: 2px solid var(--gold); padding-left: 0.9rem; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--green); }
.section--dark .stat b, .section--green .stat b { color: var(--gold); }
.stat span { font-size: 0.85rem; color: var(--muted); }
.section--dark .stat span, .section--green .stat span { color: rgba(242,236,224,0.75); }

/* ---------- Photo band background section ---------- */
.photo-band {
  position: relative;
  color: var(--sand);
  background: var(--green-deep);
}
.photo-band__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.28;
}
.photo-band__media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(9,42,32,0.75), rgba(9,42,32,0.94)); }
.photo-band > .wrap { position: relative; z-index: 1; }

/* ---------- Journey steps ---------- */
.journey { grid-template-columns: 1fr; margin-top: 2.5rem; counter-reset: step; }
@media (min-width: 760px) { .journey { grid-template-columns: repeat(4,1fr); } }
.journey__step { border-top: 2px solid var(--gold); padding-top: 1.1rem; }
.journey__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 0.4rem; }
.journey__step h4 { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--white); margin-bottom: 0.4rem; }
.section--cream .journey__step h4, .section--sand .journey__step h4 { color: var(--green); }
.journey__step p { font-size: 0.92rem; }

/* ---------- Five tile band ---------- */
.tile-band { grid-template-columns: repeat(1,1fr); margin-top: 2.5rem; }
@media (min-width: 700px) { .tile-band { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1080px) { .tile-band { grid-template-columns: repeat(5,1fr); } }
.tile-band__item {
  background: var(--white);
  border: 1px solid rgba(15,61,46,0.12);
  padding: 1.4rem 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green);
  text-align: center;
}

/* ---------- Cards ---------- */
.card-grid { grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1080px) { .card-grid.cols-5 { grid-template-columns: repeat(5,1fr); } }
@media (min-width: 900px) { .card-grid.cols-4 { grid-template-columns: repeat(4,1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.card__index { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; }
.card p { font-size: 0.95rem; }
.card--solid { background: var(--green); border-color: var(--green); color: var(--sand); }
.card--solid h3 { color: var(--gold-light); }
.card--solid p { color: rgba(242,236,224,0.88); }

/* ---------- Segment rows ---------- */
.segment-list { margin-top: 2.5rem; border-top: 1px solid rgba(15,61,46,0.15); }
.segment-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(15,61,46,0.15);
}
.segment-row__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  min-width: 2.4ch;
}
.segment-row h3 { margin-bottom: 0.35rem; }
.segment-row p { font-size: 0.95rem; max-width: 62ch; }
.segment-note { margin-top: 1.5rem; font-size: 0.88rem; font-style: italic; color: var(--muted); }

/* ---------- Artist tiles ---------- */
.artist-grid { grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 760px) { .artist-grid { grid-template-columns: 1fr 1fr; } }
.artist-tile {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center 18%;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.artist-tile::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(9,42,32,0) 35%, rgba(9,42,32,0.92) 100%); }
.artist-tile__content { position: relative; z-index: 1; padding: 1.8rem; }
.artist-tile__name { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; margin-bottom: 0.6rem; }
.artist-tile__content p { font-size: 0.92rem; color: rgba(255,255,255,0.9); max-width: 42ch; }
.artist-closing { text-align: center; margin: 2.75rem auto 0; max-width: 50ch; font-family: var(--font-heading); font-weight: 600; color: var(--green); }
.artist-closing + .btn-row { justify-content: center; }

/* ---------- Gallery strip (horizontal scroll) ---------- */
.gallery-strip {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip img {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(200px, 32vw, 300px);
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Masonry gallery (gallery page) */
.masonry { columns: 1; gap: 0.9rem; margin-top: 2rem; }
@media (min-width: 640px) { .masonry { columns: 2; } }
@media (min-width: 980px) { .masonry { columns: 3; } }
.masonry figure { break-inside: avoid; margin: 0 0 0.9rem; }
.masonry img { width: 100%; border-radius: var(--radius); cursor: zoom-in; }
.masonry figcaption { font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem; }
.gallery-group-title { margin: 2.5rem 0 0; }

.lightbox {
  position: fixed; inset: 0; background: rgba(9,42,32,0.94);
  display: none; align-items: center; justify-content: center; z-index: 200;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--gold-light); color: var(--gold-light);
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
}

/* ---------- Price cards ---------- */
.price-card { justify-content: space-between; }
.price-card h3 { font-size: 1.05rem; }
.price-card .price { font-family: var(--font-display); font-size: 1.4rem; color: var(--green); }
.price-card .btn { margin-top: 0.6rem; }

.prelaunch-note {
  margin-top: 2.5rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.prelaunch-note p { margin: 0; font-weight: 700; font-family: var(--font-heading); color: var(--green); }

/* ---------- Sponsor tiers ---------- */
.tier-strip { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.tier-pill {
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}
.section--cream .tier-pill, .section--sand .tier-pill { border-color: var(--gold); color: var(--green); }

.tier-block {
  border-left: 4px solid var(--gold);
  background: var(--sand);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1rem;
}
.tier-block h3 { margin-bottom: 0.5rem; }
.tier-block p { font-size: 0.94rem; }

/* ---------- Opportunity tags ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.tag {
  background: var(--white);
  border: 1px solid rgba(15,61,46,0.18);
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--green);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

/* ---------- Forms ---------- */
.form-block { background: var(--sand); padding: clamp(1.75rem,4vw,3rem); border-radius: var(--radius); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 1.5rem; }
@media (min-width: 700px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--green); }
.field input, .field select, .field textarea {
  border: 1.5px solid rgba(15,61,46,0.25);
  background: var(--white);
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--muted); }
.consent input { margin-top: 0.25rem; }
.form-msg { display: none; margin-top: 1.1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 700; }
.form-msg.success { display: block; background: rgba(27,94,67,0.12); color: var(--green); border: 1px solid var(--green-mid); }
.form-msg.error { display: block; background: rgba(206,17,38,0.08); color: var(--red); border: 1px solid var(--red); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.email-capture { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.75rem; max-width: 480px; }
.email-capture input[type="email"] { flex: 1 1 220px; border: 1.5px solid rgba(242,236,224,0.4); background: rgba(255,255,255,0.06); color: var(--white); padding: 0.85rem 1rem; border-radius: var(--radius); }
.email-capture input[type="email"]::placeholder { color: rgba(242,236,224,0.55); }
.email-capture .btn { flex: 0 0 auto; }
.consent-line { margin-top: 0.9rem; font-size: 0.82rem; color: rgba(242,236,224,0.6); }
.section--cream .email-capture input[type="email"] { color: var(--ink); background: var(--white); border-color: rgba(15,61,46,0.25); }
.section--cream .consent-line { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid rgba(15,61,46,0.15); padding: 1.3rem 0; }
.faq-item summary { cursor: pointer; font-family: var(--font-heading); font-weight: 700; color: var(--green); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 0.8rem; font-size: 0.95rem; }

/* ---------- Black star mark ---------- */
.black-star { display: flex; justify-content: center; margin: 3rem 0; }
.black-star svg { width: 46px; height: 46px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: var(--sand); }
.site-footer .wrap { padding-top: 3.5rem; padding-bottom: 2.5rem; }
.footer-grid { grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-grid h4 { font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.footer-grid li { margin-bottom: 0.6rem; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-identity p { font-size: 0.9rem; color: rgba(242,236,224,0.75); margin-bottom: 0.4rem; }
.footer-hashtags { margin-top: 0.9rem; font-size: 0.78rem; color: var(--gold-light); line-height: 1.8; word-break: break-word; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(242,236,224,0.15);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(242,236,224,0.6);
}
.footer-bottom nav { display: flex; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--green-deep);
}
.page-hero__media { position: absolute; inset: 0; background-size: cover; background-position: center 25%; }
.page-hero__media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(9,42,32,0.5), rgba(9,42,32,0.92)); }
.page-hero__content { position: relative; z-index: 1; padding: 5rem 0 3rem; }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 0.6rem; }
.page-hero p { color: var(--sand); max-width: 56ch; }
.breadcrumb { font-family: var(--font-heading); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }

/* ---------- Content sections (long-form sub pages) ---------- */
.content-block { max-width: 74ch; }
.content-block + .content-block { margin-top: 2.5rem; }
.content-block ul { margin-top: 1rem; }
.content-block li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; font-size: 0.97rem; }
.content-block li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; background: var(--gold); }
.two-col-list { grid-template-columns: 1fr; margin-top: 1rem; }
@media (min-width: 700px) { .two-col-list { grid-template-columns: 1fr 1fr; } }

.timeline { margin-top: 2.5rem; border-left: 2px solid var(--gold); padding-left: 1.6rem; display: flex; flex-direction: column; gap: 2rem; }
.timeline__item { position: relative; }
.timeline__item::before { content:''; position:absolute; left:-2.05rem; top: 0.3rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.timeline__item h4 { font-family: var(--font-heading); font-weight: 700; color: var(--green); margin-bottom: 0.4rem; }
.section--dark .timeline__item h4 { color: var(--gold-light); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Misc ---------- */
.section-head { max-width: 66ch; }
.section-head.center { max-width: 640px; margin: 0 auto; text-align: center; }
.section-head.center .rule { margin-left: auto; margin-right: auto; }
.caption-line { font-size: 1.02rem; color: var(--muted); margin-top: 1rem; max-width: 60ch; }
.section--dark .caption-line { color: rgba(242,236,224,0.8); }

hr.divider { border: none; border-top: 1px solid rgba(15,61,46,0.15); margin: 3rem 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--green); color: var(--white);
  padding: 0.8rem 1.2rem; z-index: 300;
}
.skip-link:focus { left: 1rem; top: 1rem; }
