/* ============================================================
   The London Noah Trust — redesign 2026
   Palette: night-sea ink, parchment ivory, covenant gold
   ============================================================ */

:root {
  --ink:        #0a1322;
  --ink-2:      #101d33;
  --ink-3:      #16273f;
  --ivory:      #faf6ee;
  --ivory-2:    #f2ecdf;
  --gold:       #c9a24b;
  --gold-soft:  #e7cfa0;
  --text:       #2b2b28;
  --text-soft:  #6b6a62;
  --text-light: #cfd6e0;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, "Segoe UI", sans-serif;
  --bow: linear-gradient(90deg,#6e451d,#c9884b,#e7cfa0,#f6e8c4,#e7cfa0,#c9884b,#6e451d);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* anchor scrolling is animated in main.js for a slower, eased glide */

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .footer-name { font-family: var(--serif); font-weight: 500; line-height: 1.15; }

em { font-style: italic; }

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.15s; }
.reveal.d2 { transition-delay: 0.3s; }
.reveal.d3 { transition-delay: 0.45s; }
.reveal.d4 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none !important; }
}

/* ---------- shared bits ---------- */
.overline {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.overline.light { color: var(--gold-soft); }

.section-head { text-align: center; max-width: 46rem; margin: 0 auto 3.5rem; padding: 0 1.5rem; }
.section-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }

.btn-gold {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  padding: 0.95rem 2.2rem;
  border-radius: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 162, 75, 0.35);
}

.wide-only { display: none; }
@media (min-width: 700px) { .wide-only { display: inline; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10, 19, 34, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(231, 207, 160, 0.15);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.brand em { color: var(--gold-soft); }
.brand-mark { width: 30px; height: 18px; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }
.site-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.site-nav a:hover { color: var(--gold-soft); }
.site-nav .nav-give {
  color: var(--ink);
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  padding: 0.5rem 1.3rem;
  border-radius: 2rem;
  font-weight: 500;
}
.site-nav .nav-give:hover { color: var(--ink); filter: brightness(1.08); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ivory);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 19, 34, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; }
  .site-nav a { font-size: 1rem; }
  .nav-toggle { position: relative; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #060b14 0%, #0a1322 45%, #12233c 100%);
}

/* the rising sun glow — animates up on page load */
.hero-sun {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 38% at 50% 108%, rgba(246, 232, 196, 0.16), transparent 60%),
    radial-gradient(ellipse 75% 52% at 50% 112%, rgba(201, 136, 75, 0.24), transparent 58%),
    radial-gradient(ellipse 95% 65% at 50% 118%, rgba(201, 162, 75, 0.14), transparent 62%);
  animation: sunrise 2.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes sunrise {
  from { transform: translateY(22%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

/* faint star field */
.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1px 1px at 28% 8%,  rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 41% 31%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1px 1px at 57% 12%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 66% 27%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 9%,  rgba(255,255,255,0.65), transparent 60%),
    radial-gradient(1px 1px at 88% 24%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 8% 44%,  rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 93% 41%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 49% 5%,  rgba(255,255,255,0.45), transparent 60%);
  animation: twinkle 7s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.55; } to { opacity: 1; } }

.hero-bow {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 72%;
  animation: dawn-fade 2s ease-out 1.4s both;
}

/* everything arrives after the sun has risen —
   the arc and title only fade (no movement), so nothing crosses */
@keyframes dawn-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dawn-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hero-kicker { animation: dawn-in 1.2s ease-out 2.4s both; }
.hero h1     { animation: dawn-fade 1.6s ease-out 2.6s both; }
.hero-verse  { animation: dawn-in 1.3s ease-out 3.2s both; }
.hero-ref    { animation: dawn-in 1.2s ease-out 3.5s both; }
.scroll-cue  { animation: dawn-fade 1.4s ease-out 4s both; }
.site-header { animation: dawn-fade 1.4s ease-out 3s both; }

@media (prefers-reduced-motion: reduce) {
  .hero-sun, .hero-bow, .hero-kicker, .hero h1, .hero-verse, .hero-ref,
  .scroll-cue, .site-header { animation: none; }
}

.hero-inner { position: relative; z-index: 2; padding: 6rem 1.5rem 4rem; }

.hero-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.hero h1 em { color: var(--gold-soft); }

.hero-verse {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--text-light);
  margin-top: clamp(7rem, 17vh, 12rem);
}
.hero-ref {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.9rem;
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(231, 207, 160, 0.5);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold-soft);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  position: relative;
  padding: 7rem 1.5rem 6rem;
  background:
    radial-gradient(ellipse 60% 40% at 85% 8%, rgba(201, 162, 75, 0.07), transparent 60%),
    var(--ivory);
}

.story-thread {
  position: absolute;
  top: 16rem; bottom: 5rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
    transparent,
    #c9884b33 15%, #c9a24b66 40%, #e7cfa088 60%, #c9884b44 85%,
    transparent);
}
@media (max-width: 900px) { .story-thread { display: none; } }

.story-head { text-align: center; margin-bottom: 5rem; position: relative; z-index: 1; }
.story-head h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--ink); }

