/* ============================================
   MHAWM — Redesign 2026
   Modern nonprofit, editorial, donation-focused
   ============================================ */

:root {
  /* Core palette — quieter, more confident */
  --ink:          #1A1410;   /* near-black espresso (body text, dark surfaces) */
  --ink-soft:     #3A2E24;   /* secondary text */
  --paper:        #FBF7EF;   /* warm cream page bg */
  --paper-deep:   #F3ECDB;   /* sand — section bg */
  --paper-muted:  #EFE6D0;   /* mid sand */
  --line:         #E2D6BC;   /* hairlines on paper */
  --line-soft:    #EDE2C8;

  /* Brand anchors */
  --cochineal:    #A3291F;   /* primary brand red — cochineal dye */
  --cochineal-dk: #7A1E16;
  --cochineal-lt: #C24036;

  --saffron:      #E08A1E;   /* marigold accent */
  --saffron-lt:   #F1A94A;
  --saffron-pale: #F9E0B4;

  --jade:         #2E5E4E;   /* secondary — nopal jade */
  --jade-dk:      #1E4237;
  --jade-lt:      #4A8270;

  --bougainvillea:#C73566;   /* rare special accent */

  /* Semantic */
  --text:         var(--ink);
  --text-muted:   #5B4E42;
  --text-faint:   #8A7C6E;
  --surface:      #FFFFFF;
  --surface-alt:  var(--paper);
  --surface-deep: var(--paper-deep);

  /* Fonts */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-script:  'Caveat', cursive;

  /* System */
  --nav-h:        92px;
  --section-pad:  clamp(64px, 10vw, 128px);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    18px;
  --max:          1240px;
  --max-narrow:   920px;
  --ease:         cubic-bezier(0.32, 0.72, 0, 1);
  --t:            0.3s var(--ease);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--saffron); color: var(--ink); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 28px; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 9999; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 6px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 400; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; line-height: 1.2; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }

em, .italic { font-style: italic; font-family: var(--font-display); font-weight: 400; }
.accent-script { font-family: var(--font-script); font-weight: 500; }

p { text-wrap: pretty; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cochineal);
  font-family: var(--font-body);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}
.eyebrow.center::before { display: none; }
.eyebrow.on-dark { color: var(--saffron-lt); }

/* Section header */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; max-width: 58ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--t);
  white-space: nowrap;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
}
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-icon::after {
  content: '→';
  font-size: 1.1em;
  transition: transform var(--t);
}
.btn-icon:hover::after { transform: translateX(4px); }

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--cochineal); }

.btn-cochineal { background: var(--cochineal); color: #fff; }
.btn-cochineal:hover { background: var(--cochineal-dk); }

.btn-saffron { background: var(--saffron); color: var(--ink); }
.btn-saffron:hover { background: var(--saffron-lt); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

.btn-white { background: var(--paper); color: var(--ink); }
.btn-white:hover { background: #fff; transform: translateY(-1px); }

.btn-outline-white { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--paper); }

.btn-link {
  font-weight: 600;
  color: var(--cochineal);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-link::after {
  content: '→';
  transition: transform var(--t);
}
.btn-link:hover::after { transform: translateX(4px); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(251, 247, 239, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: var(--t);
}
.nav.scrolled {
  background: rgba(251, 247, 239, 0.95);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--saffron);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-logo-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Wordmark logo image (replaces M mark + MHAWM text) */
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
/* "Since 1969" tagline next to wordmark */
.nav-logo-since {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .nav-logo-img { height: 44px; }
  .nav-logo-since { font-size: 0.58rem; padding-left: 10px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a, .nav-drop-trigger {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-links a:hover, .nav-drop-trigger:hover, .nav-links a.active { color: var(--ink); background: rgba(0,0,0,0.04); }

.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 50px -12px rgba(26,20,16,0.15);
  padding: 8px;
  display: none;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.nav-drop-menu a:hover { background: var(--paper-deep); color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.lang-toggle {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  letter-spacing: 0.05em;
}
.lang-toggle .active { color: var(--ink); }
.lang-toggle:hover { border-color: var(--ink); color: var(--ink); }

.nav-mobile-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav-mobile-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  position: relative;
  display: block;
}
.nav-mobile-toggle span::before, .nav-mobile-toggle span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--ink);
}
.nav-mobile-toggle span::before { top: -7px; }
.nav-mobile-toggle span::after { top: 7px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--paper);
  padding: 24px 28px 120px;
  overflow-y: auto;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu .m-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-faint); margin: 20px 0 4px; padding: 0 12px;
}
.mobile-menu a {
  display: block; padding: 12px; font-size: 1.05rem;
  font-family: var(--font-display); font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}

/* ============================================
   HERO (HOME)
   ============================================ */
.hero {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-copy h1 {
  font-size: clamp(2.8rem, 6.8vw, 5.5rem);
  line-height: 0.98;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -0.035em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--cochineal);
  font-weight: 400;
}
.hero-copy h1 .accent-script {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--saffron);
  font-style: normal;
  font-size: 0.75em;
  display: block;
  margin-bottom: -4px;
  letter-spacing: 0;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 50ch;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-item .lbl {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-faint); font-weight: 600;
}
.hero-meta-item .val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--cochineal) 0%, var(--cochineal-dk) 100%);
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(224,138,30,0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(199,53,102,0.3) 0%, transparent 55%);
  mix-blend-mode: screen;
}
.hero-visual-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  mix-blend-mode: multiply;
}
.hero-visual-frame {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(251,247,239,0.4);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.hero-visual-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.3;
  z-index: 2;
}
.hero-visual-caption .year {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--saffron-lt);
  margin-bottom: 8px;
  font-weight: 600;
}
.hero-visual-ticker {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(251,247,239,0.12);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(251,247,239,0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-visual-ticker::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Papel picado ornament — SINGLE use at top */
.papel {
  height: 26px;
  background:
    radial-gradient(circle at 12px 0, var(--paper) 9px, transparent 10px),
    repeating-linear-gradient(90deg,
      var(--cochineal) 0 36px,
      var(--saffron) 36px 72px,
      var(--jade) 72px 108px,
      var(--bougainvillea) 108px 144px);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='26' viewBox='0 0 48 26'><path d='M0 0h48v12c0 3-2 5-5 5h-2c-3 0-5-3-5-6v0c0 3-2 6-5 6h-2c-3 0-5-3-5-6 0 3-2 6-5 6h-2c-3 0-5-3-5-6v0c0 3-2 6-5 6H5c-3 0-5-2-5-5z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='26' viewBox='0 0 48 26'><path d='M0 0h48v12c0 3-2 5-5 5h-2c-3 0-5-3-5-6v0c0 3-2 6-5 6h-2c-3 0-5-3-5-6 0 3-2 6-5 6h-2c-3 0-5-3-5-6v0c0 3-2 6-5 6H5c-3 0-5-2-5-5z' fill='black'/></svg>");
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-size: 48px 26px;
          mask-size: 48px 26px;
}

/* ============================================
   KEY DATES STRIP
   ============================================ */
.dates-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
}
.dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}
.dates-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(251,247,239,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--t);
  position: relative;
}
.dates-item:last-child { border-right: none; }
.dates-item:hover { background: rgba(251,247,239,0.04); }
.dates-item a {
  position: absolute; inset: 0;
}
.dates-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--saffron);
  font-weight: 600;
}
.dates-head {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.dates-sub {
  font-size: 0.85rem;
  color: rgba(251,247,239,0.6);
  margin-top: 4px;
}
.dates-arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  color: rgba(251,247,239,0.4);
  transition: var(--t);
}
.dates-item:hover .dates-arrow { color: var(--saffron); transform: translateX(3px); }

