/* =========================================================
   Life of Faith Gospel Ministries – Premium Stylesheet
   Google Nonprofit Compliant | No Donation Content
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

/* ── Design Tokens ───────────────────────────────────────── */
:root {
    --navy-950:  #0d1e2e;
    --navy-900:  #152c43;
    --navy-800:  #1e3d5a;
    --navy-700:  #2a5070;
    --navy-600:  #366387;
    --gold-600:  #9c7328;
    --gold-500:  #b8873a;
    --gold-400:  #cfa555;
    --gold-300:  #dfc484;
    --gold-100:  #f7efd5;
    --ivory-50:  #fdfaf3;
    --ivory-100: #f8f2e6;
    --ivory-200: #efe4cf;
    --sage-600:  #5a7054;
    --sage-400:  #85a37e;
    --white:     #ffffff;
    --text-dark: #1a2630;
    --text-mid:  #374654;
    --text-soft: #5b6e7d;

    --shadow-xs:  0 2px 8px  rgba(13,30,46,.08);
    --shadow-sm:  0 6px 20px rgba(13,30,46,.12);
    --shadow-md:  0 16px 40px rgba(13,30,46,.15);
    --shadow-lg:  0 28px 60px rgba(13,30,46,.20);

    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;

    --container: min(1200px, calc(100% - 2.4rem));
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text-dark);
    background: #f9f5ed;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--navy-900); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus-visible { color: var(--gold-500); }

h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.12;
    margin: 0 0 .9rem;
    color: var(--navy-950);
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.65rem); font-weight: 700; }
h3 { font-size: clamp(1.18rem, 2.1vw, 1.6rem); font-weight: 600; }

p { margin: 0 0 1rem; color: var(--text-mid); }
ul { margin: 0; padding: 0; list-style: none; }

/* ── Layout Shell ────────────────────────────────────────── */
.site-shell { min-height: 100dvh; display: flex; flex-direction: column; }
main { flex: 1; }

.container { width: var(--container); margin: 0 auto; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ── Top Strip ───────────────────────────────────────────── */
.top-strip {
    background: linear-gradient(90deg, var(--navy-950) 0%, var(--navy-800) 100%);
    color: #c8d8e8;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: .01em;
}
.top-strip__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.top-strip p { margin: 0; }
.top-strip__links { display: flex; gap: 1.2rem; white-space: nowrap; }
.top-strip__links a { color: #d4e5f4; font-weight: 600; transition: color var(--transition); }
.top-strip__links a:hover { color: var(--gold-300); }

/* ── Sticky Header ───────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; }

.header-main {
    background: rgba(253, 250, 243, 0.92);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid rgba(21, 44, 67, 0.1);
    box-shadow: 0 2px 16px rgba(13, 30, 46, 0.08);
}
.header-main__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Brand */
.brand {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    color: var(--navy-950);
    flex-shrink: 0;
    transition: opacity var(--transition);
}
.brand:hover { opacity: .85; color: var(--navy-950); }
.brand img {
    border-radius: 50%;
    border: 2px solid var(--gold-400);
    box-shadow: 0 4px 12px rgba(184,135,58,.25);
    transition: transform var(--transition), box-shadow var(--transition);
}
.brand:hover img { transform: scale(1.06); box-shadow: 0 6px 18px rgba(184,135,58,.35); }
.brand span {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1rem, 1.5vw, 1.45rem);
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--navy-950);
}

/* Nav */
.primary-nav { margin-left: auto; min-width: 0; }
.primary-nav ul {
    display: flex;
    align-items: center;
    gap: .12rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.primary-nav a {
    display: inline-block;
    padding: .5rem .78rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-dark);
    position: relative;
    transition: background var(--transition), color var(--transition);
}
.primary-nav a::after {
    content: "";
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold-500);
    border-radius: 999px;
    transition: left var(--transition), right var(--transition);
}
.primary-nav a.active::after,
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { left: 16%; right: 16%; }
.primary-nav a.active,
.primary-nav a:hover,
.primary-nav a:focus-visible {
    background: rgba(184,135,58,.1);
    color: var(--navy-900);
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .62rem 1.15rem;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(156,115,40,.35);
    transition: transform var(--transition), box-shadow var(--transition);
}
.header-cta:hover, .header-cta:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(156,115,40,.45);
}

/* Hamburger */
.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1.5px solid rgba(21,44,67,.22);
    border-radius: var(--radius-xs);
    background: #fff;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.menu-toggle:hover { border-color: var(--gold-500); background: var(--gold-100); }
.menu-toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207,165,85,.12) 0%, transparent 68%);
    pointer-events: none;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(1.5rem, 3.5vw, 3rem);
    align-items: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .3rem .85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(184,135,58,.15), rgba(207,165,85,.1));
    border: 1px solid rgba(184,135,58,.25);
    color: var(--gold-600);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.hero__eyebrow::before {
    content: "";
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
}
.hero h1 { margin-bottom: 1rem; }
.hero p { color: var(--text-soft); font-size: 1.06rem; }

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.8rem;
}

