@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg: #0d0d0d;
  --bg-soft: #131210;
  --surface: #ffffff;
  --surface-soft: #f8f4ec;
  --surface-cream: #f4efe4;
  --text: #1a1612;
  --text-muted: #6b6257;
  --gold: #f2bd2f;
  --gold-dim: rgba(242,189,47,.14);
  --red: #c82028;
  --green: #138a47;
  --ring: rgba(242,189,47,.5);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 10px 36px rgba(0,0,0,.11);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --max: 1160px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul, figure { margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  background: var(--gold);
  color: #111;
  padding: .75rem 1.1rem;
  border-radius: 999px;
  z-index: 1000;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

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

/* ── NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,13,13,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0deg 120deg, #111 120deg 240deg, var(--green) 240deg 360deg);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 3px rgba(242,189,47,.2), 0 4px 14px rgba(0,0,0,.5);
  flex-shrink: 0;
}

.brand-sun {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(242,189,47,.7);
}

.brand strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  color: #fff;
  line-height: 1.15;
}

.brand small {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.48);
  letter-spacing: .04em;
  margin-top: .18rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav-link {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: 999px;
  transition: color .2s, background .2s;
}

.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-link.is-active { color: var(--gold); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.25rem;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  margin-left: .5rem;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(242,189,47,.35); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

.menu-toggle.is-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb-red {
  width: 65vw; height: 65vw;
  top: -25%; left: -12%;
  background: radial-gradient(circle, rgba(200,32,40,.55), transparent 68%);
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-orb-green {
  width: 55vw; height: 55vw;
  top: -15%; right: -8%;
  background: radial-gradient(circle, rgba(19,138,71,.5), transparent 68%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.hero-orb-gold {
  width: 45vw; height: 45vw;
  bottom: -10%; left: 28%;
  background: radial-gradient(circle, rgba(242,189,47,.35), transparent 68%);
  animation: drift 22s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4%, 6%) scale(1.07); }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 3.5rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.eyebrow {
  display: inline-block;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
}

.eyebrow-green { color: var(--green); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.022em;
  margin: 0 0 1.5rem;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,.74);
  max-width: 640px;
  line-height: 1.75;
  margin: 0 0 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.65rem;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 24px rgba(242,189,47,.3);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(242,189,47,.4); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.32);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); box-shadow: none; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.6rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .3s, background .3s;
}

.stat-card:hover { background: rgba(255,255,255,.09); transform: translateX(-5px); }
.stat-card-red   { border-left: 3px solid var(--red); }
.stat-card-green { border-left: 3px solid var(--green); margin-left: 1.25rem; }
.stat-card-gold  { border-left: 3px solid var(--gold); margin-left: 2.5rem; }

.stat-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.46);
  font-weight: 600;
  margin-bottom: .4rem;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-sub {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.48);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.38), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .4; transform: scaleY(.55); }
}

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-light   { background: #fff; }
.section-cream   { background: var(--surface-soft); }
.section-dark    { background: var(--bg-soft); color: #fff; }
.section-statement { background: var(--bg); color: #fff; }
.section-contact { background: var(--surface-cream); }

.section-intro { margin-bottom: 3.25rem; }

.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--text);
}

h2.white { color: #fff; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 3rem;
  align-items: start;
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.35rem;
}

.about-prose p { color: #3d3630; line-height: 1.8; }

.mission-panel {
  background: var(--bg);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 90px;
}

.mission-panel h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 1.35rem;
  color: var(--gold);
}

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .93rem;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  margin-top: .1rem;
  background-color: rgba(19,138,71,.18);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%23138a47' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── CHAPTER CARDS ── */
.chapter-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.chapter-card {
  background: rgba(255,255,255,.042);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .3s, background .3s;
}

.chapter-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); }
.chapter-card-red   { border-top: 3px solid var(--red); }
.chapter-card-gold  { border-top: 3px solid var(--gold); }
.chapter-card-green { border-top: 3px solid var(--green); }

.chapter-icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.chapter-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .75rem;
}

.chapter-card p { color: rgba(255,255,255,.66); font-size: .93rem; line-height: 1.72; margin: 0; }

.value-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }

.value-list li {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}

.value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── HISTORY / TIMELINE ── */
.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 3.5rem;
  align-items: start;
}

.timeline { display: grid; }

.timeline-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 1.25rem;
  position: relative;
}

.timeline-item:not(:last-child) .timeline-content { padding-bottom: 2.5rem; }

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: .22rem;
}

.timeline-marker::before {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242,189,47,.16);
  flex-shrink: 0;
}

.timeline-item:not(:last-child) .timeline-marker::after {
  content: '';
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(242,189,47,.38), rgba(242,189,47,.07));
  margin-top: .45rem;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 .6rem;
  display: flex;
  align-items: baseline;
  gap: .75rem;
  flex-wrap: wrap;
}

.timeline-year {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(242,189,47,.12);
  padding: .15rem .65rem;
  border-radius: 999px;
  letter-spacing: .04em;
}

.timeline-content p { color: var(--text-muted); font-size: .93rem; line-height: 1.78; margin: 0; }

.history-aside {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  position: sticky;
  top: 90px;
}

.quote-block {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem 2.4rem;
  border-left: 4px solid var(--gold);
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: #fff;
}