/* ============================================
   SECTIONS
   ============================================ */
section { position: relative; }
.section { padding: var(--section-pad) 0; }
.section-cream { background: var(--paper); }
.section-white { background: #fff; }
.section-sand { background: var(--paper-deep); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: var(--paper); }
.section-cochineal { background: var(--cochineal); color: var(--paper); }
.section-cochineal h1, .section-cochineal h2, .section-cochineal h3 { color: var(--paper); }
.section-jade { background: var(--jade-dk); color: var(--paper); }
.section-jade h1, .section-jade h2, .section-jade h3 { color: var(--paper); }

/* ============================================
   STORY SECTION (About/home)
   ============================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.story-visual {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-deep);
}
.story-visual-plate {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  filter: sepia(0.15) contrast(1.02);
}
.story-copy .big-q {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.story-copy .big-q em { color: var(--cochineal); }
.story-copy p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.7;
}
.story-sig {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--cochineal);
  margin-top: 16px;
}
.story-sig-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  font-weight: 600;
  margin-top: 2px;
}

/* ============================================
   PILLARS — the four things MHAWM does
   ============================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: 40px 28px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: var(--t);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: #fff; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cochineal);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.pillar h3 em { color: var(--cochineal); }
.pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.pillar a { color: var(--ink); font-weight: 600; font-size: 0.88rem; border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: var(--t); }
.pillar a:hover { border-bottom-color: var(--cochineal); color: var(--cochineal); }

/* ============================================
   FEATURE — image + text split
   ============================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.feature-copy .eyebrow { margin-bottom: 20px; }
.feature-copy h2 { margin-bottom: 24px; }
.feature-copy p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.05rem; line-height: 1.65; }
.feature-copy ul { margin: 24px 0; }
.feature-copy ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.feature-copy ul li:first-child { border-top: 1px solid var(--line); }
.feature-copy ul li strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.05rem;
  min-width: 140px;
  flex-shrink: 0;
}
.feature-copy ul li span { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================
   EXPERIENCE CARDS (festival highlights)
   ============================================ */
.xp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.xp {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--ink);
  color: var(--paper);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--t);
  isolation: isolate;
}
.xp::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: var(--bg);
  opacity: 0.75;
  transition: opacity var(--t), transform 0.6s var(--ease);
  z-index: -2;
}
.xp::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,20,16,0.85) 100%);
  z-index: -1;
}
.xp:hover::before { transform: scale(1.05); opacity: 0.85; }
.xp-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 8px;
}
.xp h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--paper);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.xp p { font-size: 0.9rem; color: rgba(251,247,239,0.8); line-height: 1.5; }

/* Grid spans */
.xp-lg { grid-column: span 8; min-height: 440px; }
.xp-md { grid-column: span 4; }
.xp-sm { grid-column: span 4; }
.xp-full { grid-column: span 12; min-height: 380px; }

/* ============================================
   IMPACT NUMBERS
   ============================================ */
.impact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(251,247,239,0.15);
  border-bottom: 1px solid rgba(251,247,239,0.15);
}
.impact-item {
  padding: 48px 24px;
  border-right: 1px solid rgba(251,247,239,0.12);
  text-align: left;
}
.impact-item:last-child { border-right: none; }
.impact-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--saffron);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.impact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 12px;
}
.impact-detail {
  font-size: 0.88rem;
  color: rgba(251,247,239,0.65);
  line-height: 1.5;
}

/* ============================================
   QUOTE BLOCK
   ============================================ */
.quote {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
  text-wrap: balance;
}
.section-ink .quote blockquote, .section-cochineal .quote blockquote, .section-jade .quote blockquote { color: var(--paper); }
.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.section-ink .quote cite, .section-cochineal .quote cite, .section-jade .quote cite { color: rgba(251,247,239,0.7); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--cochineal);
  margin-bottom: 20px;
  font-weight: 400;
}
.section-cochineal .quote-mark { color: var(--saffron); }

/* ============================================
   SUPPORT (donate tiers)
   ============================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--t);
  cursor: pointer;
  position: relative;
}
.tier:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 16px 40px -12px rgba(26,20,16,0.15); }
.tier.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tier.featured h3, .tier.featured .tier-amt { color: var(--paper); }
.tier-amt {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.tier h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cochineal);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.tier.featured h3 { color: var(--saffron); }
.tier p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.tier.featured p { color: rgba(251,247,239,0.75); }
.tier-badge {
  position: absolute;
  top: -10px; right: 24px;
  background: var(--saffron);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ============================================
   CALLOUT / BANNER CARD
   ============================================ */
