/* ============================================
   IWALANI FOUNDATION — STYLES
   Editorial garden aesthetic.
   ============================================ */

:root {
  /* Palette */
  --cream:        #FBF6EE;
  --cream-deep:   #F4ECDD;
  --blush:        #F2D5CE;
  --blush-soft:   #F8E5DF;
  --rose:         #B85265;
  --rose-deep:    #8C3543;
  --sage:         #A8B89C;
  --sage-deep:    #5D7159;
  --forest:       #2F4030;
  --forest-deep:  #1F2C20;
  --ink:          #221F1A;
  --ink-soft:     #5A554C;
  --line:         #D9CFBE;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max-w:  76rem;
}

/* RESET / BASE */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
blockquote { margin: 0; }
figure { margin: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1rem;
  background: rgba(251, 246, 238, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: padding 280ms ease;
}
.nav.is-scrolled { padding-block: 0.75rem; }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.nav__mark {
  color: var(--rose);
  font-size: 1.25rem;
}
.nav__name { font-weight: 500; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-soft);
  position: relative;
  transition: color 200ms ease;
}
.nav__links a:hover { color: var(--rose); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 240ms ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background 200ms ease, transform 200ms ease;
}
.nav__cta:hover { background: var(--rose); transform: translateY(-1px); }
.nav__cta::after { display: none; }
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  display: block;
  transition: transform 220ms ease, opacity 220ms ease;
}

/* ============================================
   HERO — SPLIT LAYOUT
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero--split {
  background: var(--cream);
  min-height: calc(100vh - 4.5rem);
  position: relative;
}
.hero__grid {
  max-width: 84rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: center;
  min-height: inherit;
}
.hero__main {
  max-width: 36rem;
}
.hero__mark {
  display: block;
  font-family: var(--display);
  color: var(--rose);
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  line-height: 1;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blush);
  margin: 0 0 1.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(242, 213, 206, 0.35);
}
.eyebrow--dark {
  color: var(--rose);
  border-bottom-color: rgba(184, 82, 101, 0.25);
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 1.75rem;
  max-width: 16ch;
  font-variation-settings: "opsz" 144;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
}
.hero__title--dark { color: var(--ink); }
.hero__title--dark em { color: var(--rose); }
.hero__lede {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  max-width: 44ch;
  margin: 0 0 2.25rem;
  color: rgba(251, 246, 238, 0.92);
  font-weight: 400;
}
.hero__lede--dark { color: var(--ink-soft); }
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--rose);
  color: var(--cream);
  box-shadow: 0 6px 24px -10px rgba(184, 82, 101, 0.55);
}
.btn--primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px -10px rgba(140, 53, 67, 0.7);
}
.btn--ghost {
  color: var(--cream);
  border-color: rgba(251, 246, 238, 0.55);
}
.btn--ghost:hover {
  background: rgba(251, 246, 238, 0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn--cream {
  background: var(--cream);
  color: var(--forest);
}
.btn--cream:hover {
  background: var(--blush);
  transform: translateY(-2px);
}
.btn--outline {
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ============================================
   SECTION SHELL
   ============================================ */
.section {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
}
.section--blush {
  background: var(--blush-soft);
}
.section--sage {
  background: var(--forest);
  color: var(--cream);
}
.section--cream {
  background: var(--cream-deep);
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.section-head--light { border-bottom-color: rgba(251, 246, 238, 0.2); }
.section-num {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rose);
  font-style: italic;
  padding-top: 1.25rem;
}
.section--sage .section-num { color: var(--blush); }
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0;
  font-variation-settings: "opsz" 144;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}
.section--sage .section-title em { color: var(--blush); }

/* ============================================
   MISSION
   ============================================ */
.mission__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.mission__lead p {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}
.mission__lead em {
  font-style: italic;
  color: var(--rose);
}
.mission__body p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.mission__body p:last-child { margin-bottom: 0; }

/* ============================================
   STORY
   ============================================ */
.story__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.story__media {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1.5rem;
}
.story__portrait {
  position: relative;
}
.story__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow:
    0 30px 60px -30px rgba(140, 53, 67, 0.25),
    0 12px 30px -12px rgba(34, 31, 26, 0.2);
}
.story__portrait::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--rose);
  border-radius: 4px;
  z-index: -1;
}
.story__portrait figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 1rem;
  text-align: center;
}
.story__performance {
  margin-top: 0.75rem;
  width: 70%;
  margin-left: auto;
  position: relative;
}
.story__performance img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  box-shadow:
    0 20px 40px -20px rgba(45, 64, 48, 0.35);
}
.story__performance figcaption {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--rose);
  margin-top: 0.65rem;
  text-align: right;
  letter-spacing: 0.01em;
}
.story__performance figcaption em { font-style: italic; }
.story__copy p {
  margin: 0 0 1.3rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.story__name {
  font-family: var(--display) !important;
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.75rem) !important;
  line-height: 1.3;
  color: var(--rose-deep) !important;
  font-weight: 400;
  margin-bottom: 1.75rem !important;
}
.pullquote {
  margin: 2.25rem 0 !important;
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 2px solid var(--rose);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.45;
  font-weight: 300;
  color: var(--forest);
}