.quote-block figcaption {
  font-size: .8rem;
  color: rgba(255,255,255,.48);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.heroes-day {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid rgba(0,0,0,.09);
  box-shadow: var(--shadow-sm);
}

.heroes-day-date {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: .85rem 1.1rem;
  text-align: center;
  min-width: 66px;
}

.heroes-day-day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.heroes-day-month {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .2rem;
  opacity: .9;
}

.heroes-day h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 .5rem;
}

.heroes-day p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── ACTIVITIES ── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.activity-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}

.activity-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.activity-featured {
  background: var(--bg);
  color: #fff;
  border-color: rgba(255,255,255,.09);
}

.activity-icon { width: 40px; height: 40px; color: var(--green); margin-bottom: 1rem; }
.activity-featured .activity-icon { color: var(--gold); }

.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 .6rem;
  color: var(--text);
}

.activity-featured h3 { color: #fff; }

.activity-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.72; margin: 0; }
.activity-featured p { color: rgba(255,255,255,.62); }

.activity-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: .28rem .8rem;
  background: rgba(242,189,47,.14);
  color: var(--gold);
  border: 1px solid rgba(242,189,47,.3);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* ── STATEMENT ── */
.statement-layout {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
}

.statement-header { position: sticky; top: 90px; }

.statement-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.05;
}

.statement-body {
  border-left: 4px solid var(--gold);
  padding-left: 2.25rem;
}

.statement-body p {
  font-size: 1.04rem;
  color: rgba(255,255,255,.75);
  line-height: 1.82;
  margin-bottom: 1.3rem;
}

.statement-sig {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: 2rem;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sig-mark {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── RESOURCES ── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.6rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: var(--shadow-sm);
}

.resource-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(19,138,71,.28);
}

.resource-primary {
  grid-column: span 2;
  background: var(--surface-soft);
  border-left: 4px solid var(--green);
}

.resource-icon { flex-shrink: 0; width: 42px; height: 42px; color: var(--green); }
.resource-primary .resource-icon { width: 48px; height: 48px; color: var(--text); }

.resource-text { flex: 1; min-width: 0; }

.resource-text strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .3rem;
}

.resource-text span {
  font-size: .87rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.55;
}

.resource-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform .2s, color .2s;
}

.resource-card:hover .resource-arrow { transform: translateX(4px); color: var(--green); }

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.contact-info > p { color: var(--text-muted); line-height: 1.78; margin-bottom: 2rem; }

.contact-details { display: grid; gap: .75rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: .8rem 1rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,.08);
}

.contact-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 84px;
}

.contact-item a { color: var(--green); font-weight: 500; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

.contact-notice {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,.09);
  box-shadow: var(--shadow-sm);
}

.contact-notice h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}

.contact-notice p { color: var(--text-muted); font-size: .93rem; line-height: 1.75; }

.contact-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--gold-dim);
  border: 1px solid rgba(242,189,47,.28);
  border-radius: var(--radius-sm);
  font-size: .87rem;
  color: var(--text);
  line-height: 1.65;
}

/* ── FOOTER ── */
.site-footer { background: var(--bg); color: #fff; }

.footer-layout {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-brand { display: flex; align-items: center; gap: .85rem; }

.footer-brand strong { display: block; font-weight: 600; font-size: .98rem; line-height: 1.2; }
.footer-brand p { font-size: .78rem; color: rgba(255,255,255,.4); margin: .2rem 0 0; }

.footer-nav { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; }

.footer-nav a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .86rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  transition: color .2s, background .2s;
}

.footer-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }

.footer-social { display: flex; gap: .75rem; justify-content: flex-end; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .86rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  transition: color .2s, border-color .2s, background .2s;
}

.social-link svg { width: 15px; height: 15px; }
.social-link:hover { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }

.footer-bottom-inner {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.34); margin: 0; }

.footer-top {
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.footer-top:hover { color: var(--gold); }

/* ── SCROLL REVEAL ── */
[data-reveal],
[data-reveal-delay] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

[data-reveal-delay] { transition-delay: .2s; }

[data-reveal].is-revealed,
[data-reveal-delay].is-revealed { opacity: 1; transform: none; }

/* ── FOCUS ── */
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .menu-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 74px;
    background: #161410;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    z-index: 100;
  }

  .nav-links.is-open { display: flex; }
  .nav-link { padding: .72rem 1rem; border-radius: var(--radius-sm); }
  .btn-nav { margin: .5rem 0 0; border-radius: var(--radius-sm); text-align: center; justify-content: center; }

  .hero-layout { grid-template-columns: 1fr; padding-top: 5rem; padding-bottom: 4rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card-red, .stat-card-green, .stat-card-gold { margin-left: 0; flex: 1; min-width: 160px; }

  .about-grid { grid-template-columns: 1fr; }
  .mission-panel { position: static; }

  .chapter-cards { grid-template-columns: 1fr; }

  .history-layout { grid-template-columns: 1fr; }
  .history-aside { position: static; }

  .activities-grid { grid-template-columns: repeat(2, 1fr); }

  .statement-layout { grid-template-columns: 1fr; }
  .statement-header { position: static; }

  .resources-grid { grid-template-columns: 1fr; }
  .resource-primary { grid-column: span 1; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-social { justify-content: flex-start; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .activities-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat-card-red, .stat-card-green, .stat-card-gold { min-width: 0; }
  .footer-nav { display: none; }
  .hero-scroll-cue { display: none; }
}
