/* ============================================================
   Life Changing Faith Center, Inc. (LCFC)
   Lauderdale Lakes / Fort Lauderdale, FL
   ------------------------------------------------------------
   Built on the JX house architecture, but this is a CHURCH, not
   a trade site. The structure carries over; the conversion
   framing does not. No "free estimate", no licence strip, no
   urgency language. See README.md.

   Palette and type follow the client's own artwork: deep maroon,
   rich gold and parchment, classical Roman capitals with a
   script accent — the exact register of their banners and
   flyers. Values were read off the artwork and MUST be
   re-sampled once logo.jpg is saved to this folder.
   ============================================================ */

:root {
    /* --- brand: SAMPLED from logo.jpg (the profile-picture emblem) --- */
    --brand-dark: #603612;         /* brown — 244,052px, the dominant colour */
    --brand-deep: #351d08;         /* deepened for section grounds */
    --brand-mid: #7a4a1c;          /* lifted brown — hovers */
    --brand-accent: #c68418;       /* the gold of the globe and cross */
    --brand-accent-light: #eac066; /* sampled highlight gold, for text on dark */
    --brand-black: #1a0e04;        /* near-black brown */

    --off-white: #fdf9f2;          /* cream */
    --warm-tint: #f5ecdc;          /* parchment — their banner ground */
    --white: #ffffff;
    --text: #2b1a0c;
    --text-muted: #6b5a48;
    --border: rgba(96, 54, 18, 0.16);
    --shadow: 0 12px 40px rgba(53, 29, 8, 0.16);
    --shadow-sm: 0 4px 16px rgba(53, 29, 8, 0.09);
    --radius: 5px;

    /* Cinzel matches the Roman capitals on their banner; Great Vibes
       matches the script on the ministry flyer; Lora keeps body copy
       in the same warm serif register instead of a cold UI sans. */
    --font-display: 'Cinzel', Georgia, 'Times New Roman', serif;
    --font-script: 'Great Vibes', 'Snell Roundhand', cursive;
    --font-body: 'Lora', Georgia, 'Times New Roman', serif;

    --container-max: 75rem;
    --container-pad: clamp(1rem, 2.5vw, 1.75rem);
    --section-padding: clamp(3.5rem, 6vw, 5.5rem);
    --fluid-body: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
    --fluid-lead: clamp(1rem, 0.95rem + 0.35vw, 1.2rem);
    --fluid-h2: clamp(1.75rem, 1.4rem + 1.4vw, 2.6rem);
    --grid-gap: clamp(0.75rem, 1.5vw, 1.5rem);
    --grid-gap-lg: clamp(1.25rem, 2.5vw, 2.5rem);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: var(--fluid-body);
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 3px;
}

/* ---------- layout primitives ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-padding); }
.section-light { background: var(--off-white); }
.section-warm { background: var(--warm-tint); }

/* ---------- section helpers ---------- */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1.6vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 0.75rem;
}

.section-label-light { color: var(--brand-accent-light); }

.section-title {
    font-family: var(--font-display);
    font-size: var(--fluid-h2);
    font-weight: 700;
    line-height: 1.14;
    color: var(--brand-deep);
    letter-spacing: -0.01em;
}

.section-title-light { color: var(--white); }
.section-title em { font-style: italic; color: var(--brand-accent); }

.title-underline {
    width: 3.5rem;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 2px;
    margin: 1.1rem auto 1.4rem;
}

.title-underline-left { margin-inline: 0; }

.section-head {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.section-lead {
    font-size: var(--fluid-lead);
    color: var(--text-muted);
    line-height: 1.75;
}

.section-lead-light { color: rgba(255, 255, 255, 0.82); }

.icon-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(198, 132, 24, 0.14);
    color: var(--brand-accent);
    flex-shrink: 0;
}

.icon-mark svg { width: 1.5rem; height: 1.5rem; }
.icon-mark--lg { width: 3.6rem; height: 3.6rem; }
.icon-mark--lg svg { width: 1.8rem; height: 1.8rem; }

