/* ============ Life Church — styles ============ */
:root {
  --bg: #0b0a08;
  --bg-2: #12100c;
  --bg-card: rgba(255, 250, 240, 0.03);
  --line: rgba(226, 210, 178, 0.12);
  --line-strong: rgba(226, 210, 178, 0.22);
  --cream: #f2ede2;
  --muted: #a89f8e;
  --gold: #c9a86a;
  --gold-soft: #e6cf9d;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- typography ---------- */
h1, h2, .brand-name, .card-time, .band-quote, .verse blockquote {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(56px, 9vw, 108px); line-height: 1.02; }
h2 { font-size: clamp(38px, 5.5vw, 64px); line-height: 1.06; }
.grad {
  background: linear-gradient(100deg, var(--gold-soft) 10%, var(--gold) 45%, #8f6f3c 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); max-width: 520px; margin-top: 16px; font-size: 17px; }

/* ---------- buttons & pills ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 60%, #a8863f);
  color: #17130a;
  box-shadow: 0 6px 30px rgba(201, 168, 106, 0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 42px rgba(201, 168, 106, 0.4); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--cream);
  background: rgba(255, 250, 240, 0.02);
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: rgba(255, 250, 240, 0.03);
  backdrop-filter: blur(6px);
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand-mark { color: var(--gold); display: grid; place-items: center; }
.brand-name { font-size: 22px; letter-spacing: 0.01em; white-space: nowrap; }
.brand-name em { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 { margin: 26px 0 28px; }
.hero-sub { color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.meta-sep { color: var(--gold); font-size: 10px; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 720px; height: 720px;
  top: -280px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 168, 106, 0.16), transparent 65%);
}
.hero-glow-2 {
  width: 540px; height: 540px;
  bottom: -300px; right: -160px;
  background: radial-gradient(circle, rgba(140, 110, 60, 0.12), transparent 65%);
}
.hero-rays {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 178deg at 50% -12%,
      transparent 42%, rgba(230, 207, 157, 0.05) 46%, transparent 49%,
      rgba(230, 207, 157, 0.07) 52%, transparent 55%,
      rgba(230, 207, 157, 0.05) 58%, transparent 62%);
  pointer-events: none;
}
.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
  animation: drop 2.2s var(--ease) infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg-2);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: scroll 32s linear infinite;
}
.ticker-track span {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-track i { color: var(--gold); font-style: normal; font-size: 12px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 130px 0; position: relative; }

/* believe */
.believe { text-align: center; }
.verse {
  max-width: 780px;
  margin: 56px auto 0;
  padding: 48px 44px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(201, 168, 106, 0.07), transparent 55%),
    var(--bg-card);
  position: relative;
}
.verse::before {
  content: "“";
  position: absolute;
  top: -8px; left: 28px;
  font-family: var(--serif);
  font-size: 110px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}
.verse blockquote {
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  line-height: 1.45;
  color: var(--cream);
}
.verse mark {
  background: none;
  color: var(--gold-soft);
}
.verse figcaption {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.believe-copy {
  max-width: 620px;
  margin: 40px auto 0;
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.75;
}

/* services */
.services { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(201, 168, 106, 0.06), transparent 55%),
    var(--bg-card);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.card-day {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.card-time { font-size: clamp(44px, 5vw, 60px); line-height: 1; }
.card-time span { font-size: 0.42em; color: var(--muted); letter-spacing: 0.08em; }
.card-list { list-style: none; margin: 26px 0 18px; display: grid; gap: 12px; }
.card-list li { display: flex; align-items: center; gap: 12px; font-size: 16.5px; font-weight: 500; }
.card-list i { color: var(--gold); font-style: normal; font-size: 11px; }
.card-note { color: var(--muted); font-size: 14.5px; }

/* ministries */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.mini-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  background: var(--bg-card);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.mini-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: radial-gradient(140% 120% at 50% 0%, rgba(201, 168, 106, 0.07), transparent 60%), var(--bg-card);
}
.mini-icon { font-size: 30px; display: block; margin-bottom: 18px; }
.mini-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.mini-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* band */
.band {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.band-glow {
  position: absolute;
  width: 700px; height: 700px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 106, 0.1), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.band-inner { position: relative; }
.band-quote {
  font-size: clamp(26px, 4vw, 42px);
  font-style: italic;
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto;
}
.band-by {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  margin-top: 56px;
}
.visit-info {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.visit-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.visit-value { font-size: 17px; font-weight: 500; line-height: 1.55; }
.visit-value a { border-bottom: 1px solid var(--line-strong); transition: border-color 0.25s; }
.visit-value a:hover { border-color: var(--gold); }
.visit-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: auto; padding-top: 10px; }
.visit-map {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  filter: grayscale(0.85) contrast(1.05) brightness(0.9);
  transition: filter 0.5s var(--ease);
}
.visit-map:hover { filter: grayscale(0.2) brightness(1); }
.visit-map iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

.expect {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.expect-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: var(--bg-card);
}
.expect-item > span { font-size: 24px; line-height: 1.3; }
.expect-item h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 4px; }
.expect-item p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* footer */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.footer-brand .brand-name { font-size: 26px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; margin-top: 14px; line-height: 1.7; }
.footer-h {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14.5px; transition: color 0.25s; }
.footer-col a:hover { color: var(--cream); }
.footer-addr { color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footer-verse { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 15px; }

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .expect { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .section { padding: 96px 0; }
  .cards-2 { grid-template-columns: 1fr; }
  .desktop-br { display: none; }
  .verse { padding: 40px 26px; }
  .card { padding: 32px 26px; }
  .visit-info { padding: 32px 26px; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(11, 10, 8, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    font-size: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
    z-index: 90;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 20px; color: var(--cream); }
  .nav-cta .btn { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 95;
    position: relative;
  }
  .nav-toggle span {
    width: 24px; height: 2px;
    background: var(--cream);
    transition: transform 0.3s var(--ease);
    display: block;
  }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
}
@media (max-width: 480px) {
  .cards-4 { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 10px; }
  .meta-sep { display: none; }
}
