:root {
  --burgundy: #720b17;
  --burgundy-deep: #3e050d;
  --burgundy-soft: #9d1c2c;
  --gold: #c99538;
  --gold-light: #e6c16d;
  --cream: #fbf7ef;
  --paper: #fffdf9;
  --ink: #241b1a;
  --muted: #6f625e;
  --line: rgba(114, 11, 23, 0.13);
  --shadow: 0 24px 70px rgba(62, 5, 13, 0.13);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -60px; background: white; padding: 10px 14px; border-radius: 8px; transition: .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(255,253,249,.92); backdrop-filter: blur(18px); border-color: var(--line); box-shadow: 0 10px 35px rgba(45,20,18,.07); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; }
.site-header.scrolled .brand { color: var(--burgundy-deep); }
.brand-mark { width: 44px; height: 44px; border-radius: 50% 50% 44% 44%; display: grid; place-items: center; font-weight: 800; font-size: .78rem; letter-spacing: .08em; background: linear-gradient(145deg, var(--burgundy-soft), var(--burgundy-deep)); border: 1px solid rgba(230,193,109,.9); color: white; box-shadow: 0 8px 20px rgba(62,5,13,.22); }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; }
.brand-text small { margin-top: 4px; text-transform: uppercase; letter-spacing: .18em; font-size: .58rem; }
.site-nav { display: flex; align-items: center; gap: 28px; color: white; font-size: .92rem; font-weight: 600; }
.site-header.scrolled .site-nav { color: var(--ink); }
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--gold); transition: right .2s; }
.site-nav a:hover::after { right: 0; }
.nav-cta { padding: 11px 20px; border-radius: 999px; color: white !important; background: linear-gradient(135deg, var(--burgundy-soft), var(--burgundy-deep)); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 10px 24px rgba(62,5,13,.24); }
.menu-button { display: none; width: 46px; height: 44px; background: white; border: 0; border-radius: 12px; padding: 11px; box-shadow: 0 8px 22px rgba(0,0,0,.13); }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--burgundy-deep); }

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; isolation: isolate; overflow: hidden; }
.hero-image { position: absolute; inset: 0; z-index: -3; background-image: url('assets/calvary-hero.png'); background-size: cover; background-position: center; transform: scale(1.02); }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(38,4,9,.82) 0%, rgba(62,5,13,.45) 34%, rgba(62,5,13,.08) 63%, rgba(255,250,240,.08) 100%), linear-gradient(0deg, rgba(25,3,7,.72), transparent 55%); }
.hero-content { padding-block: 160px 100px; color: white; }
.hero-content > * { max-width: 650px; }
.eyebrow, .section-label { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .25em; font-size: .76rem; font-weight: 800; color: var(--gold-light); }
.hero h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(3.3rem, 7vw, 7.3rem); font-weight: 500; line-height: .93; letter-spacing: -.045em; text-wrap: balance; }
.hero-content > p:not(.eyebrow) { margin: 24px 0 32px; font-family: Georgia, serif; font-size: clamp(1.1rem, 2vw, 1.45rem); max-width: 570px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 25px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; letter-spacing: .02em; transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--burgundy-soft), var(--burgundy-deep)); color: white; box-shadow: 0 14px 34px rgba(62,5,13,.25); }
.button-glass { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.45); color: white; backdrop-filter: blur(12px); }
.button-outline { border-color: var(--burgundy); color: var(--burgundy); }
.button-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--burgundy-deep); box-shadow: 0 14px 34px rgba(201,149,56,.26); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; display: grid; place-items: center; color: white; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { transform: translate(-50%, 7px); } }

