/* ============================================================
   Église Pentecôte de la Dernière Heure
   Brand: burgundy (#7A0019) + antique gold + cream
   ============================================================ */

:root {
    --burgundy:      #7A0019;
    --burgundy-deep: #5a0013;
    --burgundy-dark: #3d000d;
    --gold:          #c39a4d;
    --gold-light:    #e3c67e;
    --gold-soft:     #d8b877;
    --cream:         #fbf6ee;
    --cream-2:       #f4ebdd;
    --ink:           #2a1216;
    --ink-soft:      #5b4a4d;
    --white:         #ffffff;

    --shadow-sm: 0 2px 8px rgba(61, 0, 13, 0.06);
    --shadow-md: 0 10px 30px rgba(61, 0, 13, 0.10);
    --shadow-lg: 0 24px 60px rgba(61, 0, 13, 0.18);

    --radius:    14px;
    --radius-lg: 22px;
    --maxw:      1180px;

    --serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: var(--burgundy); text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.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: 12px; top: -60px; z-index: 200;
    background: var(--burgundy); color: #fff; padding: 10px 18px; border-radius: 8px;
    transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- icons ---------- */
.icon { width: 24px; height: 24px; }
.i-sm { width: 19px; height: 19px; }
.i-xs { width: 15px; height: 15px; vertical-align: middle; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--sans); font-weight: 600; font-size: 15.5px;
    letter-spacing: .01em; padding: 15px 30px; border-radius: 999px;
    border: 1.5px solid transparent; cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
    text-align: center;
}
.btn .icon { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: var(--burgundy-dark); box-shadow: 0 8px 22px rgba(195,154,77,.35); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(195,154,77,.45); }
.btn-burgundy { background: var(--burgundy); color: #fff; }
.btn-burgundy:hover { background: var(--burgundy-deep); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: rgba(255,255,255,.65); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color:#fff; transform: translateY(-3px); }
.btn-ghost { border-color: var(--burgundy); color: var(--burgundy); }
.btn-ghost:hover { background: var(--burgundy); color:#fff; transform: translateY(-3px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    background: rgba(61, 0, 13, 0.0);
    transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
    padding: 6px 0;
}
.site-header.scrolled {
    background: rgba(58, 0, 12, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0,0,0,.22);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(227,198,126,.6); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 20px; color: #fff; letter-spacing: .01em; }
.brand-sub  { font-family: var(--serif); font-size: 14.5px; color: var(--gold-light); letter-spacing: .02em; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a {
    color: rgba(255,255,255,.9); font-weight: 500; font-size: 15px;
    padding: 10px 14px; border-radius: 8px; position: relative; transition: color .2s;
}
.nav-menu > li > a::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-menu > li > a:hover { color: #fff; }
.nav-menu > li > a:hover::after,
.nav-menu > li > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-menu > li > a[aria-current="page"] { color: var(--gold-light); }
.nav-cta-item { margin-left: 8px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle-bar { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle-bar + .nav-toggle-bar { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100svh; display: flex; align-items: center;
    color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(40,0,9,.55) 0%, rgba(40,0,9,.30) 40%, rgba(58,0,12,.85) 100%),
        radial-gradient(120% 90% at 15% 20%, rgba(61,0,13,.35), transparent 60%);
}
.hero-inner { padding: 130px 0 90px; max-width: 780px; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans);
    font-size: 13.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 22px;
}
.hero-eyebrow::before { content:""; width: 34px; height: 1.5px; background: var(--gold); display:inline-block; }
.hero h1 {
    font-size: clamp(2.7rem, 6.2vw, 5rem); color: #fff; font-weight: 600;
    letter-spacing: -0.01em; margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero h1 .accent { color: var(--gold-light); font-style: italic; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.92); max-width: 620px; margin-bottom: 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.5); border-radius: 12px; position: relative; }
.hero-scroll span::after {
    content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:3px; height:7px;
    background: var(--gold-light); border-radius: 2px; animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0; transform:translate(-50%,0);} 40%{opacity:1;} 80%{opacity:0; transform:translate(-50%,10px);} 100%{opacity:0;} }

/* ============================================================
   SECTIONS / SHARED
   ============================================================ */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-cream { background: var(--cream); }
.section-cream2 { background: var(--cream-2); }
.section-burgundy { background: var(--burgundy-dark); color: var(--cream); }
.section-burgundy h2, .section-burgundy h3 { color: #fff; }

.eyebrow {
    display: inline-block; font-family: var(--sans); font-size: 13px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 14px;
}
.section-burgundy .eyebrow { color: var(--gold-light); }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -0.01em; }
.section-intro { margin-top: 16px; color: var(--ink-soft); font-size: 1.12rem; }
.section-burgundy .section-intro { color: rgba(255,255,255,.8); }
.divider-dove { display:flex; align-items:center; justify-content:center; gap:14px; margin: 18px 0 0; color: var(--gold); }
.divider-dove::before, .divider-dove::after { content:""; height:1px; width:60px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-dove::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- welcome / intro split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 76px); align-items: stretch; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
    width: 100%; height: 100%; min-height: 320px; max-height: 560px;
    object-fit: cover; object-position: center;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.split-media .badge {
    position: absolute; bottom: -22px; right: -14px; background: var(--burgundy); color: #fff;
    padding: 18px 24px; border-radius: var(--radius); box-shadow: var(--shadow-md); text-align: center;
    border: 1.5px solid rgba(227,198,126,.4);
}
.split-media .badge strong { font-family: var(--serif); font-size: 1.5rem; display: block; color: var(--gold-light); }
.split-media .badge span { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.split-body h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 20px; }
.split-body p { color: var(--ink-soft); margin-bottom: 18px; }
.split-body .btn { margin-top: 12px; }
.lead-para { font-size: 1.18rem; color: var(--ink) !important; font-family: var(--serif); font-style: italic; }

/* ---------- slideshow strip (below welcome) ---------- */
.strip { display: grid; grid-auto-flow: column; gap: 16px; grid-auto-columns: minmax(230px, 1fr);
    overflow-x: auto; padding: 6px 4px 20px; scroll-snap-type: x mandatory; }
.strip::-webkit-scrollbar { height: 8px; }
.strip::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 8px; }
.strip-item { scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.strip-item:hover img { transform: scale(1.06); }

/* ---------- cards grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff; border-radius: var(--radius-lg); padding: 34px 28px;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(122,0,25,.06);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon {
    width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep)); color: var(--gold-light);
    margin-bottom: 20px;
}
.card-icon .icon { width: 28px; height: 28px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- service / schedule ---------- */
.schedule { display: grid; gap: 16px; }
.svc {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
    background: #fff; border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold); transition: transform .25s var(--ease), box-shadow .25s;
}
.svc:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.svc-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--cream-2); color: var(--burgundy); display: grid; place-items: center; }
.svc-main h3 { font-size: 1.28rem; margin-bottom: 3px; }
.svc-main p { color: var(--ink-soft); font-size: .96rem; }
.svc-when { text-align: right; }
.svc-day { font-weight: 700; color: var(--burgundy); font-size: 1rem; }
.svc-time { color: var(--ink-soft); font-size: .92rem; white-space: nowrap; }
.svc .tbc { font-size: 11px; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; display:block; }

/* ============================================================
   SCRIPTURE band
   ============================================================ */
.scripture { text-align: center; position: relative; }
.scripture .quote-mark { color: var(--gold); opacity: .5; margin: 0 auto 8px; width: 46px; height: 46px; }
.scripture blockquote {
    font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.9rem); font-weight: 500;
    line-height: 1.3; color: #fff; max-width: 900px; margin: 0 auto 22px; font-style: italic;
}
.scripture cite { color: var(--gold-light); font-style: normal; letter-spacing: .12em; text-transform: uppercase; font-size: .95rem; font-family: var(--sans); font-weight: 600; }