.callout {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.callout.cochineal { background: var(--cochineal); }
.callout.jade { background: var(--jade-dk); }
.callout::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(224,138,30,0.25) 0%, transparent 70%);
}
.callout-content { position: relative; z-index: 1; }
.callout h2 {
  color: var(--paper);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.callout h2 em { color: var(--saffron); }
.callout p {
  color: rgba(251,247,239,0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 44ch;
}
.callout-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================
   SPONSORS
   ============================================ */
.sponsors-band {
  padding: 64px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.sponsors-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.sponsors-head h2 { font-size: 1.8rem; }
.sponsors-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.sponsor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  height: 120px;
  display: grid;
  place-items: center;
}
.sponsor-card img { max-height: 64px; max-width: 100%; width: auto; opacity: 0.9; transition: var(--t); }
.sponsor-card:hover img { opacity: 1; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(251,247,239,0.7);
  padding: 72px 0 24px;
  border-top: 6px solid var(--cochineal);
}
.footer-papel {
  height: 22px;
  background: var(--cochineal);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='22' viewBox='0 0 40 22'><path d='M0 0h40v10c0 4-3 7-7 7h-1c-4 0-6-3-6-7 0 4-2 7-6 7h-1c-4 0-6-3-6-7 0 4-2 7-6 7H6c-4 0-6-3-6-7z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='22' viewBox='0 0 40 22'><path d='M0 0h40v10c0 4-3 7-7 7h-1c-4 0-6-3-6-7 0 4-2 7-6 7h-1c-4 0-6-3-6-7 0 4-2 7-6 7H6c-4 0-6-3-6-7z' fill='black'/></svg>");
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-size: 40px 22px;
          mask-size: 40px 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251,247,239,0.1);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 12px;
  font-weight: 500;
}
.footer-brand p {
  font-size: 0.92rem; line-height: 1.6;
  color: rgba(251,247,239,0.55);
  margin-bottom: 20px;
  max-width: 32ch;
}
.footer-meta {
  font-size: 0.78rem;
  color: rgba(251,247,239,0.4);
  line-height: 1.6;
}
.footer-meta strong { color: rgba(251,247,239,0.65); font-weight: 600; }
.footer-col h4 {
  color: var(--paper);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(251,247,239,0.6);
  padding: 7px 0;
  transition: var(--t);
}
.footer-col a:hover { color: var(--saffron); transform: translateX(3px); }
.footer-form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-form input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(251,247,239,0.06);
  border: 1px solid rgba(251,247,239,0.15);
  border-radius: 8px;
  color: var(--paper);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--t);
}
.footer-form input::placeholder { color: rgba(251,247,239,0.4); }
.footer-form input:focus { border-color: var(--saffron); background: rgba(251,247,239,0.1); }
.footer-form button {
  padding: 12px 20px;
  background: var(--saffron);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--t);
}
.footer-form button:hover { background: var(--saffron-lt); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(251,247,239,0.08);
  display: grid; place-items: center;
  padding: 0;
  color: rgba(251,247,239,0.7);
}
.footer-social a:hover {
  background: var(--saffron);
  color: var(--ink);
  transform: none;
}
.footer-bottom {
  padding: 28px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(251,247,239,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(251,247,239,0.6); }
.footer-bottom a:hover { color: var(--saffron); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero.ink { background: var(--ink); color: var(--paper); border-bottom-color: var(--cochineal); }
.page-hero.ink h1 { color: var(--paper); }
.page-hero.ink .page-hero-lede { color: rgba(251,247,239,0.75); }
.page-hero.ink .eyebrow { color: var(--saffron-lt); }
.page-hero-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.page-hero.ink .page-hero-kicker { color: rgba(251,247,239,0.6); }
.page-hero-kicker a { color: inherit; }
.page-hero-kicker a:hover { color: var(--cochineal); }
.page-hero.ink .page-hero-kicker a:hover { color: var(--saffron); }
.page-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.page-hero h1 em { color: var(--cochineal); }
.page-hero.ink h1 em { color: var(--saffron); }
.page-hero-lede {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.55;
}

/* ============================================
   SCHEDULE
   ============================================ */
.schedule-days {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.schedule-day-btn {
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--t);
  cursor: pointer;
}
.schedule-day-btn.active { color: var(--ink); border-bottom-color: var(--cochineal); }
.schedule-day-btn:hover { color: var(--ink); }

.schedule-list {
  display: none;
  flex-direction: column;
  gap: 0;
}
.schedule-list.active { display: flex; }
.schedule-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.schedule-time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.schedule-info h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 500;
}
.schedule-info p { font-size: 0.92rem; color: var(--text-muted); }
.schedule-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.tag-music { background: #FADED6; color: var(--cochineal); }
.tag-food { background: var(--saffron-pale); color: #8B5A0F; }
.tag-culture { background: #D4E4DC; color: var(--jade-dk); }
.tag-family { background: var(--paper-deep); color: var(--ink); }

/* ============================================
   FORM
   ============================================ */
.form { max-width: 620px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-family: var(--font-body);
  color: var(--ink);
  outline: none;
  transition: var(--t);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(26,20,16,0.08);
}
.form-textarea { min-height: 140px; resize: vertical; }

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.amount-btn {
  padding: 16px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  transition: var(--t);
}
.amount-btn:hover { border-color: var(--ink); }
.amount-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.checkbox-group {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; font-size: 0.92rem; color: var(--text-muted);
}
.checkbox-group input { width: 18px; height: 18px; accent-color: var(--cochineal); }

/* ============================================
   UTILITIES
   ============================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid, .story, .feature { grid-template-columns: 1fr; gap: 48px; }
  .story-visual { position: relative; top: 0; max-width: 500px; margin: 0 auto; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid var(--line); }
  .pillar:nth-child(2) { border-right: none; }
  .dates-grid { grid-template-columns: repeat(2, 1fr); }
  .dates-item:nth-child(2) { border-right: none; }
  .dates-item:nth-child(-n+2) { border-bottom: 1px solid rgba(251,247,239,0.1); }
  .xp-grid { grid-template-columns: 1fr 1fr; }
  .xp-lg, .xp-md, .xp-sm, .xp-full { grid-column: span 1; }
  .xp-lg { grid-column: span 2; }
  .impact { grid-template-columns: repeat(2, 1fr); }
  .impact-item:nth-child(2) { border-right: none; }
  .impact-item:nth-child(-n+2) { border-bottom: 1px solid rgba(251,247,239,0.12); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .sponsors-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .callout { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  :root { --section-pad: 64px; --nav-h: 64px; }
  .nav-links { display: none; }
  .lang-toggle { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-ctas, .callout-actions { flex-direction: column; }
  .hero-ctas .btn, .callout-actions .btn { width: 100%; }
  .hero-meta { gap: 20px; }
  .dates-grid { grid-template-columns: 1fr; }
  .dates-item { border-right: none !important; border-bottom: 1px solid rgba(251,247,239,0.1); }
  .dates-item:last-child { border-bottom: none; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .xp-grid { grid-template-columns: 1fr; }
  .xp-lg { grid-column: span 1; }
  .impact { grid-template-columns: 1fr; }
  .impact-item { border-right: none !important; border-bottom: 1px solid rgba(251,247,239,0.12); }
  .impact-item:last-child { border-bottom: none; }
  .tiers { grid-template-columns: 1fr; }
  .sponsors-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .schedule-row { grid-template-columns: 1fr; gap: 8px; }
  .amount-buttons { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .feature.reverse { direction: ltr; }
}


/* ============================================
   PAGE-SPECIFIC STYLES (added for all pages)
   ============================================ */

/* Page hero (shared across About, Programs, Get Involved, Contact) */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(224,138,30,0.08), transparent 50%);
  pointer-events: none;
}
.page-hero-inner { max-width: 900px; position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 16px 0 28px;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cochineal);
}
.page-lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 680px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.two-col-left { position: sticky; top: calc(var(--nav-h) + 40px); }
.two-col-left h2 { font-size: clamp(36px, 4vw, 56px); }
.two-col-right { max-width: 720px; }
.two-col-right p + p { margin-top: 20px; }
.two-col-right .lede-sm {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col-left { position: static; }
}

/* ====================== ABOUT PAGE ====================== */

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 64px auto 0;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--cochineal), var(--saffron), var(--jade));
  opacity: 0.3;
}
.tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 24px 0;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 32px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cochineal);
  border: 3px solid var(--paper-deep);
  box-shadow: 0 0 0 2px var(--cochineal);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--cochineal);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 4px;
}
.tl-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}
.tl-body h3 em { font-style: italic; color: var(--cochineal); }
.tl-body p { color: var(--text-muted); line-height: 1.6; }
@media (max-width: 700px) {
  .timeline { padding-left: 28px; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .tl-item::before { left: -28px; top: 26px; width: 14px; height: 14px; }
  .tl-year { font-size: 28px; }
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 24px;
}
.value {
  background: var(--surface);
  padding: 40px 32px;
  transition: background .3s;
}
.value:hover { background: var(--paper); }
.value-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--cochineal);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.value h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}
.value p { color: var(--text-muted); line-height: 1.6; font-size: 15px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* Board grid */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  margin-top: 32px;
}
.board-card { text-align: center; }
.board-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--paper-deep);
  background-size: cover; background-position: center;
  border: 2px solid var(--line);
}
.board-photo-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--cochineal);
  background: linear-gradient(135deg, var(--paper) 0%, var(--saffron-pale) 100%);
}
.board-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.board-role { color: var(--text-muted); font-size: 14px; }
@media (max-width: 720px) { .board-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; } }