.chapter {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto 5.5rem;
  background: #fffdf8;
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 4px;
  padding: 3rem clamp(1.6rem, 5vw, 3.4rem) 2.6rem;
  box-shadow: 0 24px 60px -30px rgba(10, 19, 34, 0.25);
}
@media (min-width: 1050px) {
  .chapter:nth-of-type(odd)  { margin-left: calc(50% - 42rem + 4rem); }
  .chapter:nth-of-type(even) { margin-right: calc(50% - 42rem + 4rem); margin-left: auto; }
}

.chapter-num {
  position: absolute;
  top: -1.9rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(201, 162, 75, 0.6);
}

.chapter h3 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink);
  margin: 0.4rem 0 1.4rem;
}

.chapter p { color: var(--text); }

.dropcap {
  float: left;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 0.8;
  padding: 0.35rem 0.55rem 0 0;
  color: var(--gold);
}

.chapter blockquote {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(201, 162, 75, 0.3);
  text-align: center;
}
.chapter blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-3);
}
.chapter cite,
.give-verse cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   MINISTRY
   ============================================================ */
.ministry {
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(91, 127, 180, 0.15), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--text-light);
  padding: 6.5rem 1.5rem;
}
.ministry-inner {
  max-width: 46rem; /* single column while the gathering photo is hidden; 68rem + the grid rule below when restored */
  margin: 0 auto;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
/* @media (min-width: 900px) { .ministry-inner { grid-template-columns: 1.15fr 1fr; } } */

.ministry h2 { color: var(--ivory); font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 1.4rem; }
.ministry-text p { margin-bottom: 1.1rem; }
.ministry-text strong { color: var(--gold-soft); font-weight: 500; }

.founder {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2rem 0 0.4rem;
}
.founder img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 162, 75, 0.15), 0 14px 34px -14px rgba(0, 0, 0, 0.7);
}
.founder strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ivory);
}
.founder span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.ministry-marks { list-style: none; margin-top: 1.6rem; }
.ministry-marks li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
}
.ministry-marks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 0.55rem; height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
}

.ministry-photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}
.ministry-photo img { width: 100%; height: 100%; object-fit: cover; }
.ministry-photo figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  padding: 0.8rem 1rem;
  background: var(--ink-3);
}

/* ============================================================
   MEETINGS
   ============================================================ */
.meetings {
  background: var(--ivory);
  padding: 6.5rem 1.5rem;
}
.meetings-card {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  background: #fffdf8;
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 6px;
  padding: 3.4rem clamp(1.6rem, 5vw, 4rem);
  box-shadow: 0 30px 70px -40px rgba(10, 19, 34, 0.35);
  position: relative;
  overflow: hidden;
}
.meetings-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--bow);
  opacity: 0.75;
}
.meetings-card h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ink); }
.meetings-when {
  margin: 1.6rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
}
.meetings-when strong { font-weight: 600; }
.meetings-when span {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.4rem;
}
.meetings-note { color: var(--text-soft); margin-bottom: 2.2rem; }

/* ============================================================
   TESTIMONIES
   ============================================================ */
.testimonies {
  background: var(--ivory-2);
  padding: 6.5rem 1.5rem;
}
.testimonies h2 { color: var(--ink); }

.testimony-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem;
}
@media (min-width: 900px) { .testimony-grid { grid-template-columns: repeat(3, 1fr); } }

.testimony {
  background: #fffdf8;
  border-radius: 4px;
  padding: 2.6rem 2rem 2.2rem;
  border: 1px solid rgba(201, 162, 75, 0.18);
  box-shadow: 0 20px 50px -30px rgba(10, 19, 34, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimony::before {
  content: "“";
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  position: absolute;
  top: 0.8rem; left: 1.4rem;
}
.testimony blockquote { flex: 1; }
.testimony p {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--ink-3);
}
.testimony figcaption {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--ivory); padding: 6.5rem 1.5rem; }
.gallery h2 { color: var(--ink); }

.gallery-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
@media (min-width: 820px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 40px -18px rgba(10, 19, 34, 0.5);
  filter: brightness(1.05);
}

.gallery-video {
  max-width: 52rem;
  margin: 3rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px -35px rgba(10, 19, 34, 0.5);
}
.gallery-video iframe { width: 100%; height: 100%; border: 0; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% 115%, rgba(201, 136, 75, 0.1), transparent 60%),
    rgba(6, 11, 20, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
  padding: 4vh 6vw;
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lb-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  cursor: default;
}
.lb-img {
  max-width: 100%;
  max-height: calc(92vh - 8.5rem);
  border-radius: 4px;
  border: 1px solid rgba(231, 207, 160, 0.25);
  box-shadow: 0 0 0 6px rgba(231, 207, 160, 0.05), 0 40px 120px rgba(0, 0, 0, 0.65);
  cursor: e-resize;
  opacity: 1;
  transition: opacity 0.18s ease;
}
.lb-img.switching { opacity: 0; }

