/* Zechariah Sharp ministry site — shared styles
   Theme: midnight blue + gold, classical serif headings, generous whitespace. */

:root {
  --midnight: #0b1a3a;
  --midnight-deep: #060f24;
  --midnight-soft: #1a2b50;
  --gold: #c9a24a;
  --gold-bright: #e0b95c;
  --gold-deep: #8a6c20;
  --cream: #f7f2e6;
  --cream-soft: #fbf8ef;
  --ink: #1a1a1a;
  --muted: #4a4a4a;
  --rule: rgba(201, 162, 74, 0.35);
  --shadow-md: 0 10px 30px rgba(6, 15, 36, 0.18);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid rgba(138, 108, 32, 0.3); transition: color .2s, border-color .2s; }
a:hover { color: var(--midnight); border-color: var(--midnight); }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.1em; }

/* ---------- Layout container ---------- */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.container--narrow { max-width: 760px; }

/* ---------- Site header / nav ---------- */
.site-header {
  background: var(--midnight);
  color: var(--cream);
  border-bottom: 1px solid rgba(201, 162, 74, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--cream);
  border: none;
  font-family: "Cormorant Garamond", serif;
}
.brand:hover { color: var(--gold-bright); }
.monogram {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--midnight);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.brand-name {
  font-size: 1.25rem;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-name small {
  display: block;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 400px) {
  .brand-name { font-size: 1.05rem; }
  .brand-name small { font-size: .65rem; letter-spacing: .2em; }
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201,162,74,0.45);
  color: var(--cream);
  padding: .45rem .7rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: .9rem;
}

.nav {
  display: flex;
  gap: 1.6rem;
}
.nav a {
  color: var(--cream);
  border: none;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem 0;
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--gold-bright); }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(135deg, rgba(11,26,58,0.78) 0%, rgba(6,15,36,0.88) 100%),
    radial-gradient(ellipse at top, rgba(201,162,74,0.18), transparent 60%),
    var(--midnight-deep);
  background-size: cover;
  background-position: center;
  color: var(--cream);
  padding: clamp(5rem, 11vw, 9rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero--with-image {
  background-size: cover !important;
  background-position: center 30% !important;
  background-repeat: no-repeat !important;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 80%);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.hero::before { top: 28px; }
.hero::after { bottom: 28px; }

.hero h1 {
  color: var(--cream);
  margin-bottom: .35em;
}
.hero .eyebrow {
  font-size: .8rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero blockquote {
  margin: 2rem auto 0;
  max-width: 640px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.5;
  color: var(--cream);
  border: none;
}
.hero blockquote cite {
  display: block;
  margin-top: .8rem;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: .9rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--midnight);
  background: var(--gold);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { background: var(--gold-bright); color: var(--midnight); border-color: var(--gold-bright); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
}
.btn--ghost:hover { background: rgba(201,162,74,0.12); color: var(--gold-bright); }

/* ---------- Page intro band (non-home hero) ---------- */
.page-intro {
  background: var(--midnight);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.page-intro h1 { color: var(--cream); }
.page-intro .eyebrow {
  font-size: .8rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.page-intro p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: rgba(247, 242, 230, 0.85);
}

/* ---------- Sections ---------- */
section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
section.alt {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .eyebrow {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .6rem;
}
.section-header h2 { margin-bottom: 0; }
.section-header .ornament {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
}

/* ---------- About / portrait split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split .portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--midnight-soft);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split .portrait-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(247, 242, 230, 0.3);
  pointer-events: none;
}
.split .portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placeholder-photo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(247,242,230,0.55);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  text-align: center;
  padding: 1rem;
  background:
    repeating-linear-gradient(45deg, rgba(247,242,230,0.04) 0 8px, transparent 8px 16px),
    var(--midnight-soft);
}

/* ---------- Wide photo (international ministry, etc.) ---------- */
.wide-photo {
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
}
.wide-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(247, 242, 230, 0.25);
  pointer-events: none;
}
.wide-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Nations Reached / world map ---------- */
.nations-reached {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.nations-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}
.stat-big {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-big .num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--midnight);
  font-weight: 500;
}
.stat-big .lbl {
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: .5rem;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--rule);
}
.world-map {
  margin: 1rem auto 2rem;
  max-width: 920px;
  background: transparent;
}
.world-map svg {
  width: 100%;
  height: auto;
  display: block;
}
.world-map svg path {
  fill: #e3dccc;       /* warm muted land */
  stroke: var(--cream-soft);
  stroke-width: 0.3;
  transition: fill .2s ease;
}
.world-map svg path.visited {
  fill: var(--gold);
  stroke: var(--gold-deep);
  stroke-width: 0.6;
}
.world-map svg path.visited:hover,
.world-map svg path.visited:focus {
  fill: var(--gold-bright);
  outline: none;
}
.world-map-loading {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  padding: 4rem 1rem;
}
.nations-aspiration {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--midnight);
  margin: 1.5rem auto 0;
  max-width: 540px;
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .nations-stats { gap: 1.5rem; }
}

