:root {
  --plum-950: #1C0717;
  --plum-900: #2A0A22;
  --plum-800: #3E0F33;
  --plum-700: #5B1248;
  --plum-600: #7B1A5C;
  --plum-500: #A0256F;
  --plum-100: #F4E6EF;
  --gold-600: #B07F2A;
  --gold-500: #D4A24C;
  --gold-300: #EBCB8B;
  --gold-100: #FBF1DD;
  --ink: #1E1820;
  --ink-2: #4A4350;
  --muted: #756D7B;
  --cream: #FBF8F4;
  --sand: #F4EEE6;
  --line: #E8E0D6;
  --white: #FFFFFF;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --radius-lg: 24px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(30, 24, 32, .06), 0 2px 8px rgba(30, 24, 32, .04);
  --shadow: 0 14px 34px -14px rgba(42, 10, 34, .28);
  --shadow-lg: 0 34px 70px -24px rgba(42, 10, 34, .42);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 76px;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum-600); text-decoration: none; transition: color .25s; }
a:hover { color: var(--plum-500); }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 6px; }
.ico { width: 1.15em; height: 1.15em; flex: none; }
.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: absolute; left: 16px; top: -60px; z-index: 1000; background: var(--gold-500); color: var(--plum-900); padding: 10px 16px; border-radius: 8px; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 12px; color: var(--plum-900); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--plum-900); color: rgba(255, 255, 255, .78); }
.section--dark h2, .section--dark h3 { color: #fff; }
.center { text-align: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 32px; height: 1.5px; background: currentColor; }
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow { color: var(--gold-300); }
.h2 { font-size: clamp(30px, 4.2vw, 50px); }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-2); }
.section--dark .lead { color: rgba(255, 255, 255, .75); }
em.accent { font-style: italic; color: var(--plum-500); font-weight: 500; }
.section--dark em.accent, .cta-band em.accent { color: var(--gold-300); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow::after { content: ""; width: 32px; height: 1.5px; background: currentColor; }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; flex-wrap: wrap; }
.section-head--split > div:first-child { max-width: 640px; }
.section-head .h2 { margin-bottom: 12px; }
.section-head p:last-child { margin-bottom: 0; }
.section-actions { margin-top: 44px; text-align: center; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Buttons */
.btn {
  --bg: var(--plum-600); --fg: #fff;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: 15px; line-height: 1.2; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%); transform: translateX(-120%); transition: transform .8s var(--ease); }
.btn:hover { color: var(--fg); transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(0, 0, 0, .4); }
.btn:hover::after { transform: translateX(120%); }
.btn .ico { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover .ico--arrow { transform: translateX(4px); }
.btn--gold { --bg: var(--gold-500); --fg: var(--plum-900); }
.btn--light { --bg: #fff; --fg: var(--plum-700); }
.btn--ghost { --bg: transparent; --fg: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn--outline { --bg: transparent; --fg: var(--plum-600); border-color: var(--line); }
.btn--outline:hover { border-color: var(--plum-600); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn[disabled] { opacity: .7; pointer-events: none; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--plum-600); }
.link-arrow .ico { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover .ico { transform: translateX(5px); }

.round-btn { width: 52px; height: 52px; border-radius: 50%; display: inline-grid; place-items: center; flex: none; border: 1.5px solid rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .06); color: #fff; backdrop-filter: blur(8px); transition: background .3s, border-color .3s, color .3s, transform .3s var(--ease); }
.round-btn:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--plum-900); transform: scale(1.06); }
.round-btn .ico { width: 20px; height: 20px; }
.round-btn--dark { border-color: var(--line); background: #fff; color: var(--ink); }

/* Scroll progress & back to top */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; background: linear-gradient(90deg, var(--gold-500), var(--plum-500)); transform-origin: left; transform: scaleX(0); pointer-events: none; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 48px; height: 48px; border-radius: 50%; border: 0; display: grid; place-items: center; background: var(--plum-600); color: #fff; box-shadow: var(--shadow); opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s, color .3s; }
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--gold-500); color: var(--plum-900); }
.back-to-top .ico { width: 20px; height: 20px; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; color: #fff; transition: background .4s var(--ease), box-shadow .4s var(--ease), color .4s; }
.topbar { background: rgba(28, 7, 23, .5); font-size: 13px; color: rgba(255, 255, 255, .8); max-height: 44px; overflow: hidden; transition: max-height .4s var(--ease), opacity .3s; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 40px; }
.topbar-times { display: flex; gap: 22px; align-items: center; white-space: nowrap; overflow: hidden; }
.topbar-times span { display: inline-flex; gap: 6px; align-items: center; }
.topbar-times b { color: var(--gold-300); font-weight: 600; }
.topbar-times .ico { color: var(--gold-300); }
.topbar-social { display: flex; gap: 4px; }
.topbar-social a { color: rgba(255, 255, 255, .8); display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; }
.topbar-social a:hover { color: var(--gold-300); background: rgba(255, 255, 255, .08); }
.topbar-social .ico { width: 15px; height: 15px; }
.header-main { height: var(--header-h); transition: height .4s var(--ease); }
.header-main .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-header.is-scrolled { background: rgba(255, 255, 255, .94); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(42, 10, 34, .3); color: var(--ink); }
.site-header.is-scrolled .topbar { max-height: 0; opacity: 0; }
.site-header.is-scrolled .header-main { height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; color: inherit; flex: none; }
.brand:hover { color: inherit; }
.brand img { width: 52px; height: 52px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, .25); transition: transform .5s var(--ease), width .4s, height .4s; }
.is-scrolled .brand img { width: 46px; height: 46px; box-shadow: 0 0 0 3px var(--plum-100); }
.brand:hover img { transform: rotate(-8deg) scale(1.04); }
.brand-name { display: block; font-family: var(--font-serif); font-size: 19px; font-weight: 700; line-height: 1.1; }
.brand-sub { display: block; margin-top: 3px; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; opacity: .75; }

.main-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.main-nav a, .nav-dropdown > button { position: relative; display: inline-flex; align-items: center; gap: 6px; padding: 10px 13px; color: inherit; font-size: 14.5px; font-weight: 500; background: none; border: 0; border-radius: 8px; }
.main-nav > ul > li > a::after, .nav-dropdown > button::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.main-nav > ul > li > a:hover::after, .main-nav > ul > li > a[aria-current="page"]::after, .nav-dropdown:hover > button::after, .nav-dropdown.is-current > button::after { transform: scaleX(1); }
.main-nav > ul > li > a:hover, .nav-dropdown > button:hover { color: inherit; }
.nav-dropdown { position: relative; }
.nav-dropdown > button .ico { width: 14px; height: 14px; transition: transform .3s; }
.nav-dropdown:hover > button .ico, .nav-dropdown.is-open > button .ico { transform: rotate(180deg); }
.dropdown-panel { position: absolute; top: calc(100% + 12px); left: 50%; width: 540px; padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: #fff; color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translate(-50%, 10px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s; }
.dropdown-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel, .nav-dropdown.is-open .dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.dropdown-panel a { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 12px; color: var(--ink); }
.dropdown-panel a:hover { background: var(--sand); color: var(--plum-600); }
.dropdown-panel a[aria-current="page"] { background: var(--plum-100); }
.dropdown-panel img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex: none; }
.dropdown-panel strong { display: block; font-size: 14.5px; font-weight: 600; }
.dropdown-panel small { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.4; font-weight: 400; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

@media (max-width: 1180px) {
  .brand-name { font-size: 17px; }
  .main-nav a, .nav-dropdown > button { padding: 10px 10px; font-size: 14px; }
  .header-cta .btn { display: none; }
}
@media (max-width: 1040px) {
  .nav-toggle { position: relative; z-index: 120; display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .35); background: transparent; color: inherit; }
  .is-scrolled .nav-toggle { border-color: var(--line); }
  .nav-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .35s var(--ease), opacity .2s; }
  .nav-toggle span:nth-child(1) { transform: translateY(-6px); }
  .nav-toggle span:nth-child(3) { transform: translateY(6px); }
  .nav-open .nav-toggle { color: #fff; border-color: rgba(255, 255, 255, .35); }
  .nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg); }
  .nav-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; color: #fff; }
  .nav-open .brand { position: relative; z-index: 120; }
  .main-nav { position: fixed; inset: 0; z-index: 110; overflow-y: auto; padding: calc(var(--header-h) + 60px) var(--gutter) 40px; background: var(--plum-900); color: #fff; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility 0s linear .4s; }
  .nav-open .main-nav { opacity: 1; visibility: visible; transition: opacity .4s var(--ease); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid rgba(255, 255, 255, .1); opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); transition-delay: calc(var(--i, 0) * 50ms + 120ms); }
  .nav-open .main-nav > ul > li { opacity: 1; transform: none; }
  .main-nav a, .nav-dropdown > button { width: 100%; justify-content: space-between; padding: 14px 0; font-family: var(--font-serif); font-size: 26px; }
  .main-nav > ul > li > a::after, .nav-dropdown > button::after { display: none; }
  .main-nav > ul > li > a[aria-current="page"] { color: var(--gold-300); }
  .dropdown-panel { position: static; display: none; width: auto; padding: 0 0 14px; grid-template-columns: 1fr; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: none; }
  .nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { transform: none; }
  .nav-dropdown.is-open .dropdown-panel { display: grid; transform: none; }
  .dropdown-panel a { justify-content: flex-start; padding: 10px; font-family: var(--font-sans); font-size: 16px; color: #fff; }
  .dropdown-panel a:hover, .dropdown-panel a[aria-current="page"] { background: rgba(255, 255, 255, .07); color: var(--gold-300); }
  .dropdown-panel small { color: rgba(255, 255, 255, .6); }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 15.5px; }
  .brand-sub { font-size: 9.5px; }
}

/* Reveal animations */
.js-ready [data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--d, 0) * 100ms); }
.js-ready [data-reveal="left"] { transform: translateX(-48px); }
.js-ready [data-reveal="right"] { transform: translateX(48px); }
.js-ready [data-reveal="zoom"] { transform: scale(.92); }
.js-ready [data-reveal="split"] { opacity: 1; transform: none; }
.js-ready [data-reveal].is-visible { opacity: 1; transform: none; }
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .12em; margin-bottom: -.12em; }
.w > span { display: inline-block; }
.js-ready [data-split] .w > span { transform: translateY(110%); transition: transform 1s var(--ease); transition-delay: calc(var(--wi, 0) * 45ms); }
.js-ready [data-split].is-visible .w > span { transform: none; }
@keyframes rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-14px); } }
@keyframes pulse { 0% { transform: scale(.85); opacity: 1; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes twinkle { from { opacity: .25; } to { opacity: .7; } }

/* Hero slider */
.hero { position: relative; isolation: isolate; overflow: hidden; min-height: max(660px, 100svh); background: var(--plum-950); color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.2s var(--ease), visibility 0s linear 1.2s; }
.hero-slide.is-active { z-index: 1; opacity: 1; visibility: visible; transition: opacity 1.2s var(--ease); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.16); transition: transform 9s linear; }
.hero-slide.is-active .hero-media img { transform: scale(1.02); }
.hero-media::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1.3px); background-size: 4px 4px; mix-blend-mode: overlay; }
.hero-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(95deg, rgba(28, 7, 23, .95) 0%, rgba(42, 10, 34, .82) 38%, rgba(42, 10, 34, .42) 72%, rgba(42, 10, 34, .3) 100%), linear-gradient(0deg, rgba(28, 7, 23, .9) 0%, transparent 45%); }
.hero-inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-block: calc(var(--header-h) + 70px) 250px; }
.hero-content { max-width: 720px; }
.hero-title { font-size: clamp(42px, 6.6vw, 86px); color: #fff; line-height: 1.02; margin-bottom: 24px; }
.hero-title em { font-style: italic; font-weight: 500; color: var(--gold-300); }
.hero-text { max-width: 580px; margin-bottom: 34px; font-size: clamp(16px, 1.5vw, 19px); color: rgba(255, 255, 255, .84); }
.hero-anim { opacity: 0; transform: translateY(34px); }
.hero-slide.is-active .hero-anim { animation: rise 1s var(--ease) both; animation-delay: calc(var(--d, 0) * 130ms + 450ms); }
.hero-badge { position: absolute; right: var(--gutter); top: 50%; width: 230px; height: 230px; margin-top: -150px; display: grid; place-items: center; }
.hero-badge::before { content: ""; position: absolute; inset: 38px; border-radius: 50%; background: radial-gradient(circle at 30% 25%, var(--gold-300), var(--gold-600)); box-shadow: 0 24px 60px -12px rgba(212, 162, 76, .55), inset 0 0 0 6px rgba(255, 255, 255, .22); }
.hero-badge-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 26s linear infinite; fill: var(--gold-300); font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; letter-spacing: 3px; }
.hero-badge-num { position: relative; text-align: center; font-family: var(--font-serif); font-size: 64px; font-weight: 700; line-height: .9; color: var(--plum-900); }
.hero-badge-num small { display: block; margin-top: 6px; font-family: var(--font-sans); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; }
.hero-controls { position: absolute; left: 0; right: 0; bottom: 130px; z-index: 3; }
.hero-controls-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.hero-dots { display: flex; gap: 18px; flex: 1; max-width: 760px; }
.hero-dot { flex: 1; min-width: 0; padding: 0; border: 0; background: none; color: rgba(255, 255, 255, .6); text-align: left; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color .3s; }
.hero-dot:hover, .hero-dot.is-active { color: #fff; }
.hero-dot-label { display: block; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-dot-bar { display: block; height: 2px; border-radius: 2px; overflow: hidden; background: rgba(255, 255, 255, .22); }
.hero-dot-bar span { display: block; height: 100%; background: var(--gold-500); transform: scaleX(0); transform-origin: left; }
.hero-dot.is-active .hero-dot-bar span { transform: scaleX(1); }
[data-slider].is-running .hero-dot.is-active .hero-dot-bar span { animation: progress var(--slide-delay, 7000ms) linear both; }
.hero-arrows { display: flex; align-items: center; gap: 10px; }
.hero-count { margin-right: 8px; font-size: 14px; color: rgba(255, 255, 255, .7); font-variant-numeric: tabular-nums; }
.hero-count b { font-size: 18px; color: #fff; }
@media (max-width: 1100px) { .hero-badge { display: none; } }
@media (max-width: 760px) {
  .hero { min-height: max(600px, 92svh); }
  .hero-inner { padding-bottom: 130px; align-items: flex-end; }
  .hero-controls { bottom: 28px; }
  .hero-dot-label, .hero-count { display: none; }
  .hero-dots { gap: 8px; }
  .round-btn { width: 44px; height: 44px; }
}

/* Ministry cards */
.ministries { position: relative; z-index: 5; margin-top: -92px; }
.ministry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.m-card { position: relative; isolation: isolate; display: block; overflow: hidden; aspect-ratio: 3 / 4; border-radius: var(--radius-lg); color: #fff; background: var(--plum-800); box-shadow: var(--shadow-lg); }
.m-card:hover { color: #fff; }
.m-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.m-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28, 7, 23, .05) 25%, rgba(28, 7, 23, .55) 58%, rgba(28, 7, 23, .95) 100%); }
.m-card:hover img { transform: scale(1.08); }
.m-card-num { position: absolute; top: 20px; left: 22px; z-index: 1; font-family: var(--font-serif); font-size: 15px; letter-spacing: .1em; color: var(--gold-300); }
.m-card-go { position: absolute; top: 16px; right: 16px; z-index: 1; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .16); backdrop-filter: blur(6px); transition: background .3s, color .3s, transform .4s var(--ease); }
.m-card-go .ico { width: 18px; height: 18px; }
.m-card:hover .m-card-go { background: var(--gold-500); color: var(--plum-900); transform: rotate(-45deg); }
.m-card-body { position: absolute; inset: auto 0 0; z-index: 1; padding: 24px; }
.m-card h3 { margin: 0; font-size: 24px; color: #fff; }
.m-card p { max-height: 0; margin: 0; overflow: hidden; opacity: 0; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, .82); transition: max-height .6s var(--ease), opacity .4s, margin .4s; }
.m-card:hover p, .m-card:focus-visible p { max-height: 120px; margin-top: 8px; opacity: 1; }
@media (hover: none) { .m-card p { max-height: none; margin-top: 8px; opacity: 1; } }
@media (max-width: 980px) { .ministry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .ministries { margin-top: 0; padding-top: 48px; } }
@media (max-width: 520px) {
  .ministry-grid { gap: 12px; }
  .m-card { aspect-ratio: 4 / 5; border-radius: var(--radius); }
  .m-card-body { padding: 14px; }
  .m-card h3 { font-size: 17px; }
  .m-card p { display: none; }
  .m-card-go { width: 34px; height: 34px; top: 10px; right: 10px; }
  .m-card-num { top: 14px; left: 14px; }
}

/* Welcome */
.split { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 1024px) { .split { grid-template-columns: 1fr; } }
.greeting { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--plum-600); margin-bottom: 18px; }
.prose { font-size: 17px; line-height: 1.85; color: var(--ink-2); }
.prose p { margin-bottom: 1.25em; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose h3 { font-size: 26px; margin-top: 1.4em; }
.dropcap::first-letter { float: left; font-family: var(--font-serif); font-size: 4.4em; line-height: .8; padding: 8px 12px 0 0; color: var(--plum-600); font-weight: 600; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 36px 0; }
.pillar { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.icon-box { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--plum-100); color: var(--plum-600); margin-bottom: 14px; transition: background .3s, color .3s, transform .4s var(--ease); }
.icon-box .ico { width: 22px; height: 22px; }
.pillar:hover .icon-box, .feature:hover .icon-box { background: var(--plum-600); color: #fff; transform: rotate(-6deg); }
.pillar h3 { font-size: 18px; margin-bottom: 4px; }
.pillar p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--muted); }
@media (max-width: 640px) { .pillars { grid-template-columns: 1fr; } }
.welcome-media { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; margin-top: 12px; }
.welcome-media .photo-card:first-child { grid-row: span 2; aspect-ratio: auto; min-height: 320px; }
@media (max-width: 560px) { .welcome-media { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } .welcome-media .photo-card:first-child { grid-column: span 2; grid-row: auto; min-height: 220px; } }