/* ============================================
   GARDEN
   ============================================ */
.garden__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 60rem;
  margin: 0 0 4.5rem;
}
.garden__intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.garden__gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 14rem;
  gap: 1.25rem;
}
.garden__photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  grid-column: span 2;
  grid-row: span 1;
  background: var(--cream-deep);
}
.garden__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.garden__photo:hover img { transform: scale(1.05); }
.garden__photo figcaption {
  position: absolute;
  left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  color: var(--cream);
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--display);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  z-index: 2;
}
.garden__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(31,44,32,0.7) 100%);
  opacity: 0;
  transition: opacity 320ms ease;
}
.garden__photo:hover::after { opacity: 1; }
.garden__photo:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.garden__photo--tall { grid-row: span 2; grid-column: span 3; }
.garden__photo--wide { grid-column: span 3; }

/* ============================================
   GET INVOLVED
   ============================================ */
.involved__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.involved__lead p {
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  color: rgba(251, 246, 238, 0.85);
}
.involved__photo {
  margin-bottom: 2rem;
  border-radius: 4px;
  overflow: hidden;
}
.involved__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.involved__lead .btn { margin-top: 0.5rem; }
.wishlist__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--cream);
}
.wishlist__sub {
  color: var(--blush);
  font-style: italic;
  font-family: var(--display);
  margin: 0 0 2rem;
  font-size: 1.05rem;
  max-width: 38ch;
}
.wishlist__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.wishlist__group h4 {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(242, 213, 206, 0.25);
  font-weight: 600;
}
.wishlist__group h4:not(:first-child) { margin-top: 2rem; }
.wishlist__group ul li {
  padding: 0.4rem 0;
  color: var(--cream);
  font-size: 0.96rem;
  position: relative;
  padding-left: 1rem;
}
.wishlist__group ul li::before {
  content: '✺';
  position: absolute;
  left: 0;
  color: var(--blush);
  font-size: 0.7rem;
  top: 0.65rem;
}

/* ============================================
   GARDEN ANGELS
   ============================================ */
.angels__intro {
  max-width: 56ch;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 3rem;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
}
.angels__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  gap: 0.5rem 2rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
}
.angels__list li {
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 1.1rem;
  color: var(--ink);
  transition: color 200ms ease, padding-left 200ms ease;
}
.angels__list li:hover {
  color: var(--rose);
  padding-left: 0.4rem;
}
.angels__credits {
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact__intro .section-num {
  padding-top: 0;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.contact__intro .section-title {
  margin-bottom: 1.5rem;
}
.contact__intro p {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 32ch;
  margin: 0;
}
.contact__details {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.contact__row {
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: baseline;
}
.contact__row:first-child { padding-top: 0; }
.contact__row:last-of-type { border-bottom: 0; }
.contact__label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact__value {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.4;
  transition: color 200ms ease;
}
a.contact__value:hover { color: var(--rose); }
.contact__sign {
  margin: 2rem 0 0;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.contact__sign em {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--rose);
  margin-top: 0.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-deep);
  color: rgba(251, 246, 238, 0.78);
  padding-block: 4rem 2rem;
  font-size: 0.92rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(251, 246, 238, 0.12);
}
.footer__mark {
  color: var(--blush);
  font-size: 1.35rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.footer__name {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--cream);
  margin: 0 0 0.35rem;
  font-weight: 400;
}
.footer__tag {
  font-style: italic;
  margin: 0;
  color: rgba(242, 213, 206, 0.7);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  justify-self: end;
  align-self: center;
}
.footer__nav a {
  color: rgba(251, 246, 238, 0.78);
  transition: color 200ms ease;
}
.footer__nav a:hover { color: var(--blush); }
.footer__meta {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(251, 246, 238, 0.55);
  padding-top: 1.5rem;
}
.footer__meta p { margin: 0; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.garden__photo.reveal { transition-delay: 0.05s; }
.garden__photo:nth-child(2).reveal { transition-delay: 0.1s; }
.garden__photo:nth-child(3).reveal { transition-delay: 0.15s; }
.garden__photo:nth-child(4).reveal { transition-delay: 0.2s; }
.garden__photo:nth-child(5).reveal { transition-delay: 0.25s; }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .mission__grid,
  .story__grid,
  .involved__grid,
  .contact__grid,
  .garden__intro {
    grid-template-columns: 1fr;
  }
  .story__media {
    position: relative;
    top: auto;
    max-width: 28rem;
  }
  .story__performance { width: 65%; }
  .wishlist__columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .garden__gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 12rem;
  }
  .garden__photo { grid-column: span 2; }
  .garden__photo--tall { grid-row: span 2; grid-column: span 2; }
  .garden__photo--wide { grid-column: span 4; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__nav { justify-self: start; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    padding: 1rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease, padding 320ms ease;
  }
  .nav__links.is-open {
    max-height: 70vh;
    padding-block: 1.5rem 2rem;
  }
  .nav__links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav__links a::after { display: none; }
  .nav__cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: 0 !important;
  }
  .nav__toggle { display: flex; }

  .hero { padding-top: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.75rem;
  }
  .section-num { padding-top: 0; }

  .wishlist__columns { grid-template-columns: 1fr; gap: 1rem; }
  .garden__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 11rem;
    gap: 0.75rem;
  }
  .garden__photo,
  .garden__photo--tall,
  .garden__photo--wide { grid-column: span 2; grid-row: span 1; }

  .contact__row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

/* ============================================
   DONATE PAGE
   ============================================ */
.nav__cta--active { background: var(--rose); }

.donate-hero {
  padding: clamp(4rem, 9vw, 7rem) var(--gutter) clamp(3rem, 6vw, 4.5rem);
  background: var(--cream);
}
.donate-hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  font-variation-settings: "opsz" 144;
}
.donate-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}
.donate-hero__lede {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0;
}

