/* ==========================================================================
   Building Fort Greene — Design System
   Brand: IIM 75th Anniversary Legacy Campaign
   ========================================================================== */

:root {
  /* Primary palette */
  --warm-stone: #DFD1D5;
  --deep-evergreen: #1D403C;
  --antique-gold: #D4944A;
  --charcoal: #1F1F1F;
  --arch-grey: #A2A2A2;
  --renewal-moss: #4F9C4A;
  --heritage-brick: #8B3B29;

  /* Extended palette */
  --cream: #F4EEE9;
  --soft-stone: #E8DDE0;
  --gold-light: #E8B878;
  --evergreen-light: #2A5550;
  --evergreen-dark: #112824;
  --muted-text: #555555;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-label: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container: min(1200px, 92vw);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.4s;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

strong {
  font-weight: 600;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Typography */
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.lead--light { color: var(--cream); }
.lead--center { text-align: center; max-width: 720px; margin-inline: auto; }

.text-center { text-align: center; max-width: 680px; margin-inline: auto; }
.text-gold { color: var(--gold-light); }

/* Section system */
.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section--stone {
  background: var(--warm-stone);
  background-image: url('../assets/10.png');
  background-size: cover;
  background-blend-mode: soft-light;
}

.section--cream { background: var(--cream); }
.section--evergreen { background: var(--deep-evergreen); }
.section--evergreen-light { background: var(--evergreen-light); }

.section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__header--center {
  text-align: center;
}

.section__label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 0.75rem;
}

.section__label--light { color: var(--gold-light); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--deep-evergreen);
  margin-bottom: 1rem;
}

.section__title--light { color: var(--cream); }

.section__rule {
  width: 48px;
  height: 3px;
  background: var(--antique-gold);
  margin-bottom: 1.25rem;
}

.section__rule--center { margin-inline: auto; }
.section__rule--gold { background: var(--gold-light); }

.section__intro {
  font-size: 1.1rem;
  color: var(--muted-text);
  max-width: 620px;
  margin-top: 0.5rem;
}

.section__intro--light {
  color: rgba(244, 238, 233, 0.75);
}

/* Campus photo band */
.campus-band {
  position: relative;
  background: var(--evergreen-dark);
  margin: 0;
  padding: 0;
}

.campus-band__figure {
  margin: 0;
  position: relative;
}

.campus-band__img {
  width: 100%;
  height: clamp(260px, 48vw, 560px);
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.campus-band__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(transparent, rgba(17, 40, 38, 0.92));
  font-size: 0.85rem;
  color: rgba(244, 238, 233, 0.85);
}

.campus-band__label {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--antique-gold);
}

/* Need stats (deck p.3) */
.need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.need-stat {
  background: white;
  padding: 1.75rem 1.35rem;
  border-radius: 4px;
  border-top: 3px solid var(--antique-gold);
  box-shadow: 0 4px 20px rgba(29, 64, 60, 0.06);
  text-align: center;
}

.need-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--deep-evergreen);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.need-stat p {
  font-size: 0.95rem;
  color: var(--muted-text);
  line-height: 1.45;
  margin: 0;
}

.need-sources {
  margin-top: 1.75rem;
  font-size: 0.75rem;
  color: var(--arch-grey);
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.5;
}

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

@media (max-width: 560px) {
  .need-grid {
    grid-template-columns: 1fr;
  }
}

/* Proven momentum */
.momentum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.momentum-card {
  background: white;
  padding: 1.5rem 1.25rem;
  border-radius: 4px;
  border-left: 4px solid var(--antique-gold);
  box-shadow: 0 4px 16px rgba(29, 64, 60, 0.06);
}

.momentum-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep-evergreen);
  margin-bottom: 0.4rem;
}

.momentum-card p {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin: 0;
  line-height: 1.45;
}

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

@media (max-width: 560px) {
  .momentum-grid {
    grid-template-columns: 1fr;
  }
}

/* GiveButter embed shell */
.givebutter-embed {
  width: 100%;
  max-width: 560px;
  margin: 1.25rem auto 1rem;
  min-height: 120px;
  text-align: center;
}

.givebutter-embed givebutter-widget,
.givebutter-embed givebutter-giving-form {
  display: block;
  width: 100%;
  min-height: 80px;
}

.givebutter-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.givebutter-form-wrap {
  max-width: 560px;
  margin: 1rem auto 0;
  min-height: 120px;
}

.givebutter-panel__note a {
  color: var(--deep-evergreen);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Tier / hero links that go to GiveButter */
a[href*="givebutter.com"] {
  cursor: pointer;
}

.givebutter-placeholder {
  background: var(--cream);
  border: 1px dashed rgba(29, 64, 60, 0.25);
  border-radius: 4px;
  padding: 1.75rem 1.25rem;
  margin-bottom: 0.5rem;
}

.givebutter-placeholder__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep-evergreen) !important;
  margin-bottom: 0.5rem !important;
}

.section__header--center .section__intro {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
}

.btn--gold {
  background: var(--antique-gold);
  color: var(--charcoal);
  border-color: var(--antique-gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 148, 74, 0.35);
}

.btn--evergreen {
  background: var(--deep-evergreen);
  color: var(--cream);
  border-color: var(--deep-evergreen);
}

.btn--evergreen:hover {
  background: var(--evergreen-light);
  border-color: var(--evergreen-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 238, 233, 0.5);
}

.btn--outline:hover {
  border-color: var(--antique-gold);
  color: var(--gold-light);
  background: rgba(212, 148, 74, 0.1);
}

.btn--outline-dark {
  background: transparent;
  color: var(--deep-evergreen);
  border-color: var(--deep-evergreen);
}

.btn--outline-dark:hover {
  background: var(--deep-evergreen);
  color: var(--cream);
}

.btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.72rem;
}

.btn--full { width: 100%; }

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--duration) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(244, 238, 233, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(29, 64, 60, 0.08);
  padding: 0.65rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  transition: opacity var(--duration);
}

.nav__logo-img--dark { display: none; }
.site-header.scrolled .nav__logo-img--light { display: none; }
.site-header.scrolled .nav__logo-img--dark { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__links a {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--duration);
  position: relative;
}

.site-header.scrolled .nav__links a {
  color: var(--deep-evergreen);
}

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--antique-gold);
  transition: width var(--duration) var(--ease-out);
}

.nav__links a:not(.nav__cta):hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--antique-gold);
  color: var(--charcoal) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
}

.nav__cta:hover {
  background: var(--gold-light);
}

.site-header.scrolled .nav__cta {
  color: var(--charcoal) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1100;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--duration);
}

.site-header.scrolled .nav__toggle span {
  background: var(--deep-evergreen);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: calc(6rem + env(safe-area-inset-top, 0px)) 1.25rem 3rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 40%, rgba(29, 64, 60, 0.5) 0%, rgba(17, 40, 38, 0.9) 100%),
    linear-gradient(180deg, rgba(17, 40, 38, 0.72) 0%, rgba(29, 64, 60, 0.85) 55%, rgba(17, 40, 38, 0.92) 100%);
}

.hero__center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 0.7rem;
}

.hero__eyebrow {
  font-family: var(--font-label);
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}

.hero__brand-logo {
  width: clamp(56px, 9vw, 84px);
  height: auto;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.4));
}

.hero__anchor {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  max-width: 32em;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero__title-script {
  width: clamp(240px, 48vw, 420px);
  max-height: 28vh;
  height: auto;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.45));
}

@media (min-width: 769px) {
  .hero__title-script {
    width: clamp(420px, 48vw, 560px);
    max-height: 36vh;
  }
}

.hero__theme {
  font-family: var(--font-label);
  font-size: clamp(0.68rem, 1.4vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin: 0;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: #ffffff;
  margin: 0;
  opacity: 0.92;
  line-height: 1.3;
}

.hero__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
}

.hero__date-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--antique-gold);
}

.hero__date-value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}

.hero__date-venue {
  font-size: 0.85rem;
  color: rgba(244, 238, 233, 0.7);
  margin-top: 0.15rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 0.5rem;
  width: 100%;
}

.hero__actions .btn {
  padding: 0.95rem 1.85rem;
  font-size: 0.74rem;
}

@media (max-height: 740px) {
  .hero {
    padding-top: calc(5rem + env(safe-area-inset-top, 0px));
    padding-bottom: 2rem;
  }

  .hero__brand-logo {
    width: clamp(48px, 8vw, 72px);
  }

  .hero__title-script {
    width: clamp(240px, 46vw, 360px);
    max-height: 26vh;
  }

  .hero__stack {
    gap: 0.55rem;
  }

  .hero__actions .btn {
    padding: 0.75rem 1.4rem;
  }
}

/* ==========================================================================
   Archival band (under hero)
   ========================================================================== */

.archival-band {
  position: relative;
  background: var(--evergreen-dark);
  margin: 0;
  padding: 0;
}

