:root {
  --pine: #13241c;
  --pine-2: #1c3328;
  --ink: #1b1712;
  --paper: #f3eee4;
  --cream: #faf6ee;
  --white: #fffdf8;
  --flame: #b83a28;
  --flame-deep: #8e2a1c;
  --gold: #c6a15a;
  --lake: #3a6570;
  --moss: #4d6a56;
  --muted: #6d665b;
  --line: rgba(27, 23, 18, 0.12);
  --line-strong: rgba(27, 23, 18, 0.22);
  --display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --body: "Outfit", "Segoe UI", sans-serif;
  --max: 1180px;
  --gut: 28px;
  --header: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
::selection { background: var(--flame); color: var(--white); }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--pine);
  color: var(--cream);
  padding: 8px 12px;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), 100% - (var(--gut) * 2));
  margin-inline: auto;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--flame);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.eyebrow-light { color: var(--gold); }

.lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 42ch;
}

h1, h2, .display {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 em, h2 em, .display em {
  color: var(--flame);
  font-style: italic;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-flame { background: var(--flame); color: var(--white); }
.btn-flame:hover { background: var(--flame-deep); box-shadow: 0 10px 24px rgba(184, 58, 40, 0.28); }
.btn-pine { background: var(--pine); color: var(--cream); }
.btn-pine:hover { background: #0d1b15; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding-inline: 4px;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding-bottom: 4px;
}
.btn-ghost:hover { color: var(--flame); border-color: var(--flame); transform: none; }
.btn-cream { background: var(--cream); color: var(--pine); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(243, 238, 228, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}
.mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.brand-text small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: #4a433a;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--flame); }
.nav-links .btn { color: var(--white); }
.menu-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  height: 36px;
  margin-left: auto;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--pine);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (min-width: 901px) {
  .menu-toggle { display: none; }
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - var(--header));
  background: var(--paper);
}
.hero > * { min-width: 0; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 72px max(var(--gut), calc((100vw - var(--max)) / 2));
  width: 100%;
}
.hero-copy h1 {
  font-size: clamp(44px, 7.2vw, 92px);
  margin: 22px 0 22px;
}
.hero-copy p {
  max-width: min(38ch, 100%);
  color: var(--muted);
  overflow-wrap: anywhere;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-meta div { min-width: 0; }
.hero-meta span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--pine);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
}
.sunday-ticket {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--cream);
  color: var(--ink);
  padding: 18px 20px;
  width: min(260px, calc(100% - 48px));
  box-shadow: 0 18px 40px rgba(19, 36, 28, 0.22);
}
.sunday-ticket span {
  color: var(--flame);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sunday-ticket strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 6px 0 4px;
}
.sunday-ticket p { color: var(--muted); font-size: 13px; }

.glass-bar {
  height: 6px;
  background: linear-gradient(90deg, #8b1e1e 0%, #c6a15a 28%, #2f5d4a 55%, #2a4a6e 78%, #b83a28 100%);
}

.ticker {
  background: var(--pine);
  color: var(--cream);
  overflow: hidden;
  max-width: 100%;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker b { color: var(--gold); font-weight: 600; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 104px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(42px, 5.6vw, 68px); max-width: 14ch; }
.section-head p { color: var(--muted); max-width: 34ch; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 280px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
}
.pillar:nth-child(2) { background: #f3d7c8; border-color: transparent; }
.pillar:nth-child(3) { background: var(--pine); color: var(--cream); border-color: transparent; }
.pillar:nth-child(3) p { color: #c9d4cc; }
.pillar-num {
  font-family: var(--display);
  color: var(--flame);
  font-size: 28px;
  font-style: italic;
  margin-bottom: 48px;
}
.pillar:nth-child(3) .pillar-num { color: var(--gold); }
.pillar h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.pillar p { color: var(--muted); font-size: 15px; max-width: 28ch; }
.pillar a {
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
  font-weight: 600;
}
.pillar a span { color: var(--flame); margin-left: 6px; }
.pillar:nth-child(3) a span { color: var(--gold); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-copy h2 { font-size: clamp(40px, 5vw, 64px); margin: 16px 0 20px; }
.split-copy p { color: var(--muted); max-width: 42ch; }
.split-copy .btn { margin-top: 28px; }
.split-photo {
  position: relative;
  min-height: 460px;
}
.split-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.split-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--cream);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.photo-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}
.photo-stack img { width: 100%; height: 280px; object-fit: cover; }
.photo-stack img:first-child { height: 100%; min-height: 460px; grid-row: 1 / span 2; }
.photo-stack img:nth-child(2) { height: 224px; }
.photo-stack img:nth-child(3) { height: 224px; }

.band {
  background: var(--pine);
  color: var(--cream);
  padding: 96px 0;
  overflow: hidden;
}
.band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.band h2 { font-size: clamp(40px, 5vw, 64px); }
.band h2 em { color: var(--gold); }
.band p { color: #c5d1c9; max-width: 42ch; margin: 18px 0 28px; }
.band-photo {
  min-height: 360px;
  position: relative;
}
.band-photo img { width: 100%; height: 360px; object-fit: cover; }

.quote-block { padding: 108px 0; }
.quote-block blockquote {
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 16ch;
}
.quote-block cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero {
  background: var(--pine);
  color: var(--cream);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(198, 161, 90, 0.28);
  border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  margin: 18px 0 20px;
  max-width: 12ch;
}
.page-hero p { color: #c9d4cc; max-width: min(44ch, 100%); overflow-wrap: break-word; }
.page-meta {
  display: flex;
  gap: 12px 28px;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 100%;
}
.page-meta span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.expect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.expect article {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
}
.expect article:nth-child(odd) { padding-right: 36px; border-right: 1px solid var(--line); }
.expect article:nth-child(even) { padding-left: 36px; }
.expect span {
  color: var(--flame);
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
}
.expect h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 8px 0 8px;
}
.expect p { color: var(--muted); font-size: 15px; max-width: 42ch; }

.times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.time-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
  min-height: 210px;
}
.time-card:first-child {
  background: var(--flame);
  color: var(--white);
  border-color: transparent;
}
.time-card:first-child p { color: rgba(255, 253, 248, 0.82); }
.time-card span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
}
.time-card:first-child span { color: var(--gold); }
.time-card h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 18px 0 8px;
}
.time-card p { color: var(--muted); font-size: 15px; }
.time-card a { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; }

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
  background: #d9d2c4;
}

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.person { background: var(--white); border: 1px solid var(--line); }
.person img { width: 100%; height: 280px; object-fit: cover; }
.person-copy { padding: 16px 18px 20px; }
.person h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.person p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.person.wide { grid-column: span 2; }
.person.wide img { height: 340px; object-position: center 18%; }
.pastor-card {
  background: var(--pine);
  color: var(--cream);
  border: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}