/* Financial bars */
.fin-bars { margin-top: 32px; }
.fin-bar {
  display: grid;
  grid-template-columns: 180px 1fr 50px;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.fin-label { color: var(--paper); font-size: 14px; }
.fin-bar-track {
  height: 8px;
  background: rgba(251,247,239,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.fin-bar-fill {
  display: block;
  height: 100%;
  border-radius: 4px;
}
.fin-pct { color: var(--saffron-lt); font-family: var(--font-display); font-size: 18px; text-align: right; }
@media (max-width: 560px) {
  .fin-bar { grid-template-columns: 1fr 50px; }
  .fin-label { grid-column: 1 / -1; }
}

/* CTA duo */
.cta-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-card {
  display: block;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  color: var(--paper);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.cta-card:hover { transform: translateY(-4px); }
.cta-cochineal { background: linear-gradient(135deg, var(--cochineal), var(--cochineal-dk)); }
.cta-jade { background: linear-gradient(135deg, var(--jade), var(--jade-dk)); }
.cta-eyebrow { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; margin-bottom: 16px; }
.cta-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}
.cta-card p { opacity: 0.85; line-height: 1.5; max-width: 340px; }
.cta-arrow {
  position: absolute;
  right: 32px; bottom: 32px;
  font-size: 32px;
  transition: transform .3s;
}
.cta-card:hover .cta-arrow { transform: translateX(8px); }
@media (max-width: 720px) { .cta-duo { grid-template-columns: 1fr; } }

/* ====================== FESTIVAL PAGE ====================== */

.fest-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.fest-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(163,41,31,0.35), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(224,138,30,0.25), transparent 50%);
}
.fest-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.fest-hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 16px 0 24px;
}
.fest-hero-copy h1 em {
  font-style: italic;
  color: var(--saffron);
}
.fest-hero-copy .eyebrow { color: var(--saffron-lt); }
.fest-hero-copy .page-lede { color: rgba(251,247,239,0.85); }
.fest-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

.fest-hero-countdown {
  background: rgba(251,247,239,0.05);
  border: 1px solid rgba(251,247,239,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cd-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-lt);
  margin-bottom: 20px;
}
.cd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.cd-unit {
  text-align: center;
  padding: 20px 8px;
  background: rgba(251,247,239,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(251,247,239,0.08);
}
.cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.cd-label2 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251,247,239,0.6);
}
.cd-when {
  padding-top: 20px;
  border-top: 1px solid rgba(251,247,239,0.1);
  color: rgba(251,247,239,0.8);
  font-size: 14px;
  line-height: 1.6;
}
.cd-when strong { color: var(--paper); }
@media (max-width: 900px) {
  .fest-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Festival facts */
.fest-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fact {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fact-lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cochineal);
  font-weight: 600;
}
.fact-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin: 4px 0;
}
.fact-sub { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 900px) { .fest-facts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fest-facts { grid-template-columns: 1fr; } }

/* Schedule */
.sched-tabs {
  display: flex;
  gap: 8px;
  margin: 40px 0 32px;
  border-bottom: 2px solid var(--line);
  flex-wrap: wrap;
}
.sched-tab {
  background: none;
  border: none;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}
.sched-tab:hover { color: var(--ink); }
.sched-tab.active {
  color: var(--cochineal);
  border-bottom-color: var(--cochineal);
}
.sched-day { display: none; }
.sched-day.active { display: block; }
.sched-row {
  display: grid;
  grid-template-columns: 100px 1fr 140px;
  gap: 32px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.sched-row-featured {
  background: linear-gradient(90deg, rgba(163,41,31,0.05), transparent);
  border-left: 3px solid var(--cochineal);
  padding-left: 20px;
  margin: 0 -20px;
  padding-right: 20px;
}
.sched-time {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cochineal);
  font-weight: 500;
}
.sched-info h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.sched-info h4 em { color: var(--cochineal); font-style: italic; }
.sched-info p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.sched-stage {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: right;
}
@media (max-width: 720px) {
  .sched-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .sched-stage { text-align: left; }
}