.icon-mark--tile {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: var(--radius);
    background: rgba(198, 132, 24, 0.18);
    color: var(--brand-accent-light);
}

/* Script accent — matches the hand-lettered flourish the client uses
   on their flyers ("Kick Off", "In You!"). Decorative only: never put
   information in it that isn't also stated in plain type. */
.script {
    font-family: var(--font-script);
    font-weight: 400;
    color: var(--brand-accent);
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.script-lg {
    font-size: clamp(2rem, 5vw, 3.2rem);
    display: block;
    padding-block: 0.15em 0.05em;
}

/* Ornamental gold rule with a centred diamond, as on their banner. */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.1rem auto 1.4rem;
    max-width: 16rem;
    color: var(--brand-accent);
}

.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, currentColor, transparent);
}

.ornament span { font-size: 0.7rem; line-height: 1; }

.ornament-light { color: var(--brand-accent-light); }

/* Temporary emblem until logo.jpg arrives — a gold cross on maroon.
   Delete this rule and the inline SVG once the real logo is in. */
.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--brand-dark), var(--brand-deep));
    color: var(--brand-accent);
}

.logo-placeholder svg { width: 58%; height: 58%; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.7rem;
    min-height: 2.9rem;
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary { background: var(--brand-accent); color: var(--brand-deep); }
.btn-primary:hover { background: var(--brand-accent-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-accent { background: var(--brand-dark); color: var(--white); }
.btn-accent:hover { background: var(--brand-mid); transform: translateY(-2px); }

.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
.btn-secondary:hover { background: var(--white); color: var(--brand-deep); border-color: var(--white); }

.btn-sm { padding: 0.6rem 1.1rem; min-height: 2.4rem; font-size: clamp(0.78rem, 1.6vw, 0.85rem); }
.btn-block { width: 100%; }

.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;
}

/* Unfilled client facts. Loud on purpose — must never ship. */
.placeholder {
    background: #ffe8a3;
    color: #6b4a00;
    font-weight: 700;
    padding: 0 0.35em;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px #d4a017;
}

/* ---------- header ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(53, 29, 8, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.85rem;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    /* The logo ships on its own black ground and the wordmark runs the
       full width, so a circular white plate would both clash and clip
       "LIFE CHANGING FAITH CENTER". Square plate, contain, its own black. */
    width: clamp(3.2rem, 8.5vw, 4.1rem);
    height: clamp(3.2rem, 8.5vw, 4.1rem);
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    padding: 0.2rem;
    box-shadow: 0 3px 14px rgba(53, 29, 8, 0.4);
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: 4px; }

.logo-text { display: flex; flex-direction: column; line-height: 1.12; }

.logo-name {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.6vw, 1.3rem);
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.logo-tag {
    font-size: clamp(0.58rem, 1.6vw, 0.7rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    transition: var(--transition);
}

.header.scrolled .logo-name { color: var(--brand-deep); }
.header.scrolled .logo-tag { color: var(--text-muted); }

.nav-list { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 1.9rem); }

.nav-link {
    position: relative;
    font-size: clamp(0.8rem, 1.7vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    padding-block: 0.35rem;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--brand-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header.scrolled .nav-link { color: var(--text); }
.header.scrolled .nav-link.active { color: var(--brand-dark); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.header.scrolled .header-actions .btn-secondary {
    color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.header.scrolled .header-actions .btn-secondary:hover {
    background: var(--brand-dark);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.9rem;
    height: 2.9rem;
    align-items: center;
}

.hamburger {
    display: block;
    width: 1.55rem;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .hamburger { background: var(--brand-deep); }

/* Close button. The house template styles this but never un-hides it —
   `.nav.active .nav-close` in the responsive block is what fixes that. */
.nav-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    align-self: flex-end;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--white);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

/* Subpages: the header sits on a dark subhero, so it needs the solid
   treatment from scroll position zero rather than the transparent state. */
.header.header-solid { background: var(--white); box-shadow: 0 2px 20px rgba(53, 29, 8, 0.1); }
.header.header-solid .logo-name { color: var(--brand-deep); }
.header.header-solid .logo-tag { color: var(--text-muted); }
.header.header-solid .nav-link { color: var(--text); }
.header.header-solid .hamburger { background: var(--brand-deep); }
.header.header-solid .header-actions .btn-secondary { color: var(--brand-dark); border-color: var(--brand-dark); }
.header.header-solid .header-actions .btn-secondary:hover { background: var(--brand-dark); color: var(--white); }

/* ---------- hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background: url('hero-church.jpg') center 50% / cover no-repeat;
}

.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 42%, rgba(96, 54, 18, 0.34) 0%, transparent 62%),
        linear-gradient(rgba(20, 11, 4, 0.84) 0%, rgba(20, 11, 4, 0.76) 45%, rgba(20, 11, 4, 0.9) 100%);
}

.hero-swoosh { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero-swoosh svg { width: 100%; height: clamp(45px, 6vw, 90px); display: block; }

.hero .container { position: relative; z-index: 2; }

/* Centred, symmetrical hero — the logo is the anchor and everything
   stacks under it. Trade sites left-align; a church reads better centred. */
.hero-layout {
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
    padding-block: clamp(6.5rem, 13vw, 9rem) clamp(4.5rem, 8vw, 6.5rem);
}

/* Cut out of its white ground, so it sits directly on the hero photograph.
   A drop-shadow filter follows the emblem's silhouette; box-shadow would draw
   a rectangle around a transparent PNG. */
.hero-logo {
    display: block;
    width: clamp(11rem, 28vw, 18rem);
    height: auto;
    margin: 0 auto 1.4rem;
    /* The emblem's wordmark is dark brown; on a dark hero it disappears.
       A warm light halo separates it from the background without recolouring
       the client's logo, which is not ours to change. */
    filter:
        drop-shadow(0 0 1px rgba(255, 244, 224, 0.9))
        drop-shadow(0 0 14px rgba(255, 238, 205, 0.55))
        drop-shadow(0 0 34px rgba(255, 232, 190, 0.32))
        drop-shadow(0 12px 28px rgba(0, 0, 0, 0.6));
}

.hero-kicker {
    font-size: clamp(0.72rem, 1.8vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-accent-light);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 1.4rem + 4.4vw, 4.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.hero-title em { font-style: italic; color: var(--brand-accent-light); }

.hero-subtitle {
    font-size: clamp(1rem, 0.95rem + 0.4vw, 1.22rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-inline: auto;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

.hero-verse {
    margin: 2.4rem auto 0;
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.74);
    border-top: 1px solid rgba(198, 132, 24, 0.45);
    padding-top: 1.2rem;
    max-width: 30rem;
}

.hero-verse cite {
    display: block;
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-accent-light);
    margin-top: 0.5rem;
}

/* ---------- service times strip ---------- */
/* Trade sites put licences here. A church puts the two things a
   visitor actually came for: when you meet, and where you are. */
.times-strip {
    background: var(--brand-deep);
    padding-block: clamp(1.6rem, 3vw, 2.4rem);
}

.times-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.times-stat {
    text-align: center;
    padding-inline: 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.times-stat:last-child { border-right: none; }

.times-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.4vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.times-label {
    display: block;
    margin-top: 0.35rem;
    font-size: clamp(0.66rem, 1.5vw, 0.76rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-accent-light);
}

/* ---------- ministry pills ---------- */
.ministry-pills { background: var(--warm-tint); padding-block: clamp(1.1rem, 2.2vw, 1.5rem); }

.ministry-pills-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.ministry-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.05rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: clamp(0.76rem, 1.6vw, 0.86rem);
    font-weight: 600;
    color: var(--brand-dark);
}

/* ---------- welcome / about ---------- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-block: 1.5rem; }

.about-tags li {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(198, 132, 24, 0.14);
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 600;
}

.about-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.3rem;
    border-radius: var(--radius);
    background: var(--off-white);
    border-left: 4px solid var(--brand-accent);
    margin-bottom: 1.5rem;
}

.about-chip-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-chip-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    font-weight: 700;
    color: var(--brand-deep);
}

.about-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.about-photo-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.5rem 1.25rem 1rem;
    background: linear-gradient(to top, rgba(20, 11, 4, 0.88), transparent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---------- pastors ---------- */
/* They are photographed together, cheek to cheek — there is no way to crop two
   separate portraits without cutting into the other person's face. One shared
   photo, gold-framed to match the emblem, with the two roles beneath it. */
.pastors-photo {
    /* Sized to the photo, not the other way round. The studio portrait Leo
       supplied is only 262x266 (the largest copy that exists), so a 46rem frame
       would upscale it ~2.8x and look soft. 16.5rem displays it at roughly its
       native size and stays crisp on retina. Widen this the day a full-res
       original turns up. */
    max-width: 16.5rem;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--brand-accent);
    box-shadow: 0 16px 44px rgba(53, 29, 8, 0.3);
    background: var(--brand-deep);
}

.pastors-photo img { width: 100%; height: auto; display: block; }

.pastors-photo figcaption {
    padding: 0.85rem 1rem;
    background: var(--brand-deep);
    color: var(--brand-accent-light);
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 700;
    text-align: center;
}

.pastor-card { padding-top: 0.5rem; }


/* Gold-ringed oval portraits, as on the client's own "Join Us" flyer. */
.pastors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
    max-width: 46rem;
    margin-inline: auto;
}

.pastor-card { text-align: center; }

.pastor-portrait {
    width: clamp(11rem, 26vw, 15rem);
    aspect-ratio: 1 / 1.12;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(150deg, var(--brand-dark), var(--brand-deep));
    border: 4px solid var(--brand-accent);
    box-shadow: 0 10px 34px rgba(53, 29, 8, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 0.8rem;
    color: var(--brand-accent-light);
}

/* A real photo fills the ring edge to edge — the padding above is only for
   the placeholder state. */
.pastor-portrait:has(img) { padding: 0; }
.pastor-portrait img { width: 100%; height: 100%; object-fit: cover; }

.pastor-name {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.6vw, 1.45rem);
    font-weight: 700;
    color: var(--brand-deep);
}

.pastor-role {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-top: 0.2rem;
}

.pastor-detail {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.pastor-detail strong { color: var(--brand-dark); }

/* ---------- ministry team ---------- */
/* Devon, Valarie and Casilda came with full bios rather than service times, so
   these cards are left-aligned prose under the same gold ring the Halls use. */
.team-head {
    text-align: center;
    margin-top: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.team-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 1.15rem + 1.05vw, 2.05rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.08;
    color: var(--brand-deep);
}

.team-title em { font-style: normal; color: var(--brand-accent); }

.leader-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
    align-items: stretch;
}

.leader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.4vw, 1.85rem)
             clamp(1.75rem, 3vw, 2.25rem);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Narrower ring than the Halls' cards — three across, not two. */
.leader-card .pastor-portrait {
    width: clamp(8.5rem, 15vw, 10.5rem);
    aspect-ratio: 1 / 1;
    margin-bottom: 1.1rem;
}

.leader-monogram {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--brand-accent-light);
}

.leader-bio {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.leader-bio p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ---------- ministries ---------- */
.ministries {
    background: linear-gradient(150deg, var(--brand-deep) 0%, var(--brand-dark) 100%);
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap-lg);
}

.ministry-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.ministry-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
    border-color: rgba(198, 132, 24, 0.4);
}

.ministry-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.35rem);
    font-weight: 700;
    color: var(--white);
}