/* ============================================================
   LEADERS
   ============================================================ */
.leader { background:#fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s; }
.leader:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.leader-photo { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--burgundy), var(--burgundy-dark)); position: relative; overflow: hidden; }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.leader-photo.noimg { display: grid; place-items: center; }
.leader-photo .initials { font-family: var(--serif); font-size: 4rem; color: var(--gold-light); }
.leader-photo .noimg-tag { position:absolute; bottom:14px; left:0; right:0; text-align:center; color: rgba(255,255,255,.7); font-size: 12px; letter-spacing:.1em; text-transform:uppercase; }
.leader-body { padding: 24px 26px 30px; }
.leader-body h3 { font-size: 1.5rem; }
.leader-role { color: var(--gold); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: 6px 0 14px; }
.leader-body p { color: var(--ink-soft); font-size: .98rem; }

.leader-feature { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: start;
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.leader-feature .lf-photo { min-height: 100%; background: linear-gradient(160deg, var(--burgundy), var(--burgundy-dark)); position: relative; display:grid; place-items:center; }
.leader-feature .lf-photo .initials { font-family: var(--serif); font-size: 6rem; color: var(--gold-light); }
.leader-feature .lf-photo img { width:100%; height:100%; object-fit: cover; }
.leader-feature .lf-body { padding: 40px 44px 40px 0; }
.leader-feature h3 { font-size: 2rem; }
.leader-feature .leader-role { font-size: .9rem; }
.leader-feature p { margin-bottom: 16px; }
.leader-quote { border-left: 3px solid var(--gold); padding: 6px 0 6px 22px; margin-top: 22px;
    font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--burgundy); }