.donate-methods__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.donate-card {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
}
.donate-card--alt {
  background: var(--cream);
}
.donate-card__num {
  font-family: var(--display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 1rem;
}
.donate-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
}
.donate-card__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}
.donate-card p {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  font-size: 1rem;
}
.donate-card__cta { align-self: flex-start; margin-bottom: 1.25rem; }
.donate-card__note {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 !important;
}
.donate-card__list {
  margin: 0 0 1.5rem;
}
.donate-card__list li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.donate-card__list li:last-child { border-bottom: 0; }
.donate-card__list strong { color: var(--ink); font-weight: 600; }

/* ============================================
   RECEIPT FORM
   ============================================ */
.receipt__intro {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 0 2.5rem;
  line-height: 1.55;
}
.receipt-form {
  max-width: 38rem;
  display: grid;
  gap: 1.25rem;
}
.field { display: flex; flex-direction: column; }
.field--narrow { max-width: 10rem; }
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.field input {
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field input:focus {
  outline: 0;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184, 82, 101, 0.15);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
}
.receipt-form__submit {
  justify-self: start;
  margin-top: 0.75rem;
}

/* ============================================
   GENERATED LETTER
   ============================================ */
.letter-wrap {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--cream);
}
.letter-toolbar {
  background: var(--forest);
  color: var(--cream);
  padding: 1.25rem 1.75rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.letter-toolbar__hint {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
}
.letter-toolbar__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.letter-toolbar .btn--outline {
  color: var(--cream);
  border-color: rgba(251, 246, 238, 0.55);
}
.letter-toolbar .btn--outline:hover {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}

.letter {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  max-width: 46rem;
  margin: 0 auto;
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(34, 31, 26, 0.18);
}
.letter__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.25rem;
}
.letter__mark {
  display: inline-block;
  color: var(--rose);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.letter__name {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 0.2rem;
  font-weight: 500;
}
.letter__sub {
  font-style: italic;
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-family: var(--display);
}
.letter__org {
  text-align: right;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.letter__org p { margin: 0; }
.letter__date {
  margin: 0 0 1.5rem;
  font-style: italic;
  font-family: var(--display);
  color: var(--ink-soft);
}
.letter__to {
  font-style: normal;
  margin: 0 0 1.75rem;
  font-size: 0.98rem;
  line-height: 1.6;
}
.letter__greeting {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
}
.letter p { margin: 0 0 1.25rem; }
.letter__receipt {
  background: var(--cream);
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--rose);
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}
.letter__receipt-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose-deep);
  margin: 0 0 1rem !important;
}
.letter__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}
.letter__table th,
.letter__table td {
  text-align: left;
  padding: 0.35rem 0;
  vertical-align: top;
}
.letter__table th {
  font-weight: 600;
  color: var(--ink-soft);
  width: 38%;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-right: 1rem;
}
.letter__table td { color: var(--ink); }
.letter__legal {
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: var(--cream-deep);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  line-height: 1.6;
}
.letter__closing { margin-top: 2rem !important; margin-bottom: 0 !important; }
.letter__signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.letter__signed {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--rose);
  margin: 0 0 0.15rem !important;
}
.letter__role {
  margin: 0 !important;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============================================
   PRINT — only the letter prints
   ============================================ */
@media print {
  body * { visibility: hidden; }
  .letter, .letter * { visibility: visible; }
  .letter {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 1rem 2rem;
    margin: 0;
    max-width: none;
  }
  .no-print { display: none !important; }
  @page { margin: 0.75in; }
}

/* ============================================
   DONATE — RESPONSIVE
   ============================================ */
@media (max-width: 760px) {
  .donate-methods__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .field--narrow { max-width: none; }
  .letter__head { flex-direction: column; }
  .letter__org { text-align: left; }
}

/* ============================================
   DONATE — additions
   ============================================ */
.btn--large {
  padding: 1.1rem 2rem;
  font-size: 1rem;
}

.amount-input {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.amount-input:focus-within {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184, 82, 101, 0.12);
}
.amount-input__currency {
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem 0 1rem;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
}
.amount-input input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
  width: 100%;
}