/* Food grid */
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.food-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.food-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,20,16,0.08);
}
.food-swatch {
  height: 100px;
  position: relative;
}
.food-swatch::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent 70%);
}
.food-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  padding: 20px 20px 4px;
  color: var(--ink);
}
.food-item p { padding: 0 20px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.5; }
@media (max-width: 900px) { .food-grid { grid-template-columns: repeat(2, 1fr); } }

/* Visit grid */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.visit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.visit-icon { font-size: 32px; margin-bottom: 16px; }
.visit-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}
.visit-card p { color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; font-size: 15px; }
.visit-card p:last-child { margin-bottom: 0; }
.visit-card strong { color: var(--ink); }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .visit-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { margin-top: 32px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--cochineal);
  font-weight: 300;
  transition: transform .3s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--cochineal); }
.faq details p {
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 16px;
  max-width: 720px;
}

/* ====================== PROGRAMS PAGE ====================== */

.program-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.program-feature-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.pf-main {
  position: absolute;
  inset: 0 20% 20% 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(26,20,16,0.15);
}
.pf-sub {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  border: 8px solid var(--paper);
  box-shadow: 0 12px 32px rgba(26,20,16,0.12);
}
.pf-sub-1 { width: 40%; aspect-ratio: 1; bottom: 8%; right: 0; }
.pf-sub-2 { width: 32%; aspect-ratio: 3/4; bottom: 0; right: 44%; }
.pf-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--cochineal);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.program-feature-copy h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
  color: var(--ink);
}
.program-feature-copy h2 em { font-style: italic; color: var(--cochineal); }
.lede-sm {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.divisions { margin: 32px 0; }
.div-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.div-row:last-child { border-bottom: none; }
.div-age {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cochineal);
  font-weight: 500;
}
.div-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.div-row span { color: var(--text-muted); font-size: 14px; }
.program-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 900px) {
  .program-feature { grid-template-columns: 1fr; gap: 48px; }
  .program-feature-visual { max-width: 500px; margin: 0 auto; }
}

/* Court grid */
.court-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.court-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s;
}
.court-card:hover { transform: translateY(-4px); }
.court-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-deep);
}
.court-info { padding: 24px; }
.court-division {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cochineal);
  font-weight: 600;
  margin-bottom: 8px;
}
.court-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.court-age { color: var(--text-muted); font-size: 14px; }
@media (max-width: 900px) { .court-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .court-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* Program cards */
.prog-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.prog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
}
.prog-card-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--cochineal);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.prog-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--ink);
}
.prog-card > p { color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.prog-stats {
  list-style: none;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.prog-stats li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.prog-stats strong { color: var(--cochineal); font-family: var(--font-display); font-size: 18px; margin-right: 8px; }
.prog-link {
  color: var(--cochineal);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: gap .2s;
}
.prog-link:hover { text-decoration: underline; }
@media (max-width: 720px) { .prog-cards { grid-template-columns: 1fr; } }

/* ====================== GET INVOLVED PAGE ====================== */

.inv-nav {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.inv-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.inv-nav a:hover { border-bottom-color: var(--cochineal); color: var(--cochineal); }

/* Role grid */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.role-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s, border-color .3s;
}
.role-card:hover {
  transform: translateY(-4px);
  border-color: var(--cochineal);
}
.role-tag {
  display: inline-block;
  background: var(--paper-deep);
  color: var(--cochineal);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.role-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.role-card p { color: var(--text-muted); line-height: 1.6; font-size: 14px; margin-bottom: 20px; }
.role-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-faint);
}
.role-meta span:first-child { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .role-grid { grid-template-columns: 1fr; } }

/* Vendor tiers */
.vendor-tiers { margin: 24px 0; }
.vt-row {
  display: grid;
  grid-template-columns: 180px 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.vt-head { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); }
.vt-price { font-family: var(--font-display); font-size: 18px; color: var(--cochineal); font-weight: 500; }
.vt-note { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
@media (max-width: 720px) {
  .vt-row { grid-template-columns: 1fr; gap: 4px; }
}

/* Sponsor tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tier {
  background: rgba(251,247,239,0.05);
  border: 1px solid rgba(251,247,239,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform .3s;
}
.tier:hover { transform: translateY(-4px); }
.tier-featured {
  background: rgba(224,138,30,0.12);
  border-color: var(--saffron);
  box-shadow: 0 0 0 1px var(--saffron);
}
.tier-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: var(--ink);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 8px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--saffron-lt);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.tier ul {
  list-style: none;
  padding: 24px 0 0;
  border-top: 1px solid rgba(251,247,239,0.12);
}
.tier ul li {
  padding: 6px 0 6px 20px;
  color: rgba(251,247,239,0.85);
  font-size: 14px;
  position: relative;
}
.tier ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-weight: 700;
}
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tier-grid { grid-template-columns: 1fr; } }

/* Apply form */
.apply-form { display: flex; flex-direction: column; gap: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.apply-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apply-form label span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.apply-form input,
.apply-form select,
.apply-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--cochineal);
  box-shadow: 0 0 0 3px rgba(163,41,31,0.1);
}
.apply-form textarea { resize: vertical; min-height: 120px; }
.apply-thanks {
  text-align: center;
  padding: 60px 20px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.apply-thanks h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--cochineal);
  margin-bottom: 12px;
}
.apply-thanks p { color: var(--text-muted); font-size: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ====================== DONATE PAGE ====================== */

.donate-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}
.donate-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.donate-copy h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 24px;
}
.donate-copy h1 em { font-style: italic; color: var(--cochineal); }

.impact-band {
  margin-top: 40px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ib-item {
  background: var(--surface);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
}
.ib-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--cochineal);
}
.ib-item span { color: var(--text-muted); font-size: 14px; line-height: 1.4; }

/* Donate form card */
.donate-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 24px 64px rgba(26,20,16,0.08);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.df-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper-deep);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 28px;
}
.df-tab {
  background: none;
  border: none;
  padding: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: calc(var(--radius) - 2px);
  transition: all .2s;
}
.df-tab.active {
  background: var(--surface);
  color: var(--cochineal);
  box-shadow: 0 2px 8px rgba(26,20,16,0.06);
}
.df-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.df-amt {
  padding: 16px 8px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s;
}
.df-amt:hover { border-color: var(--cochineal); }
.df-amt.active {
  background: var(--cochineal);
  border-color: var(--cochineal);
  color: var(--paper);
}
.df-custom-input {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--cochineal);
  border-radius: var(--radius);
  padding: 0 16px;
  margin-bottom: 16px;
}
.df-dollar { color: var(--text-muted); font-size: 18px; margin-right: 4px; }
.df-custom-input input {
  flex: 1;
  border: none;
  background: none;
  padding: 14px 0;
  font-size: 18px;
  font-family: var(--font-display);
  color: var(--ink);
  outline: none;
}
.df-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: var(--paper);
  border-radius: var(--radius);
  margin-bottom: 24px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.df-check input { margin-top: 2px; }
