/* ═══════════════════════════════════════════
   Sacred Heart Church — North Harbour, NL
   ═══════════════════════════════════════════ */

:root {
  --crimson: #8B0000;
  --crimson-dark: #6B0000;
  --crimson-light: #A52020;
  --gold: #B8962E;
  --gold-light: #D4AF55;
  --gold-pale: #F2E8C6;
  --cream: #FAF6EE;
  --parchment: #F5EDD8;
  --ink: #1C1008;
  --ink-soft: #3A2E1E;
  --stone: #8C7B6A;
  --stone-light: #C4B49A;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── ACCESSIBILITY ─── */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--crimson);
  color: var(--cream);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  z-index: 200;
}
.skip-nav:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ─── ORNAMENTAL DIVIDER ─── */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.5rem;
  margin: 2rem 0;
  opacity: 0.85;
}
.ornament::before, .ornament::after {
  content: '\2726';
  margin: 0 0.8rem;
  font-size: 0.7rem;
  vertical-align: middle;
}

hr.rule {
  border: none;
  border-top: 1px solid var(--gold);
  opacity: 0.4;
  margin: 0.5rem auto;
  max-width: 400px;
}
hr.rule.wide { max-width: 700px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(27, 5, 5, 0.97);
  border-bottom: 1px solid rgba(184, 150, 46, 0.3);
  backdrop-filter: blur(6px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

/* Support Us — separated and styled */
.nav-separator {
  width: 1px;
  height: 20px;
  background: rgba(184, 150, 46, 0.3);
  margin: 0 0.5rem;
}
.nav-support {
  color: var(--gold-light) !important;
  border: 1px solid rgba(184, 150, 46, 0.4);
  padding: 0.4rem 1rem;
  transition: all 0.25s;
}
.nav-support:hover {
  background: rgba(184, 150, 46, 0.15);
  border-color: var(--gold-light);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139,0,0,0.35) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(184,150,46,0.03) 2px,
      rgba(184,150,46,0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(184,150,46,0.02) 40px,
      rgba(184,150,46,0.02) 41px
    ),
    #1C0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(139,0,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184,150,46,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-cross {
  color: var(--gold);
  font-size: 3rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease both;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-sub {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--gold-light);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  animation: fadeUp 1s ease 0.35s both;
}

.hero-location {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone-light);
  opacity: 0.8;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-rule-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.55s both;
}
.hero-rule-wrap span {
  color: var(--gold);
  font-size: 1rem;
}
.hero-rule-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-tagline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(250,246,238,0.75);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: fadeUp 1s ease 0.65s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s ease 0.8s both;
}

.btn-primary {
  background: var(--crimson);
  color: var(--gold-pale);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(184,150,46,0.4);
  transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--crimson-light);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--stone-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(196,180,154,0.3);
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--stone);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both, pulse 2.5s ease 2s infinite;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0.5rem auto 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ─── SECTION SHARED ─── */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-inner.wide { max-width: 1060px; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
  text-align: center;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--crimson);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

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

.section-body {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-top: 2rem;
}

.section-body p + p { margin-top: 1.2em; }

.subsection-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184,150,46,0.3);
}

/* ─── OUR STORY ─── */
#story {
  background: var(--parchment);
  border-top: 1px solid rgba(184,150,46,0.2);
  border-bottom: 1px solid rgba(184,150,46,0.2);
}

.story-pull {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--crimson);
  text-align: center;
  max-width: 640px;
  margin: 2.5rem auto 0;
  line-height: 1.6;
}

.story-pull-credit {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--stone);
  text-align: center;
  margin-top: 0.3rem;
}

.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
}

.story-col h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184,150,46,0.3);
}

/* Value Boxes */
.value-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-box {
  background: var(--cream);
  border: 1px solid rgba(184,150,46,0.3);
  border-top: 3px solid var(--crimson);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.value-box:hover {
  box-shadow: 0 4px 20px rgba(139,0,0,0.08);
}

.value-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.1em;
}

/* ─── BUILT BY HAND ─── */
#built-by-hand {
  background:
    linear-gradient(180deg, #1C0A0A 0%, #2A1210 50%, #1C0A0A 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  position: relative;
}

#built-by-hand::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(184,150,46,0.02) 3px,
      rgba(184,150,46,0.02) 4px
    );
  pointer-events: none;
}

.built-body {
  color: rgba(250,246,238,0.78);
  text-align: center;
  max-width: 680px;
  margin: 2rem auto 0;
}

/* ─── CEMETERY ─── */
#cemetery {
  background: var(--parchment);
  border-top: 1px solid rgba(184,150,46,0.2);
  border-bottom: 1px solid rgba(184,150,46,0.2);
}

.cemetery-feature {
  background: var(--cream);
  border: 1px solid rgba(184,150,46,0.3);
  border-left: 4px solid var(--gold);
  padding: 2rem 2rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cemetery-feature p {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink-soft);
  flex: 1;
  min-width: 200px;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border: none;
  white-space: nowrap;
  transition: all 0.25s;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--ink);
}

/* ─── BOARD ─── */
#board { background: #FDF9F2; }

/* ─── ABOUT US ─── */
#about {
  background: var(--cream);
  border-top: 1px solid rgba(184,150,46,0.2);
  border-bottom: 1px solid rgba(184,150,46,0.2);
}

/* ─── DOCUMENTS ─── */
#documents {
  background: var(--cream);
  border-top: 1px solid rgba(184,150,46,0.2);
  border-bottom: 1px solid rgba(184,150,46,0.2);
}

.doc-list {
  list-style: none;
  max-width: 560px;
  margin: 2.5rem auto 0;
  padding: 0;
}

.doc-list li { margin: 0 0 1rem; }

.doc-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--parchment);
  border: 1px solid rgba(184,150,46,0.3);
  padding: 1.1rem 1.4rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.doc-list a:hover {
  border-color: var(--gold);
  background: #FBF4E2;
}

.doc-icon { font-size: 1.4rem; line-height: 1; }

.doc-text { display: flex; flex-direction: column; }

.doc-name {
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--crimson);
}

.doc-meta {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin-top: 0.2rem;
}

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

.board-card {
  background: var(--cream);
  border: 1px solid rgba(184,150,46,0.25);
  border-top: 3px solid var(--crimson);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.board-card:hover {
  box-shadow: 0 4px 20px rgba(139,0,0,0.08);
}

.board-role {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.board-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--crimson-dark);
  letter-spacing: 0.03em;
}

.board-cross {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

/* ─── DONATE / WAYS TO GIVE ─── */
#donate {
  background: var(--parchment);
  border-top: 1px solid rgba(184,150,46,0.2);
  border-bottom: 1px solid rgba(184,150,46,0.2);
}

.donate-body {
  font-family: 'EB Garamond', serif;
  font-size: 1.12rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: 660px;
  margin: 1.5rem auto 0;
  line-height: 1.85;
}

.donate-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.donate-methods.three-col {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 900px;
}

.donate-card {
  background: var(--cream);
  border: 1px solid rgba(184,150,46,0.3);
  padding: 2rem;
  text-align: center;
}

.donate-card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.donate-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--crimson);
  margin-bottom: 0.6rem;
}

.donate-card p {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.donate-card-note {
  margin-top: 0.8rem;
  font-size: 0.9rem !important;
  color: var(--stone) !important;
  font-style: italic;
}

.donate-card a {
  color: var(--crimson);
  font-weight: 400;
}

.donate-note {
  text-align: center;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--stone);
  margin-top: 2rem;
}

/* ─── NEWSLETTER ─── */
#newsletter {
  background: var(--crimson-dark);
  color: var(--cream);
}

.newsletter-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-wrap .section-body {
  color: rgba(250,246,238,0.78);
  text-align: center;
  margin-top: 1.5rem;
}

/* Kit embed form */
.kit-form-wrap {
  margin-top: 2.5rem;
}

.kit-form-wrap .newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(184,150,46,0.4);
  max-width: 100%;
  padding: 0;
  background: transparent;
}

.kit-form-wrap .formkit-fields {
  display: flex;
  gap: 0;
  width: 100%;
  margin: 0;
}