.hero__card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 440px;
    position: relative;
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(10,22,34,.55));
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .74rem 1.3rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-weight: 700;
    font-size: .95rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover, .btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(13,30,46,.2);
}
.btn--primary {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: #fff;
}
.btn--primary:hover { color: #fff; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); }
.btn--secondary {
    border-color: rgba(21,44,67,.28);
    color: var(--navy-900);
    background: rgba(255,255,255,.8);
}
.btn--secondary:hover { border-color: var(--navy-700); background: #fff; color: var(--navy-950); }

.btn--gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: #fff;
    box-shadow: 0 4px 14px rgba(156,115,40,.3);
}
.btn--gold:hover { color: #fff; box-shadow: 0 8px 22px rgba(156,115,40,.4); }

/* ── Section Layout ──────────────────────────────────────── */
.section { padding: clamp(3rem, 5.5vw, 5rem) 0; }
.section--soft {
    background: linear-gradient(180deg, #fff 0%, var(--ivory-100) 100%);
}
.section--dark {
    background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
    color: #e0ebf4;
}
.section--dark h2, .section--dark h3 { color: #f0f7ff; }
.section--dark p { color: #b8cedd; }

.section__lead {
    max-width: 760px;
    color: var(--text-soft);
    font-size: 1.07rem;
    margin-bottom: .5rem;
}

/* ── Cards ───────────────────────────────────────────────── */
.card-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}
.card {
    background: #fff;
    border: 1px solid rgba(21,44,67,.1);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.3rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    opacity: 0;
    transition: opacity var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.card p { margin-bottom: 0; font-size: .97rem; }

/* ── Icon Cards ──────────────────────────────────────────── */
.icon-card {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(21,44,67,.1);
    border-radius: var(--radius-md);
    padding: 1.3rem;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition);
}
.icon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.icon-card__icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.icon-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.icon-card p { margin-bottom: 0; font-size: .94rem; }

/* ── Split Layout ────────────────────────────────────────── */
.split-section {
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}
.split-section--reverse { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); }
.split-section__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}
.split-section__media img { width: 100%; height: 100%; object-fit: cover; }
.split-section__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
    pointer-events: none;
}

/* ── Stats Strip ─────────────────────────────────────────── */
.stat-strip {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: .9rem;
}
.stat {
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(21,44,67,.92), rgba(30,61,90,.92));
    color: #eef4fa;
    padding: 1.1rem 1rem;
    border: 1px solid rgba(255,255,255,.07);
}
.stat strong {
    display: block;
    font-size: 1.5rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--gold-300);
    margin-bottom: .2rem;
}
.stat span { font-size: .9rem; color: #b5cad9; }

/* ── Feature List ────────────────────────────────────────── */
.feature-list { margin-top: 1rem; display: grid; gap: .55rem; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: #fff;
    border: 1px solid rgba(21,44,67,.1);
    border-radius: var(--radius-xs);
    padding: .78rem .95rem;
    font-size: .97rem;
    color: var(--text-dark);
}
.feature-list li::before {
    content: "✦";
    color: var(--gold-500);
    font-size: .65rem;
    flex-shrink: 0;
}

/* ── Checklist ───────────────────────────────────────────── */
.checklist { display: grid; gap: .5rem; margin-top: .9rem; }
.checklist li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-mid);
    font-size: .97rem;
}
.checklist li::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    position: absolute;
    left: 0; top: .52rem;
}

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(120deg, var(--navy-900), #1f4a6d 55%, var(--navy-700));
    color: #f2f8fd;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3.5vw, 2.4rem) clamp(1.4rem, 3vw, 2.2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.cta-band::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207,165,85,.18) 0%, transparent 65%);
    pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: .4rem; }