.board-list { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.board-chip { background:#fff; border-radius: 999px; padding: 14px 26px 14px 16px; display:flex; align-items:center; gap: 14px; box-shadow: var(--shadow-sm); }
.board-chip .bc-ini { width: 44px; height: 44px; border-radius: 50%; background: var(--burgundy); color: var(--gold-light); display:grid; place-items:center; font-family: var(--serif); font-size: 1.2rem; }
.board-chip strong { display:block; font-size: 1.05rem; }
.board-chip span { font-size: .8rem; color: var(--ink-soft); letter-spacing:.1em; text-transform: uppercase; }

/* ============================================================
   MEDIA / VIDEO
   ============================================================ */
.video-feature { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background:#000; aspect-ratio: 16/9; position: relative; }
.video-feature video { width: 100%; height: 100%; object-fit: cover; }
.video-grid { margin-top: 30px; }
.video-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background:#000; aspect-ratio: 16/9; position: relative; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.video-embed .yt-facade { position:absolute; inset:0; cursor:pointer; display:grid; place-items:center; border:0; width:100%; background-size:cover; background-position:center; }
.video-embed .yt-facade::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(40,0,9,.15), rgba(40,0,9,.55)); }
.yt-play { position: relative; width: 74px; height: 74px; border-radius: 50%; background: rgba(122,0,25,.92); display:grid; place-items:center; box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .3s var(--ease); }
.video-embed:hover .yt-play { transform: scale(1.1); }
.yt-play svg { width: 30px; height: 30px; color: #fff; margin-left: 3px; }
.video-cap { margin-top: 14px; font-weight: 600; color: var(--ink); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { columns: 4; column-gap: 16px; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; position: relative; display:block; width:100%; border:0; padding:0; background:none; }
.gallery-grid .g-item img { width: 100%; transition: transform .6s var(--ease); }
.gallery-grid .g-item::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(61,0,13,.4)); opacity:0; transition: opacity .3s; }
.gallery-grid .g-item:hover img { transform: scale(1.07); }
.gallery-grid .g-item:hover::after { opacity: 1; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(30,0,7,.92); backdrop-filter: blur(6px);
    display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; width: 54px; height: 54px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 20px; right: 20px; font-size: 26px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-prev svg { transform: rotate(180deg); }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-list { display: grid; gap: 20px; margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ii-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--burgundy); color: var(--gold-light); display: grid; place-items: center; flex: none; }
.info-item h4 { font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 3px; }
.info-item p { font-size: 1.08rem; color: var(--ink); }
.placeholder-val { color: var(--gold); font-style: italic; }

.form { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 8px; }
.field input, .field textarea, .field select {
    width: 100%; font-family: var(--sans); font-size: 16px; padding: 14px 16px;
    border: 1.5px solid rgba(122,0,25,.18); border-radius: 10px; background: var(--cream);
    transition: border-color .2s, box-shadow .2s; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(122,0,25,.12); background:#fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.form-alert { padding: 16px 18px; border-radius: 10px; margin-bottom: 22px; font-size: .96rem; }
.form-alert.ok { background: #e9f6ec; color: #1c6b34; border: 1px solid #bfe4c8; }
.form-alert.err { background: #fdecec; color: #a12020; border: 1px solid #f3c9c9; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 34px; aspect-ratio: 21/9; background: var(--cream-2); display:grid; place-items:center; text-align:center; padding: 30px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { color: var(--ink-soft); }
.map-placeholder .icon { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 10px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { position: relative; padding: 160px 0 70px; color: #fff; text-align: center; overflow: hidden; }
.page-hero::before { content:""; position: absolute; inset: 0; z-index:-2; background: linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-dark) 100%); }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; opacity:.14;
    background-image: radial-gradient(circle at 20% 30%, var(--gold) 0, transparent 8%), radial-gradient(circle at 80% 60%, var(--gold) 0, transparent 9%); }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.6rem); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 620px; margin: 16px auto 0; font-size: 1.12rem; }
.breadcrumb { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-light); opacity: .8; }