.ministry-card p { color: rgba(255, 255, 255, 0.76); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }

.cta-band-bg {
    position: absolute; inset: 0;
    background: url('cta-church.jpg') center 50% / cover no-repeat fixed;
}

.cta-band-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(rgba(20, 11, 4, 0.9), rgba(96, 54, 18, 0.82));
}

.cta-band-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 44rem;
    margin-inline: auto;
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.cta-band-title {
    font-family: var(--font-display);
    font-size: var(--fluid-h2);
    font-weight: 700;
    line-height: 1.14;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-band-text {
    font-size: var(--fluid-lead);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.cta-band-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; }

/* Their own invitation copy, set as a pull quote on the CTA band. */
.cta-verse {
    max-width: 34rem;
    margin: 1.75rem auto;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(198, 132, 24, 0.45);
    border-bottom: 1px solid rgba(198, 132, 24, 0.45);
}

.cta-verse p {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(1.02rem, 2.2vw, 1.22rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.94);
}

.cta-verse cite {
    display: block;
    margin-top: 0.7rem;
    font-style: normal;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-accent-light);
}

.cta-band-when { font-size: 1rem; margin-bottom: 2rem; }
.cta-band-when strong { color: var(--brand-accent-light); }

/* ---------- what to expect ---------- */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap-lg);
}