.archival-band__figure {
  margin: 0;
  position: relative;
}

.archival-band__img {
  width: 100%;
  height: clamp(240px, 42vw, 480px);
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(0.35) contrast(1.05);
  display: block;
}

.archival-band__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(transparent, rgba(17, 40, 38, 0.92));
  font-size: 0.85rem;
  color: rgba(244, 238, 233, 0.85);
}

.archival-band__year {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--antique-gold);
}

/* ==========================================================================
   Legacy Section
   ========================================================================== */

.legacy-intro {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.legacy-intro p {
  margin-bottom: 1rem;
  color: var(--muted-text);
  font-size: 1.05rem;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.legacy-grid__content p {
  margin-bottom: 1.25rem;
  color: var(--muted-text);
}

.pull-quote {
  margin-top: 2rem;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--antique-gold);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--deep-evergreen);
  margin: 0;
}

.legacy-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(29, 64, 60, 0.15);
}

.legacy-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: sepia(0.15) contrast(1.05);
}

.legacy-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(17, 40, 38, 0.9));
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(244, 238, 233, 0.85);
}

.legacy-card__year {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--antique-gold);
  letter-spacing: 0.1em;
}

.theme-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--deep-evergreen);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 4px;
  color: var(--cream);
}

.theme-banner__visual {
  flex-shrink: 0;
}

.theme-banner__arch {
  width: clamp(72px, 12vw, 110px);
  opacity: 0.95;
}

.theme-banner__text {
  max-width: 720px;
}

.theme-banner__label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}

.theme-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.theme-banner__core {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.75rem !important;
}

.theme-banner p {
  color: rgba(244, 238, 233, 0.8);
  font-size: 0.95rem;
}

.pillar-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pillar-strip__item {
  background: white;
  padding: 1.25rem 1rem;
  border-radius: 4px;
  border-top: 3px solid var(--antique-gold);
  box-shadow: 0 4px 16px rgba(29, 64, 60, 0.06);
}

.pillar-strip__item span {
  display: block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 0.5rem;
}

.pillar-strip__item p {
  font-size: 0.95rem;
  color: var(--muted-text);
  line-height: 1.45;
  margin: 0;
}

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

@media (max-width: 520px) {
  .pillar-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Initiative Section
   ========================================================================== */

.initiative-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.initiative__logo {
  width: 80px;
  margin-bottom: 2rem;
}

.initiative__eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 1rem;
}

.initiative__launch {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(244, 238, 233, 0.75);
  margin-top: 0.5rem;
}

.initiative-layout__body p {
  color: rgba(244, 238, 233, 0.85);
  margin-bottom: 1.25rem;
}

.stat-row {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 148, 74, 0.3);
}

.stat {
  display: flex;
  flex-direction: column;
  max-width: 200px;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--antique-gold);
  line-height: 1;
}

.stat__label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 238, 233, 0.6);
  margin-top: 0.5rem;
}

.stat__context {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(244, 238, 233, 0.7);
  margin-top: 0.45rem;
}

.capital-uses {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(212, 148, 74, 0.3);
  text-align: left;
}

.capital-uses__title {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 0.85rem;
}

.capital-uses__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.capital-uses__list li {
  color: rgba(244, 238, 233, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
  padding-left: 1.1rem;
  position: relative;
}

.capital-uses__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--antique-gold);
  border-radius: 1px;
}

.pathway-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 920px;
}

.pathway {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.15rem;
  background: white;
  border: 1px solid rgba(29, 64, 60, 0.12);
  border-top: 3px solid var(--antique-gold);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.pathway:hover {
  border-color: var(--deep-evergreen);
  transform: translateY(-2px);
}

.pathway__label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--antique-gold);
}

.pathway__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-evergreen);
}

@media (max-width: 720px) {
  .pathway-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Pillars (Why This Matters)
   ========================================================================== */

.matters-content {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(29, 64, 60, 0.06);
  transition: transform var(--duration) var(--ease-out);
}

.pillar:hover {
  transform: translateY(-4px);
}

.pillar__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--antique-gold);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--deep-evergreen);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.98rem;
  color: var(--muted-text);
}

/* ==========================================================================
   Who We Serve
   ========================================================================== */

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.serve-card {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  border-left: 4px solid var(--antique-gold);
  box-shadow: 0 4px 20px rgba(29, 64, 60, 0.06);
  transition: all var(--duration) var(--ease-out);
}

.serve-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(29, 64, 60, 0.1);
}

.serve-card__num {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--antique-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.serve-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-evergreen);
  margin-bottom: 0.75rem;
}

