/* ==========================================================================
   Shelter for Health — global stylesheet
   ========================================================================== */

:root {
  --navy: #0a1f3d;
  --navy-deep: #061328;
  --navy-soft: #16335c;
  --gold: #c9a961;
  --gold-light: #e3c989;
  --gold-deep: #a48745;
  --ivory: #faf7f2;
  --cream: #f1ebe0;
  --charcoal: #1a1a1a;
  --slate: #4a4a4a;
  --mist: #d8d2c5;
  --white: #ffffff;

  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", "Playfair Display", Georgia, serif;

  --container: 1240px;
  --gutter: 32px;

  --shadow-sm: 0 2px 12px rgba(10, 31, 61, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 31, 61, 0.10);
  --shadow-lg: 0 24px 80px rgba(10, 31, 61, 0.14);

  --transition: 400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  margin: 0 0 0.6em 0;
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); }
h4 { font-size: 1.2rem; }
p  { margin: 0 0 1.2em 0; color: var(--slate); }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 880px; }
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section--tight { padding: clamp(60px, 7vw, 100px) 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.2em;
  display: inline-block;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}

.lead {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.55;
  color: var(--slate);
  font-weight: 400;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 38px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}
.btn--dark {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}
.btn--dark:hover {
  background: transparent;
  color: var(--navy-deep);
}
.btn--outline {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn--outline:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.link-arrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.link-arrow::after {
  content: "→";
  transition: transform var(--transition);
}
.link-arrow:hover::after { transform: translateX(6px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all var(--transition);
  background: transparent;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand__mark {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
  transition: all var(--transition);
}
.site-header.is-scrolled .brand__mark,
.site-header.is-solid .brand__mark {
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}
.brand__text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 3px;
}
.site-header.is-scrolled .brand__text,
.site-header.is-solid .brand__text { color: var(--navy-deep); }
.site-header.is-scrolled .brand__sub,
.site-header.is-solid .brand__sub { color: var(--slate); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.site-header.is-scrolled .nav__links a,
.site-header.is-solid .nav__links a { color: var(--navy-deep); }

.nav__cta {
  font-size: 0.78rem !important;
  padding: 12px 24px !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.nav__toggle span:nth-child(1) { top: 4px; }
.nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__toggle span:nth-child(3) { bottom: 4px; }
.site-header.is-scrolled .nav__toggle span,
.site-header.is-solid .nav__toggle span { background: var(--navy-deep); }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 19, 40, 0.55) 0%, rgba(6, 19, 40, 0.85) 100%),
    url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=2400&q=80") center/cover;
  z-index: -1;
}
.hero__inner {
  max-width: 920px;
}
.hero h1 {
  color: var(--white);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin-bottom: 0.4em;
  line-height: 1.05;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero__subtitle {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.5;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollDown 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: 220px 0 110px;
  color: var(--white);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,19,40,0.65), rgba(6,19,40,0.85)),
    var(--navy-deep);
  z-index: -1;
}
.page-hero--mission .page-hero__bg {
  background:
    linear-gradient(180deg, rgba(6,19,40,0.7), rgba(6,19,40,0.85)),
    url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&w=2400&q=80") center/cover;
}
.page-hero--gala .page-hero__bg {
  background:
    linear-gradient(180deg, rgba(6,19,40,0.6), rgba(6,19,40,0.85)),
    url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=2400&q=80") center/cover;
}
.page-hero--impact .page-hero__bg {
  background:
    linear-gradient(180deg, rgba(6,19,40,0.65), rgba(6,19,40,0.85)),
    url("https://images.unsplash.com/photo-1504439904031-93ded9f93e4e?auto=format&fit=crop&w=2400&q=80") center/cover;
}
.page-hero--donate .page-hero__bg {
  background:
    linear-gradient(180deg, rgba(6,19,40,0.7), rgba(6,19,40,0.88)),
    url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&w=2400&q=80") center/cover;
}
.page-hero--contact .page-hero__bg {
  background:
    linear-gradient(180deg, rgba(6,19,40,0.7), rgba(6,19,40,0.85)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2400&q=80") center/cover;
}
.page-hero h1 {
  color: var(--white);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin-bottom: 0.4em;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; font-weight: 300; }
.page-hero p {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  font-weight: 300;
  line-height: 1.5;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }

/* ---------- Stat strip ---------- */
.stats {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat__num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--gold-light);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.stat__label {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ---------- Mission split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.split__media:hover img { transform: scale(1.04); }
.split__media::before {
  content: "";
  position: absolute;
  top: 24px; left: 24px;
  right: -24px; bottom: -24px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.split__copy h2 { margin-bottom: 0.6em; }

/* ---------- Pillars (3-column feature) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.pillar {
  padding: 48px 36px;
  background: var(--white);
  border: 1px solid var(--mist);
  transition: all var(--transition);
  position: relative;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.pillar__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--gold-deep);
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 0.5em; }
.pillar p { font-size: 0.96rem; margin: 0; }

/* ---------- Stories ---------- */
.stories {
  background: var(--cream);
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 64px;
}
.story-card {
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition);
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.story-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.story-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.story-card:hover .story-card__media img { transform: scale(1.05); }
.story-card__body { padding: 36px 32px; }
.story-card__meta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.story-card h3 { font-size: 1.4rem; margin-bottom: 0.6em; }
.story-card p { font-size: 0.95rem; margin-bottom: 1.4em; }

/* ---------- Pull quote ---------- */
.pullquote {
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  position: relative;
}
.pullquote::before {
  content: """;
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 8rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.pullquote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.4;
  max-width: 880px;
  margin: 0 auto 32px;
  color: var(--white);
}
.pullquote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---------- Gala teaser ---------- */
.gala-teaser {
  position: relative;
  color: var(--white);
  padding: clamp(120px, 14vw, 200px) 0;
  overflow: hidden;
}
.gala-teaser__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(6,19,40,0.7) 0%, rgba(6,19,40,0.85) 100%),
    url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=2400&q=80") center/cover;
  z-index: -1;
}
.gala-teaser h2 {
  color: var(--white);
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 4rem);
}
.gala-teaser h2 strong {
  font-style: normal;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
}
.gala-teaser__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 56px 0;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.gala-teaser__detail {
  text-align: left;
}
.gala-teaser__detail-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.gala-teaser__detail-value {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--gold);
  text-align: center;
  padding: 80px 0;
}
.cta-strip h2 {
  color: var(--navy-deep);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.6em;
}
.cta-strip p {
  color: var(--navy-deep);
  font-family: var(--display);
  font-size: 1.3rem;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 96px 0 40px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.site-footer .brand__text { color: var(--white); }
.site-footer .brand__sub { color: rgba(255,255,255,0.55); }
.site-footer .brand__mark { border-color: var(--gold-light); color: var(--gold-light); }
.footer-about { max-width: 320px; line-height: 1.7; }
.footer-list {
  list-style: none; padding: 0; margin: 0;
}
.footer-list li { margin-bottom: 12px; }
.footer-list a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.footer-list a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Auction lots ---------- */
.lots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}
.lot {
  background: var(--white);
  border: 1px solid var(--mist);
  transition: all var(--transition);
}
.lot:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.lot__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}
.lot__media img { width: 100%; height: 100%; object-fit: cover; }
.lot__body { padding: 32px 28px; }
.lot__num {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.lot h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.lot__artist {
  font-family: var(--display);
  color: var(--slate);
  font-size: 1rem;
  margin-bottom: 16px;
}
.lot__source {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--slate);
  padding-top: 16px;
  border-top: 1px solid var(--mist);
}
.lot__source strong { color: var(--navy-deep); }

/* ---------- Donation tiers ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tier {
  background: var(--white);
  border: 1px solid var(--mist);
  padding: 48px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.tier:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.tier--featured {
  border-color: var(--gold);
  background: var(--navy-deep);
  color: var(--white);
}
.tier--featured h3, .tier--featured .tier__amount { color: var(--gold-light); }
.tier--featured p, .tier--featured li { color: rgba(255,255,255,0.8); }
.tier--featured::before {
  content: "Most chosen";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
}
.tier__amount {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--navy-deep);
  margin: 12px 0 4px;
  display: block;
}
.tier__per {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 24px;
}
.tier h3 { font-size: 1.2rem; margin-bottom: 4px; }
.tier__desc {
  font-size: 0.92rem;
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--display);
}
.tier ul {
  text-align: left;
  list-style: none;
  padding: 0; margin: 0 0 32px;
  font-size: 0.9rem;
}
.tier ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tier--featured ul li { border-color: rgba(255,255,255,0.1); }
.tier ul li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 8px;
  color: var(--gold-deep);
  font-size: 0.85rem;
}
.tier--featured ul li::before { color: var(--gold-light); }

/* ---------- Donation form / custom ---------- */
.donate-form {
  background: var(--white);
  border: 1px solid var(--mist);
  padding: 56px;
  max-width: 720px;
  margin: 0 auto;
}
.donate-form__amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.amount-btn {
  background: transparent;
  border: 1px solid var(--mist);
  padding: 18px 12px;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--navy-deep);
  cursor: pointer;
  transition: all var(--transition);
}
.amount-btn:hover, .amount-btn.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}
.input-group { margin-bottom: 24px; }
.input-group label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-deep);
  display: block;
  margin-bottom: 10px;
}
.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--mist);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
}
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ---------- Locations ---------- */
.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.location {
  background: var(--white);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border: 1px solid var(--mist);
  transition: all var(--transition);
}
.location:hover { border-color: var(--gold); }
.location__media {
  background: var(--cream);
  overflow: hidden;
}
.location__media img { width: 100%; height: 100%; object-fit: cover; }
.location__body { padding: 32px 28px; }
.location__country {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  font-weight: 600;
}
.location h3 { font-size: 1.3rem; margin-bottom: 6px; }
.location__hospital {
  font-family: var(--display);
  font-style: italic;
  color: var(--slate);
  font-size: 1rem;
  margin-bottom: 16px;
}
.location__capacity {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--slate);
  display: flex;
  gap: 24px;
}
.location__capacity strong { color: var(--navy-deep); }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin-top: 64px;
  padding-left: 32px;
  border-left: 1px solid var(--mist);
}
.timeline-item {
  margin-bottom: 56px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -38px; top: 8px;
  width: 12px; height: 12px;
  border: 1px solid var(--gold);
  background: var(--ivory);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.timeline h3 { font-size: 1.3rem; margin-bottom: 0.5em; }

/* ---------- Partners ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 56px;
}
.partner {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--slate);
  padding: 24px 16px;
  border: 1px solid var(--mist);
  transition: all var(--transition);
}
.partner:hover {
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info dt {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 32px;
  margin-bottom: 8px;
}
.contact-info dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--navy-deep);
}
.contact-info dd a { color: var(--navy-deep); }
.contact-info dd a:hover { color: var(--gold-deep); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section header centering ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.section-head--left { text-align: left; max-width: 720px; margin: 0; }
.section-head .lead { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 56px; }
  .pillars { grid-template-columns: 1fr; }
  .story-grid, .lots-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .locations { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 360px);
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: var(--white) !important; font-size: 1rem; }
  .nav__toggle { display: block; z-index: 101; }
  .nav__toggle.is-open span { background: var(--white); }
  .nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg); top: 50%; }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg); bottom: auto; top: 50%; }

  .split { grid-template-columns: 1fr; gap: 56px; }
  .split--reverse .split__media { order: 0; }
  .split__media::before { display: none; }
  .story-grid, .lots-grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gala-teaser__details { grid-template-columns: 1fr; gap: 28px; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .donate-form { padding: 36px 24px; }
  .donate-form__amounts { grid-template-columns: repeat(2, 1fr); }
  .input-row { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .location__media { aspect-ratio: 16/9; }
  .footer-bottom { flex-direction: column; }
}

/* Print friendly */
@media print {
  .site-header, .site-footer, .hero__scroll { display: none; }
  body { background: white; color: black; }
}