.lb-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  text-align: center;
}
.lb-arc svg { width: 30px; height: 18px; display: block; }
.lb-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 34rem;
}
.lb-dots { display: flex; gap: 0.55rem; margin-top: 0.35rem; }
.lb-dot {
  width: 7px; height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(250, 246, 238, 0.28);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.lb-dot:hover { background: rgba(231, 207, 160, 0.6); }
.lb-dot.active {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  transform: scale(1.35);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid rgba(231, 207, 160, 0.3);
  border-radius: 50%;
  color: var(--gold-soft);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.lb-nav svg { width: 22px; height: 22px; }
.lb-nav:hover { background: rgba(231, 207, 160, 0.14); border-color: var(--gold-soft); }
.lb-prev { left: clamp(0.6rem, 3vw, 2.5rem); }
.lb-next { right: clamp(0.6rem, 3vw, 2.5rem); }

.lb-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  color: rgba(250, 246, 238, 0.6);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}
.lb-close:hover { color: var(--gold-soft); transform: rotate(90deg); }

@media (max-width: 640px) {
  .lb-nav { width: 42px; height: 42px; }
  .lb-caption { font-size: 0.92rem; }
}

/* ---------- cleaner hero on mobile ---------- */
@media (max-width: 700px) {
  .hero-bow, .scroll-cue { display: none; }
  .hero-verse { margin-top: 3rem; }
}

/* ============================================================
   GIVE
   ============================================================ */
.give {
  background:
    radial-gradient(ellipse 80% 50% at 50% 115%, rgba(201, 162, 75, 0.14), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  color: var(--text-light);
  padding: 6.5rem 1.5rem;
}
.give h2 { color: var(--ivory); }
.give-lead { margin-top: 1.3rem; }
.give-lead strong { color: var(--gold-soft); font-weight: 500; }

.give-grid {
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem;
}
@media (min-width: 820px) { .give-grid { grid-template-columns: 1fr 1fr; } }

.give-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(231, 207, 160, 0.22);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  backdrop-filter: blur(4px);
}
.give-card h3 {
  color: var(--gold-soft);
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(231, 207, 160, 0.18);
}
.give-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
}
.give-card dt { color: #8fa0b8; }
.give-card dd { text-align: right; color: var(--ivory); font-weight: 400; }

.give-download { text-align: center; margin-top: 2.6rem; }

.give-verse {
  max-width: 40rem;
  margin: 3.5rem auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-light);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
body.subpage .site-header { animation: none; }

.contact-hero {
  background:
    radial-gradient(ellipse 75% 60% at 50% 118%, rgba(201, 136, 75, 0.2), transparent 60%),
    linear-gradient(180deg, #060b14 0%, var(--ink-2) 100%);
  text-align: center;
  padding: 9.5rem 1.5rem 5rem;
}
.contact-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: var(--ivory);
}
.contact-verse {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  margin-top: 1.4rem;
}

.contact-main { background: var(--ivory); padding: 5rem 1.5rem 6rem; }
.contact-grid {
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.5fr 1fr; } }

.contact-card {
  background: #fffdf8;
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 6px;
  padding: 2.6rem clamp(1.4rem, 4vw, 2.8rem);
  box-shadow: 0 30px 70px -40px rgba(10, 19, 34, 0.35);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--bow);
  opacity: 0.75;
}

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.form-row { margin-bottom: 1.4rem; }
.form-row label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-row textarea { resize: vertical; min-height: 8rem; }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
}
.form-row ::placeholder { color: var(--text-soft); opacity: 0.8; }

#contactForm .btn-gold { border: 0; cursor: pointer; font-family: var(--sans); }
#contactForm .btn-gold:disabled { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }

.form-success { text-align: center; padding: 2rem 0 1rem; }
.form-success svg { width: 44px; height: 26px; margin-bottom: 1rem; }
.form-success-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.form-success p:last-child { color: var(--text-soft); }

.contact-aside {
  padding: 1rem 0.5rem;
}
.contact-aside h2 {
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.contact-aside h2 + p strong { color: var(--ink); font-weight: 500; }
.contact-aside p { margin-bottom: 1.3rem; color: var(--text-soft); }
.contact-aside h2:not(:first-child) { margin-top: 1.4rem; }
.contact-charity {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060b14;
  color: #8fa0b8;
  text-align: center;
  padding: 4.5rem 1.5rem 3rem;
  border-top: 1px solid transparent;
  border-image: var(--bow) 1;
  border-image-slice: 1 0 0 0;
  border-top-width: 2px;
  border-top-style: solid;
}
.footer-bow { width: 44px; height: 26px; margin: 0 auto 1rem; }
.footer-name { font-size: 1.5rem; color: var(--ivory); }
.footer-name em { color: var(--gold-soft); }
.footer-verse {
  font-family: var(--serif);
  font-style: italic;
  margin: 1.2rem auto 1.6rem;
  max-width: 40rem;
}
.footer-contact { font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.footer-legal { font-size: 0.75rem; letter-spacing: 0.08em; opacity: 0.7; }
.footer-credit { font-size: 0.7rem; letter-spacing: 0.08em; opacity: 0.55; margin-top: 1.4rem; }
.footer-credit a { color: var(--gold-soft); text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }
