/* =========================================================
   Mary Lou's Heart Foundation — Editorial Design (v2)
   Magazine-style: warm burgundy, deep ivory, hand-feel
   ========================================================= */

:root {
  --ivory: #faf6ef;
  --ivory-deep: #f0e9dd;
  --paper: #e9dfcc;
  --ink: #1f1410;
  --ink-soft: #4a3c34;
  --burgundy: #7d1f2d;
  --burgundy-deep: #5a1620;
  --terracotta: #c66b4a;
  --gold-leaf: #a8804a;
  --sage: #6b7a5a;
  --serif-display: "DM Serif Display", "Playfair Display", Georgia, serif;
  --serif-body: "Lora", Georgia, serif;
  --sans: "Outfit", -apple-system, sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
/* paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='250' height='250'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img { display: block; max-width: 100%; }

/* ===== NAV (editorial header bar) ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid var(--ink);
}
.nav-top {
  display: flex; justify-content: space-between;
  padding: 0.5rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(31, 20, 16, 0.15);
}
.nav-top .date { font-weight: 500; }
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.logo-link {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none; color: var(--ink);
}
.logo-img {
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--burgundy);
}
.logo-text {
  font-family: var(--serif-display);
  font-weight: 400; font-size: 1.3rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-text small {
  display: block; font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--burgundy); font-weight: 500;
  margin-top: 6px;
}
.nav-links {
  display: flex; gap: 1.75rem; align-items: center;
  font-family: var(--sans);
}
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a.current {
  color: var(--burgundy);
}
.nav-links a.current::after {
  content: ""; position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 2px; background: var(--burgundy);
}
.nav-cta {
  background: var(--burgundy); color: var(--ivory) !important;
  padding: 0.6rem 1.4rem; border-radius: 0;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--ink); transform: translateY(-1px); }
.nav-cta.current::after { display: none; }
.nav-cta.current { color: var(--ivory); }

.menu-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--ink);
}
@media (max-width: 920px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--ivory); padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--ink);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: all 0.3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: 0.85rem 0; width: 100%; border-bottom: 1px solid rgba(31,20,16,0.1); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 0.5rem; display: inline-block; }
  .menu-toggle { display: block; }
  .logo-text { font-size: 1.05rem; }
  .nav-top { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.95rem 1.9rem; border: 1.5px solid var(--ink);
  font-family: var(--sans); font-weight: 500;
  font-size: 0.85rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s;
  background: transparent; color: var(--ink);
  cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--ivory); }
.btn-primary { background: var(--burgundy); color: var(--ivory); border-color: var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); color: var(--ivory); }
.btn-ivory { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-ivory:hover { background: transparent; color: var(--ivory); }
.btn-arrow { transition: transform 0.3s; font-family: var(--serif-body); font-size: 1.1rem; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== EDITORIAL ELEMENTS ===== */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.85rem;
}
.eyebrow::before, .eyebrow::after {
  content: ""; flex: 0 0 24px; height: 1px; background: var(--burgundy);
}
.eyebrow.left::after { display: none; }
.issue-no {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.rule {
  border: none;
  border-top: 1px solid var(--ink);
  margin: 0;
}
.rule-thick {
  border: none;
  border-top: 3px double var(--ink);
  margin: 0;
}

/* ===== HERO (editorial masthead) ===== */
.hero {
  padding: 3rem 1.5rem 2rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.hero-issue {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 3rem;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-headline {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  color: var(--ink);
}
.hero-headline em {
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}
.hero-deck {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 3rem;
  border-left: 3px solid var(--burgundy);
  padding-left: 1.5rem;
}
.hero-byline {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 3rem;
}
.hero-byline strong { color: var(--ink); font-weight: 600; }

/* Big editorial photo */
.hero-image {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 0;
  overflow: hidden;
  background: var(--paper);
}
.hero-image img {
  width: 100%; height: auto;
  max-height: 580px;
  object-fit: cover;
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,20,16,0.4));
  pointer-events: none;
}
.hero-image-caption {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 0.85rem;
  padding-left: 1rem;
  border-left: 2px solid var(--burgundy);
}

.hero-actions {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
  margin-top: 2rem;
}

/* Logo mark in hero */
.hero-logo-mark {
  display: inline-flex; align-items: center; gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero-logo-mark img {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid var(--burgundy);
}
.hero-logo-mark .label {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
}

/* ===== INTRO COLUMNS (magazine multi-column) ===== */
.intro-section {
  padding: 5rem 1.5rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
  border-top: 1px solid var(--ink);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.intro-label h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}
.intro-label h2 em {
  font-style: italic; color: var(--burgundy);
}
.intro-body {
  columns: 2;
  column-gap: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.intro-body p {
  margin-bottom: 1.25rem;
  break-inside: avoid-column;
}
.intro-body p:first-child::first-letter {
  font-family: var(--serif-display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding-right: 0.6rem;
  padding-top: 0.4rem;
  color: var(--burgundy);
}
@media (max-width: 700px) {
  .intro-body { columns: 1; }
}

/* ===== STATS / PULL QUOTE ===== */
.pull-quote-section {
  background: var(--ink);
  color: var(--ivory);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.pull-quote-inner {
  max-width: 980px; margin: 0 auto;
  text-align: center;
  position: relative;
}
.pull-quote-inner::before {
  content: """;
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif-display);
  font-size: 12rem;
  line-height: 1;
  color: var(--burgundy);
  opacity: 0.7;
}
.pull-quote {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-style: italic;
  position: relative;
}
.pull-quote em {
  color: var(--terracotta);
  font-style: italic;
}
.pull-attribution {
  margin-top: 2.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.6);
}

/* ===== FEATURED EVENT (homepage block) ===== */
.featured-event {
  padding: 6rem 1.5rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.featured-event-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 1rem;
  border-bottom: 3px double var(--ink);
  margin-bottom: 3rem;
  flex-wrap: wrap; gap: 1rem;
}
.featured-event-header h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1;
}
.featured-event-header h2 em { font-style: italic; color: var(--burgundy); }
.featured-event-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
}
@media (max-width: 880px) {
  .featured-event-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.featured-event-photo {
  background: var(--burgundy);
  position: relative;
  height: 540px;
  overflow: hidden;
}
.featured-event-photo img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.85;
  filter: contrast(1.05);
}
.featured-event-photo .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(125,31,45,0.3), rgba(31,20,16,0.6));
}
.featured-event-photo .tag-corner {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--ivory);
  color: var(--burgundy);
  padding: 0.5rem 1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--burgundy); border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.featured-event-photo .photo-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  color: var(--ivory);
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.15;
}
@media (max-width: 880px) { .featured-event-photo { height: 380px; } }
.featured-event-detail h3 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.featured-event-detail h3 em { font-style: italic; color: var(--burgundy); }
.featured-event-detail .deck {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.event-meta-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 1.75rem;
}
.event-meta-row .item {
  font-family: var(--sans);
}
.event-meta-row .item .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.event-meta-row .item .val {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--ink);
}
.event-meta-row .item .sub {
  font-family: var(--serif-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}
.reg-buttons { display: flex; flex-direction: column; gap: 0.75rem; }

/* ===== PROGRAMS PREVIEW (homepage) ===== */
.programs-preview {
  background: var(--paper);
  padding: 6rem 1.5rem;
  position: relative; z-index: 2;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.programs-preview-inner {
  max-width: 1320px; margin: 0 auto;
}
.programs-preview-header {
  text-align: center;
  margin-bottom: 4rem;
}
.programs-preview-header h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 800px; margin: 0 auto;
}
.programs-preview-header h2 em { font-style: italic; color: var(--burgundy); }
.programs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--ink);
}
.program-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ivory);
  transition: background 0.3s;
  position: relative;
}
.program-cell:hover { background: var(--ivory-deep); }
.program-cell:nth-child(3n) { border-right: none; }
@media (max-width: 900px) {
  .program-cell { border-right: none; }
  .program-cell:nth-child(2n) { border-right: 1px solid var(--ink); }
  .program-cell:nth-child(2n):last-child { border-right: none; }
}
@media (max-width: 600px) {
  .program-cell, .program-cell:nth-child(2n) { border-right: none; }
}
.program-cell .num-line {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.program-cell h3 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.program-cell p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ===== STORY GRID (homepage editorial photo block) ===== */
.story-grid {
  padding: 6rem 1.5rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.story-grid-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .story-grid-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.story-photo {
  position: relative;
  overflow: hidden;
}
.story-photo img {
  width: 100%; height: 560px;
  object-fit: cover;
}
.story-photo .photo-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--ivory);
  padding: 0.4rem 0.85rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
}
@media (max-width: 900px) {
  .story-photo img { height: 360px; }
}
.story-text h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}
.story-text h2 em { font-style: italic; color: var(--burgundy); }
.story-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 4rem 1.5rem 3rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.page-header .issue-line {
  display: flex; justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 3rem;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-soft);
}
.page-header h1 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.page-header h1 em {
  font-style: italic; color: var(--burgundy); font-weight: 400;
}
.page-header .deck {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.5;
  border-left: 3px solid var(--burgundy);
  padding-left: 1.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-feature {
  padding: 2rem 1.5rem 5rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.about-feature-photo {
  position: relative;
  margin-bottom: 3rem;
}
.about-feature-photo img {
  width: 100%; height: 60vh; min-height: 400px;
  max-height: 620px;
  object-fit: cover;
}
.about-feature-photo .caption {
  margin-top: 0.85rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
}
.about-columns {
  columns: 2;
  column-gap: 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
@media (max-width: 800px) { .about-columns { columns: 1; } }
.about-columns p { margin-bottom: 1.25rem; break-inside: avoid-column; }
.about-columns p:first-child::first-letter {
  font-family: var(--serif-display);
  font-size: 5.5rem;
  float: left;
  line-height: 0.85;
  padding-right: 0.6rem;
  padding-top: 0.4rem;
  color: var(--burgundy);
}
.about-columns h3 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.1;
  margin: 1.5rem 0 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.about-columns h3 em { font-style: italic; color: var(--burgundy); }

/* Founder / values panel */
.values-band {
  background: var(--burgundy);
  color: var(--ivory);
  padding: 5rem 1.5rem;
  position: relative; z-index: 2;
}
.values-band-inner { max-width: 1320px; margin: 0 auto; }
.values-band h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  max-width: 700px;
  line-height: 1.05;
}
.values-band h2 em { font-style: italic; color: var(--terracotta); }
.values-band .eyebrow { color: var(--terracotta); }
.values-band .eyebrow::before, .values-band .eyebrow::after { background: var(--terracotta); }
.values-numbered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem 3rem;
}
.value-item {
  border-top: 1px solid rgba(250, 246, 239, 0.3);
  padding-top: 1.5rem;
}
.value-item .num {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.value-item h3 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.value-item p {
  color: rgba(250, 246, 239, 0.8);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== PROGRAMS PAGE ===== */
.programs-articles {
  padding: 2rem 1.5rem 5rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.program-article {
  padding: 4rem 0;
  border-bottom: 1px solid var(--ink);
}
.program-article:first-of-type { padding-top: 2rem; }
.program-article:last-of-type { border-bottom: none; }
.program-article-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.program-article:nth-child(even) .program-article-grid {
  grid-template-columns: 1.4fr 1fr;
}
.program-article:nth-child(even) .program-article-photo { order: 2; }
@media (max-width: 800px) {
  .program-article-grid, .program-article:nth-child(even) .program-article-grid {
    grid-template-columns: 1fr; gap: 2rem;
  }
  .program-article:nth-child(even) .program-article-photo { order: 0; }
}
.program-article-photo {
  position: relative;
  overflow: hidden;
}
.program-article-photo img {
  width: 100%; height: 480px;
  object-fit: cover;
}
.program-article-photo.style-burgundy {
  background: var(--burgundy);
  height: 480px;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.program-article-photo.style-burgundy span {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  color: var(--ivory);
}
.program-article-photo.style-ink {
  background: var(--ink);
  height: 480px;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.program-article-photo.style-ink span {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  color: var(--terracotta);
}
.program-article-content .roman {
  font-family: var(--serif-display);
  font-size: 5rem;
  line-height: 0.85;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.program-article-content .kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.program-article-content h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.program-article-content h2 em { font-style: italic; color: var(--burgundy); }
.program-article-content p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  line-height: 1.75;
}
.program-article-content .lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-style: italic;
}

/* ===== EVENTS PAGE ===== */
.events-articles {
  padding: 2rem 1.5rem 5rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.event-article {
  padding: 3rem 0;
  border-bottom: 1px solid var(--ink);
}
.event-article:first-child { padding-top: 0; }
.event-article-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) {
  .event-article-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.event-article-photo {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.event-article-photo img {
  width: 100%; height: 360px;
  object-fit: cover;
}
.event-article-photo.poster img {
  object-fit: contain;
  background: var(--ink);
}
.event-status-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.status-now {
  background: var(--burgundy); color: var(--ivory);
}
.status-archived {
  background: var(--paper); color: var(--ink-soft);
}
.event-article h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.event-article h2 em { font-style: italic; color: var(--burgundy); }
.event-article-body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.event-article-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.event-article-meta .lbl {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.event-article-meta .val {
  font-family: var(--serif-display);
  font-size: 1.05rem;
  line-height: 1.2;
}
.event-article-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== GALLERY PAGE ===== */
.gallery-intro {
  padding: 0 1.5rem 2rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.gallery-tabs {
  display: flex; gap: 0;
  margin-bottom: 3rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.gallery-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
  border-right: 1px solid var(--ink);
}
.gallery-tab:last-child { border-right: none; }
.gallery-tab:hover { background: var(--ivory-deep); }
.gallery-tab.active {
  background: var(--ink);
  color: var(--ivory);
}

.gallery-masonry {
  padding: 0 1.5rem 5rem;
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  position: relative; z-index: 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper);
  transition: transform 0.4s;
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-item.span-6 { grid-column: span 6; height: 480px; }
.gallery-item.span-4 { grid-column: span 4; height: 360px; }
.gallery-item.span-8 { grid-column: span 8; height: 420px; }
.gallery-item.span-12 { grid-column: span 12; height: 540px; }
@media (max-width: 800px) {
  .gallery-item.span-6, .gallery-item.span-4, .gallery-item.span-8, .gallery-item.span-12 {
    grid-column: span 12; height: 320px;
  }
}
.gallery-item .label-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--ivory);
  padding: 0.4rem 0.85rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  z-index: 2;
}
.gallery-item.video-item .label-tag {
  background: var(--burgundy);
  color: var(--ivory);
}
.gallery-item.video-item .label-tag::before {
  content: "▶ "; margin-right: 0.3rem;
}
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(31,20,16,0.85), transparent);
  color: var(--ivory);
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.gallery-item:hover .gallery-caption {
  opacity: 1; transform: translateY(0);
}

/* ===== DONATE PAGE ===== */
.donate-feature {
  padding: 2rem 1.5rem 4rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.donate-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
@media (max-width: 800px) {
  .donate-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.donate-hero-text h1 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.donate-hero-text h1 em { font-style: italic; color: var(--burgundy); }
.donate-hero-text .deck {
  font-style: italic; color: var(--ink-soft);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  border-left: 3px solid var(--burgundy);
  padding-left: 1.5rem;
}
.donate-hero-photo {
  background: var(--burgundy);
  height: 520px;
  overflow: hidden;
  position: relative;
}
.donate-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.75;
}
.donate-hero-photo .quote {
  position: absolute; bottom: 2rem; left: 1.75rem; right: 1.75rem;
  color: var(--ivory);
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.2;
}
@media (max-width: 800px) { .donate-hero-photo { height: 360px; } }

.coming-soon-callout {
  border: 3px double var(--ink);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-bottom: 5rem;
  background: var(--ivory-deep);
}
.coming-soon-callout .kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.coming-soon-callout h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.coming-soon-callout h2 em { font-style: italic; color: var(--burgundy); }
.coming-soon-callout p {
  max-width: 580px; margin: 0 auto 1.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.give-ways-section {
  padding: 5rem 1.5rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
  border-top: 3px double var(--ink);
}
.give-ways-header h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 800px;
}
.give-ways-header h2 em { font-style: italic; color: var(--burgundy); }
.give-ways-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--ink);
}
.give-way {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ivory);
  transition: background 0.3s;
}
.give-way:hover { background: var(--ivory-deep); }
.give-way:nth-child(3n) { border-right: none; }
@media (max-width: 900px) {
  .give-way { border-right: none; }
  .give-way:nth-child(2n) { border-right: 1px solid var(--ink); }
  .give-way:nth-child(2n):last-child { border-right: none; }
}
@media (max-width: 600px) {
  .give-way, .give-way:nth-child(2n) { border-right: none; }
}
.give-way .roman {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 1rem;
}
.give-way h3 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.give-way p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.give-way a {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.give-way a:hover { color: var(--ink); border-color: var(--ink); }

/* ===== CONTACT PAGE ===== */
.contact-feature {
  padding: 2rem 1.5rem 5rem;
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 2;
}
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-block h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.contact-block h2 em { font-style: italic; color: var(--burgundy); }
.contact-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  align-items: baseline;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .lbl {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}
.contact-row .val {
  font-family: var(--serif-display);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
}
.contact-row a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-row a:hover { border-color: var(--burgundy); color: var(--burgundy); }
@media (max-width: 500px) {
  .contact-row { grid-template-columns: 1fr; gap: 0.5rem; }
}

.contact-side {
  background: var(--ink);
  color: var(--ivory);
  padding: 3rem 2.5rem;
  position: relative;
}
.contact-side h3 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.contact-side h3 em { font-style: italic; color: var(--terracotta); }
.contact-side p {
  color: rgba(250, 246, 239, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.98rem;
}
.contact-side .cta-stack { display: flex; flex-direction: column; gap: 0.6rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 5rem 1.5rem 2rem;
  position: relative; z-index: 2;
  margin-top: 4rem;
}
.footer-top {
  max-width: 1320px; margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250,246,239,0.2);
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand-block .brand-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-brand-block img {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--terracotta);
}
.footer-brand-block h3 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.1;
}
.footer-brand-block p {
  color: rgba(250, 246, 239, 0.65);
  max-width: 360px;
  font-size: 0.94rem;
  line-height: 1.65;
  font-family: var(--serif-body);
  font-style: italic;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: rgba(250, 246, 239, 0.8);
  text-decoration: none;
  font-family: var(--serif-body);
  font-size: 1rem;
  margin-bottom: 0.65rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.5);
}

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.reveal.in { opacity: 1; transform: translateY(0); }
