:root {
  --navy: #071c33;
  --navy-soft: #0f2a4a;
  --ember: #ee7432;
  --ember-deep: #d46224;
  --gold: #f1bc59;
  --cream: #f8f1e6;
  --cream-2: #f3ead8;
  --ink: #102033;
  --muted: #5b6a7a;
  --white: #ffffff;
  --line: rgba(7, 28, 51, 0.08);
  --shadow: 0 18px 40px rgba(7, 28, 51, 0.12);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "DM Sans", "Avenir Next", system-ui, sans-serif;
  --wrap: min(1160px, calc(100% - 40px));
  --radius: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 400 17px/1.6 var(--sans);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.02em;
  word-spacing: 0.06em;
  line-height: 1.05;
  margin: 0 0 0.55em;
}
.wrap { width: var(--wrap); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #071c33;
  padding: 10px 0;
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: block;
  line-height: 0;
  text-decoration: none;
}
.brand img {
  width: min(360px, 72vw);
  height: auto;
  display: block;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 18px;
}
.header-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.header-nav a:hover { color: var(--gold); }
.menu-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: #071c33;
  color: var(--gold);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f1bc59;
}
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: #071c33;
  z-index: 50;
  padding: 28px 0;
}
body.nav-open .drawer { display: block; }
.drawer a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 600;
}
.drawer a:hover { color: var(--gold); }
.drawer-close {
  margin-bottom: 24px;
  background: none;
  border: 0;
  color: var(--white);
  font: 600 0.95rem var(--sans);
  cursor: pointer;
}

.hero {
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding: 72px 0 56px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7,28,51,0.35) 0%, rgba(7,28,51,0.55) 42%, rgba(7,28,51,0.92) 100%),
    url("/legacy-photos/park.jpg") center 28% / cover no-repeat;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  max-width: 12ch;
}
.hero p {
  max-width: 36rem;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  border: 1.5px solid transparent;
}
.btn-ember { background: var(--ember); color: var(--white); }
.btn-ember:hover { background: var(--ember-deep); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.facts {
  background: var(--ember);
  color: var(--white);
  padding: 28px 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.facts h3 {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.facts p { margin: 0; font-weight: 600; }

.section { padding: 88px 0; }
.heart h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); max-width: 16ch; }
.heart p { max-width: 38rem; color: var(--muted); font-size: 1.12rem; }

.trio { display: grid; gap: 16px; }
.card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.card .num {
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.card h3 { font-size: 2rem; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}
.gallery figcaption { display: none; }

.connect { display: grid; gap: 16px; }
.connect article {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.connect a { color: var(--ember); font-weight: 700; text-decoration: none; }

form { display: grid; gap: 12px; }
label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
input, textarea, select {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d7c9b4;
  border-radius: 14px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
button[type="submit"] {
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ember);
  color: var(--white);
  font: 700 1rem var(--sans);
  cursor: pointer;
}
.success { color: #2f6b4f; font-weight: 700; }

.page-hero {
  padding: 64px 0 56px;
  background:
    linear-gradient(180deg, rgba(7,28,51,0.72), rgba(7,28,51,0.88)),
    url("/legacy-photos/church-outside.jpg") center / cover no-repeat;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 14ch; }
.page-hero p { max-width: 38rem; color: rgba(255,255,255,0.86); }

.prose p { max-width: 42rem; color: var(--muted); }
.prose ul { padding-left: 1.2rem; color: var(--muted); }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 42px 0;
}
.site-footer a { color: var(--gold); text-decoration: none; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (min-width: 800px) {
  .trio, .connect { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .header-nav { display: flex; }
}
@media (max-width: 800px) {
  .facts-grid, .gallery { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; padding-bottom: 48px; }
  .actions .btn { width: 100%; }
}