.serve-card p {
  font-size: 1rem;
  color: var(--muted-text);
}

/* ==========================================================================
   Programs
   ========================================================================== */

.programs-list {
  max-width: 800px;
  margin: 0 auto;
}

.program {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(244, 238, 233, 0.12);
  transition: padding-left var(--duration) var(--ease-out);
}

.program:first-child {
  border-top: 1px solid rgba(244, 238, 233, 0.12);
}

.program:hover {
  padding-left: 0.5rem;
}

.program__num {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--antique-gold);
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.program__body h3,
.program__name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--antique-gold);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.program__subtitle {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 238, 233, 0.9) !important;
  margin: 0 0 0.65rem !important;
}

.program__body p {
  font-size: 1rem;
  color: rgba(244, 238, 233, 0.75);
}

/* ==========================================================================
   Campaign Impact
   ========================================================================== */

.section--impact {
  position: relative;
  overflow: hidden;
}

.impact__bg {
  position: absolute;
  inset: 0;
}

.impact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.section--impact .container {
  position: relative;
  z-index: 1;
}

.impact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.impact-narrative {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.impact-list__icon {
  color: var(--antique-gold);
  font-size: 0.6rem;
  padding-top: 0.5rem;
  flex-shrink: 0;
}

.impact-tagline {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--deep-evergreen);
  padding-top: 1.5rem;
  border-top: 2px solid var(--antique-gold);
}

/* ==========================================================================
   Sponsorship Tiers
   ========================================================================== */

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tier {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(29, 64, 60, 0.08);
  display: flex;
  flex-direction: column;
  transition: all var(--duration) var(--ease-out);
  position: relative;
}

.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(29, 64, 60, 0.1);
}

.tier--featured {
  background: var(--deep-evergreen);
  color: var(--cream);
  border-color: var(--deep-evergreen);
}

.tier--featured .tier__name { color: var(--cream); }
.tier--featured .tier__amount { color: var(--gold-light); }
.tier--featured .tier__benefits li { color: rgba(244, 238, 233, 0.85); }
.tier--featured .tier__benefits li::before { background: var(--antique-gold); }

.tier__badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--antique-gold);
  color: var(--charcoal);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
}

.tier__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--deep-evergreen);
  margin-bottom: 0.5rem;
}

.tier__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--antique-gold);
  margin-bottom: 1.25rem;
}

.tier__benefits {
  flex: 1;
  margin-bottom: 1.5rem;
}

.tier__benefits li {
  font-size: 0.95rem;
  color: var(--muted-text);
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
}

.tier__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--deep-evergreen);
}

.tier--ticket {
  border-style: dashed;
  border-color: var(--antique-gold);
}

.sponsor-ask {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--deep-evergreen);
  line-height: 1.55;
}

.sponsor-lead {
  color: rgba(244, 238, 233, 0.8);
  margin-top: 0.75rem;
  max-width: 560px;
}

.tiers-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--arch-grey);
  max-width: 560px;
  margin-inline: auto;
}

/* ==========================================================================
   Why Sponsor
   ========================================================================== */

.sponsor-layout {
  max-width: 800px;
  margin: 0 auto;
}

.sponsor-reasons {
  margin: 2.5rem 0;
}

.sponsor-reason {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(244, 238, 233, 0.1);
}

.sponsor-reason__mark {
  width: 8px;
  height: 8px;
  background: var(--antique-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.sponsor-reason p {
  font-size: 1.05rem;
  color: rgba(244, 238, 233, 0.9);
}

.sponsor-cta {
  text-align: center;
  padding-top: 2rem;
}

.sponsor-cta p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ==========================================================================
   Giving
   ========================================================================== */

.give-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.give-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(29, 64, 60, 0.06);
  transition: transform var(--duration) var(--ease-out);
}

.give-card:hover {
  transform: translateY(-4px);
}

.give-card--featured {
  background: var(--deep-evergreen);
  color: #ffffff;
}

.give-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--antique-gold);
}

.give-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--deep-evergreen);
  margin-bottom: 0.75rem;
}

.give-card p {
  font-size: 0.98rem;
  color: var(--muted-text);
  margin-bottom: 1.5rem;
}

.give-card--featured h3,
.give-card--featured p {
  color: #ffffff;
}

.give-card--featured .give-card__icon {
  color: var(--gold-light);
}

.givebutter-panel {
  background: white;
  border: 1px solid rgba(29, 64, 60, 0.12);
  border-left: 4px solid var(--antique-gold);
  border-radius: 4px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  box-shadow: 0 4px 24px rgba(29, 64, 60, 0.06);
}