/* ---------- Background cards (Accreditations + Partners) ---------- */
.bg-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}
.bg-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.8rem;
  border-radius: 2px;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bg-card:hover,
.bg-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold-bright);
  outline: none;
}
.bg-card .bg-card-eyebrow {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .4rem;
  font-weight: 500;
}
.bg-card h3 {
  margin: 0 0 .8rem;
  font-size: 1.6rem;
}
.bg-card p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.55;
}
.bg-card .bg-card-cta {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--midnight);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.bg-card:hover .bg-card-cta {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* ---------- About "read more" row ---------- */
.about-more {
  margin-top: 1.4rem;
  font-size: .9rem;
  letter-spacing: .05em;
}
.about-more a {
  color: var(--gold-deep);
  font-weight: 500;
  border-bottom: none;
}
.about-more a:hover {
  color: var(--midnight);
}
.about-more span {
  color: var(--rule);
  margin: 0 .6rem;
}

/* ---------- Scripture pull-quotes (mandate / goal) ---------- */
.scripture-card {
  background: var(--midnight);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 2px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.scripture-card .ornament-top,
.scripture-card .ornament-bottom {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}
.scripture-card .ornament-top { margin-bottom: 1.4rem; }
.scripture-card .ornament-bottom { margin-top: 1.4rem; }
.scripture-card .eyebrow {
  font-size: .75rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.scripture-card blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.45;
}
.scripture-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.scripture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ---------- Mission tags ---------- */
.mission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.mission-tags span,
.mission-tags a {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border: 1px solid var(--rule);
  border-radius: 100px;
  color: var(--gold-deep);
  background: var(--cream-soft);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.mission-tags a:hover,
.mission-tags a:focus-visible {
  background: var(--midnight);
  color: var(--gold-bright);
  border-color: var(--midnight);
}

/* ---------- Giving page ---------- */
.giving-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.give-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  padding: 1.8rem 1.6rem;
  border-radius: 2px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.give-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.give-card h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
}
.give-card .handle {
  font-family: "Inter", monospace;
  font-size: 1rem;
  color: var(--midnight);
  word-break: break-all;
  margin: .2rem 0;
  font-weight: 500;
}
.give-card .label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem;
}

.mailing {
  margin-top: 3rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 2rem;
  border-radius: 2px;
  text-align: center;
}
.mailing address {
  font-style: normal;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--midnight);
  margin-top: .8rem;
}

/* ---------- Accreditations ---------- */
.cred-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.2rem;
}
.cred-list li {
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.8rem;
  border-radius: 2px;
}
.cred-list .cred-date {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .5rem;
  font-weight: 500;
}
.cred-list .role {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--midnight);
  margin: 0 0 .3rem;
  line-height: 1.25;
}
.cred-list .org {
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}
.cred-list .detail {
  margin: .7rem 0 0;
  color: var(--muted);
}

/* ---------- Booking form ---------- */
.booking-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.4rem;
}
.booking-form .form-row {
  display: grid;
  gap: .4rem;
}
.booking-form .form-row--split {
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.booking-form .form-row--split > div {
  display: grid;
  gap: .4rem;
}
.booking-form label {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--midnight);
  font-weight: 500;
}
.booking-form .req {
  color: var(--gold-deep);
  font-weight: 600;
}
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form select,
.booking-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: .75rem .9rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.18);
}
.booking-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.booking-form button[type="submit"] {
  justify-self: center;
  margin-top: .6rem;
  min-width: 240px;
  font-family: inherit;
}
@media (max-width: 600px) {
  .booking-form .form-row--split { grid-template-columns: 1fr; }
}

/* ---------- Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.video-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.video-item video {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  background: var(--midnight-deep);
  border-radius: 2px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 380px;
  gap: 1.2rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--midnight-soft);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
  transition: transform .25s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(247, 242, 230, 0.25);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(6,15,36,0.92) 0%, rgba(6,15,36,0) 100%);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Country sections within gallery */