/* Worship card */
.worship-card { position: sticky; top: 96px; isolation: isolate; overflow: hidden; padding: 30px; border-radius: var(--radius-lg); background: var(--plum-900); color: rgba(255, 255, 255, .8); box-shadow: var(--shadow-lg); }
.worship-card::before { content: ""; position: absolute; z-index: -1; width: 280px; height: 280px; right: -100px; top: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(212, 162, 76, .38), transparent 70%); }
.worship-card h3 { margin-bottom: 6px; font-size: 26px; color: #fff; }
.worship-card > p { margin-bottom: 20px; font-size: 14px; color: rgba(255, 255, 255, .65); }
.w-day { position: relative; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, .1); transition: background .3s; }
.w-day-name { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-300); }
.w-row { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; font-size: 14px; line-height: 1.45; }
.w-row span:first-child { color: #fff; }
.w-row .t { white-space: nowrap; color: rgba(255, 255, 255, .7); font-variant-numeric: tabular-nums; }
.w-note { margin-top: 4px; font-size: 12.5px; color: rgba(255, 255, 255, .55); }
.w-day.is-today { margin-inline: -16px; padding-inline: 16px; border-radius: 12px; border-top-color: transparent; background: rgba(255, 255, 255, .07); }
.w-day.is-today + .w-day { border-top-color: transparent; }
.today-badge { padding: 2px 8px; border-radius: 99px; background: var(--gold-500); color: var(--plum-900); font-size: 10px; letter-spacing: .08em; }
.worship-card .btn { width: 100%; margin-top: 18px; }
@media (max-width: 1024px) { .worship-card { position: relative; top: 0; } }

/* Stats */
.stats { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(72px, 9vw, 120px); color: #fff; }
.stats-bg { position: absolute; inset: -18% 0; z-index: -2; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(28, 7, 23, .95), rgba(91, 18, 72, .86)); }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.stat { position: relative; text-align: center; }
.stat + .stat::before { content: ""; position: absolute; left: -12px; top: 15%; bottom: 15%; width: 1px; background: rgba(255, 255, 255, .15); }
.stat-num { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 62px); font-weight: 600; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat-num .suffix { color: var(--gold-300); }
.stat-label { margin-top: 10px; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 44px; } .stat:nth-child(3n+1)::before { display: none; } }
@media (max-width: 520px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat::before { display: none; } }