.welcome-strip { position: relative; z-index: 2; background: var(--burgundy-deep); color: white; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.highlight-grid article { position: relative; padding: 38px 36px; border-right: 1px solid rgba(255,255,255,.12); }
.highlight-grid article:last-child { border-right: 0; }
.highlight-grid span { color: var(--gold-light); font-weight: 800; font-size: .75rem; letter-spacing: .2em; }
.highlight-grid h2 { margin: 8px 0 5px; font-family: Georgia, serif; font-weight: 500; font-size: 1.35rem; }
.highlight-grid p { margin: 0; color: rgba(255,255,255,.7); font-size: .92rem; }

.section { padding-block: 110px; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-label { color: var(--burgundy-soft); }
.section-label.light { color: var(--gold-light); }
.section h2 { margin: 0 0 20px; font-family: Georgia, serif; font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: 1.02; font-weight: 500; letter-spacing: -.04em; text-wrap: balance; }
.section p { color: var(--muted); }
.lead { font-size: 1.18rem; color: #423532 !important; }
.split-grid, .media-grid, .contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 14px; color: var(--burgundy); font-weight: 800; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.statement-card { position: relative; min-height: 440px; border-radius: var(--radius); padding: 58px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: white; background: radial-gradient(circle at 70% 15%, rgba(230,193,109,.4), transparent 30%), linear-gradient(145deg, #8a1524, #36040b 80%); box-shadow: var(--shadow); }
.statement-card::before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(230,193,109,.45); border-radius: 16px; }
.statement-card::after { content: "✦"; position: absolute; top: 50px; right: 52px; font-size: 3rem; color: rgba(230,193,109,.85); }
.statement-card p, .statement-card small { position: relative; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; }
.statement-card blockquote { position: relative; margin: 14px 0 24px; font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.15; }
.gold-rule { position: relative; width: 86px; height: 2px; background: var(--gold-light); margin-bottom: 18px; }

.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 50px; }
.leader-card { text-align: center; }
.leader-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.leader-card h3 { margin: 22px 0 4px; font-family: Georgia, serif; font-size: 1.4rem; }
.leader-card p { margin: 0; color: var(--burgundy-soft); font-weight: 700; letter-spacing: .03em; }
.leadership-group { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.leadership-group img { width: 100%; max-height: 560px; object-fit: cover; object-position: top center; }
.leadership-group figcaption { padding: 20px; text-align: center; color: var(--muted); font-family: Georgia, serif; font-size: 1.05rem; background: var(--cream); }

.visit { background: linear-gradient(180deg, var(--cream), white); }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 20px; padding: 34px; box-shadow: 0 18px 45px rgba(79,46,39,.06); transition: transform .2s, box-shadow .2s; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon-circle { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--burgundy); background: #f8ead0; font-size: 1.4rem; }
.info-card h3, .ministry-card h3 { margin: 22px 0 8px; font-family: Georgia, serif; font-size: 1.45rem; }
.info-card strong { display: block; margin-top: 18px; color: var(--burgundy); }

.ministries { position: relative; overflow: hidden; }
.ministries::before { content: ""; position: absolute; width: 700px; height: 700px; border: 1px solid rgba(201,149,56,.2); border-radius: 50%; right: -350px; top: -220px; box-shadow: 0 0 0 70px rgba(201,149,56,.04), 0 0 0 140px rgba(201,149,56,.03); }
.ministry-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ministry-card { min-height: 300px; padding: 30px; border-radius: 20px; color: white; background: linear-gradient(160deg, #8a1524, #3e050d); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.ministry-card:nth-child(even) { background: linear-gradient(160deg, #a26822, #5d310d); }
.ministry-card span { margin-bottom: auto; color: var(--gold-light); font-weight: 800; letter-spacing: .2em; font-size: .72rem; }
.ministry-card p { color: rgba(255,255,255,.68); margin-bottom: 0; }

.messages { background: #f6efe3; }
.video-card { min-height: 440px; border-radius: var(--radius); padding: 16px; background: linear-gradient(145deg, var(--burgundy-deep), var(--burgundy-soft)); box-shadow: var(--shadow); }
.video-placeholder { height: 100%; min-height: 408px; border-radius: 16px; display: grid; place-items: center; align-content: center; text-align: center; background: radial-gradient(circle at center, rgba(230,193,109,.25), transparent 32%), linear-gradient(rgba(30,3,7,.42), rgba(30,3,7,.7)), url('assets/calvary-hero.png') center/cover; color: white; }
.video-placeholder button { width: 80px; height: 80px; border-radius: 50%; border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.18); color: white; font-size: 1.55rem; backdrop-filter: blur(10px); cursor: pointer; }
.video-placeholder p { color: white; margin: 20px 0 4px; font-weight: 800; font-size: 1.05rem; }
.video-placeholder small { color: rgba(255,255,255,.72); }

.giving { padding-block: 75px; background: linear-gradient(120deg, var(--burgundy-deep), #78101c); color: white; }
.giving-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.giving h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
.giving p { color: rgba(255,255,255,.7); max-width: 700px; }

.contact-grid { align-items: start; }
.contact-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.contact-details strong { color: var(--burgundy); }
.contact-form { display: grid; gap: 18px; padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; font-weight: 750; font-size: .9rem; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #ddd3ca; border-radius: 12px; padding: 13px 14px; background: #fffdf9; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,149,56,.14); }
.form-note { margin: 0; font-size: .78rem; }

.site-footer { padding: 70px 0 24px; background: #210306; color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; }
.footer-brand { color: white !important; }
.footer-grid p { color: rgba(255,255,255,.6); max-width: 420px; }
.footer-grid h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold-light); }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .menu-button { display: block; }
  .site-nav { position: fixed; top: 74px; left: 20px; right: 20px; display: grid; gap: 6px; padding: 18px; color: var(--ink); background: rgba(255,253,249,.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .22s; }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 10px 12px; }
  .site-header .brand { color: white; }
  .site-header.scrolled .brand { color: var(--burgundy-deep); }
  .highlight-grid, .visit-grid, .leadership-grid { grid-template-columns: 1fr; }
  .highlight-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .split-grid, .media-grid, .contact-grid { grid-template-columns: 1fr; }
  .ministry-grid { grid-template-columns: repeat(2, 1fr); }
  .giving-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { min-height: 72px; }
  .brand-text small { display: none; }
  .hero { min-height: 820px; }
  .hero-image { background-position: 36% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(38,4,9,.88), rgba(62,5,13,.35) 65%, rgba(62,5,13,.08)); }
  .hero-content { padding-block: 140px 90px; }
  .hero h1 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  .section { padding-block: 78px; }
  .statement-card { min-height: 370px; padding: 38px; }
  .ministry-grid { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .button-row .button { width: 100%; }
}

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