:root {
  --ink: #183b35;
  --ink-deep: #102d29;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --gold: #d9a441;
  --gold-light: #efc972;
  --terracotta: #b96042;
  --sage: #8ca393;
  --line: rgba(24, 59, 53, 0.17);
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(20, 54, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
h1 { font-size: clamp(3.4rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
h3 { font-size: 1.35rem; }
em { color: var(--gold); font-weight: 400; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.container.narrow { width: min(820px, calc(100% - 48px)); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }
.lead { max-width: 700px; color: #5d716c; font-size: 1.18rem; line-height: 1.8; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s, background .25s, color .25s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 20px; background: var(--gold); color: var(--ink-deep) !important; }
.button-gold { background: var(--gold); color: var(--ink-deep); }
.button-gold:hover { background: var(--gold-light); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: #fff; }
.button-dark { border: 0; background: var(--ink); color: #fff; cursor: pointer; }
.text-link { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: #fff; }

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
.nav-wrap { height: 94px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; line-height: 1; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; letter-spacing: .01em; }
.brand small { margin-top: 6px; color: var(--gold-light); font-size: .56rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; }
.brand-logo { width: 54px; height: 54px; flex: 0 0 auto; border: 2px solid rgba(255,255,255,.75); border-radius: 50%; object-fit: cover; box-shadow: 0 5px 18px rgba(0,0,0,.18); }
.brand-logo-footer { width: 64px; height: 64px; }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav > a:not(.button) { position: relative; font-size: .69rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .82; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .25s; }
.site-nav > a:hover::after, .site-nav > a.active::after { right: 0; }
.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: #fff;
  background: var(--ink-deep);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image: repeating-linear-gradient(115deg, transparent 0, transparent 4px, #fff 5px);
  background-size: 380px 380px;
  mix-blend-mode: soft-light;
}
.hero-glow { position: absolute; width: 620px; height: 620px; right: -80px; top: 20px; border-radius: 50%; background: rgba(217,164,65,.13); filter: blur(2px); }
.hero-grid { position: relative; z-index: 2; min-height: 790px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; padding-top: 92px; }
.hero-copy { position: relative; z-index: 3; padding-bottom: 30px; }
.hero-copy h1 { margin-bottom: 26px; }
.hero-copy p:not(.eyebrow) { max-width: 590px; color: rgba(255,255,255,.72); font-size: 1.06rem; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.hero-art { position: relative; height: 620px; align-self: end; }
.sun { position: absolute; width: 410px; height: 410px; right: -60px; top: 40px; border-radius: 50%; background: var(--gold); opacity: .12; }
.window {
  position: absolute;
  width: 280px;
  height: 510px;
  right: 105px;
  bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(239,201,114,.5);
  border-bottom: 0;
  border-radius: 150px 150px 0 0;
  background: linear-gradient(180deg, #285d52, #173a35);
  box-shadow: inset 0 0 60px rgba(239,201,114,.08);
}
.window::before, .window::after { content: ""; position: absolute; background: rgba(239,201,114,.38); }
.window::before { width: 1px; height: 100%; left: 50%; }
.window::after { width: 100%; height: 1px; top: 42%; }
.window-cross::before, .window-cross::after { content: ""; position: absolute; z-index: 2; background: var(--gold-light); box-shadow: 0 0 30px rgba(239,201,114,.5); }
.window-cross::before { width: 4px; height: 160px; left: calc(50% - 2px); top: 90px; }
.window-cross::after { width: 86px; height: 4px; left: calc(50% - 43px); top: 145px; }
.window-light { position: absolute; width: 300px; height: 500px; left: -10px; top: 55px; background: conic-gradient(from 165deg at 50% 20%, transparent 0 42%, rgba(239,201,114,.14) 48%, transparent 55%); }
.leaf { position: absolute; width: 190px; height: 90px; border: solid rgba(140,163,147,.38); border-width: 1px 0 0 1px; border-radius: 100% 0; transform: rotate(35deg); }
.leaf::before, .leaf::after { content: ""; position: absolute; width: 75px; height: 35px; border: 1px solid rgba(140,163,147,.28); border-radius: 100% 0; }
.leaf::before { left: 32px; top: -22px; transform: rotate(-35deg); }
.leaf::after { left: 85px; top: 12px; transform: rotate(20deg); }
.leaf-one { left: 0; bottom: 55px; }
.leaf-two { right: -85px; top: 180px; transform: rotate(210deg); }
.hero-scroll { position: absolute; z-index: 3; bottom: 30px; left: 50%; display: flex; gap: 15px; align-items: center; color: rgba(255,255,255,.45); font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }

/* Sections */
.gather-section { padding: 105px 0; background: var(--cream); }
.gather-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.gather-grid h2 { margin-bottom: 25px; }
.section-copy { max-width: 470px; color: #60716d; }
.service-card { display: grid; grid-template-columns: 145px 1fr; min-height: 275px; background: var(--paper); box-shadow: var(--shadow); }
.service-day { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: var(--terracotta); text-align: center; text-transform: uppercase; }
.service-day span, .service-day small { font-size: .65rem; font-weight: 700; letter-spacing: .15em; }
.service-day strong { margin: 7px 0; font: 400 4.5rem/1 var(--serif); }
.service-info { padding: 42px; }
.service-info > span { color: var(--terracotta); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.service-info h3 { margin: 12px 0 22px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.service-info p { margin: 3px 0; color: #64736f; font-size: .88rem; }
.service-info .text-link { margin-top: 22px; }

.welcome-section { padding: 140px 0; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; }
.photo-collage { position: relative; height: 560px; }
.collage-main { position: absolute; inset: 0 45px 45px 0; overflow: hidden; background: linear-gradient(145deg, #bf7858 0 45%, #e7b66c 45% 68%, #718c7d 68%); }
.collage-main::before { content: ""; position: absolute; width: 340px; height: 340px; right: -100px; top: -70px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); box-shadow: 0 0 0 45px rgba(255,255,255,.05), 0 0 0 90px rgba(255,255,255,.04); }
.figure { position: absolute; bottom: 0; width: 98px; border-radius: 55px 55px 0 0; box-shadow: inset 0 25px 0 rgba(25,50,45,.8); }
.figure::before { content: ""; position: absolute; width: 52px; height: 52px; top: -26px; left: 23px; border-radius: 50%; background: #c98967; }
.figure-a { height: 260px; left: 42px; background: #e3d3b5; }
.figure-b { height: 305px; left: 150px; background: #294f48; }
.figure-b::before { background: #8b583e; }
.figure-c { height: 235px; left: 260px; background: #d59d50; }
.figure-d { height: 280px; left: 365px; background: #efe3cf; }
.figure-d::before { background: #6c4435; }
.collage-note { position: absolute; right: 0; bottom: 0; width: 190px; padding: 27px; color: #fff; background: var(--ink); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.collage-note strong { display: block; margin-top: 4px; color: var(--gold-light); font: 400 1.25rem var(--serif); text-transform: none; }
.welcome-copy h2 { margin-bottom: 32px; }
.welcome-copy p { color: #5f706c; }
.welcome-copy .button { margin-top: 22px; }

.ministry-section { padding: 125px 0; background: var(--ink); color: #fff; }
.section-heading { margin-bottom: 50px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; }
.split-heading h2 { margin-bottom: 0; }
.ministry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ministry-card { position: relative; min-height: 410px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; overflow: hidden; transition: transform .3s; }
.ministry-card:hover { transform: translateY(-8px); }
.ministry-card::before { content: ""; position: absolute; width: 280px; height: 280px; right: -90px; bottom: -80px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,255,255,.04); }
.card-youth { background: #b75d3f; }
.card-family { background: #d4a94e; color: var(--ink-deep); }
.card-care { background: #6f8b7a; }
.card-number { font-size: .67rem; font-weight: 700; letter-spacing: .15em; }
.ministry-card small { font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; opacity: .8; }
.ministry-card h3 { max-width: 270px; margin: 14px 0 0; font: 400 2.15rem/1.15 var(--serif); }
.round-arrow { position: absolute; right: 25px; bottom: 25px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 1.15rem; }

.journal-section { padding: 130px 0; background: var(--paper); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card { min-width: 0; }
.post-visual { position: relative; height: 250px; display: block; overflow: hidden; }
.post-visual::before, .post-visual::after { content: ""; position: absolute; border-radius: 50%; }
.post-visual::before { width: 250px; height: 250px; right: -65px; top: -80px; border: 1px solid rgba(255,255,255,.5); box-shadow: 0 0 0 40px rgba(255,255,255,.08), 0 0 0 80px rgba(255,255,255,.05); }
.post-visual::after { width: 85px; height: 170px; left: calc(50% - 42px); bottom: -55px; border-radius: 50px 50px 0 0; background: rgba(20,50,45,.75); box-shadow: 0 -130px 0 -39px var(--gold-light); }
.post-visual span { position: absolute; z-index: 2; top: 22px; left: 22px; padding: 7px 12px; background: rgba(255,255,255,.9); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.visual-1 { background: #bf6e4e; }
.visual-2 { background: #d7ad57; }
.visual-3, .visual-0 { background: #769180; }
.post-card-body { padding: 25px 8px 0; }
.post-card-body small { color: #899590; font-size: .66rem; letter-spacing: .12em; }
.post-card-body h3 { margin: 10px 0 14px; font: 400 1.65rem/1.2 var(--serif); }
.post-card-body h3 a:hover { color: var(--terracotta); }
.post-card-body p { color: #687873; font-size: .9rem; }
.post-card-body .text-link { margin-top: 5px; }
.archive-section { padding-top: 90px; }

.cta-section { position: relative; padding: 120px 0; overflow: hidden; color: #fff; background: var(--ink-deep); text-align: center; }
.cta-section::before, .cta-section::after { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(217,164,65,.18); border-radius: 50%; }
.cta-section::before { left: -160px; top: -130px; box-shadow: 0 0 0 45px rgba(217,164,65,.03), 0 0 0 90px rgba(217,164,65,.02); }
.cta-section::after { right: -200px; bottom: -180px; }
.cta-inner { position: relative; z-index: 1; }
.cta-inner .eyebrow { justify-content: center; }
.cta-inner h2 { margin-bottom: 25px; }
.cta-inner > p:not(.eyebrow) { max-width: 580px; margin: 0 auto 35px; color: rgba(255,255,255,.65); }

/* Inner pages */
.page-hero, .post-hero { padding: 190px 0 100px; color: #fff; background: var(--ink); }
.page-hero h1, .post-hero h1 { margin-bottom: 25px; }
.page-hero .lead { color: rgba(255,255,255,.65); }
.page-content { padding: 100px 0 130px; }
.prose { font-size: 1.05rem; color: #4f625e; }
.prose h2 { margin: 70px 0 24px; color: var(--ink); font-size: 2.5rem; }
.prose h3 { margin: 42px 0 12px; color: var(--ink); font: 400 1.6rem var(--serif); }
.prose p { margin-bottom: 25px; }
.prose a { color: var(--terracotta); text-decoration: underline; }
.back-link { display: inline-block; margin-bottom: 45px; color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.post-meta { display: flex; gap: 30px; color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; }
.article-layout { display: grid; grid-template-columns: minmax(0, 720px) 280px; gap: 90px; align-items: start; padding-top: 90px; padding-bottom: 130px; }
.article-body { font-family: Georgia, serif; font-size: 1.13rem; line-height: 1.95; }
.verse-card { position: sticky; top: 35px; padding: 35px; border-top: 4px solid var(--gold); background: var(--cream); }
.verse-mark { display: block; height: 35px; color: var(--gold); font: 4rem/1 var(--serif); }
.verse-card p { font: 400 1.3rem/1.5 var(--serif); }
.verse-card small { color: var(--terracotta); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.feature-list { margin-top: 55px; border-top: 1px solid var(--line); }
.feature-item { display: grid; grid-template-columns: 100px 1fr; gap: 35px; padding: 55px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 30px; }
.feature-item > span { color: var(--terracotta); font-size: .7rem; font-weight: 700; letter-spacing: .15em; }
.feature-item h2 { margin: 0 0 16px; font-size: 2.4rem; }
.feature-item p { max-width: 650px; }
.feature-item strong { color: var(--terracotta); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.event-list { border-top: 1px solid var(--line); }
.event-row { position: relative; display: grid; grid-template-columns: 115px 1fr 60px; gap: 35px; align-items: center; padding: 42px 12px; border-bottom: 1px solid var(--line); transition: background .25s, padding .25s; }
.event-row:hover { padding-left: 25px; background: var(--cream); }
.event-date { display: flex; flex-direction: column; align-items: center; border-right: 1px solid var(--line); }
.event-date strong { font: 400 3.2rem/1 var(--serif); }
.event-date span, .event-row small { color: var(--terracotta); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.event-row h2 { margin: 6px 0 10px; font-size: 2rem; }
.event-row p { margin: 0; color: #6c7b77; font-size: .85rem; }
.event-row .round-arrow { position: static; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin: 40px 0 90px; padding: 50px; background: var(--cream); }
.contact-grid h2 { margin-top: 0; font-size: 2rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 35px; font-family: var(--sans); }
.contact-form label { color: var(--ink); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; padding: 14px; border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--ink); font: 1rem var(--sans); }
.contact-form textarea { resize: vertical; }
.contact-form button { justify-self: start; }
.not-found { min-height: 78vh; display: grid; place-items: center; padding: 160px 0 100px; color: #fff; background: var(--ink-deep); text-align: center; }
.not-found .eyebrow { justify-content: center; }
.not-found h1 { font-size: clamp(3.2rem, 8vw, 6rem); }
.not-found p:not(.eyebrow) { margin-bottom: 35px; color: rgba(255,255,255,.65); }

/* Footer */
.site-footer { padding: 80px 0 25px; color: rgba(255,255,255,.68); background: #0c2522; font-size: .88rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 80px; padding-bottom: 60px; }
.brand-light { color: #fff; }
.footer-intro { max-width: 390px; margin-top: 25px; }
.site-footer h3 { margin-bottom: 18px; color: var(--gold-light); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: .65rem; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 950px) {
  .site-nav { position: absolute; top: 78px; left: 24px; right: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { padding: 13px 5px; }
  .nav-toggle { width: 42px; height: 42px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid rgba(255,255,255,.35); background: transparent; cursor: pointer; }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 1px; background: #fff; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 110px; }
  .hero-art { position: absolute; inset: auto -60px 0 auto; width: 460px; opacity: .52; }
  .gather-grid, .welcome-grid { grid-template-columns: 1fr; gap: 65px; }
  .welcome-copy { max-width: 650px; }
  .ministry-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .ministry-card:last-child, .post-card:last-child { grid-column: 1 / -1; }
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .verse-card { position: static; max-width: 480px; }
}

@media (max-width: 650px) {
  .container, .container.narrow { width: min(100% - 32px, 1180px); }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: 2.65rem; }
  .nav-wrap { height: 78px; }
  .hero, .hero-grid { min-height: 760px; }
  .hero-copy { padding-top: 70px; }
  .hero-copy h1 br { display: none; }
  .hero-art { right: -150px; opacity: .35; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-scroll { display: none; }
  .gather-section, .welcome-section, .ministry-section, .journal-section { padding: 85px 0; }
  .gather-grid { gap: 45px; }
  .service-card { grid-template-columns: 100px 1fr; }
  .service-day strong { font-size: 3.4rem; }
  .service-info { padding: 28px 22px; }
  .service-info h3 { font-size: 1.5rem; }
  .photo-collage { height: 410px; }
  .collage-main { right: 25px; bottom: 35px; }
  .figure { width: 69px; }
  .figure::before { width: 40px; height: 40px; top: -20px; left: 15px; }
  .figure-a { left: 18px; height: 190px; }
  .figure-b { left: 90px; height: 225px; }
  .figure-c { left: 164px; height: 175px; }
  .figure-d { left: 237px; height: 205px; }
  .collage-note { width: 165px; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .ministry-grid, .post-grid { grid-template-columns: 1fr; }
  .ministry-card:last-child, .post-card:last-child { grid-column: auto; }
  .ministry-card { min-height: 340px; }
  .page-hero, .post-hero { padding: 145px 0 75px; }
  .page-content { padding: 70px 0 90px; }
  .post-meta { align-items: flex-start; flex-direction: column; gap: 7px; }
  .article-layout { padding-top: 65px; padding-bottom: 90px; }
  .feature-item { grid-template-columns: 45px 1fr; gap: 15px; padding: 40px 0; }
  .event-row { grid-template-columns: 70px 1fr; gap: 18px; }
  .event-row .round-arrow { display: none; }
  .event-date strong { font-size: 2.5rem; }
  .event-row h2 { font-size: 1.55rem; }
  .contact-grid, .contact-form { grid-template-columns: 1fr; }
  .contact-grid { gap: 30px; padding: 30px; margin-bottom: 65px; }
  .contact-form .full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