.pastor-card p { color: #c9d4cc; letter-spacing: 0; text-transform: none; font-weight: 400; font-size: 15px; margin-top: 12px; max-width: 36ch; }
.pastor-card h3 { font-size: 28px; }

.give-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.qr-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  text-align: center;
}
.qr-card img {
  width: min(280px, 100%);
  height: auto;
  margin: 12px auto 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.qr-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.qr-card p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.give-ways { display: grid; gap: 14px; }
.give-way {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px 24px;
}
.give-way h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.give-way p { color: var(--muted); font-size: 15px; }
.give-way a { color: var(--flame); font-weight: 600; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-aside { position: sticky; top: 110px; }
.contact-aside h1 {
  font-size: clamp(48px, 6vw, 76px);
  margin: 16px 0 16px;
}
.contact-list { margin-top: 32px; display: grid; gap: 16px; }
.contact-list a, .contact-list p { font-size: 16px; }
.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: 12px 12px 0 rgba(19, 36, 28, 0.06);
}
.form-card h2 {
  font-size: 32px;
  margin-bottom: 22px;
}
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.field input, .field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 13px 12px;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.form-success {
  background: var(--pine);
  color: var(--cream);
  padding: 48px 32px;
  text-align: center;
}
.form-success h2 {
  font-size: 42px;
  margin: 10px 0 12px;
}
.form-success p { color: #c9d4cc; }

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 56px;
}
.footer .brand-text strong { color: var(--cream); }
.footer .mark { background: var(--cream); }
.footer-tag { color: #b7b0a5; font-size: 14px; margin-top: 16px; max-width: 26ch; }
.footer h3 {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer li { color: #d5cfc4; font-size: 14px; margin-bottom: 8px; }
.footer li a:hover { color: var(--gold); }
.footer-cta {
  border: 1px solid #3a342c;
  padding: 18px;
}
.footer-cta p { color: #d5cfc4; font-size: 14px; }
.footer-cta a {
  color: var(--gold);
  display: inline-block;
  font-weight: 700;
  margin-top: 10px;
}
.footer-bottom {
  border-top: 1px solid #322c26;
  color: #8f877c;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav { padding-right: 86px; }
  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-links .btn { margin-top: 8px; width: 100%; }
  .hero, .section-head, .split, .band-inner, .give-layout, .contact-layout, .pillars, .times, .people {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .hero { min-height: auto; }
  .hero-copy { padding: 48px var(--gut) 40px; max-width: none; }
  .hero-visual { min-height: 480px; }
  .page-hero { padding: 64px 0 72px; }
  .page-hero h1 { font-size: clamp(40px, 11vw, 72px); }
  .person.wide { grid-column: auto; }
  .person.wide img { height: 280px; }
  .photo-stack { grid-template-columns: 1fr 1fr; }
  .photo-stack img:first-child { grid-row: auto; min-height: 240px; height: 240px; grid-column: 1 / -1; }
  .expect { grid-template-columns: 1fr; }
  .expect article:nth-child(odd),
  .expect article:nth-child(even) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .contact-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  :root { --gut: 18px; --header: 70px; }
  .brand-text small { display: none; }
  .hero-copy h1,
  .page-hero h1,
  .section-head h2,
  .split-copy h2,
  .band h2,
  .contact-aside h1 {
    font-size: 32px;
    max-width: 100%;
  }
  .hero-copy h1 em,
  .page-hero h1 em,
  .section-head h2 em {
    display: block;
    font-size: 0.9em;
  }
  .hero-meta { flex-direction: column; gap: 14px; }
  .hero-visual { min-height: 420px; }
  .pillars, .times, .people, .fields, .photo-stack, .footer-top {
    grid-template-columns: 1fr;
  }
  .photo-stack img,
  .photo-stack img:first-child,
  .photo-stack img:nth-child(2),
  .photo-stack img:nth-child(3) { height: 220px; min-height: 0; }
  .page-hero { padding: 56px 0 64px; }
  .form-card { padding: 20px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