.gallery-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  scroll-margin-top: 90px; /* offset for sticky header when jumping via #anchor */
}
.gallery-section.alt {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.gallery-section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  position: relative;
}
.gallery-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: .8rem auto 0;
}
.gallery-section-note {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 2rem;
}
.video-grid--single {
  grid-template-columns: minmax(280px, 480px);
  justify-content: center;
}
.video-caption {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  text-align: center;
  color: var(--muted);
  padding: .8rem .4rem 0;
  background: transparent;
}
.gallery-item--wide {
  grid-column: span 2;
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }
  .gallery-item--wide { grid-column: span 1; }
}

/* ---------- Partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  padding: 1.8rem 1.6rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.partner-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.5rem;
}
.partner-card .partner-tag {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
.partner-card p { margin-bottom: 1rem; }
.partner-card .partner-link {
  margin-top: auto;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  color: var(--midnight);
  font-weight: 500;
}
.partner-card .partner-link:hover { color: var(--gold-deep); }

/* ---------- Event timeline (calendar page) ---------- */
.event-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  position: relative;
}
.event-list::before {
  content: "";
  position: absolute;
  left: 75px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--rule);
}
.event {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.8rem;
  padding: 1.2rem 0;
  position: relative;
}
.event-date {
  text-align: center;
  background: var(--midnight);
  color: var(--cream);
  border-radius: 2px;
  padding: .9rem .4rem;
  height: fit-content;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(201,162,74,0.3);
}
.event-date .event-month {
  display: block;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.event-date .event-day {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.1;
  margin: .2rem 0;
}
.event-date .event-year {
  display: block;
  font-size: .7rem;
  letter-spacing: .15em;
  color: rgba(247, 242, 230, 0.65);
}
.event-body {
  padding-top: .15rem;
}
.event-body .event-title {
  margin: 0 0 .3rem;
  font-size: 1.4rem;
}
.event-body .event-meta {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .6rem;
}
.event-body p { margin: 0; color: var(--muted); }

/* ---------- Testimony video placeholder ---------- */
.video-placeholder {
  margin: 2rem auto 0;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(11,26,58,0.92) 0%, rgba(6,15,36,0.96) 100%),
    radial-gradient(ellipse at top, rgba(201,162,74,0.18), transparent 60%),
    var(--midnight-deep);
  border: 1px solid rgba(201,162,74,0.35);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.video-placeholder .play-icon {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: .75;
}
.video-placeholder .placeholder-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  margin: 0;
  color: var(--cream);
}
.video-placeholder .placeholder-sub {
  margin: .6rem 0 0;
  font-size: .92rem;
  color: rgba(247,242,230,0.7);
}
section#testimony-video { scroll-margin-top: 90px; }
.testimony-video-figure {
  margin: 2rem auto 0;
  max-width: 800px;
  background: var(--midnight-deep);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(201,162,74,0.35);
  box-shadow: var(--shadow-md);
}
.testimony-video-figure video,
.testimony-video-figure iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  background: var(--midnight-deep);
  border: 0;
}

/* ---------- Testimonies ---------- */
.testimony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}
.testimony {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 2rem 1.8rem 1.6rem;
  border-radius: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimony .quote-mark {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 4rem;
  line-height: .6;
  position: absolute;
  top: 1rem;
  left: 1.4rem;
  opacity: .55;
}
.testimony blockquote {
  margin: 1.4rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--midnight);
}
.testimony cite {
  margin-top: auto;
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--midnight-deep);
  color: rgba(247,242,230,0.7);
  padding: 3rem 0 2rem;
  font-size: .9rem;
  text-align: center;
  border-top: 1px solid rgba(201,162,74,0.25);
}
.site-footer .monogram { margin: 0 auto 1.2rem; }
.site-footer a {
  color: var(--gold);
  border-color: rgba(201,162,74,0.3);
}
.site-footer a:hover { color: var(--gold-bright); }
.site-footer .verse {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  margin: 0 auto 1.2rem;
  max-width: 540px;
}
.site-footer small {
  display: block;
  margin-top: 1.4rem;
  font-size: .78rem;
  letter-spacing: .1em;
}

/* ---------- Responsive ---------- */
@media (max-width: 950px) {
  .split { grid-template-columns: 1fr; }
  .scripture-grid { grid-template-columns: 1fr; }
  .event-list::before { left: 38px; }
  .event { grid-template-columns: 80px 1fr; gap: 1.2rem; }
  .event-date { padding: .7rem .3rem; }
  .event-date .event-day { font-size: 1.6rem; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--midnight-deep);
    padding: 1rem 0;
    border-top: 1px solid rgba(201,162,74,0.2);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(201,162,74,0.12);
  }
  .nav a::after { display: none; }
  .site-header { position: relative; }
}