.givebutter-panel__label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 0.75rem;
}

.givebutter-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--deep-evergreen);
  margin-bottom: 0.75rem;
}

.givebutter-panel p {
  color: var(--muted-text);
  margin-bottom: 0.75rem;
  max-width: 560px;
  margin-inline: auto;
}

.givebutter-panel__note {
  font-size: 0.9rem;
  color: var(--arch-grey) !important;
}

.givebutter-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.inquiry-side {
  background: white;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(29, 64, 60, 0.08);
}

.inquiry-side h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-evergreen);
  margin-bottom: 1rem;
}

.inquiry-checklist {
  margin-bottom: 1.5rem;
}

.inquiry-checklist li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.inquiry-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--antique-gold);
}

.inquiry-side__note {
  font-size: 0.88rem;
  color: var(--arch-grey);
  border-top: 1px solid rgba(29, 64, 60, 0.1);
  padding-top: 1rem;
}

.inquiry-layout__info .btn {
  margin: 1.25rem 0 1.5rem;
}

.inquiry-contact a {
  color: var(--deep-evergreen);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 0 0 1.5rem;
}

.event-map-links .btn {
  padding: 0.75rem 1.35rem;
  font-size: 0.7rem;
}

.give-amounts__label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--arch-grey);
  margin-bottom: 1.25rem;
}

.give-amounts__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.give-amount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  background: white;
  border: 2px solid rgba(29, 64, 60, 0.15);
  border-radius: 4px;
  cursor: pointer;
  color: var(--deep-evergreen);
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
}

.give-amount:hover {
  background: var(--deep-evergreen);
  border-color: var(--deep-evergreen);
  color: var(--cream);
}

.give-amounts__cta {
  margin-top: 1.75rem;
}

/* ==========================================================================
   Inquiry Form
   ========================================================================== */

.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.inquiry-layout__info p {
  color: var(--muted-text);
  margin-bottom: 2rem;
}

.inquiry-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.inquiry-contact__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.inquiry-contact__label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--antique-gold);
}

.inquiry__logo {
  width: 80px;
  border-radius: 50%;
  margin-top: 1rem;
}

.inquiry-form {
  background: white;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(29, 64, 60, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-evergreen);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid rgba(29, 64, 60, 0.15);
  border-radius: 3px;
  transition: border-color var(--duration);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--antique-gold);
  box-shadow: 0 0 0 3px rgba(212, 148, 74, 0.15);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--heritage-brick);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.25rem;
}

.form-note.success { color: var(--renewal-moss); }
.form-note.error { color: var(--heritage-brick); }

/* ==========================================================================
   Event Section
   ========================================================================== */

.section--event {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.event__bg {
  position: absolute;
  inset: 0;
}

.event__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 40, 38, 0.88) 0%,
    rgba(29, 64, 60, 0.82) 50%,
    rgba(17, 40, 38, 0.9) 100%
  );
}

.event-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.event-content .section__header {
  margin-bottom: 2rem;
}

.event-content .section__title {
  margin-bottom: 1rem;
}

.event-intro {
  font-size: 1.05rem;
  color: rgba(244, 238, 233, 0.88);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
}

.event-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event-detail__label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.event-detail__value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--cream);
}

.event-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(244, 238, 233, 0.85);
  margin-bottom: 2rem;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--evergreen-dark);
  color: rgba(244, 238, 233, 0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 238, 233, 0.1);
  margin-bottom: 2rem;
}

.footer__logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
}

.footer__sub {
  font-size: 0.88rem;
  color: rgba(244, 238, 233, 0.65);
  margin-top: 0.35rem;
}

.footer__org {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(244, 238, 233, 0.55);
  margin-top: 1rem;
  max-width: 28rem;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col h4 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 1rem;
}

.footer__col li {
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
}

.footer__col a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(244, 238, 233, 0.45);
}

.footer__campaign {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   Reveal Animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .legacy-grid,
  .initiative-layout,
  .impact-layout,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .give-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--deep-evergreen);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--duration) var(--ease-out);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links a {
    color: var(--cream) !important;
    font-size: 0.85rem;
  }

  .nav__links .nav__cta {
    margin-top: 1rem;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .serve-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stat-row {
    flex-wrap: wrap;
  }

  .theme-banner {
    flex-direction: column;
    text-align: center;
  }

  .theme-banner__visual {
    margin-bottom: 0.5rem;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions,
  .event-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