.kit-form-wrap .formkit-field {
  flex: 1;
  margin: 0;
}

.kit-form-wrap .formkit-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: none;
  outline: none;
  padding: 0.95rem 1.2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 300;
  border-radius: 0;
  line-height: 1.4;
  margin: 0;
}

.kit-form-wrap .formkit-input::placeholder {
  color: rgba(250,246,238,0.4);
}

.kit-form-wrap .formkit-input:focus {
  outline: none;
  border-color: var(--gold);
}

.kit-form-wrap .formkit-submit {
  background: var(--gold);
  border: none;
  padding: 0.95rem 1.6rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  border-radius: 0;
  margin: 0;
  line-height: 1.4;
}

.kit-form-wrap .formkit-submit:hover {
  background: var(--gold-light);
}

.kit-form-wrap .formkit-spinner {
  display: none;
}

.kit-form-wrap .formkit-submit[data-active] .formkit-spinner {
  display: flex;
}

.kit-form-wrap .formkit-alert-success {
  background: rgba(184,150,46,0.15);
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 0.95rem;
  margin-top: 1rem;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  text-align: center;
  list-style: none;
  border-radius: 0;
}

.kit-form-wrap .formkit-alert-error {
  background: rgba(139,0,0,0.3);
  border: 1px solid var(--crimson);
  color: var(--cream);
  padding: 0.95rem;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  text-align: center;
  list-style: none;
  border-radius: 0;
}

.kit-form-wrap .formkit-alert:empty {
  display: none;
}

.newsletter-privacy {
  font-size: 0.72rem;
  color: rgba(250,246,238,0.4);
  margin-top: 1rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
}

/* Make the Subscribe button more prominent */
.kit-form-wrap .formkit-submit {
  font-size: 0.78rem;
  padding: 0.95rem 2.1rem;
  box-shadow: 0 0 0 rgba(212,175,85,0);
  transition: background 0.2s, box-shadow 0.25s;
}
.kit-form-wrap .formkit-submit .submit-icon {
  font-size: 0.95rem;
  vertical-align: -1px;
}
.kit-form-wrap:focus-within .formkit-submit,
.kit-form-wrap .formkit-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(212,175,85,0.45);
}

.newsletter-social {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: rgba(250,246,238,0.65);
  margin-top: 1.5rem;
}

.newsletter-social a {
  color: var(--gold-light);
}

/* Past newsletters archive */
.past-newsletters {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184,150,46,0.25);
}

.past-newsletters-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}

.newsletter-archive {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.8rem;
}

.newsletter-archive a {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  color: rgba(250,246,238,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,46,0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.newsletter-archive a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* Stay in Touch — Newsletters / Updates tabs */
.connect-tabs {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184,150,46,0.25);
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.6);
  background: transparent;
  border: 1px solid rgba(184,150,46,0.35);
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.tab-btn:hover { color: var(--gold-light); border-color: var(--gold-light); }

.tab-btn.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.tab-empty {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(250,246,238,0.6);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Tax-deductible note in Support section */
.donate-tax {
  font-size: 1rem;
  margin-top: 1rem;
}

/* ─── FOOTER ─── */
footer {
  background: #100404;
  color: rgba(250,246,238,0.55);
  padding: 4rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184,150,46,0.15);
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-contact a,
.footer-contact span {
  color: rgba(250,246,238,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-docs-note {
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(250,246,238,0.35);
  margin-top: 0.8rem;
  line-height: 1.5;
}

.footer-col h4,
.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(250,246,238,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.footer-cross {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.4;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 880px) {
  .story-columns { grid-template-columns: 1fr; }
  .value-boxes { grid-template-columns: 1fr; }
  .donate-methods,
  .donate-methods.three-col { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cemetery-feature { flex-direction: column; align-items: flex-start; }
  .board-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: rgba(27, 5, 5, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(184, 150, 46, 0.3);
  }
  .nav-links.nav-open { display: flex; }
  .nav-separator { display: none; }
  .nav-support {
    display: inline-block;
    text-align: center;
  }
}