.df-summary {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.df-sum-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.df-sum-total {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 6px;
}
.btn-full { width: 100%; justify-content: center; }
.df-trust {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.df-trust-row {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.df-trust-row a { color: var(--cochineal); }
@media (max-width: 900px) {
  .donate-grid { grid-template-columns: 1fr; }
  .donate-form-card { position: static; }
}

/* Allocation cards */
.allocation {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.alloc-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.alloc-1 { background: var(--cochineal); grid-row: span 2; padding: 48px 40px; }
.alloc-2 { background: var(--saffron); color: var(--ink); }
.alloc-3 { background: var(--jade); }
.alloc-4 { background: #8B3F6B; }
.alloc-5 { background: var(--ink-soft); grid-column: span 2; }
.alloc-pct {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.alloc-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.alloc-card p { font-size: 14px; line-height: 1.5; opacity: 0.9; max-width: 320px; }
@media (max-width: 900px) {
  .allocation { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .alloc-1 { grid-row: span 1; grid-column: span 2; }
  .alloc-5 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .allocation { grid-template-columns: 1fr; }
  .alloc-1, .alloc-5 { grid-column: span 1; }
}

/* Ways to give */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.way-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .2s, transform .3s;
}
.way-card:hover { border-color: var(--cochineal); transform: translateY(-4px); }
.way-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.way-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.way-card strong { color: var(--ink); }
.way-link {
  color: var(--cochineal);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.way-link:hover { text-decoration: underline; }
@media (max-width: 900px) { .ways-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ways-grid { grid-template-columns: 1fr; } }

/* ====================== CONTACT PAGE ====================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.contact-card-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cochineal);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-card-big {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-card-big:hover { color: var(--cochineal); }
.contact-card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.contact-card address { font-style: normal; color: var(--ink); line-height: 1.7; font-size: 15px; }
.team-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.team-row:last-of-type { border-bottom: none; }
.team-row span { color: var(--ink); font-weight: 500; }
.team-row a { color: var(--cochineal); text-decoration: none; font-size: 13px; }
.team-row a:hover { text-decoration: underline; }
.social-row { display: flex; gap: 12px; }
.social-big {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all .2s;
}
.social-big:hover {
  border-color: var(--cochineal);
  color: var(--cochineal);
  background: var(--surface);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Map */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-placeholder {
  aspect-ratio: 16/6;
  background: linear-gradient(135deg, var(--paper-deep) 0%, var(--saffron-pale) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 49%, rgba(163,41,31,0.08) 49%, rgba(163,41,31,0.08) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(163,41,31,0.08) 49%, rgba(163,41,31,0.08) 51%, transparent 51%);
  background-size: 60px 60px;
  opacity: 0.4;
}
.map-pin { font-size: 48px; position: relative; }
.map-addr { position: relative; font-family: var(--font-display); font-size: 20px; line-height: 1.5; color: var(--ink); }
.map-placeholder .btn { position: relative; }
@media (max-width: 560px) { .map-placeholder { aspect-ratio: auto; min-height: 300px; } }

/* Quick links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ql-card {
  display: grid;
  grid-template-columns: 1fr 24px;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s;
}
.ql-card:hover {
  border-color: var(--cochineal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,20,16,0.06);
}
.ql-card > span:first-child {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  grid-row: 1;
}
.ql-card small {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  grid-row: 2;
  grid-column: 1;
}
.ql-arrow {
  color: var(--cochineal);
  font-size: 20px;
  grid-row: 1 / -1;
  grid-column: 2;
  align-self: center;
  transition: transform .2s;
}
.ql-card:hover .ql-arrow { transform: translateX(4px); }
@media (max-width: 900px) { .quick-links { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .quick-links { grid-template-columns: 1fr; } }


/* ============================================
   V2 — FESTIVAL-FORWARD VARIANT
   Bolder, color-confident, papel-picado as real
   ============================================ */

:root {
  --font-display-v2: 'DM Serif Display', 'Fraunces', Georgia, serif;
  --font-accent-v2:  'Archivo Black', 'Anton', sans-serif;
}

.v2 {
  background: var(--paper);
}

/* --- NAV V2 (transparent over dark hero, inverts on scroll) --- */
.v2 .nav {
  background: transparent;
  border-bottom: none;
}
.v2 .nav::before { opacity: 0; }
.v2 .nav .nav-logo-mark { background: var(--paper); color: var(--cochineal); }
.v2 .nav .nav-logo-text strong { color: var(--paper); }
.v2 .nav .nav-logo-text span { color: rgba(251,247,239,0.7); }
.v2 .nav-links a,
.v2 .nav-drop-trigger { color: var(--paper); }
.v2 .lang-toggle { color: rgba(251,247,239,0.85); border-color: rgba(251,247,239,0.3); }
.v2 .lang-toggle .active { color: var(--paper); }
.v2 .nav-mobile-toggle span,
.v2 .nav-mobile-toggle span::before,
.v2 .nav-mobile-toggle span::after { background: var(--paper); }

.v2 .nav.scrolled {
  background: var(--ink);
  border-bottom: 1px solid rgba(251,247,239,0.1);
}

/* --- HERO V2: full-bleed cinematic --- */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  overflow: hidden;
  padding-top: var(--nav-h);
  color: var(--paper);
  display: flex;
  align-items: center;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/fbfbf0_314d293c580f4d03a34fc88f18a24d41~mv2.jpg/v1/fill/w_2000,h_1200,al_c,q_85,enc_avif,quality_auto/fbfbf0_314d293c580f4d03a34fc88f18a24d41~mv2.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  animation: slowZoom 30s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-v2-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,20,16,0.6) 0%, rgba(26,20,16,0.4) 40%, rgba(26,20,16,0.85) 100%),
    linear-gradient(90deg, rgba(163,41,31,0.35) 0%, transparent 60%);
}

/* papel picado strip pinned at top of hero */
.hero-v2-picado {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  height: 60px;
  z-index: 2;
  display: flex;
  overflow: hidden;
  opacity: 0.85;
}
.hero-v2-picado span {
  flex: 1;
  height: 100%;
  position: relative;
}
.hero-v2-picado span::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 16px;
  background: rgba(251,247,239,0.4);
  transform: translateX(-50%);
}
.hero-v2-picado span::after {
  content: '';
  position: absolute;
  top: 16px; left: 50%;
  width: 88%; height: 40px;
  transform: translateX(-50%);
  background: currentColor;
  -webkit-mask-image:
    radial-gradient(circle 8px at 50% 8px, transparent 98%, #000 100%),
    radial-gradient(circle 5px at 20% 28px, transparent 98%, #000 100%),
    radial-gradient(circle 5px at 80% 28px, transparent 98%, #000 100%),
    linear-gradient(#000,#000);
  mask-image:
    radial-gradient(circle 8px at 50% 8px, transparent 98%, #000 100%),
    radial-gradient(circle 5px at 20% 28px, transparent 98%, #000 100%),
    radial-gradient(circle 5px at 80% 28px, transparent 98%, #000 100%),
    linear-gradient(#000,#000);
  -webkit-mask-composite: source-in, source-in, source-in, source-over;
  -webkit-mask-composite: destination-in;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 92% 70%, 92% 100%, 84% 100%, 84% 70%, 76% 70%, 76% 100%, 68% 100%, 68% 70%, 60% 70%, 60% 100%, 52% 100%, 52% 70%, 44% 70%, 44% 100%, 36% 100%, 36% 70%, 28% 70%, 28% 100%, 20% 100%, 20% 70%, 12% 70%, 12% 100%, 4% 100%, 4% 70%, 0 70%);
}
.hero-v2-picado span:nth-child(8n+1) { color: #D94B3A; }
.hero-v2-picado span:nth-child(8n+2) { color: #E8B53E; }
.hero-v2-picado span:nth-child(8n+3) { color: #F5F1E6; }
.hero-v2-picado span:nth-child(8n+4) { color: #4DA188; }
.hero-v2-picado span:nth-child(8n+5) { color: #D94B3A; }
.hero-v2-picado span:nth-child(8n+6) { color: #C73566; }
.hero-v2-picado span:nth-child(8n+7) { color: #E8B53E; }
.hero-v2-picado span:nth-child(8n+8) { color: #4DA188; }

.hero-v2-content {
  position: relative;
  z-index: 3;
  padding: 80px 0 120px;
  max-width: 1100px;
}
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(251,247,239,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251,247,239,0.2);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron-lt);
  font-weight: 600;
  margin-bottom: 32px;
}
.hero-v2-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 4px rgba(224,138,30,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(224,138,30,0.25); } 50% { box-shadow: 0 0 0 8px rgba(224,138,30,0); } }

.hero-v2 h1 {
  font-family: var(--font-display-v2);
  font-weight: 400;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin: 0 0 32px;
  text-wrap: balance;
}
.hero-v2 h1 .line-1 { display: block; }
.hero-v2 h1 .line-2 {
  display: block;
  font-style: italic;
  color: var(--saffron);
  font-family: var(--font-display-v2);
}
.hero-v2 h1 .amp {
  font-style: italic;
  color: var(--cochineal-lt);
  font-weight: 400;
  margin: 0 0.1em;
}

.hero-v2-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(251,247,239,0.88);
  max-width: 620px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-v2-sub em { color: var(--saffron-lt); font-style: normal; font-weight: 600; }

.hero-v2-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-saffron-big {
  background: var(--saffron);
  color: var(--ink);
  padding: 20px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(224,138,30,0.3);
}
.btn-saffron-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224,138,30,0.4);
}
.btn-ghost-light {
  color: var(--paper);
  padding: 20px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid rgba(251,247,239,0.4);
  transition: border-color .2s;
}
.btn-ghost-light:hover { border-color: var(--saffron); }

/* Hero stats row — pinned to bottom */
.hero-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 0;
}
.hero-v2-stat {
  padding: 0 24px 0 0;
  border-left: 1px solid rgba(251,247,239,0.2);
  padding-left: 20px;
}
.hero-v2-stat:first-child { border-left: none; padding-left: 0; }
.hero-v2-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-lt);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-v2-stat-val {
  font-family: var(--font-display-v2);
  font-size: clamp(22px, 2vw, 28px);
  color: var(--paper);
  line-height: 1.1;
}

/* --- SECTION: MARQUEE --- */
.marquee-band {
  background: var(--cochineal);
  color: var(--paper);
  padding: 24px 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee {
  display: flex;
  gap: 48px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee span {
  font-family: var(--font-display-v2);
  font-size: clamp(28px, 3vw, 44px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee span::after {
  content: '✻';
  color: var(--saffron);
  font-style: normal;
  font-size: 24px;
}

/* --- BIG NUMBER BLOCK --- */
.big-nums {
  background: var(--paper);
  padding: var(--section-pad) 0;
  position: relative;
}
.big-nums-head {
  margin-bottom: 48px;
  max-width: 800px;
}
.big-nums-head h2 {
  font-family: var(--font-display-v2);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.big-nums-head h2 em {
  font-style: italic;
  color: var(--cochineal);
}
.big-nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.big-num {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
}
.big-num:last-child { border-right: none; }
.big-num-val {
  font-family: var(--font-display-v2);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  color: var(--cochineal);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.big-num-val .unit {
  font-family: var(--font-body);
  font-size: 0.28em;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 12px;
}
.big-num-label {
  font-family: var(--font-display-v2);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.big-num-sub { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

@media (max-width: 900px) {
  .big-nums-grid { grid-template-columns: 1fr 1fr; }
  .big-num { border-right: none; border-bottom: 1px solid var(--line); }
  .big-num:nth-child(odd) { border-right: 1px solid var(--line); }
  .big-num:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .big-nums-grid { grid-template-columns: 1fr; }
  .big-num { border-right: none !important; }
  .big-num:last-child { border-bottom: none; }
}

/* --- STORY V2 (side-by-side with big pull quote) --- */
.story-v2 {
  background: var(--paper-deep);
  padding: var(--section-pad) 0;
  position: relative;
}
.story-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.story-v2-visual {
  position: relative;
  aspect-ratio: 4/5;
  background-image: url('images/reinas/reinitas-festival.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.story-v2-visual::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  background: var(--cochineal);
  z-index: -1;
  border-radius: 2px;
}
.story-v2-badge {
  position: absolute;
  top: -32px; right: -32px;
  width: 140px; height: 140px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--font-display-v2);
  font-size: 14px;
  font-style: italic;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 12px 32px rgba(26,20,16,0.2);
}
.story-v2-badge strong {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}
.story-v2-copy h2 {
  font-family: var(--font-display-v2);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.story-v2-copy h2 em {
  font-style: italic;
  color: var(--cochineal);
}
.story-v2-copy .lede {
  font-family: var(--font-display-v2);
  font-size: clamp(22px, 2vw, 28px);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
}
.story-v2-copy p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-size: 17px; }
.story-v2-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.story-v2-sig-name {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--cochineal);
  line-height: 1;
  margin-bottom: 8px;
}
.story-v2-sig-role {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .story-v2-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-v2-visual { max-width: 500px; margin: 0 auto; }
  .story-v2-badge { top: -20px; right: -10px; width: 110px; height: 110px; }
  .story-v2-badge strong { font-size: 32px; }
}

/* --- PROGRAMS V2 (bold color blocks) --- */
.programs-v2 {
  padding: var(--section-pad) 0;
  background: var(--paper);
}
.programs-v2-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}
.programs-v2-head h2 {
  font-family: var(--font-display-v2);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 800px;
}
.programs-v2-head h2 em { font-style: italic; color: var(--cochineal); }

.programs-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.prog-block {
  position: relative;
  padding: 48px 40px;
  min-height: 360px;
  border-radius: 4px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s;
}
.prog-block:hover { transform: translateY(-6px); }
.prog-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(255,255,255,0.15), transparent 50%);
  pointer-events: none;
}
.prog-block-1 { background: var(--cochineal); }
.prog-block-2 { background: var(--jade); }
.prog-block-3 { background: var(--ink); }
.prog-block-4 { background: var(--saffron); color: var(--ink); }
.prog-block-num {
  font-family: var(--font-display-v2);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0.8;
}
.prog-block h3 {
  font-family: var(--font-display-v2);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.prog-block h3 em { font-style: italic; }
.prog-block p {
  max-width: 380px;
  line-height: 1.55;
  opacity: 0.9;
  font-size: 15px;
  margin-bottom: 32px;
}
.prog-block-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  align-self: flex-start;
  opacity: 0.95;
}

@media (max-width: 800px) {
  .programs-v2-grid { grid-template-columns: 1fr; }
}

/* --- IMAGE SHOWCASE (alternating big photo + caption) --- */
.showcase-v2 {
  padding: var(--section-pad) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.showcase-v2-head {
  text-align: center;
  margin-bottom: 72px;
  max-width: 800px;
  margin-left: auto; margin-right: auto;
}
.showcase-v2-head .eyebrow { color: var(--saffron-lt); }
.showcase-v2-head h2 {
  font-family: var(--font-display-v2);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 16px 0 24px;
}
.showcase-v2-head h2 em { font-style: italic; color: var(--saffron); }
.showcase-v2-head p { opacity: 0.75; font-size: 18px; line-height: 1.6; max-width: 620px; margin: 0 auto; }

.showcase-v2-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}
.sc-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 2px;
  background-color: var(--ink-soft);
}
.sc-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,20,16,0.85) 100%);
}
.sc-item-label {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
}
.sc-item-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron-lt);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.sc-item-title {
  font-family: var(--font-display-v2);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--paper);
  line-height: 1.05;
}
.sc-item-title em { font-style: italic; }

.sc-1 { grid-column: span 6; grid-row: span 4; }
.sc-2 { grid-column: span 3; grid-row: span 2; }
.sc-3 { grid-column: span 3; grid-row: span 2; }
.sc-4 { grid-column: span 3; grid-row: span 2; }
.sc-5 { grid-column: span 3; grid-row: span 2; }
.sc-6 { grid-column: span 4; grid-row: span 3; }
.sc-7 { grid-column: span 4; grid-row: span 3; }
.sc-8 { grid-column: span 4; grid-row: span 3; }

@media (max-width: 900px) {
  .showcase-v2-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .sc-1 { grid-column: span 6; grid-row: span 3; }
  .sc-2, .sc-3, .sc-4, .sc-5 { grid-column: span 3; grid-row: span 2; }
  .sc-6, .sc-7, .sc-8 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 560px) {
  .showcase-v2-grid { grid-template-columns: 1fr 1fr; }
  .sc-1, .sc-6, .sc-7, .sc-8 { grid-column: span 2; }
  .sc-2, .sc-3, .sc-4, .sc-5 { grid-column: span 1; }
}

/* --- QUOTE V2 (full-bleed, bold typographic) --- */
.quote-v2 {
  background: var(--saffron);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.quote-v2::before {
  content: '"';
  position: absolute;
  left: -40px; top: -120px;
  font-family: var(--font-display-v2);
  font-size: 500px;
  color: rgba(26,20,16,0.08);
  line-height: 1;
}
.quote-v2-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.quote-v2 blockquote {
  font-family: var(--font-display-v2);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-bottom: 32px;
}
.quote-v2 cite {
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cochineal-dk);
  display: block;
}

/* --- DONATE CALLOUT V2 --- */
.callout-v2 {
  background: var(--cochineal);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  color: var(--paper);
}
.callout-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 100%, rgba(224,138,30,0.3), transparent 50%);
}
.callout-v2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.callout-v2 h2 {
  font-family: var(--font-display-v2);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.callout-v2 h2 em { font-style: italic; color: var(--saffron); }
.callout-v2 p { font-size: clamp(18px, 1.8vw, 22px); line-height: 1.55; opacity: 0.92; max-width: 560px; }
.callout-v2-actions { display: flex; flex-direction: column; gap: 12px; }
.callout-v2 .btn-saffron-big { align-self: flex-start; }
.btn-outline-light-v2 {
  color: var(--paper);
  border: 2px solid rgba(251,247,239,0.4);
  padding: 18px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: all .2s;
}
.btn-outline-light-v2:hover {
  border-color: var(--paper);
  background: rgba(251,247,239,0.08);
}
@media (max-width: 900px) {
  .callout-v2-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Responsive hero v2 */
@media (max-width: 720px) {
  .hero-v2 { min-height: auto; padding-bottom: 60px; }
  .hero-v2-content { padding: 120px 0 48px; }
  .hero-v2-stats { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .hero-v2-stat:nth-child(3) { border-left: none; padding-left: 0; }
}