.expect-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: clamp(1.4rem, 2.6vw, 1.9rem);
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.expect-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.expect-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.2vw, 1.22rem);
    font-weight: 700;
    color: var(--brand-deep);
}

.expect-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- events carousel (centre-focused) ---------- */
/* One photo lit at a time, its neighbours falling away into the dark. Still a
   scroll-snap track underneath — snapping is centred rather than left-aligned,
   and JS only adds .is-active to whichever slide is nearest the middle. */
.events {
    background:
        radial-gradient(ellipse at 50% 45%, rgba(96, 54, 18, 0.40) 0%, transparent 62%),
        linear-gradient(160deg, #1a0e04 0%, #2a1608 55%, #1a0e04 100%);
}

.events-carousel {
    position: relative;
    --slide-w: clamp(14rem, 25vw, 21rem);
}

.events-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--slide-w);
    gap: clamp(0.75rem, 1.6vw, 1.35rem);
    /* Side padding equal to half the leftover width lets the first and last
       photo reach the centre instead of jamming against the edge. */
    padding-inline: calc((100% - var(--slide-w)) / 2);
    padding-block: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.events-track::-webkit-scrollbar { display: none; }

.events-slide {
    position: relative;
    scroll-snap-align: center;
    aspect-ratio: 3 / 4;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #1a0e04;
    /* Off-centre slides recede: dimmed, desaturated and slightly smaller. */
    opacity: 0.42;
    transform: scale(0.9);
    filter: brightness(0.4) saturate(0.65);
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.events-slide.is-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
}