.cta-band p  { margin-bottom: 0; color: #b8d0e5; }

/* ── Mission Banner ──────────────────────────────────────── */
.mission-banner {
    background: linear-gradient(135deg, var(--gold-100), #fff 60%);
    border: 1px solid rgba(184,135,58,.2);
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem,3vw,2.2rem);
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    box-shadow: var(--shadow-xs);
}
.mission-banner__icon {
    width: 56px; height: 56px; flex-shrink: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 16px rgba(156,115,40,.3);
}
.mission-banner h3 { color: var(--navy-950); margin-bottom: .4rem; }
.mission-banner p  { margin-bottom: 0; font-size: .97rem; }

/* ── Transparency Block ──────────────────────────────────── */
.transparency-block {
    background: #fff;
    border: 1px solid rgba(21,44,67,.1);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-xs);
}
.transparency-block h3 {
    color: var(--navy-900);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--gold-100);
}
.transparency-block dl { display: grid; gap: .62rem; }
.transparency-block dt {
    font-weight: 700;
    color: var(--navy-900);
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.transparency-block dd {
    margin: 0;
    color: var(--text-mid);
    font-size: .97rem;
}
.transparency-block dd a { color: var(--navy-700); font-weight: 600; }
.transparency-block dd a:hover { color: var(--gold-500); }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.1rem;
}
.gallery-item {
    background: #fff;
    border: 1px solid rgba(21,44,67,.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item figure { margin: 0; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
    padding: .9rem 1rem 1rem;
    font-size: .92rem;
    color: var(--text-mid);
}
.group-chip {
    display: inline-flex;
    margin-bottom: .45rem;
    padding: .18rem .62rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(90,112,84,.14), rgba(133,163,126,.1));
    color: var(--sage-600);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ── Contact Form ────────────────────────────────────────── */
.form-panel {
    background: #fff;
    border: 1px solid rgba(21,44,67,.1);
    border-radius: var(--radius-lg);
    padding: clamp(1.2rem, 2.5vw, 2rem);
    box-shadow: var(--shadow-md);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
}
.field, .field--full { display: grid; gap: .38rem; }
.field--full { grid-column: 1 / -1; }

label {
    font-weight: 700;
    font-size: .88rem;
    color: var(--navy-900);
    letter-spacing: .01em;
}
input, textarea, select {
    width: 100%;
    border: 1.5px solid rgba(21,44,67,.2);
    border-radius: var(--radius-xs);
    padding: .68rem .8rem;
    font: inherit;
    font-size: .97rem;
    color: var(--text-dark);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(184,135,58,.18);
}
textarea { min-height: 155px; resize: vertical; }

.form-note { font-size: .87rem; color: var(--text-soft); margin-bottom: .6rem; }

.notice { border-radius: var(--radius-xs); padding: .75rem .95rem; margin-bottom: 1.1rem; }
.notice--error  { background: #fde8e8; border: 1.5px solid #e1bbbb; color: #7a2b2b; }
.notice--success { background: #eaf8eb; border: 1.5px solid #b3ddb4; color: #245527; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    margin-top: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(165deg, #0c1c2b 0%, #0d2035 50%, #132b40 100%);
    color: #e0eaf3;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,135,58,.08) 0%, transparent 65%);
    pointer-events: none;
}
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0 2rem;
    position: relative;
}
.site-footer h2 { font-size: 1.1rem; color: #e8f2fa; margin-bottom: .9rem; letter-spacing: .04em; }
.brand--footer span { color: #f0f7ff; }
.brand--footer img { border-color: rgba(207,165,85,.4); }
.footer-tagline { color: #8db0ca; margin-top: .75rem; font-size: .93rem; line-height: 1.55; }
.footer-list { display: grid; gap: .45rem; }
.footer-list li { font-size: .94rem; color: #8fafc5; }
.footer-list a { color: #b0cde0; font-size: .94rem; transition: color var(--transition); }
.footer-list a:hover { color: var(--gold-300); }

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(207,165,85,.12);
    border: 1px solid rgba(207,165,85,.25);
    color: var(--gold-300);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
}
.footer-badge::before { content: "✦"; font-size: .6rem; }

.site-footer__bar {
    border-top: 1px solid rgba(255,255,255,.1);
    position: relative;
}
.site-footer__bar p {
    margin: 0;
    padding: 1rem 0;
    color: #6a8da3;
    font-size: .88rem;
}

/* ── Reveal Animations ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* stagger children */
.reveal-group > *:nth-child(1) { transition-delay: .05s; }
.reveal-group > *:nth-child(2) { transition-delay: .12s; }
.reveal-group > *:nth-child(3) { transition-delay: .19s; }
.reveal-group > *:nth-child(4) { transition-delay: .26s; }
.reveal-group > *:nth-child(5) { transition-delay: .33s; }
.reveal-group > *:nth-child(6) { transition-delay: .40s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .top-strip { display: none; }
    .header-main__inner { min-height: 78px; position: relative; }
    .menu-toggle { display: inline-flex; margin-left: auto; }
    .header-cta { display: none; }

    .primary-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px); right: 0;
        width: min(300px, 90vw);
        background: #fff;
        border: 1.5px solid rgba(21,44,67,.14);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        padding: .75rem;
    }
    .primary-nav.is-open { display: block; }
    .primary-nav ul { display: grid; gap: .25rem; }
    .primary-nav a { display: block; padding: .7rem .85rem; }
    .primary-nav a::after { display: none; }

    .hero__inner,
    .split-section,
    .split-section--reverse,
    .site-footer__inner { grid-template-columns: 1fr; }

    .card-grid, .gallery-grid, .stat-strip {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 680px) {
    .brand span { font-size: .98rem; }
    .card-grid, .gallery-grid, .stat-strip, .form-grid {
        grid-template-columns: 1fr;
    }
    .hero { padding-top: 2rem; }
    .hero__card { min-height: 280px; }
    .cta-band { flex-direction: column; align-items: flex-start; }
    .section { padding: clamp(2rem, 5vw, 3.5rem) 0; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .btn, .card, .gallery-item { transition: none; }
    html { scroll-behavior: auto; }
}