/* Anniversary */
.anniv { overflow: hidden; background: radial-gradient(ellipse at 15% 0%, var(--plum-700) 0%, var(--plum-900) 55%, var(--plum-950) 100%); }
.sparkles { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(1.6px 1.6px at 12% 22%, var(--gold-300), transparent), radial-gradient(1.2px 1.2px at 32% 78%, #fff, transparent), radial-gradient(1.8px 1.8px at 58% 12%, var(--gold-300), transparent), radial-gradient(1.2px 1.2px at 72% 58%, #fff, transparent), radial-gradient(1.6px 1.6px at 88% 30%, var(--gold-300), transparent), radial-gradient(1.2px 1.2px at 45% 45%, #fff, transparent), radial-gradient(1.4px 1.4px at 92% 86%, var(--gold-300), transparent), radial-gradient(1px 1px at 22% 60%, #fff, transparent); animation: twinkle 4s ease-in-out infinite alternate; }
.anniv-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.poster-wrap { position: relative; animation: float 7s ease-in-out infinite; }
.poster-wrap::before { content: ""; position: absolute; inset: 10% -10%; z-index: -1; background: radial-gradient(circle, rgba(212, 162, 76, .4), transparent 65%); filter: blur(30px); }
.poster { display: block; overflow: hidden; border-radius: 18px; transform: rotate(-3deg); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .08); transition: transform .6s var(--ease); }
.poster:hover { transform: rotate(0) scale(1.02); }
.event-list { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.event-list li { display: flex; gap: 16px; align-items: center; padding: 14px 16px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; background: rgba(255, 255, 255, .03); transition: background .3s, border-color .3s, transform .4s var(--ease); }
.event-list li:hover { background: rgba(255, 255, 255, .07); border-color: rgba(212, 162, 76, .4); transform: translateX(6px); }
.event-date { flex: none; width: 62px; padding: 7px 0; border-radius: 10px; text-align: center; line-height: 1.1; background: var(--gold-500); color: var(--plum-900); }
.event-date b { display: block; font-family: var(--font-serif); font-size: 21px; }
.event-date small { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.event-list strong { display: block; font-size: 15.5px; font-weight: 600; color: #fff; }
.event-list span span { font-size: 13.5px; color: rgba(255, 255, 255, .62); }
.mini-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .anniv-grid { grid-template-columns: 1fr; } .poster-wrap { max-width: 360px; margin-inline: auto; } }
@media (max-width: 520px) { .mini-videos { grid-template-columns: 1fr; } }

/* Video cards */
.video-card { display: block; width: 100%; padding: 0; border: 0; background: none; color: inherit; text-align: left; }
.video-thumb { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; border-radius: var(--radius); background: var(--plum-800); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28, 7, 23, .6), transparent 55%); }
.video-card:hover .video-thumb img { transform: scale(1.06); filter: brightness(.82); }
.play { position: absolute; left: 50%; top: 50%; z-index: 1; width: 60px; height: 60px; margin: -30px 0 0 -30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .95); color: var(--plum-600); box-shadow: 0 10px 30px rgba(0, 0, 0, .35); transition: transform .4s var(--ease), background .3s, color .3s; }
.play::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .6); animation: pulse 2.2s var(--ease) infinite; }
.play .ico { width: 22px; height: 22px; margin-left: 3px; }
.play--lg { width: 88px; height: 88px; margin: -44px 0 0 -44px; }
.play--lg .ico { width: 30px; height: 30px; }
.video-card:hover .play, .featured-facade:hover .play { transform: scale(1.1); background: var(--gold-500); color: var(--plum-900); }
.video-tag { position: absolute; left: 12px; top: 12px; z-index: 1; padding: 5px 10px; border-radius: 99px; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(28, 7, 23, .72); color: var(--gold-300); backdrop-filter: blur(6px); }
.video-meta { display: block; padding: 14px 2px 0; }
.video-title { display: block; margin-bottom: 4px; font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--ink); transition: color .3s; }
.video-card:hover .video-title { color: var(--plum-600); }
.video-meta time { font-size: 13px; color: var(--muted); }
.section--dark .video-title { color: #fff; }
.section--dark .video-card:hover .video-title { color: var(--gold-300); }
.section--dark .video-meta time { color: rgba(255, 255, 255, .55); }

/* Carousel */
.carousel { --per: 4; --gap: 20px; position: relative; }
.carousel--3 { --per: 3; }
.carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - (var(--per) - 1) * var(--gap)) / var(--per)); gap: var(--gap); overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; cursor: grab; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; }
.carousel-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.carousel-track.is-dragging > * { pointer-events: none; }
.carousel-progress { height: 3px; margin-top: 26px; overflow: hidden; border-radius: 3px; background: var(--line); }
.carousel-progress span { display: block; width: 25%; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--plum-600), var(--gold-500)); transition: transform .25s linear; }
.section--dark .carousel-progress { background: rgba(255, 255, 255, .12); }
.carousel-nav { display: flex; align-items: center; gap: 10px; }
@media (max-width: 1024px) { .carousel, .carousel--3 { --per: 2.3; } }
@media (max-width: 640px) { .carousel, .carousel--3 { --per: 1.2; --gap: 14px; } }