/* These are the church's own flyers, not photographs — `cover` would crop the
   service times and addresses straight off them. Show each one whole. */
.events-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Caption belongs to the photo in focus — on the dimmed ones it is noise. */
.events-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 2.2rem 1rem 0.95rem;
    background: linear-gradient(to top, rgba(6, 1, 3, 0.94), transparent);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.events-slide.is-active .events-caption { opacity: 1; transform: none; }

.events-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.events-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

.events-nav:disabled { opacity: 0.22; cursor: default; }
.events-nav svg { width: 1.3rem; height: 1.3rem; }
.events-prev { left: clamp(0.5rem, 3vw, 2.5rem); }
.events-next { right: clamp(0.5rem, 3vw, 2.5rem); }

.events-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; }

.events-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
    transition: var(--transition);
    padding: 0;
}

.events-dot[aria-current="true"] { background: var(--brand-accent); transform: scale(1.4); }

.events-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

/* ---------- reviews ---------- */
/* Facebook "recommends" has no star rating, so this shows none. Never
   render stars for a source that doesn't publish them. */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap-lg);
    max-width: 58rem;
    margin-inline: auto;
}

.review-card {
    position: relative;
    padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.5rem, 3vw, 2rem) clamp(1.4rem, 2.6vw, 1.8rem);
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -0.35rem;
    left: 1.1rem;
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(198, 132, 24, 0.32);
}