/* ---------- values / beliefs list ---------- */
.beliefs { display: grid; gap: 18px; }
.belief { display: flex; gap: 18px; align-items: flex-start; background:#fff; border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.belief .b-num { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); line-height: 1; flex: none; width: 40px; }
.belief h3 { font-size: 1.25rem; margin-bottom: 6px; }
.belief p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color:#fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 30px; font-size: 1.12rem; }
.cta-band .hero-cta { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--burgundy-dark); color: rgba(255,255,255,.78); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { border-radius: 50%; box-shadow: 0 0 0 2px rgba(227,198,126,.4); margin-bottom: 16px; }
.footer-name { color: #fff; font-size: 1.35rem; margin-bottom: 10px; }
.footer-tag { font-size: .96rem; margin-bottom: 18px; max-width: 300px; }
.footer-verse { font-family: var(--serif); font-style: italic; color: var(--gold-light); font-size: 1.05rem; }
.footer-verse span { display: block; font-size: .82rem; letter-spacing: .1em; opacity: .8; font-style: normal; margin-top: 4px; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,.75); transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-services li { margin-bottom: 13px; }
.footer-services .fs-name { display: block; color: #fff; font-weight: 600; font-size: .96rem; }
.footer-services .fs-time { font-size: .84rem; color: rgba(255,255,255,.6); }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact .i-sm { color: var(--gold); flex: none; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--gold); color: var(--burgundy-dark); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .85rem; }
.footer-madewith { display: flex; align-items: center; gap: 6px; }
.footer-madewith .i-xs { color: var(--gold); }

/* ---------- to-top ---------- */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 48px; height: 48px; border-radius: 50%;
    background: var(--burgundy); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center;
    box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px) rotate(-90deg);
    transition: opacity .3s, visibility .3s, transform .3s, background .2s; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0) rotate(-90deg); }
.to-top:hover { background: var(--burgundy-deep); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .gallery-grid { columns: 3; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .nav-toggle { display: block; z-index: 120; }
    .nav-menu {
        position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column;
        align-items: stretch; gap: 0; background: var(--burgundy-dark); padding: 100px 26px 40px;
        transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: -20px 0 50px rgba(0,0,0,.3);
        overflow-y: auto;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu > li > a { display: block; padding: 15px 6px; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .nav-menu > li > a::after { display: none; }
    .nav-cta-item { margin: 20px 0 0; }
    .nav-cta-item .btn { width: 100%; justify-content: center; padding: 15px; }
    .site-header:not(.scrolled) { background: rgba(58,0,12,.4); }
    .nav-backdrop { position: fixed; inset: 0; background: rgba(20,0,5,.5); z-index: 90; opacity: 0; visibility: hidden; transition: opacity .3s; }
    .nav-backdrop.show { opacity: 1; visibility: visible; }

    .split { grid-template-columns: 1fr; gap: 40px; }
    .split.rev .split-media { order: 0; }
    .split-media img { height: auto; min-height: 0; max-height: none; aspect-ratio: 4 / 3; }
    .split-media .badge { right: 16px; bottom: -18px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .leader-feature { grid-template-columns: 1fr; }
    .leader-feature .lf-photo { aspect-ratio: 4/3; min-height: auto; }
    .leader-feature .lf-body { padding: 30px 28px; }
    .contact-grid { grid-template-columns: 1fr; gap: 34px; }
    .video-grid.grid-2 { grid-template-columns: 1fr; }
    .gallery-grid { columns: 2; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .svc { grid-template-columns: auto 1fr; }
    .svc-when { grid-column: 2; text-align: left; margin-top: 4px; }
}
@media (max-width: 520px) {
    body { font-size: 16px; }
    .container { padding: 0 18px; }
    .brand-name { font-size: 17px; } .brand-sub { font-size: 12.5px; }
    .brand-logo { width: 46px; height: 46px; }
    .hero-inner { padding: 120px 0 90px; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .card { padding: 28px 22px; }
    .gallery-grid { columns: 1; }
    .grid-4 { grid-template-columns: 1fr; }
    .form { padding: 26px 20px; }
    .leader-feature .lf-photo .initials { font-size: 4rem; }
}

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