.donate-fineprint {
  max-width: 42rem;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.receipt-form__note {
  margin: 0.85rem 0 0 !important;
  font-size: 0.8rem !important;
}

.field__optional {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.78rem;
  margin-left: 0.3rem;
  letter-spacing: 0;
  text-transform: none;
}

/* Donate page responsive */
@media (max-width: 720px) {
  .donate-methods__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .field-row {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   HERO FEATURE / EVENTS SIDEBAR
   ============================================ */
.hero__feature {
  background: var(--blush-soft);
  border: 1px solid rgba(184, 82, 101, 0.18);
  border-radius: 6px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
  box-shadow: 0 16px 40px -24px rgba(34, 31, 26, 0.25);
}
.hero__feature-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184, 82, 101, 0.18);
}
.hero__feature-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0.6rem 0 0;
  color: var(--ink);
}
.hero__feature-heading em {
  font-style: italic;
  color: var(--rose);
  font-weight: 300;
}

.events-carousel { position: relative; }
.events-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.events-track::-webkit-scrollbar { display: none; }

.event-mini {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  gap: 1.1rem;
}
.event-mini__image {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
  box-shadow: 0 8px 24px -14px rgba(34, 31, 26, 0.3);
  transition: box-shadow 240ms ease, transform 240ms ease;
}
.event-mini__image:hover,
.event-mini__image:focus-visible {
  box-shadow: 0 14px 32px -14px rgba(34, 31, 26, 0.4);
}
.event-mini__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 280ms ease;
}
.event-mini__image:hover img { transform: scale(1.015); }

.event-mini__body { padding: 0; }
.event-mini__date {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.event-mini__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.25rem;
  color: var(--ink);
}
.event-mini__subtitle {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  font-size: 0.98rem;
  margin: 0 0 0.85rem;
}
.event-mini__desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.55;
}
.event-mini__rsvp {
  padding-top: 1rem;
  border-top: 1px dashed rgba(184, 82, 101, 0.35);
}
.event-mini__rsvp-label {
  display: inline-block;
  background: var(--rose);
  color: var(--cream);
  padding: 0.3rem 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.event-mini__rsvp p {
  margin: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--ink);
}
.event-mini__rsvp a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--blush);
  transition: color 180ms ease, border-color 180ms ease;
}
.event-mini__rsvp a:hover {
  color: var(--rose);
  border-bottom-color: var(--rose);
}
.event-mini__note {
  font-size: 0.82rem !important;
  font-style: italic;
  color: var(--ink-soft) !important;
  margin-top: 0.5rem !important;
}

/* Carousel navigation */
.events-nav {
  position: absolute;
  top: 30%;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -8px rgba(34, 31, 26, 0.2);
  transition: all 180ms ease;
}
.events-nav:hover {
  background: var(--rose);
  color: var(--cream);
  border-color: var(--rose);
}
.events-nav--prev { left: -1rem; }
.events-nav--next { right: -1rem; }

.events-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.events-dots button {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(184, 82, 101, 0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 220ms ease;
}
.events-dots button.is-active {
  background: var(--rose);
  width: 1.5rem;
}

/* Split hero — responsive */
@media (max-width: 960px) {
  .hero--split { min-height: 0; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    padding-block: clamp(2.5rem, 6vw, 4rem);
  }
  .hero__main { max-width: none; }
  .events-nav { display: none; }
  .event-mini__image { max-width: 22rem; margin: 0 auto; }
}
