/* ============================================================
   YINNOH – Youth Innovation Hub
   Design System & Global Styles
   Palette:
     --ink:       #0D1B2A  (deep navy – authority, trust)
     --earth:     #2C4A3E  (forest green – growth, community)
     --sun:       #E8871A  (amber orange – energy, hope, brand)
     --warm:      #F5EFE6  (warm ivory – breath, openness)
     --light:     #FFFFFF
     --muted:     #6B7280
     --border:    #E5E0D8
   
   Typography:
     Display: 'Playfair Display' – gravitas, story, warmth
     Body:    'Inter' – clarity, accessibility
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@400;500;600&display=swap');

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #0D1B2A;
  --earth:   #2C4A3E;
  --sun:     #E8871A;
  --sun-dk:  #C96E0A;
  --warm:    #F5EFE6;
  --light:   #FFFFFF;
  --muted:   #6B7280;
  --border:  #E5E0D8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:  6px;
  --radius-lg: 12px;
  --shadow:  0 2px 16px rgba(13,27,42,0.08);
  --shadow-md: 0 4px 32px rgba(13,27,42,0.12);

  --max-w:   1160px;
  --section: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography scale ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem);   font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--ink); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  display: block;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #3D4F5C;
  line-height: 1.7;
}

/* ── Layout utilities ───────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding: var(--section) 0; }
.section--warm { background: var(--warm); }
.section--ink  { background: var(--ink);  color: var(--light); }
.section--earth { background: var(--earth); color: var(--light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--sun);
  color: var(--light);
  border-color: var(--sun);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--sun-dk);
  border-color: var(--sun-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,135,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--ink);
  color: var(--light);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--light);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--light);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.nav__logo-text span { color: var(--sun); }
.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav__links a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--earth);
  background: rgba(44,74,62,0.07);
}

.nav__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 0.75rem 1rem; font-size: 1rem; }
  .nav__toggle { display: flex; }
  .nav__actions .btn { display: none; }
  .nav__actions .btn-primary { display: inline-flex; padding: 0.6rem 1.1rem; font-size: 0.85rem; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.38;
  transition: opacity 0.5s;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.65) 55%,
    rgba(44,74,62,0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
}

.hero__content h1 {
  color: var(--light);
  margin-bottom: 1.5rem;
}

.hero__content h1 em {
  font-style: italic;
  color: var(--sun);
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ── Impact Bar ─────────────────────────────────────────── */
.impact-bar {
  background: var(--sun);
  padding: 2.5rem 0;
}

.impact-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 1rem;
}

.impact-bar__stat {}

.impact-bar__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.impact-bar__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 560px) {
  .impact-bar__grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card--stage {
  border-top: 4px solid var(--sun);
  padding: 2rem;
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sun);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

/* ── Pull Quote ─────────────────────────────────────────── */
.pull-quote {
  position: relative;
  padding: 2rem 2rem 2rem 3.5rem;
  border-left: 4px solid var(--sun);
  background: var(--warm);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2rem 0;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  left: 0.75rem;
  top: 0.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sun);
  line-height: 1;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.pull-quote cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  font-style: normal;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonial {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.testimonial__author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sun);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Team cards ─────────────────────────────────────────── */
.team-card {
  text-align: center;
}
.team-card__img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--warm);
  box-shadow: var(--shadow);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sun);
  margin-bottom: 1rem;
}
.team-card__bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Partner logos bar ──────────────────────────────────── */
.partners {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 3rem;
}
.partners__item {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.partners__item:hover { opacity: 1; color: var(--earth); }

/* ── CTA strip ──────────────────────────────────────────── */
.cta-strip {
  background: var(--earth);
  padding: 5rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--light); margin-bottom: 1rem; }
.cta-strip p  { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ── Sponsor block ──────────────────────────────────────── */
.sponsor-block {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
}

/* ── Photo gallery grid ─────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.photo-grid img:hover { transform: scale(1.04); }
@media (max-width: 700px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid img { height: 160px; }
}

/* ── Stage journey ──────────────────────────────────────── */
.stage-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stage-journey::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.stage {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  text-align: center;
}
.stage__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sun);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--light);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--warm);
}

@media (max-width: 700px) {
  .stage-journey { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stage-journey::before { display: none; }
}
@media (max-width: 420px) {
  .stage-journey { grid-template-columns: 1fr; }
}

/* ── Value tiles ────────────────────────────────────────── */
.value-tile {
  padding: 1.5rem;
  border-left: 3px solid var(--sun);
  background: var(--light);
}
.value-tile__icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.value-tile h4 { margin-bottom: 0.35rem; }
.value-tile p  { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* ── Focus areas ────────────────────────────────────────── */
.focus-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.25rem 1.5rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.focus-chip__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.focus-chip h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.focus-chip p  { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── Contact form ───────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--light);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(232,135,26,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Donation cards ─────────────────────────────────────── */
.donate-card {
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.donate-card:hover { border-color: var(--sun); box-shadow: var(--shadow-md); }
.donate-card__flag { font-size: 2rem; margin-bottom: 1rem; }
.donate-card__badge {
  display: inline-block;
  background: var(--earth);
  color: var(--light);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.donate-card dt {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
.donate-card dd { font-size: 0.95rem; font-weight: 600; margin-top: 0.1rem; }

/* ── Video embeds ───────────────────────────────────────── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Location pins ──────────────────────────────────────── */
.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.location-chip::before {
  content: '📍';
  font-size: 0.9rem;
}

/* ── Involvement tracks ─────────────────────────────────── */
.track {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}
.track--sponsor { background: var(--ink); color: var(--light); }
.track--mentor  { background: var(--earth); color: var(--light); }
.track--volunteer { background: var(--warm); color: var(--ink); border: 1px solid var(--border); }

.track h3 { color: inherit; margin-bottom: 0.5rem; }
.track .eyebrow { color: var(--sun); }
.track p { color: inherit; opacity: 0.88; }

.track ul {
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.track ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  opacity: 0.9;
}
.track ul li::before {
  content: '✓';
  color: var(--sun);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__logo img { width: 40px; height: 40px; object-fit: contain; }
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--light);
}
.footer__logo-text span { color: var(--sun); }
.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.footer__reg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.footer__col ul a:hover { color: var(--sun); }

.footer__contact p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer__contact a { color: var(--sun); }
.footer__contact a:hover { text-decoration: underline; }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: all 0.2s;
  text-decoration: none;
}
.footer__social a:hover {
  border-color: var(--sun);
  color: var(--sun);
  background: rgba(232,135,26,0.1);
}

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,135,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--light); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 600px; }
.page-hero .eyebrow { color: var(--sun); }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--sun); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── Registration badge ─────────────────────────────────── */
.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(44,74,62,0.1);
  border: 1px solid rgba(44,74,62,0.2);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--earth);
  font-weight: 600;
}

/* ── Donate page specific ───────────────────────────────── */
.donate-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.donate-trust::before { content: '🔒'; }

.bank-detail {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  font-family: monospace;
  font-size: 0.88rem;
  line-height: 2;
}
.bank-detail strong { color: var(--ink); font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Utility ────────────────────────────────────────────── */
.text-sun   { color: var(--sun); }
.text-earth { color: var(--earth); }
.text-muted { color: var(--muted); }
.text-light { color: var(--light); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