.review-quote {
    position: relative;
    font-size: clamp(0.98rem, 2vw, 1.08rem);
    line-height: 1.72;
    color: var(--text);
    margin-bottom: 1.1rem;
}

.review-meta { display: flex; flex-direction: column; gap: 0.15rem; }

.review-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-deep);
    font-size: 0.98rem;
}

.review-source {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq { background: linear-gradient(150deg, var(--brand-deep) 0%, var(--brand-dark) 100%); }

.faq-list { max-width: 52rem; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.1rem 3.2rem 1.1rem 1.4rem;
    font-family: var(--font-display);
    font-size: clamp(0.98rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.3rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    color: var(--brand-accent);
    transition: var(--transition);
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p { padding: 0 1.4rem 1.3rem; color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; }

.faq-item a { color: var(--brand-accent-light); text-decoration: underline; text-underline-offset: 3px; }
.faq-item a:hover { color: var(--white); }

/* ---------- subpage hero (books.html, music.html) ---------- */
/* Shorter than the home hero: these pages are about their content, not
   about making an entrance. Header is solid from the top here. */
.subhero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(20rem, 42vh, 28rem);
    overflow: hidden;
    background: var(--brand-deep);
}

.subhero-bg { position: absolute; inset: 0; opacity: 0.28; background-size: cover; background-position: center; }

.subhero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(rgba(20, 11, 4, 0.6) 0%, rgba(53, 29, 8, 0.9) 100%);
}

.subhero .container { position: relative; z-index: 2; }

.subhero-inner { padding-block: clamp(5.5rem, 11vw, 7.5rem) clamp(2.5rem, 5vw, 3.5rem); text-align: center; }

.subhero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

.subhero-text {
    margin: 1rem auto 0;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--fluid-lead);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-accent-light);
}

.back-link:hover { color: var(--white); }

/* ---------- books ---------- */
.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap-lg);
}

.book-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.book-cover {
    aspect-ratio: 2 / 3;
    background: linear-gradient(150deg, var(--brand-dark), var(--brand-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-accent);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
}

.book-cover img { width: 100%; height: 100%; object-fit: cover; }

/* No cover artwork was supplied, and hotlinking Amazon's images would break the
   day they change a URL — so the covers are typeset from the real title data. */
.book-cover-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem;
}

.book-cover-rule { width: 2.5rem; height: 2px; background: var(--brand-accent); }

.book-cover-title {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--white);
}

.book-cover-sub {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--brand-accent-light);
}

.book-cover-author {
    margin-top: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.book-sub { font-size: 0.9rem; color: var(--text-muted); }

.book-meta {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text-muted);
    padding-top: 0.6rem;
    border-top: 1px solid var(--border);
    flex: 1;
}

.book-body { padding: clamp(1.1rem, 2.4vw, 1.5rem); display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }

.book-title {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 700;
    color: var(--brand-deep);
}

.book-body p { font-size: 0.92rem; color: var(--text-muted); flex: 1; }

/* ---------- music ---------- */
.music-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.music-portrait {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
    background: linear-gradient(150deg, var(--brand-dark), var(--brand-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-accent);
    text-align: center;
    padding: 2rem;
}

.music-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* The portrait is a crop from the one photo of the Halls together, so the
   padding above is placeholder-only — a real image fills the frame. */
.music-portrait:has(img) { padding: 0; }

.music-note {
    margin-top: 1.1rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.music-note a {
    color: var(--brand-mid);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.music-note a:hover { color: var(--brand-accent); }

.track-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }

.track {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.15rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
}

.track-num {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-accent);
    min-width: 1.5rem;
}

.track-name { font-weight: 600; color: var(--brand-deep); }

.listen-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

/* ---------- contact ---------- */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.5rem; }

.contact-details li { display: flex; align-items: flex-start; gap: 1rem; }

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-value {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 700;
    color: var(--brand-deep);
}