/* Photo cards */
.photo-card { position: relative; display: block; overflow: hidden; margin: 0; aspect-ratio: 4 / 3; border-radius: var(--radius); background: var(--sand); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.photo-card:hover img { transform: scale(1.07); }
.photo-card .cap { position: absolute; inset: auto 0 0; padding: 30px 16px 14px; font-size: 13.5px; font-weight: 500; color: #fff; background: linear-gradient(0deg, rgba(28, 7, 23, .82), transparent); opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s var(--ease); }
.photo-card:hover .cap { opacity: 1; transform: none; }
.zoom-ico { position: absolute; top: 12px; right: 12px; z-index: 1; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .92); color: var(--plum-600); opacity: 0; transform: scale(.7); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.zoom-ico .ico { width: 18px; height: 18px; }
.photo-card:hover .zoom-ico, .g-item:hover .zoom-ico { opacity: 1; transform: none; }
@media (hover: none) { .photo-card .cap { opacity: 1; transform: none; } }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }

/* Marquee */
.marquee { display: grid; gap: 16px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-row { display: flex; gap: 16px; width: max-content; animation: marquee var(--dur, 60s) linear infinite; }
.marquee-row--reverse { animation-direction: reverse; }
.marquee:hover .marquee-row { animation-play-state: paused; }
.marquee-row .photo-card { flex: none; width: clamp(220px, 24vw, 320px); }

/* Visit */
.visit { display: grid; grid-template-columns: 1fr 1.1fr; overflow: hidden; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.visit-body { padding: clamp(28px, 4vw, 56px); }
.visit-map { position: relative; min-height: 400px; background: var(--sand); }
.visit-map iframe, .map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.info-list { display: grid; gap: 16px; margin: 24px 0 30px; padding: 0; list-style: none; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .icon-box { width: 42px; height: 42px; border-radius: 12px; margin: 0; }
.info-list .icon-box .ico { width: 19px; height: 19px; }
.info-list strong { display: block; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.info-list span, .info-list a { font-size: 15px; }
@media (max-width: 900px) { .visit { grid-template-columns: 1fr; } .visit-map { min-height: 300px; } }

/* CTA band */
.cta-band { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(56px, 7vw, 88px); color: rgba(255, 255, 255, .8); background: linear-gradient(120deg, var(--plum-800), var(--plum-600)); }
.cta-band::before { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; right: -160px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(212, 162, 76, .35), transparent 70%); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { margin-bottom: 10px; font-size: clamp(28px, 3.6vw, 42px); color: #fff; }
.cta-band p { margin: 0; }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding-top: clamp(64px, 8vw, 96px); background: var(--plum-950); color: rgba(255, 255, 255, .65); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand { color: #fff; margin-bottom: 20px; }
.footer-brand p { max-width: 340px; font-size: 15px; }
.footer-verse { margin: 22px 0 0; padding-left: 16px; border-left: 2px solid var(--gold-500); font-family: var(--font-serif); font-style: italic; font-size: 17px; color: rgba(255, 255, 255, .85); }
.footer-verse cite { display: block; margin-top: 6px; font-family: var(--font-sans); font-style: normal; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-300); }
.site-footer h4 { margin-bottom: 18px; font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-300); }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a { font-size: 15px; color: rgba(255, 255, 255, .72); transition: color .3s, padding .3s var(--ease); }
.footer-links a:hover { padding-left: 6px; color: #fff; }
.footer-contact { display: grid; gap: 12px; font-size: 15px; }
.footer-contact a { color: rgba(255, 255, 255, .8); }
.footer-contact a:hover { color: var(--gold-300); }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .15); color: #fff; transition: background .3s, border-color .3s, color .3s, transform .3s var(--ease); }
.social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--plum-900); transform: translateY(-3px); }
.social .ico { width: 17px; height: 17px; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 56px; padding-block: 24px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13.5px; }
.footer-watermark { position: absolute; right: -2vw; bottom: -3vw; pointer-events: none; user-select: none; font-family: var(--font-serif); font-size: clamp(120px, 22vw, 320px); font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .05); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Page hero (inner pages) */
.page-hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: flex-end; min-height: clamp(440px, 64vh, 580px); background: var(--plum-950); color: #fff; }
.page-hero .hero-media::after { background: linear-gradient(0deg, rgba(28, 7, 23, .96) 0%, rgba(42, 10, 34, .7) 45%, rgba(42, 10, 34, .5) 100%), linear-gradient(90deg, rgba(28, 7, 23, .6), transparent 70%); }
.page-hero-inner { position: relative; z-index: 2; width: 100%; padding-block: calc(var(--header-h) + 100px) clamp(48px, 6vw, 76px); }
.page-hero h1 { margin-bottom: 14px; font-size: clamp(40px, 6vw, 74px); color: #fff; }
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--gold-300); }
.page-hero p { max-width: 640px; margin: 0; font-size: clamp(16px, 1.4vw, 18.5px); color: rgba(255, 255, 255, .82); }
.page-hero .anim { animation: rise 1s var(--ease) both; animation-delay: calc(var(--d, 0) * 120ms + 150ms); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 0 0 18px; padding: 0; list-style: none; font-size: 13px; color: rgba(255, 255, 255, .65); }
.breadcrumb a { color: rgba(255, 255, 255, .88); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; opacity: .5; }
.page-hero-dots { position: absolute; right: var(--gutter); bottom: clamp(48px, 6vw, 76px); z-index: 3; display: flex; gap: 8px; }
.page-hero-dots .hero-dot { flex: none; width: 42px; padding: 8px 0; }
@media (max-width: 640px) { .page-hero-dots { display: none; } }

/* Content blocks */
.quote { position: relative; margin: 36px 0; padding: 28px 32px 28px 36px; border-left: 4px solid var(--gold-500); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); font-family: var(--font-serif); font-size: clamp(20px, 2.2vw, 26px); font-style: italic; line-height: 1.45; color: var(--plum-700); }
.quote p { margin: 0; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin: 36px 0; }
.fact { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s; }
.fact:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fact b { display: block; margin-bottom: 6px; font-family: var(--font-serif); font-size: 36px; line-height: 1; color: var(--plum-600); }
.fact span { display: block; font-size: 13.5px; line-height: 1.4; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.feature { position: relative; overflow: hidden; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.feature::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--plum-600), var(--gold-500)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature:hover::before { transform: scaleX(1); }
.feature h3 { margin: 4px 0 8px; font-size: 20px; }
.feature p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.media-split--reverse > :first-child { order: 2; }
.stack-photos { position: relative; aspect-ratio: 1 / 1.02; }
.stack-photos .photo-card { position: absolute; aspect-ratio: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.stack-photos .photo-card:nth-child(1) { inset: 0 22% 20% 0; }
.stack-photos .photo-card:nth-child(2) { inset: 44% 0 0 36%; border: 6px solid var(--cream); }
.section--sand .stack-photos .photo-card:nth-child(2) { border-color: var(--sand); }
.badge-float { position: absolute; left: -8px; bottom: 7%; z-index: 2; padding: 16px 20px; border-radius: var(--radius); background: var(--gold-500); color: var(--plum-900); box-shadow: var(--shadow); animation: float 6s ease-in-out infinite; }
.badge-float b { display: block; font-family: var(--font-serif); font-size: 34px; line-height: 1; }
.badge-float span { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 900px) { .media-split { grid-template-columns: 1fr; } .media-split--reverse > :first-child { order: 0; } .stack-photos { width: 100%; max-width: 540px; } }

/* Timeline */
.timeline { --progress: 0; position: relative; max-width: 1060px; margin-inline: auto; }
.timeline::before, .timeline::after { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px; background: var(--line); }
.timeline::after { background: linear-gradient(var(--gold-500), var(--plum-600)); transform-origin: top; transform: scaleY(var(--progress)); }
.t-item { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; padding-block: 30px; }
.t-item::before { content: ""; position: absolute; left: 50%; top: 50%; z-index: 1; width: 20px; height: 20px; margin: -10px 0 0 -10px; border-radius: 50%; background: var(--cream); border: 3px solid var(--gold-500); box-shadow: 0 0 0 7px rgba(212, 162, 76, .16); }
.t-item:nth-child(even) .t-media { order: 2; }
.t-media { aspect-ratio: 4 / 3; }
.t-year { margin-bottom: 8px; font-family: var(--font-serif); font-size: clamp(46px, 5vw, 66px); font-weight: 600; line-height: 1; color: var(--plum-600); }
.t-year small { margin-left: 6px; font-family: var(--font-sans); font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); }
.t-body h3 { font-size: 25px; }
.t-body p { margin: 0; }
@media (max-width: 820px) {
  .timeline::before, .timeline::after { left: 12px; }
  .t-item { grid-template-columns: 1fr; gap: 18px; padding-left: 46px; }
  .t-item::before { left: 12px; top: 44px; }
  .t-item:nth-child(even) .t-media { order: 0; }
}

/* Pastor profile */
.profile { display: grid; grid-template-columns: minmax(220px, 300px) 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.profile-photo { position: relative; padding: 0 18px 18px 0; }
.profile-photo::before { content: ""; position: absolute; inset: 18px 0 0 18px; border: 2px solid var(--gold-500); border-radius: var(--radius-lg); }
.profile-photo img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: #fff; }
.name-plate { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.name-plate img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--gold-500); }
.name-plate strong { display: block; margin-bottom: 2px; font-family: var(--font-serif); font-size: 20px; font-weight: 600; line-height: 1.2; color: var(--ink); }
.name-plate span { display: block; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); }
.role-list + h3 { margin: 44px 0 18px; font-size: 26px; }

/* Layout helpers */
.split > aside { align-self: stretch; }
.photo-card--top img { object-position: center top; }
.photo-card--tall { aspect-ratio: 3 / 4; }
.stats-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (min-width: 521px) and (max-width: 900px) {
  .stats-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid--4 .stat:nth-child(3n+1)::before { display: block; }
  .stats-grid--4 .stat:nth-child(odd)::before { display: none; }
}
.callout-date > span { display: block; }
.callout-date .ico { width: 40px; height: 40px; margin-inline: auto; }
.role-list { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.role-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; transition: transform .4s var(--ease), box-shadow .4s; }
.role-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.role-list .icon-box { margin: 0; width: 42px; height: 42px; }
.role-list strong { display: block; color: var(--ink); }
.role-list span { font-size: 14.5px; color: var(--muted); }
@media (max-width: 900px) { .profile { grid-template-columns: 1fr; } .profile-photo { max-width: 330px; } }

/* Life groups */
.callout { position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--plum-800), var(--plum-600)); color: rgba(255, 255, 255, .82); }
.callout::after { content: ""; position: absolute; z-index: -1; width: 320px; height: 320px; right: -80px; bottom: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(212, 162, 76, .35), transparent 70%); }
.callout h3 { margin-bottom: 8px; font-size: clamp(22px, 2.6vw, 30px); color: #fff; }
.callout p { margin: 0; }
.callout-date { display: grid; place-items: center; width: 118px; height: 118px; border-radius: 22px; text-align: center; background: var(--gold-500); color: var(--plum-900); line-height: 1.1; }
.callout-date b { display: block; font-family: var(--font-serif); font-size: 40px; }
.callout-date small { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 600px) { .callout { grid-template-columns: 1fr; } }
.lg-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.search { position: relative; flex: 1; max-width: 440px; }
.search input { width: 100%; padding: 14px 18px 14px 48px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; font: inherit; font-size: 15px; color: var(--ink); transition: border-color .3s, box-shadow .3s; }
.search input:focus { outline: none; border-color: var(--plum-600); box-shadow: 0 0 0 4px rgba(123, 26, 92, .12); }
.search .ico { position: absolute; left: 18px; top: 50%; width: 18px; height: 18px; margin-top: -9px; color: var(--muted); }
.lg-count { font-size: 14px; color: var(--muted); }
.lg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.lg-card { display: flex; flex-direction: column; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.lg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.lg-num { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); }
.lg-card h3 { margin: 6px 0 12px; font-size: 23px; }
.lg-host { font-size: 15px; font-weight: 600; color: var(--ink); }
.lg-addr { margin: 4px 0 18px; font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.lg-leader { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line); font-size: 14px; }
.lg-leader strong { color: var(--ink); }
.lg-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--plum-100); color: var(--plum-600); font-weight: 700; font-size: 14px; }
.lg-actions { display: flex; gap: 8px; margin-top: 16px; }
.lg-actions .btn { flex: 1; }
.empty-state { padding: 48px; text-align: center; color: var(--muted); }