.contact-value a:hover { color: var(--brand-mid); }

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form {
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-row { margin-bottom: 1.1rem; }

.form-row label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-deep);
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.8rem 0.95rem;
    font: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-row textarea { resize: vertical; min-height: 7rem; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(198, 132, 24, 0.18);
}

.form-error {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    background: #fdecec;
    border: 1px solid #f3c2c2;
    color: #9b1c1c;
    font-size: 0.88rem;
}

.form-note { margin-top: 0.9rem; font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* ---------- footer ---------- */
/* Background goes on <footer>, never on .footer-main — that element also
   carries .container (max-width 75rem) and would leave white gutters. */
.footer { background: var(--brand-deep); color: rgba(255, 255, 255, 0.72); }

.footer-banner { background: var(--brand-accent); padding-block: 1.1rem; }

.footer-tagline {
    text-align: center;
    font-family: var(--font-script);
    font-size: clamp(1.4rem, 3.4vw, 2.1rem);
    font-weight: 400;
    color: var(--brand-deep);
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: clamp(2rem, 4vw, 3rem);
}

.footer-logo { width: clamp(6rem, 15vw, 8rem); height: auto; border-radius: var(--radius); }

.footer-contact { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.9rem; }
.footer-contact a:hover { color: var(--brand-accent-light); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }

.footer-nav a { font-size: 0.88rem; font-weight: 600; transition: var(--transition); }
.footer-nav a:hover { color: var(--brand-accent-light); }

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-block: 1.2rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-copy a:hover { color: var(--brand-accent-light); }

/* ---------- scroll reveal ---------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible { opacity: 1; transform: none; }

/* ---------- responsive: 1024 ---------- */
@media (max-width: 1024px) {
    .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: flex;
        flex-direction: column;
        padding: 1.25rem var(--container-pad) 2.5rem;
        background: linear-gradient(160deg, var(--brand-deep) 0%, var(--brand-dark) 100%);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav.active { transform: none; }

    /* This is the line the house template was missing — without it the
       close button is styled but never displayed. */
    .nav.active .nav-close { display: flex; }

    .nav.active .nav-list {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.5rem;
        flex: 1;
    }

    .nav.active .nav-link { font-size: 1.35rem; color: var(--white); }

    .ministries-grid { grid-template-columns: repeat(2, 1fr); }
    .expect-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .events-carousel { --slide-w: clamp(13rem, 34vw, 17rem); }
    .books-grid { grid-template-columns: repeat(2, 1fr); }
    .leader-grid { grid-template-columns: repeat(2, 1fr); }

    .times-list { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; }
    .times-stat:nth-child(2) { border-right: none; }
}

/* ---------- responsive: 768 ---------- */
@media (max-width: 768px) {
    .hero { min-height: 92svh; }

    .hero-overlay {
        background: linear-gradient(rgba(20, 11, 4, 0.86), rgba(20, 11, 4, 0.8));
    }

    .hero-layout { max-width: none; }
    .hero-buttons .btn { flex: 1 1 100%; }

    .about-split { grid-template-columns: 1fr; }
    .contact-split { grid-template-columns: 1fr; }
    .ministries-grid { grid-template-columns: 1fr; }
    .expect-grid { grid-template-columns: 1fr; }
    .pastors-grid { grid-template-columns: 1fr; }
    .leader-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .events-carousel { --slide-w: min(68vw, 17rem); }
    .events-nav { display: none; }
    .books-grid { grid-template-columns: 1fr; }

    .music-split { grid-template-columns: 1fr; }
    .times-list { grid-template-columns: 1fr; }
    .times-stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.14); padding-bottom: 1rem; }
    .times-stat:last-child { border-bottom: none; padding-bottom: 0; }

    .cta-band-bg { background-attachment: scroll; }

    .footer-main { flex-direction: column; text-align: center; }
    .footer-nav { justify-content: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .scroll-reveal { opacity: 1; transform: none; transition: none; }

    .events-track { scroll-behavior: auto; }

    .events-slide {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .events-slide .events-caption { opacity: 1; transform: none; transition: none; }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