/* Gallery */
.g-tabs-wrap { position: sticky; top: 66px; z-index: 40; margin: 0 calc(-1 * var(--gutter)) 40px; padding-inline: var(--gutter); background: rgba(251, 248, 244, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.g-tabs { display: flex; gap: 8px; overflow-x: auto; padding: 14px 0; scrollbar-width: none; }
.g-tabs::-webkit-scrollbar { display: none; }
.g-tab-group { display: flex; flex: none; align-items: center; gap: 8px; }
.g-tab-group + .g-tab-group { margin-left: 6px; padding-left: 14px; border-left: 1px solid var(--line); }
.g-group-label { margin-right: 4px; white-space: nowrap; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.chip { flex: none; display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-size: 14px; font-weight: 500; white-space: nowrap; transition: background .3s, border-color .3s, color .3s; }
.chip:hover { border-color: var(--plum-600); color: var(--plum-600); }
.chip[aria-selected="true"], .chip.is-active { background: var(--plum-600); border-color: var(--plum-600); color: #fff; }
.chip .count { padding: 1px 7px; border-radius: 99px; background: var(--sand); color: var(--ink-2); font-size: 11.5px; }
.chip[aria-selected="true"] .count, .chip.is-active .count { background: rgba(255, 255, 255, .2); color: #fff; }
.album-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.album-head h2 { margin: 0; font-size: clamp(30px, 3.6vw, 44px); }
.album-desc { margin: 8px 0 0; color: var(--muted); }
.album-sub { display: flex; gap: 8px; flex-wrap: wrap; }
.masonry { columns: 4 240px; column-gap: 14px; }
.g-item { position: relative; display: block; overflow: hidden; margin: 0 0 14px; break-inside: avoid; border-radius: 14px; background: var(--sand); opacity: 0; animation: rise .7s var(--ease) forwards; animation-delay: calc(min(var(--i, 0), 24) * 35ms); }
.g-item img { width: 100%; height: auto; transition: transform .9s var(--ease); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28, 7, 23, .55), transparent 55%); opacity: 0; transition: opacity .4s; }
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }

/* Videos page */
.featured-video { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.featured-player { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); background: #000; box-shadow: var(--shadow-lg); }
.featured-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.featured-facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: #000; }
.featured-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform 1s var(--ease), opacity .4s; }
.featured-facade:hover img { transform: scale(1.04); opacity: .7; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 34px; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 32px 22px; }
.video-item { animation: rise .6s var(--ease) both; animation-delay: calc(min(var(--i, 0), 12) * 50ms); }
@media (max-width: 900px) { .featured-video { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.form-card { padding: clamp(24px, 4vw, 44px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: clamp(26px, 3vw, 34px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea { width: 100%; padding: 26px 16px 10px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream); font: inherit; font-size: 15.5px; color: var(--ink); transition: border-color .3s, box-shadow .3s, background .3s; }
.field textarea { min-height: 150px; resize: vertical; }
.field label { position: absolute; left: 17px; top: 18px; pointer-events: none; font-size: 15px; color: var(--muted); transition: top .25s var(--ease), font-size .25s var(--ease), color .25s, letter-spacing .25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--plum-600); background: #fff; box-shadow: 0 0 0 4px rgba(123, 26, 92, .1); }
.field input:focus + label, .field input:not(:placeholder-shown) + label, .field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: 8px; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--plum-600); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #B3261E; }
.form-note { margin: 16px 0 0; font-size: 13px; color: var(--muted); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 22px; }
.contact-side { display: grid; gap: 16px; }
.c-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s var(--ease), box-shadow .35s; }
.c-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.c-card .icon-box { margin: 0; }
.c-card strong { display: block; margin-bottom: 2px; color: var(--ink); }
.c-card p { margin: 0; font-size: 15px; }
.bank-card { position: relative; isolation: isolate; overflow: hidden; padding: 28px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--plum-800), var(--plum-600)); color: rgba(255, 255, 255, .85); }
.bank-card::after { content: ""; position: absolute; z-index: -1; width: 240px; height: 240px; right: -70px; top: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(212, 162, 76, .4), transparent 70%); }
.bank-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; font-size: 22px; color: #fff; }
.bank-card dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; margin: 18px 0 0; font-size: 14.5px; }
.bank-card dt { color: rgba(255, 255, 255, .62); }
.bank-card dd { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }
.copy-btn { padding: 2px 9px; border: 0; border-radius: 6px; background: rgba(255, 255, 255, .16); color: #fff; font-size: 11.5px; font-weight: 600; transition: background .3s, color .3s; }
.copy-btn:hover { background: var(--gold-500); color: var(--plum-900); }
.map-embed { position: relative; overflow: hidden; min-height: 340px; aspect-ratio: 21 / 8; margin-top: clamp(40px, 6vw, 64px); border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--sand); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } .bank-card dl { grid-template-columns: 1fr; gap: 2px; } .bank-card dd { margin-bottom: 8px; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 500; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; background: rgba(18, 5, 15, .95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; transition: opacity .35s var(--ease); }
.lightbox.is-open { opacity: 1; }
.lb-top { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; font-size: 14px; color: rgba(255, 255, 255, .75); font-variant-numeric: tabular-nums; }
.lb-stage { position: relative; display: grid; place-items: center; min-height: 0; margin: 0; padding: 0 clamp(12px, 8vw, 110px); }
.lb-stage img { max-width: 100%; max-height: calc(100svh - 150px); width: auto; height: auto; border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); animation: lbIn .5s var(--ease) both; }
.lb-stage img.is-loading { opacity: 0; }
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lb-video { width: min(100%, 1120px, calc((100svh - 170px) * 16 / 9)); aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; background: #000; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); animation: lbIn .5s var(--ease) both; }
.lb-video iframe { display: block; width: 100%; height: 100%; border: 0; }
.lb-spinner { position: absolute; left: 50%; top: 50%; width: 42px; height: 42px; margin: -21px 0 0 -21px; border-radius: 50%; border: 3px solid rgba(255, 255, 255, .2); border-top-color: var(--gold-500); animation: spin .8s linear infinite; }
.lb-bottom { min-height: 60px; padding: 14px 20px 22px; text-align: center; font-size: 15px; color: rgba(255, 255, 255, .85); }
.lb-bottom p { margin: 0; }
.lb-prev, .lb-next { position: absolute; top: 50%; margin-top: -26px; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
body.lb-open { overflow: hidden; }
@media (max-width: 640px) { .lb-prev, .lb-next { top: auto; bottom: 14px; margin-top: 0; } .lb-bottom { padding-inline: 72px; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js-ready [data-reveal] { opacity: 1; transform: none; }
  .js-ready [data-split] .w > span { transform: none; }
  .hero-media img { transform: none !important; }
  .marquee { overflow-x: auto; }
  .marquee-row { animation: none !important; }
}
