/* ============================================================
   DESIGN SYSTEM — SEGN Landing Page
   ============================================================ */
:root {
    --navy:        #0B2545;
    --navy-mid:    #1B3A5C;
    --navy-light:  #2C5282;
    --gold:        #9A7B1C;   /* deep antique gold — ~4:1 contrast on white */
    --gold-light:  #C9922A;   /* medium gold — use on navy/dark backgrounds  */
    --gold-pale:   #FEF9EE;
    --white:       #FFFFFF;
    --off-white:   #F4F6F8;
    --gray-light:  #EBF0F5;
    --text-dark:   #1C2B3A;
    --text-mid:    #4A5568;
    --text-light:  #718096;
    --border:      #D1D9E0;
    --shadow-sm:   0 2px 8px rgba(11,37,69,0.07);
    --shadow-md:   0 4px 24px rgba(11,37,69,0.11);
    --shadow-lg:   0 8px 48px rgba(11,37,69,0.16);
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --nav-height:  70px;
    --transition:  0.3s ease;
    --gutter-mobile: 20px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

/* Offset section anchors so they don't sit behind the fixed nav */
#about-slider,
#why-join-slider,
#membership-slider,
#objectives,
#vision,
#news-teaser-slider,
#programs-slider,
#stats-strip {
    scroll-margin-top: var(--nav-height);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ============================================================
   NAVIGATION — THE MERIDIAN
   ============================================================ */

/* Scroll progress line */
.nav-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
    z-index: 1100;
    transition: width 0.08s linear;
    pointer-events: none;
}

/* Nav shell */
.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 80px;
    background: transparent;
    transition:
        height        0.5s cubic-bezier(0.4, 0, 0.2, 1),
        background    0.5s ease,
        box-shadow    0.5s ease,
        border-color  0.5s ease;
    border-bottom: 1px solid transparent;
}

/* Scrolled: frosted glass */
.lp-nav--scrolled {
    height: 62px;
    background: rgba(10, 31, 58, 0.94);
    backdrop-filter: blur(22px) saturate(1.4);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06),
                0 8px 32px rgba(0,0,0,0.22);
    border-bottom-color: rgba(255,255,255,0.06);
}

/* Solid (non-hero pages) — same as scrolled */
.lp-nav--solid {
    height: 62px;
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    border-bottom-color: rgba(255,255,255,0.05);
}

.lp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 36px;
    gap: 24px;
}

/* Brand */
.lp-nav__brand {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    text-decoration: none;
}

.lp-nav__logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter  0.5s ease;
}

.lp-nav--scrolled .lp-nav__logo,
.lp-nav--solid .lp-nav__logo { height: 36px; }

.lp-nav__brand-divider {
    width: 1px;
    height: 26px;
    background: rgba(255,255,255,0.18);
    margin: 0 16px;
    flex-shrink: 0;
    transition: opacity 0.4s ease;
}

.lp-nav__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.lp-nav__brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: font-size 0.5s ease;
}

.lp-nav--scrolled .lp-nav__brand-name,
.lp-nav--solid    .lp-nav__brand-name { font-size: 0.9rem; }

.lp-nav__brand-sub {
    font-size: 0.58rem;
    color: var(--gold-light);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.85;
}

/* Links */
.lp-nav__links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: flex-end;
}

.lp-nav__link {
    position: relative;
    font-size: 0.74rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    padding: 6px 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Underline grow-from-center */
.lp-nav__link::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.lp-nav__link:hover               { color: var(--white); }
.lp-nav__link:hover::after        { width: calc(100% - 26px); }
.lp-nav__link.active              { color: var(--white); }
.lp-nav__link.active::after       { width: calc(100% - 26px); }

/* CTA button with shimmer */
.lp-nav__link--cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.09em;
    margin-left: 10px;
    overflow: hidden;
    transition: background 0.35s ease,
                color     0.35s ease,
                transform 0.35s ease,
                box-shadow 0.35s ease;
}

/* Shimmer pseudo-element */
.lp-nav__link--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(255,255,255,0.22) 50%,
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.55s ease;
}

.lp-nav__link--cta::after { display: none; } /* no underline on CTA */

.lp-nav__link--cta:hover {
    background: var(--gold-light);
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,146,42,0.45);
}

.lp-nav__link--cta:hover::before {
    transform: translateX(100%);
}

/* Dropdown */
.lp-nav__dropdown { position: relative; }

.lp-nav__dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(10, 31, 58, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(201,146,42,0.18);
    border-top: 2px solid var(--gold);
    border-radius: 10px;
    min-width: 230px;
    padding: 8px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 20;
    transition:
        opacity    0.28s ease,
        transform  0.28s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.28s ease;
}

.lp-nav__dropdown:hover .lp-nav__dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.lp-nav__dropdown-item {
    display: block;
    padding: 11px 22px;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.72);
    transition: color 0.2s ease, padding-left 0.22s ease;
    text-decoration: none;
}

.lp-nav__dropdown-item:hover {
    color: var(--gold-light);
    padding-left: 28px;
}

/* Mobile hamburger */
.lp-nav__toggle {
    display: none;
    background: none;
    border: 1.5px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.lp-nav__toggle:hover { border-color: var(--gold); }

.lp-nav__toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.38s ease;
}

/* ============================================================
   FULL-SCREEN MOBILE OVERLAY
   ============================================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform 0.52s cubic-bezier(0.76, 0, 0.24, 1);
    display: flex;
    flex-direction: column;
    padding: 0 32px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.nav-overlay.open { transform: translateX(0); }

.nav-overlay__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-overlay__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-overlay__brand img {
    height: 40px;
    width: auto;
}

.nav-overlay__brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.nav-overlay__close {
    background: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border-color 0.3s ease, transform 0.4s ease;
}

.nav-overlay__close:hover {
    border-color: var(--gold);
    transform: rotate(90deg);
}

.nav-overlay__close span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
}

.nav-overlay__close span:first-child { transform: rotate(45deg); }
.nav-overlay__close span:last-child  { transform: rotate(-45deg); }

/* Link items — staggered slide-in */
.nav-overlay__links {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 36px 0 24px;
}

.nav-overlay__link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateX(32px);
    transition:
        color       0.3s ease,
        padding-left 0.3s ease,
        opacity     0.45s ease,
        transform   0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.open .nav-overlay__link { opacity: 1; transform: translateX(0); }

/* Staggered delays */
.nav-overlay.open .nav-overlay__link:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.open .nav-overlay__link:nth-child(2) { transition-delay: 0.10s; }
.nav-overlay.open .nav-overlay__link:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.open .nav-overlay__link:nth-child(4) { transition-delay: 0.20s; }
.nav-overlay.open .nav-overlay__link:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay.open .nav-overlay__link:nth-child(6) { transition-delay: 0.30s; }
.nav-overlay.open .nav-overlay__link:nth-child(7) { transition-delay: 0.35s; }

.nav-overlay__link:hover  { color: var(--white); padding-left: 10px; }

/* Active overlay link */
.nav-overlay__link.active {
    color: var(--gold-light);
    border-bottom-color: rgba(201, 146, 42, 0.18);
}

.nav-overlay__link.active .nav-overlay__arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--gold-light);
}

.nav-overlay__arrow {
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-overlay__link:hover .nav-overlay__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Overlay footer */
.nav-overlay__footer {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease 0.38s, transform 0.4s ease 0.38s;
}

.nav-overlay.open .nav-overlay__footer { opacity: 1; transform: translateY(0); }

.nav-overlay__cta {
    display: block;
    text-align: center;
    padding: 16px 24px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-overlay__cta:hover { background: var(--gold-light); color: var(--navy); }

.nav-overlay__social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.nav-overlay__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-overlay__social a:hover { border-color: var(--gold); color: var(--gold-light); }

@media (max-width: 1024px) {
    .lp-nav__toggle { display: flex; }
    .lp-nav__links  { display: none; }
    .lp-nav__inner  { padding: 0 20px; }
}

/* ============================================================
   HERO — THE STANDARD (FULL-BLEED EDITORIAL)
   ============================================================ */

.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--navy);
}

.hero-slider-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Full-bleed background — slow Ken Burns drift */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    animation: hero-drift 28s ease-in-out infinite alternate;
    will-change: transform, opacity;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}
.hero-bg.active {
    opacity: 1;
    z-index: 2;
}

@keyframes hero-drift {
    from { transform: scale(1.06) translate(0, 0); }
    to   { transform: scale(1.0)  translate(-1.5%, -0.8%); }
}

/* Directional overlay — solid navy left fading to transparent right */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to right,
            rgba(11,37,69,0.97) 0%,
            rgba(11,37,69,0.92) 28%,
            rgba(11,37,69,0.68) 52%,
            rgba(11,37,69,0.24) 72%,
            rgba(11,37,69,0.06) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(11,37,69,0.55) 0%,
            transparent 16%,
            transparent 68%,
            rgba(11,37,69,0.82) 100%
        );
}

/* ── MAIN CONTENT ────────────────────────────────────────── */
.hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 88px) max(80px, 9vw) 52px;
}

.hero-content {
    max-width: 600px;
}

/* Animated gold rule above eyebrow */
.hero-rule {
    display: block;
    height: 2px;
    background: linear-gradient(to right, var(--gold-light), rgba(154,123,28,0.4));
    width: 0;
    margin-bottom: 22px;
    animation: rule-expand 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes rule-expand {
    from { width: 0; opacity: 0.4; }
    to   { width: 64px; opacity: 1; }
}

.hero-eyebrow {
    margin: 0 0 20px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-light);
    animation: hero-fade-up 0.65s ease 0.48s both;
}

/* Headline */
.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.2rem, 5.2vw, 5.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 26px;
}

.hero-word {
    display: block;
    overflow: hidden;
    line-height: 1.1;
}

.hero-word__inner {
    display: block;
    animation: word-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-word:nth-child(1) .hero-word__inner { animation-delay: 0.42s; }
.hero-word:nth-child(2) .hero-word__inner { animation-delay: 0.56s; }
.hero-word:nth-child(3) .hero-word__inner { animation-delay: 0.70s; }

.hero-word--gold .hero-word__inner { color: var(--gold-light); }

@keyframes word-rise {
    from { transform: translateY(110%); }
    to   { transform: translateY(0); }
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.56);
    line-height: 1.82;
    margin-bottom: 38px;
    max-width: 460px;
    animation: hero-fade-up 0.65s ease 0.84s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: hero-fade-up 0.65s ease 0.98s both;
}

/* Stats row — separated by thin vertical rules */
.hero-meta {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    animation: hero-fade-up 0.6s ease 1.12s both;
}

.hero-meta__item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 28px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-meta__item:first-child { padding-left: 0; }
.hero-meta__item:last-child  { border-right: none; }

.hero-meta__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-meta__lbl {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
}

/* ── SHARED BUTTONS ──────────────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.lp-btn--gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.lp-btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154,123,28,0.4);
}

.lp-btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}

.lp-btn--outline-white:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
    transform: translateY(-2px);
}

.lp-btn--outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.lp-btn--outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── ENTRANCE ANIMATION ──────────────────────────────────── */
@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-body {
        padding: calc(var(--nav-height) + 64px) max(52px, 6vw) 44px;
    }
    .hero-headline { font-size: clamp(2.8rem, 5vw, 4.8rem); }
    .hero-content  { max-width: 540px; }
}

@media (max-width: 768px) {
    /* Sized so the full stats banner sits above the fold on first paint */
    .lp-hero { min-height: calc(100svh - 140px); }

    /* Focus on people area, not booth banners */
    .hero-bg { background-position: 35% 35%; }

    /* Mobile overlay — solid, top-weighted for headline legibility */
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(11,37,69,0.94) 0%,
            rgba(11,37,69,0.82) 35%,
            rgba(11,37,69,0.70) 65%,
            rgba(11,37,69,0.90) 100%
        );
    }

    /* Content vertically centred — inherits align-items: center from base */
    .hero-body {
        padding: calc(var(--nav-height) + 24px) var(--gutter-mobile) 32px;
    }

    .hero-content { max-width: 100%; }

    .hero-headline { font-size: clamp(2.4rem, 8vw, 3.4rem); margin-bottom: 22px; }
    .hero-sub      { max-width: 100%; margin-bottom: 28px; }
    .hero-actions  { margin-bottom: 0; }

    /* Hide redundant in-hero stats — the proper stats banner below carries them */
    .hero-meta { display: none; }
}

@media (max-width: 480px) {
    .lp-hero         { min-height: calc(100svh - 130px); }
    .hero-body       { padding: calc(var(--nav-height) + 20px) var(--gutter-mobile) 28px; }
    .hero-headline   { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 20px; }
    .hero-sub        { font-size: 0.94rem; margin-bottom: 26px; }
    .hero-actions    { gap: 10px; }
    .lp-btn          { padding: 11px 18px; font-size: 0.8rem; }
}

/* ============================================================
   STATS STRIP — NUMBERS SECTION
   ============================================================ */
.lp-stats {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 36px 24px;
}

.lp-stats__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0;
}

/* Each stat cell — icon hidden, number + label only */
.lp-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.lp-stat--badge { border-right: none; }

/* Icons removed from view — numbers carry the weight */
.lp-stat__icon { display: none; }

/* Number */
.lp-stat__figure {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.lp-stat__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

/* SEG badge text variant */
.lp-stat__figure--text span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.08em;
}

/* Label */
.lp-stat__label {
    font-size: 0.56rem;
    font-weight: 700;
    color: rgba(255,255,255,0.30);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-align: center;
}

/* Badge cell */
.lp-stat--badge .lp-stat__label { color: rgba(255,255,255,0.36); }

@media (max-width: 900px) {
    .lp-stats { padding: 32px 20px; }
    .lp-stats__inner { flex-wrap: wrap; }
    .lp-stat {
        flex: 1 0 50%;
        padding: 22px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .lp-stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
    .lp-stat:last-child,
    .lp-stat:nth-last-child(2) { border-bottom: none; }
    .lp-stat--badge { border-right: none; }
    .lp-stat__num { font-size: 1.9rem; }
    .lp-stat__figure--text span { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    /* 3-column compact strip — badge hidden, numbers stay readable */
    .lp-stats { padding: 26px var(--gutter-mobile); }
    .lp-stats__inner { flex-wrap: nowrap; }
    .lp-stat {
        flex: 1;
        padding: 4px 8px;
        border-right: 1px solid rgba(255,255,255,0.08) !important;
        border-bottom: none !important;
    }
    .lp-stat--badge      { display: none; }
    .lp-stat:nth-child(3) { border-right: none !important; }
    .lp-stat__num        { font-size: 1.5rem; }
    .lp-stat__label      { font-size: 0.48rem; letter-spacing: 0.14em; }
}

/* ============================================================
   LANDING PAGE WRAPPER
   ============================================================ */
#landing-wrapper {
    background: var(--white);
    color: var(--text-dark);
    flex: 1;
}

/* ============================================================
   ABOUT SECTION — THE BROADSIDE (full-bleed editorial)
   ============================================================ */

/* Full-viewport-width 2-column grid — no container constraint */
.lp-about {
    display: grid;
    grid-template-columns: 54fr 46fr;
    min-height: 82vh;
    background: var(--white);
    overflow: hidden;
}

/* ── LEFT COLUMN ─────────────────────────────────────────── */
.lp-about__text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px 72px 96px max(52px, calc((54vw - 580px)));
    overflow: hidden;
}

/* Giant faint section number — editorial depth without distraction */
.lp-about__deco {
    position: absolute;
    bottom: -10%;
    right: -3%;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(14rem, 26vw, 28rem);
    font-weight: 700;
    color: var(--navy);
    opacity: 0.032;
    line-height: 0.82;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.06em;
}

.lp-about__rule {
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, var(--gold), rgba(154,123,28,0.22));
    margin-bottom: 22px;
    animation: about-rule-in 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

@keyframes about-rule-in {
    from { width: 0; opacity: 0.4; }
    to   { width: 60px; opacity: 1; }
}

.lp-about__eyebrow {
    margin: 0 0 20px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
}

.lp-about__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 3.4vw, 4rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    max-width: 520px;
}

.lp-about__body {
    margin-bottom: 42px;
    max-width: 500px;
}

.lp-about__body p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.88;
    margin-bottom: 18px;
}

.lp-about__body p:last-child { margin-bottom: 0; }

.lp-about__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Credentials strip */
.lp-about__credentials {
    display: flex;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    max-width: 500px;
}

.lp-about__cred {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 28px;
    border-right: 1px solid var(--border);
}

.lp-about__cred:first-child { padding-left: 0; }
.lp-about__cred:last-child  { border-right: none; }

.lp-about__cred-val {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.lp-about__cred-lbl {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1;
}

/* ── RIGHT COLUMN — FULL-BLEED PHOTO ────────────────────── */
.lp-about__visual {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    /* Mask fades the photo's own opacity — no colour contamination */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%);
    mask-image:         linear-gradient(to right, transparent 0%, black 14%);
}

.lp-about__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    transition: transform 9s ease-in-out;
}

.lp-about__visual:hover .lp-about__photo {
    transform: scale(1.05);
}

/* Bottom gradient — strong, defined, cinematic */
.lp-about__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11,37,69,0.97) 0%,
        rgba(11,37,69,0.78) 28%,
        rgba(11,37,69,0.30) 50%,
        transparent 70%
    );
    z-index: 1;
}

/* Pull quote — overlaid on the photo */
.lp-about__pullquote {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    padding: 44px 48px 40px;
    margin: 0;
    z-index: 2;
}

.lp-about__pullquote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.08rem;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    line-height: 1.72;
    margin-bottom: 18px;
    padding-left: 18px;
    border-left: 2px solid var(--gold-light);
    position: relative;
    z-index: 1;
}

.lp-about__pullquote cite {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-style: normal;
    opacity: 0.80;
}

/* Small pill tag — top-right corner */
.lp-about__photo-tag {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(11,37,69,0.80);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201,146,42,0.35);
    color: var(--gold-light);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1060px) {
    .lp-about__text { padding: 80px 56px 80px max(40px, 4vw); }
    .lp-about__title { font-size: clamp(2.2rem, 3.2vw, 3.4rem); }
}

@media (max-width: 860px) {
    /* Stack: photo on top, text below */
    .lp-about {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .lp-about__visual {
        order: 1;
        min-height: 380px;
        max-height: 60vh;
        /* Disable desktop mask + adjust focal point for landscape mobile photo */
        -webkit-mask-image: none;
        mask-image: none;
    }
    .lp-about__photo { object-position: 35% 30%; }
    .lp-about__text {
        padding: 64px var(--gutter-mobile) 72px;
        order: 2;
    }
    .lp-about__deco        { display: none; }
    .lp-about__title       { max-width: 100%; }
    .lp-about__body        { max-width: 100%; }
    .lp-about__credentials { max-width: 100%; }

    /* Tighten pullquote padding on mobile photo */
    .lp-about__pullquote   { padding: 36px 32px 28px; }
}

@media (max-width: 560px) {
    .lp-about__visual    { min-height: 320px; max-height: 50vh; }
    .lp-about__text      { padding: 48px var(--gutter-mobile) 56px; }
    .lp-about__title     { font-size: clamp(1.9rem, 7.5vw, 2.4rem); margin-bottom: 24px; }
    .lp-about__body p    { font-size: 0.95rem; line-height: 1.78; }
    .lp-about__actions   { gap: 10px; margin-bottom: 36px; }
    .lp-about__pullquote { padding: 28px 22px 22px; }
    .lp-about__pullquote p { font-size: 0.95rem; padding-left: 14px; }
    .lp-about__photo-tag { top: 18px; right: 18px; font-size: 0.5rem; padding: 5px 10px; }

    /* Credentials — tight horizontal row */
    .lp-about__credentials { padding-top: 24px; }
    .lp-about__cred        { padding: 0 14px; }
    .lp-about__cred:first-child { padding-left: 0; }
    .lp-about__cred-val    { font-size: 1.05rem; }
    .lp-about__cred-lbl    { font-size: 0.5rem; letter-spacing: 0.14em; }
}

/* ============================================================
   MEMBERSHIP BENEFITS — EDITORIAL SPLIT + LIST
   ============================================================ */

/* Full-viewport two-panel layout */
.lp-benefits-section {
    display: grid;
    grid-template-columns: 38fr 62fr;
    min-height: 70vh;
}

/* ── LEFT: Navy header panel ─────────────────────────────── */
.lp-benefits-header {
    background: var(--navy);
    padding: 96px 64px 96px max(48px, calc((38vw - 400px)));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: var(--nav-height);
    align-self: start;
    min-height: calc(100vh - var(--nav-height));
}

.lp-benefits-header__rule {
    display: block;
    height: 2px;
    width: 48px;
    background: linear-gradient(to right, var(--gold-light), rgba(201,146,42,0.25));
    margin-bottom: 20px;
}

.lp-benefits-header__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.lp-benefits-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 340px;
}

.lp-benefits-header__desc {
    font-size: 0.96rem;
    color: rgba(255,255,255,0.50);
    line-height: 1.82;
    max-width: 320px;
    margin-bottom: 44px;
}

.lp-benefits-header__cta { align-self: flex-start; }

/* ── RIGHT: Benefits list panel ─────────────────────────── */
.lp-benefits-list {
    background: var(--off-white);
    padding: 96px max(48px, 5vw) 96px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Each row */
.lp-benefit-item {
    display: grid;
    grid-template-columns: 72px 1fr 32px;
    gap: 0 20px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    cursor: default;
    transition: background 0.3s ease;
    position: relative;
}

.lp-benefit-item:first-child { border-top: 1px solid var(--border); }

/* Hover tint on the whole row */
.lp-benefit-item::before {
    content: '';
    position: absolute;
    inset: 0 -64px 0 -72px;
    background: var(--navy);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.lp-benefit-item:hover::before { opacity: 0.035; }

/* Number */
.lp-benefit-item__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.03em;
    padding-top: 2px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.lp-benefit-item:hover .lp-benefit-item__num { color: var(--gold-light); }

/* Title + description */
.lp-benefit-item__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.lp-benefit-item__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.lp-benefit-item:hover .lp-benefit-item__title { color: var(--navy); }

.lp-benefit-item__desc {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.76;
    margin: 0;
}

/* Arrow indicator */
.lp-benefit-item__arrow {
    color: var(--gold);
    opacity: 0.30;
    font-size: 1rem;
    padding-top: 6px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    text-align: right;
}

.lp-benefit-item:hover .lp-benefit-item__arrow {
    opacity: 0.90;
    transform: translateX(4px);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
    .lp-benefits-section { grid-template-columns: 1fr; min-height: auto; }
    .lp-benefits-header {
        position: static;
        min-height: auto;
        padding: 72px var(--gutter-mobile) 56px;
    }
    .lp-benefits-header__title { max-width: 100%; }
    .lp-benefits-header__desc  { max-width: 100%; }
    .lp-benefits-list { padding: 56px var(--gutter-mobile) 80px; }
}

@media (max-width: 560px) {
    .lp-benefits-header { padding: 56px var(--gutter-mobile) 44px; }
    .lp-benefits-list   { padding: 48px var(--gutter-mobile) 64px; }
    .lp-benefit-item    { grid-template-columns: 56px 1fr 24px; gap: 0 12px; padding: 28px 0; }
    .lp-benefit-item__num { font-size: 2rem; }
}

/* ============================================================
   MEMBERSHIP TIERS — PREMIUM INSTITUTIONAL CARDS
   ============================================================ */
.lp-mship-section {
    background: var(--white);
    padding: 112px 24px;
    position: relative;
}

/* Top gold shimmer line — section signature */
.lp-mship-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 240px;
    max-width: 60%;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(154,123,28,0.32) 30%,
        rgba(154,123,28,0.32) 70%,
        transparent 100%);
}

/* Centred section header */
.lp-mship-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 76px;
}

.lp-mship-header__rule {
    display: block;
    height: 2px;
    width: 48px;
    background: linear-gradient(to right, var(--gold), rgba(154,123,28,0.25));
    margin: 0 auto 20px;
}

.lp-mship-header__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.lp-mship-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.lp-mship-header__desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.78;
}

/* 4-column grid */
.lp-mship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
    align-items: stretch;
}

/* ── EACH TIER CARD ──────────────────────────────────────── */
.lp-mtier {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(11,37,69,0.10);
    padding: 48px 30px 32px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.4s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

/* Layered gold top border — set as pseudo for smooth thickness change */
.lp-mtier::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 3px;
    background: var(--gold);
    transition: background 0.35s ease;
    z-index: 1;
}

.lp-mtier:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(11,37,69,0.10);
    border-color: rgba(11,37,69,0.18);
}

.lp-mtier:hover::before { background: var(--gold-light); }

/* ── FEATURED TIER — Premium elevation ─────────────────── */
.lp-mtier--featured {
    background:
        radial-gradient(ellipse at top, rgba(154,123,28,0.07) 0%, transparent 55%),
        var(--white);
    z-index: 2;
    box-shadow:
        0 16px 48px rgba(11,37,69,0.12),
        0 2px 12px rgba(154,123,28,0.06);
}

.lp-mtier--featured:hover {
    box-shadow:
        0 28px 72px rgba(11,37,69,0.18),
        0 4px 16px rgba(154,123,28,0.10);
}

/* Scale + lift only at desktop widths where there's room */
@media (min-width: 1081px) {
    .lp-mtier--featured {
        transform: scale(1.03) translateY(-8px);
    }
    .lp-mtier--featured:hover {
        transform: scale(1.04) translateY(-14px);
    }
}

/* Featured top border thicker */
.lp-mtier--featured::before { height: 5px; }

/* L-corner "seal" — gold extends down the left edge */
.lp-mtier--featured::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 5px;
    height: 76px;
    background: var(--gold);
    transition: background 0.35s ease;
    z-index: 1;
}

.lp-mtier--featured:hover::after { background: var(--gold-light); }

/* "Recommended" flag — refined with subtle shadow */
.lp-mtier__flag {
    position: absolute;
    top: -11px;
    left: 28px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 5px 12px 4px;
    line-height: 1;
    box-shadow: 0 3px 8px rgba(11,37,69,0.18);
    z-index: 3;
}

/* Tier icon above eyebrow */
.lp-mtier__icon {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 16px;
    line-height: 1;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.lp-mtier:hover .lp-mtier__icon { opacity: 1; }
.lp-mtier--featured .lp-mtier__icon { opacity: 1; }

/* Eyebrow — all-gold across tiers */
.lp-mtier__eyebrow {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.72;
    margin-bottom: 14px;
}

.lp-mtier--featured .lp-mtier__eyebrow { opacity: 1; }

/* Tier name */
.lp-mtier__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
}

/* One-line description */
.lp-mtier__desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 24px;
    min-height: 3.3em;
}

/* Divider — animated gold sweep on hover */
.lp-mtier__rule {
    display: block;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right,
        var(--gold) 0%, var(--gold) 50%,
        var(--border) 50%, var(--border) 100%);
    background-size: 200% 100%;
    background-position: right;
    margin-bottom: 22px;
    transition: background-position 0.6s cubic-bezier(0.22,1,0.36,1);
}

.lp-mtier:hover .lp-mtier__rule { background-position: left; }

/* Price block */
.lp-mtier__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.lp-mtier__amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.025em;
}

.lp-mtier--featured .lp-mtier__amount {
    color: var(--gold);
    text-shadow: 0 1px 2px rgba(11,37,69,0.06);
}

.lp-mtier__period {
    font-size: 0.78rem;
    color: var(--text-mid);
    font-weight: 500;
}

.lp-mtier__alt {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

/* "Includes" small caps label */
.lp-mtier__includes {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 14px;
}

/* Numbered benefits list */
.lp-mtier__benefits {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex: 1;
}

.lp-mtier__benefits li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.55;
    padding: 10px 0;
    border-bottom: 1px solid rgba(209,217,224,0.5);
}

.lp-mtier__benefits li:last-child { border-bottom: none; }

.lp-mtier__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.55;
}

/* CTA — outline navy by default, gold-filled for featured */
.lp-mtier__cta {
    display: block;
    padding: 13px 20px;
    text-align: center;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin-top: auto;
}

.lp-mtier__cta:hover {
    background: var(--navy);
    color: var(--white);
}

.lp-mtier--featured .lp-mtier__cta {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(154,123,28,0.22);
}

.lp-mtier--featured .lp-mtier__cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(154,123,28,0.30);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1080px) {
    .lp-mship-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .lp-mtier__desc { min-height: 0; }
}

@media (max-width: 600px) {
    .lp-mship-section { padding: 72px var(--gutter-mobile); }
    .lp-mship-header  { margin-bottom: 48px; }
    .lp-mship-grid    { grid-template-columns: 1fr; max-width: 440px; }
    .lp-mtier         { padding: 36px 26px 28px; }
}

/* ============================================================
   OUR PURPOSE — MANIFESTO (NAVY, NO CARDS)
   ============================================================ */
.lp-purpose {
    background: var(--navy);
    padding: 112px 24px 120px;
    position: relative;
    overflow: hidden;
}

/* Faint top shimmer — connects to other gold-trimmed sections */
.lp-purpose::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(201,146,42,0.30) 30%,
        rgba(201,146,42,0.30) 70%,
        transparent 100%);
}

/* Section header — centred */
.lp-purpose__header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 96px;
}

.lp-purpose__rule {
    display: block;
    height: 2px;
    width: 48px;
    background: linear-gradient(to right, var(--gold-light), rgba(201,146,42,0.25));
    margin: 0 auto 20px;
}

.lp-purpose__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.lp-purpose__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.lp-purpose__desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.78;
}

/* ── 3-COLUMN MANIFESTO ──────────────────────────────────── */
.lp-purpose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1140px;
    margin: 0 auto;
    gap: 0;
    align-items: start;
}

/* Each pillar — separated by vertical 1px lines */
.lp-purpose__item {
    padding: 0 44px;
    border-left: 1px solid rgba(255,255,255,0.10);
}

.lp-purpose__item:first-child {
    border-left: none;
    padding-left: 0;
}

.lp-purpose__item:last-child { padding-right: 0; }

/* Large gold Playfair number — primary visual anchor */
.lp-purpose__num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.8rem, 5.5vw, 5.6rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    opacity: 0.85;
}

/* Short gold rule below number */
.lp-purpose__divider {
    display: block;
    height: 1.5px;
    width: 36px;
    background: var(--gold-light);
    opacity: 0.45;
    margin-bottom: 26px;
}

/* Pillar title */
.lp-purpose__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    max-width: 280px;
}

/* Pillar body */
.lp-purpose__text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.82;
    margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
    .lp-purpose { padding: 88px var(--gutter-mobile) 96px; }
    .lp-purpose__header { margin-bottom: 72px; }
    .lp-purpose__grid {
        grid-template-columns: 1fr;
        gap: 56px;
        max-width: 560px;
    }
    .lp-purpose__item {
        padding: 56px 0 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.10);
    }
    .lp-purpose__item:first-child {
        padding-top: 0;
        border-top: none;
    }
    .lp-purpose__name { max-width: 100%; }
}

@media (max-width: 560px) {
    .lp-purpose { padding: 64px var(--gutter-mobile) 72px; }
    .lp-purpose__num { font-size: 3.4rem; }
    .lp-purpose__name { font-size: 1.2rem; }
}

/* ============================================================
   OUR VISION — CREAM EDITORIAL STATEMENT
   ============================================================ */
.lp-vision {
    background: var(--gold-pale);
    padding: 128px 24px 132px;
    position: relative;
    overflow: hidden;
}

/* Warm radial pockets — barely-visible depth (no flat colour) */
.lp-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 22%, rgba(154,123,28,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 82% 78%, rgba(154,123,28,0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Top gold shimmer line — same accent as other sections */
.lp-vision::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(154,123,28,0.35) 30%,
        rgba(154,123,28,0.35) 70%,
        transparent 100%);
}

/* Giant faint quotation watermark — editorial signature */
.lp-vision__deco {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(12rem, 30vw, 22rem);
    font-weight: 700;
    color: var(--gold);
    opacity: 0.06;
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    max-width: 100%;
    white-space: nowrap;
}

.lp-vision__container {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

/* ── HEADER ─────────────────────────────────────────────── */
.lp-vision__header {
    margin-bottom: 64px;
}

.lp-vision__rule {
    display: block;
    height: 2px;
    width: 48px;
    background: linear-gradient(to right, var(--gold), rgba(154,123,28,0.25));
    margin: 0 auto 20px;
}

.lp-vision__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.lp-vision__subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(11,37,69,0.55);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* ── STATEMENT ──────────────────────────────────────────── */
.lp-vision__statement {
    position: relative;
    padding: 12px 68px;
    margin-bottom: 56px;
}

/* Vertical gold rules framing the statement (editorial pull-quote) */
.lp-vision__bar {
    position: absolute;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--gold) 22%,
        var(--gold) 78%,
        transparent 100%
    );
    opacity: 0.55;
}

.lp-vision__bar--l { left: 0; }
.lp-vision__bar--r { right: 0; }

.lp-vision__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.8vw, 2.3rem);
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    line-height: 1.42;
    letter-spacing: -0.015em;
    margin: 0;
}

/* Emphasised key phrase inside the statement */
.lp-vision__text em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

/* ── CTAs ───────────────────────────────────────────────── */
.lp-vision__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .lp-vision { padding: 96px var(--gutter-mobile) 104px; }
    .lp-vision__header { margin-bottom: 48px; }
    .lp-vision__statement { padding: 8px 44px; margin-bottom: 44px; }
}

@media (max-width: 600px) {
    .lp-vision { padding: 72px var(--gutter-mobile) 80px; }
    .lp-vision__deco { font-size: 14rem; top: 14%; }
    .lp-vision__statement { padding: 6px 24px; margin-bottom: 36px; }
    .lp-vision__text { font-size: clamp(1.25rem, 5vw, 1.6rem); line-height: 1.48; }
    .lp-vision__bar { top: 8px; bottom: 8px; }
}

/* ============================================================
   LATEST UPDATES — EDITORIAL FEATURE + GRID
   ============================================================ */
.lp-news-section {
    background: var(--white);
    padding: 112px 24px;
    position: relative;
}

/* Top gold shimmer */
.lp-news-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 240px;
    max-width: 60%;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(154,123,28,0.32) 30%,
        rgba(154,123,28,0.32) 70%,
        transparent 100%);
}

/* Header with View All link */
.lp-news-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    max-width: 1240px;
    margin: 0 auto 56px;
    flex-wrap: wrap;
}

.lp-news-header__intro { max-width: 560px; }

.lp-news-header__rule {
    display: block;
    height: 2px;
    width: 48px;
    background: linear-gradient(to right, var(--gold), rgba(154,123,28,0.25));
    margin-bottom: 20px;
}

.lp-news-header__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.lp-news-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.lp-news-header__viewall {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1.5px solid var(--gold);
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.lp-news-header__viewall:hover {
    color: var(--gold);
}

/* Inner container */
.lp-news-inner {
    max-width: 1240px;
    margin: 0 auto;
}

/* ── FEATURED ARTICLE — navy/image split ─────────────────── */
.lp-news-featured {
    display: grid;
    grid-template-columns: 55fr 45fr;
    background: var(--navy);
    overflow: hidden;
    margin-bottom: 32px;
    min-height: 420px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.lp-news-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(11,37,69,0.18);
}

.lp-news-featured__content {
    padding: 56px 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-news-featured__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.lp-news-featured__tag {
    background: var(--gold);
    color: var(--white);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 5px 12px 4px;
    line-height: 1;
}

.lp-news-featured__date {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
}

.lp-news-featured__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 22px;
}

.lp-news-featured__excerpt {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.80;
    margin-bottom: 32px;
    max-width: 480px;
}

.lp-news-featured__link {
    align-self: flex-start;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    padding-bottom: 4px;
    border-bottom: 1.5px solid var(--gold-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.lp-news-featured:hover .lp-news-featured__link { gap: 14px; }

.lp-news-featured__image-wrap {
    position: relative;
    overflow: hidden;
}

.lp-news-featured__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease-in-out;
}

.lp-news-featured:hover .lp-news-featured__image {
    transform: scale(1.05);
}

/* ── GRID OF 3 SMALLER CARDS ─────────────────────────────── */
.lp-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-news-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(11,37,69,0.08);
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.lp-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(11,37,69,0.10);
    border-color: rgba(11,37,69,0.16);
}

.lp-news-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.lp-news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 5s ease-in-out;
}

.lp-news-card:hover .lp-news-card__image {
    transform: scale(1.06);
}

.lp-news-card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11,37,69,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--gold-light);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 5px 10px;
    line-height: 1;
    z-index: 2;
}

.lp-news-card__body {
    padding: 24px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-news-card__date {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
}

.lp-news-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}

.lp-news-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.lp-news-card__link {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.lp-news-card:hover .lp-news-card__link {
    gap: 12px;
    color: var(--gold-light);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .lp-news-featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .lp-news-featured__image-wrap {
        order: -1;
        aspect-ratio: 16/9;
    }
    .lp-news-featured__content { padding: 44px 36px 40px; }
    .lp-news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .lp-news-section { padding: 76px var(--gutter-mobile); }
    .lp-news-header { margin-bottom: 44px; gap: 20px; }
    .lp-news-featured__content { padding: 36px 26px 32px; }
    .lp-news-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   WHAT WE DO — PROGRAMME SPREAD (two parallel tracks)
   ============================================================ */
.lp-programs {
    background: var(--white);
    padding: 112px 24px;
    position: relative;
}

/* Top gold shimmer */
.lp-programs::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 240px;
    max-width: 60%;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(154,123,28,0.32) 30%,
        rgba(154,123,28,0.32) 70%,
        transparent 100%);
}

/* Centred header */
.lp-programs-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}

.lp-programs-header__rule {
    display: block;
    height: 2px;
    width: 48px;
    background: linear-gradient(to right, var(--gold), rgba(154,123,28,0.25));
    margin: 0 auto 20px;
}

.lp-programs-header__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.lp-programs-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.lp-programs-header__desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.78;
}

/* Two-track grid with vertical gold divider */
.lp-programs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 64px;
    max-width: 1240px;
    margin: 0 auto;
}

/* Vertical gold divider — fades top and bottom */
.lp-programs__divider {
    width: 1px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(154,123,28,0.25) 12%,
        rgba(154,123,28,0.45) 50%,
        rgba(154,123,28,0.25) 88%,
        transparent 100%);
}

/* ── EACH TRACK ─────────────────────────────────────────── */
.lp-track {
    display: flex;
    flex-direction: column;
}

.lp-track__icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0.75;
    line-height: 1;
}

.lp-track__eyebrow {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.lp-track__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}

.lp-track__desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 420px;
}

/* List of items */
.lp-track__items {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.lp-track__item {
    border-bottom: 1px solid rgba(11,37,69,0.08);
    padding: 0;
}

.lp-track__item:last-child { border-bottom: none; }

/* The clickable row inside each item */
.lp-track__link {
    display: grid;
    grid-template-columns: 38px 1fr 20px;
    gap: 14px;
    padding: 22px 4px;
    align-items: start;
    text-decoration: none;
    color: inherit;
    transition: padding-left 0.3s ease;
    cursor: pointer;
}

.lp-track__link:hover {
    padding-left: 12px;
}

.lp-track__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.lp-track__link:hover .lp-track__num {
    color: var(--gold-light);
}

.lp-track__item-content {
    min-width: 0;
}

.lp-track__item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 4px;
}

.lp-track__item-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}

.lp-track__arrow {
    color: var(--gold);
    opacity: 0.28;
    font-size: 0.9rem;
    padding-top: 6px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: right;
}

.lp-track__link:hover .lp-track__arrow {
    opacity: 0.9;
    transform: translateX(4px);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .lp-programs { padding: 80px var(--gutter-mobile); }
    .lp-programs-header { margin-bottom: 56px; }
    .lp-programs-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 600px;
    }
    .lp-programs__divider {
        height: 1px;
        width: 100%;
        background: linear-gradient(to right,
            transparent 0%,
            rgba(154,123,28,0.3) 50%,
            transparent 100%);
    }
}

@media (max-width: 560px) {
    .lp-programs { padding: 64px var(--gutter-mobile); }
    .lp-track__title { font-size: 1.45rem; }
    .lp-track__link {
        grid-template-columns: 32px 1fr 18px;
        padding: 18px 4px;
    }
}

/* ============================================================
   FOOTER — INSTITUTIONAL AUTHORITY
   ============================================================ */
.lp-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    position: relative;
}

/* Top gold shimmer — section signature */
.lp-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 240px;
    max-width: 60%;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(201,146,42,0.40) 30%,
        rgba(201,146,42,0.40) 70%,
        transparent 100%);
}

/* ── BRAND ANCHOR ───────────────────────────────────────── */
.lp-footer__anchor {
    text-align: center;
    padding: 84px 24px 56px;
    max-width: 1240px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-footer__wordmark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.lp-footer__wordmark-accent { color: var(--gold-light); }

.lp-footer__tagline {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 32px;
}

.lp-footer__newsletter {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    transition: border-color 0.3s ease;
}

.lp-footer__newsletter:focus-within {
    border-color: var(--gold-light);
}

.lp-footer__newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 18px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.88rem;
}

.lp-footer__newsletter input::placeholder {
    color: rgba(255,255,255,0.40);
}

.lp-footer__newsletter button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0 22px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lp-footer__newsletter button:hover {
    background: var(--gold-light);
    color: var(--navy);
}

/* ── LINKS GRID — 4 columns ─────────────────────────────── */
.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 24px 56px;
}

.lp-footer__col-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201,146,42,0.20);
}

/* Brand mini-block (first column) */
.lp-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.lp-footer__brand img {
    height: 52px;
    width: auto;
}

.lp-footer__brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.lp-footer__brand-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.50);
    line-height: 1.65;
    margin-bottom: 8px;
}

/* Outline social icons */
.lp-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.lp-footer__social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.lp-footer__social-link:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    background: rgba(201,146,42,0.06);
}

/* Link columns */
.lp-footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-footer__link {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.62);
    transition: color 0.3s ease, padding-left 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.5;
}

.lp-footer__link:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

/* Affiliation column */
.lp-footer__affiliation {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-footer__affiliation-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 4px;
}

.lp-footer__affiliation-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
}

.lp-footer__affiliation-since {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 8px;
}

/* ── BOTTOM BAR ─────────────────────────────────────────── */
.lp-footer__bottom {
    background: rgba(0,0,0,0.18);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-footer__bottom-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.lp-footer__copy {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.40);
    letter-spacing: 0.02em;
}

.lp-footer__legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.lp-footer__legal a {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lp-footer__legal a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .lp-footer__anchor { padding: 64px var(--gutter-mobile) 48px; }
    .lp-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px 36px;
        padding: 52px var(--gutter-mobile) 44px;
    }
    .lp-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .lp-footer__anchor { padding: 52px var(--gutter-mobile) 40px; }
    .lp-footer__newsletter { flex-direction: column; max-width: 100%; }
    .lp-footer__newsletter input { width: 100%; padding: 14px 16px; }
    .lp-footer__newsletter button {
        padding: 14px 16px;
        border-top: 1px solid rgba(255,255,255,0.18);
    }
    .lp-footer__grid { grid-template-columns: 1fr; gap: 40px; padding: 44px var(--gutter-mobile) 36px; }
    .lp-footer__bottom-inner { flex-direction: column; text-align: center; padding: var(--gutter-mobile); }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.slide-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.transition-element { opacity: 0; }

.fly-from-bottom { transform: translateY(60px); }
.fly-from-bottom.visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }

.fly-from-left { transform: translateX(-60px); }
.fly-from-left.visible { opacity: 1; transform: translateX(0); transition: opacity 0.7s ease, transform 0.7s ease; }

.fly-from-right { transform: translateX(60px); }
.fly-from-right.visible { opacity: 1; transform: translateX(0); transition: opacity 0.7s ease, transform 0.7s ease; }

.spiral { transform: translateY(40px) scale(0.95); }
.spiral.visible { opacity: 1; transform: translateY(0) scale(1); transition: opacity 0.7s ease, transform 0.7s ease; }

.fade-in { transform: scale(0.97); }
.fade-in.visible { opacity: 1; transform: scale(1); transition: opacity 0.7s ease, transform 0.7s ease; }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */
.bg-dark-blue { background: var(--navy); color: var(--white); }
.text-dark-blue { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-silver { color: #c0c0c0; }
.easy-link { color: var(--gold); text-decoration: none; font-weight: 600; font-family: 'Inter', sans-serif; }

/* ============================================================
   FORMS (PRESERVED — used in registration, login, donation)
   ============================================================ */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
    font-weight: 500;
}

.reg-section, .log-section {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    margin: 5.5rem auto 4rem;  /* top clears the fixed 80px nav */
    padding: 2.5rem;
    background: var(--navy-mid);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    width: 90%;
    color: var(--white);
}

.form-head {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    letter-spacing: 0.02em;
    text-align: center;
}

.form-btn {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding: 1rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    border: solid 1px var(--gold);
    border-radius: 5px;
    cursor: pointer;
    background: none;
    transition: background var(--transition);
}

.form-btn:hover { background: rgba(201,146,42,0.15); }

.required {
    font-size: 1rem;
    padding: 0;
    color: var(--gold-light);
}

.login-pad { padding: 0 150px; }

@media (max-width: 768px) {
    .reg-section, .log-section {
        margin: 3rem auto;
        padding: 1.5rem;
        width: 98%;
    }
    .login-pad { padding: 0 40px; }
}

@media (max-width: 480px) {
    .reg-section, .log-section {
        padding: 1rem;
        width: 98%;
    }
    .login-pad { padding: 0 5px; }
    .pipe-display { display: none; }
}

/* Legacy navbar styles for compatibility */
.brand { width: 30px; height: 30px; display: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* ============================================================
   LOGIN PAGE — two-panel split
   ============================================================ */
.segn-login {
    display: grid;
    grid-template-columns: 42fr 58fr;
    min-height: 100vh;
    margin-top: 0;         /* no gap between navbar and panels */
}

/* Left: dark navy brand panel — extends behind the fixed navbar */
.segn-login__brand {
    background: var(--navy);
    padding: calc(var(--nav-height) + 52px) 48px 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Left-align the gold rule */
.segn-login__brand .segn-page__rule {
    margin: 0 0 18px;
    animation: none;
    width: 44px;
    opacity: 1;
}

.segn-login__brand-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.segn-login__brand-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

/* Perks list */
.segn-login__perks {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.segn-login__perks li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.5;
}

.segn-login__perk-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201,146,42,0.15);
    border: 1px solid rgba(201,146,42,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.segn-login__perk-icon .fa {
    font-size: 0.72rem;
    color: var(--gold-light);
}

/* Right: form panel */
.segn-login__form-panel {
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 24px) 40px 60px;
}

.segn-login__form-inner {
    width: 100%;
    max-width: 420px;
}

/* Forgot password */
.segn-login__forgot {
    font-size: 0.80rem;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(154,123,28,0.40);
    cursor: pointer;
    transition: color 0.2s ease;
}

.segn-login__forgot:hover { color: var(--gold-light); }

/* Divider */
.segn-login__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-light);
    font-size: 0.78rem;
}

.segn-login__divider::before,
.segn-login__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Register link */
.segn-login__register-link {
    font-size: 0.84rem;
    color: var(--text-mid);
    text-align: center;
    margin-bottom: 20px;
}

.segn-login__register-link a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

/* Admin toggle — small, not prominent */
.segn-login__admin-row {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.segn-login__admin-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.74rem;
    color: var(--text-light);
    cursor: pointer;
}

.segn-login__admin-check {
    width: 14px;
    height: 14px;
    accent-color: var(--gold);
    cursor: pointer;
}

/* ── LOGIN RESPONSIVE ─────────────────────────────────── */
@media (max-width: 860px) {
    .segn-login {
        grid-template-columns: 1fr;
        margin-top: 0;
        min-height: auto;
    }
    .segn-login__brand {
        padding: calc(var(--nav-height) + 32px) var(--gutter-mobile) 36px;
        justify-content: flex-start;
    }
    .segn-login__brand-title { font-size: clamp(2rem, 7vw, 2.8rem); }
    .segn-login__form-panel { padding: 40px var(--gutter-mobile) 64px; }
    .segn-login__form-inner { max-width: 100%; }

    /* Compact perks list on tablet */
    .segn-login__perks { gap: 10px; }
    .segn-login__perks li { font-size: 0.82rem; }
}

/* ── Phone: compact brand, hide perks, form is primary ─── */
@media (max-width: 540px) {
    .segn-login__brand {
        padding: calc(var(--nav-height) + 16px) var(--gutter-mobile) 24px;
    }
    .segn-login__brand-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        margin-bottom: 10px;
    }
    /* Hide perks list on phones — form is the focus */
    .segn-login__perks { display: none; }
    /* Trim the subtitle text */
    .segn-login__brand .segn-page__sub {
        font-size: 0.84rem;
        margin-bottom: 0;
        line-height: 1.6;
    }
    .segn-login__form-panel { padding: 28px var(--gutter-mobile) 48px; }
    /* Full-width sign-in button */
    .segn-btn-submit { width: 100%; justify-content: center; }
    /* Stack divider */
    .segn-login__divider { margin: 16px 0; }
}

/* ============================================================
   SEGN FORM PAGES — Registration & Donation (v2)
   ============================================================ */

/* Page wrapper — light body, dark hero header */
.segn-page {
    background: var(--white);   /* flat white — no grey surround */
    min-height: 100vh;
    padding: 0 0 96px;
}

/* ── PAGE HERO — dark navy header band ────────────────────── */
.segn-page__hero {
    background: var(--navy);
    text-align: center;
    padding: calc(var(--nav-height) + 52px) 24px 60px;
    position: relative;
}

/* Subtle bottom shimmer separating hero from body */
.segn-page__hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 240px;
    max-width: 60%;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(201,146,42,0.35) 30%,
        rgba(201,146,42,0.35) 70%,
        transparent 100%);
}

.segn-page__rule {
    display: block;
    height: 2px;
    width: 48px;
    background: linear-gradient(to right, var(--gold-light), rgba(201,146,42,0.25));
    margin: 0 auto 20px;
    animation: about-rule-in 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

.segn-page__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.segn-page__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.segn-page__sub {
    font-size: 0.96rem;
    color: rgba(255,255,255,0.50);
    line-height: 1.78;
    max-width: 520px;
    margin: 0 auto;
    text-wrap: balance;       /* even line breaks — supported in Chrome 114+, Safari 17.5+ */
    overflow-wrap: break-word;
}

/* ── NOTICE BAND ──────────────────────────────────────────── */
.segn-notice {
    max-width: 820px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

.segn-notice__inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(201,146,42,0.06);
    border: 1px solid rgba(201,146,42,0.22);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
}

.segn-notice__icon {
    color: var(--gold-light);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.segn-notice__title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
    text-align: left;
}

.segn-notice__list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.segn-notice__list li {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.5;
    text-align: left;
    text-wrap: balance;
}

.segn-notice__list strong { color: var(--gold-light); font-weight: 600; }

/* ── FORM CARD ────────────────────────────────────────────── */
.segn-card-wrap {
    max-width: 900px;       /* wider — no visual card to constrain */
    margin: 0 auto;
    padding: 0 48px;
}

.segn-card {
    background: transparent;  /* flat — no card chrome */
    border: none;
    border-radius: 0;
    padding: 52px 0;
    box-shadow: none;
}

/* ── STEPPER ──────────────────────────────────────────────── */
.segn-stepper {
    display: flex;
    align-items: center;
    margin-bottom: 44px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.segn-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.segn-step__badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
    font-family: 'Playfair Display', Georgia, serif;
}

.segn-step__label {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    white-space: nowrap;
}

.segn-step__line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.09);
    margin: 0 8px 20px;
}

/* ── REQUIRED NOTE ────────────────────────────────────────── */
.segn-req-note {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.40);
    margin-bottom: 36px;
    text-align: right;
}

.segn-req-star { color: var(--gold-light); }

/* ── FORM SECTIONS ────────────────────────────────────────── */
.segn-section { margin-bottom: 0; }

.segn-section__header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
}

.segn-section__letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.18;
    line-height: 0.9;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
    margin-top: 2px;
}

.segn-section__eyebrow {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.80;
    margin-bottom: 6px;
}

.segn-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

/* ── SECTION DIVIDER ──────────────────────────────────────── */
.segn-divider {
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(201,146,42,0.18) 25%,
        rgba(201,146,42,0.18) 75%,
        transparent 100%);
    margin: 48px 0;
}

/* ── GRID LAYOUTS ─────────────────────────────────────────── */
.segn-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

.segn-grid--2     { grid-template-columns: 1fr 1fr; }
.segn-grid--3     { grid-template-columns: 1fr 1fr 1fr; }
.segn-grid--title { grid-template-columns: 148px 1fr 1fr; }
.segn-grid--1     { grid-template-columns: 1fr; }

/* ── FORM FIELDS ──────────────────────────────────────────── */
.segn-field { display: flex; flex-direction: column; margin-bottom: 4px; }

.segn-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}

.segn-input,
.segn-select,
.segn-textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 11px 14px;
    font-size: 0.88rem;
    font-family: inherit;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.segn-input::placeholder { color: rgba(255,255,255,0.25); }

.segn-input:focus,
.segn-select:focus,
.segn-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(154,123,28,0.14);
}

.segn-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23C9922A' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 32px;
    cursor: pointer;
}

.segn-select option { background: var(--navy-mid); color: var(--white); }

.segn-textarea { resize: vertical; min-height: 96px; }

/* File input */
.segn-input[type="file"] {
    padding: 9px 12px;
    cursor: pointer;
}

.segn-input[type="file"]::-webkit-file-upload-button {
    background: rgba(201,146,42,0.15);
    border: 1px solid rgba(201,146,42,0.35);
    border-radius: 4px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.segn-input[type="file"]::-webkit-file-upload-button:hover {
    background: rgba(201,146,42,0.25);
}

/* Password input group */
.segn-input-group {
    display: flex;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.segn-input-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(154,123,28,0.14);
}

.segn-input-group .segn-input {
    border: none;
    border-radius: 0;
    flex: 1;
    box-shadow: none !important;
}

.segn-input-group .segn-input:focus { border: none; }

.segn-toggle-btn {
    background: rgba(255,255,255,0.04);
    border: none;
    border-left: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.38);
    padding: 0 13px;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.25s ease, background 0.25s ease;
}

.segn-toggle-btn:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); }

.segn-password-hint {
    font-size: 0.70rem;
    color: rgba(255,255,255,0.32);
    margin-top: 5px;
}

/* Error message */
.segn-field__error {
    font-size: 0.74rem;
    color: #fc8181;
    margin-top: 5px;
    min-height: 1.1em;
}

/* ── MEMBERSHIP CARDS (Section B) ─────────────────────────── */
.segn-mship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 6px;
}

.segn-mship-card {
    position: relative;
    border: 1.5px solid rgba(255,255,255,0.11);
    border-radius: var(--radius-md);
    padding: 22px 20px 18px;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.segn-mship-card:hover {
    border-color: rgba(154,123,28,0.40);
    background: rgba(154,123,28,0.05);
}

.segn-mship-card input[type="radio"] {
    position: absolute;
    top: 18px; right: 18px;
    width: 17px; height: 17px;
    accent-color: var(--gold);
    cursor: pointer;
}

.segn-mship-card__icon {
    font-size: 1.15rem;
    color: var(--gold);
    opacity: 0.60;
    margin-bottom: 11px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.segn-mship-card__eyebrow {
    font-size: 0.50rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.70;
    margin-bottom: 6px;
}

.segn-mship-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 7px;
    padding-right: 24px;
}

.segn-mship-card__desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.46);
    line-height: 1.55;
    margin-bottom: 13px;
}

.segn-mship-card__rule {
    display: block;
    height: 1px;
    background: rgba(255,255,255,0.09);
    margin-bottom: 11px;
}

.segn-mship-card__badge {
    display: inline-block;
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 3px 10px;
}

/* Selected state — toggled via JS */
.segn-mship-card--selected {
    border-color: var(--gold) !important;
    background: rgba(154,123,28,0.10) !important;
    box-shadow: 0 0 0 1px rgba(154,123,28,0.28);
}

.segn-mship-card--selected .segn-mship-card__icon  { opacity: 1; }
.segn-mship-card--selected .segn-mship-card__eyebrow { opacity: 1; }
.segn-mship-card--selected .segn-mship-card__badge {
    color: var(--gold-light);
    background: rgba(154,123,28,0.18);
}

/* ── SPONSOR SECTION ──────────────────────────────────────── */
.segn-sponsor-note {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.72;
    margin-bottom: 28px;
    padding: 14px 18px;
    border-left: 2px solid rgba(154,123,28,0.38);
    background: rgba(255,255,255,0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.segn-sponsor-preview {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 4px 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-sm);
    padding: 13px 15px;
    margin-top: 10px;
}

.segn-sponsor-preview__lbl {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
    line-height: 1.9;
}

.segn-sponsor-preview__val {
    font-size: 0.82rem;
    color: var(--gold-light);
    line-height: 1.9;
    font-weight: 500;
    min-height: 1.5em;
}

/* ── PAYMENT PANELS ───────────────────────────────────────── */
.segn-pay-panel {
    margin-top: 22px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    animation: segn-fade-in 0.3s ease;
}

@keyframes segn-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── DUES CARDS (inside mdues-div) ───────────────────────── */
.segn-dues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.segn-dues-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 16px;
    border: 1.5px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.segn-dues-label:hover { border-color: rgba(154,123,28,0.38); }

.segn-dues-label input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.segn-dues-label__name {
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-bottom: 4px;
}

.segn-dues-label__amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--gold-light);
}

/* ── SUBMIT ROW ───────────────────────────────────────────── */
.segn-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 44px;
}

.segn-login-link {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.45);
}

.segn-login-link a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    text-decoration-color: rgba(201,146,42,0.45);
    transition: text-decoration-color 0.3s ease;
}

.segn-login-link a:hover { text-decoration-color: var(--gold-light); }

.segn-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.segn-btn-submit:hover:not(:disabled) {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154,123,28,0.40);
}

.segn-btn-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.segn-form-alert {
    text-align: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--gold-light);
    background: rgba(154,123,28,0.08);
    border: 1px solid rgba(154,123,28,0.20);
    margin-top: 16px;
}

/* ── GATEWAY NOTICE (Paystack branding) ──────────────────── */
.segn-gateway-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(11,37,69,0.04);
    border: 1px solid rgba(11,37,69,0.10);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 8px;
}

.segn-gateway-notice__left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.segn-gateway-notice__left > .fa {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.segn-gateway-notice__name {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.segn-gateway-notice__sub {
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.55;
    margin: 0;
}

.segn-gateway-notice__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.segn-gateway-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text-mid);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 10px;
}

.segn-gateway-badge .fa { color: var(--gold); font-size: 0.7rem; }

/* ── PAYMENT SUMMARY CARD ─────────────────────────────────── */
.segn-pay-summary {
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-top: 28px;
}

.segn-pay-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.segn-pay-summary__row:last-child { border-bottom: none; }

.segn-pay-summary__lbl {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.50);
    text-transform: uppercase;
}

.segn-pay-summary__val {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    text-align: right;
}

.segn-pay-summary__divider {
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(201,146,42,0.35) 30%,
        rgba(201,146,42,0.35) 70%,
        transparent 100%);
    margin: 8px 0;
}

.segn-pay-summary__row--total .segn-pay-summary__lbl {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.70);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.segn-pay-summary__total {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

/* ── PAYSTACK BADGE ───────────────────────────────────────── */
.segn-powered {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.segn-powered__label {
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
}

.segn-powered__logo {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.50);
    font-size: 0.80rem;
    font-weight: 700;
}

.segn-powered__logo i { color: var(--gold); }

/* ── DONATION SPLIT LAYOUT ────────────────────────────────── */
.segn-donation {
    display: grid;
    grid-template-columns: 42fr 58fr;
    min-height: 100vh;
    margin-top: 0;         /* panels extend to page top — no gap */
}

/* Left: dark navy info panel — extends behind the fixed navbar */
.segn-donation__info {
    background: var(--navy);
    /* Top padding clears the navbar height so text starts below it */
    padding: calc(var(--nav-height) + 32px) 48px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100vh;
}

/* Left-align rule inside the dark info panel */
.segn-donation__info .segn-page__rule {
    margin: 0 0 18px;
    animation: none;
    width: 44px;
    opacity: 1;
}

.segn-donation__info .segn-page__title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    margin-bottom: 18px;
}

.segn-donation__info .segn-page__sub { text-align: left; margin: 0 0 40px; }

/* Impact stats in info panel */
.segn-donation__stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.09);
    padding-top: 32px;
    margin-bottom: 40px;
}

.segn-donation__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.09);
}

.segn-donation__stat:first-child { padding-left: 0; }
.segn-donation__stat:last-child  { border-right: none; }

.segn-donation__stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.segn-donation__stat-lbl {
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
    line-height: 1.4;
}

/* Trust bullets */
.segn-donation__trust {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.segn-donation__trust li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.4;
}

.segn-donation__trust li i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Right: off-white form panel */
.segn-donation__form-panel {
    background: var(--off-white);
    /* Top padding clears the navbar so form starts below it */
    padding: calc(var(--nav-height) + 40px) 64px 96px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Section title inside form panel */
.segn-form-panel__eyebrow {
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.segn-form-panel__rule {
    display: block;
    height: 2px;
    width: 40px;
    background: linear-gradient(to right, var(--gold), rgba(154,123,28,0.25));
    margin-bottom: 18px;
}

.segn-form-panel__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.segn-form-panel__sub {
    font-size: 0.90rem;
    color: var(--text-mid);
    line-height: 1.72;
    margin-bottom: 36px;
}

/* Light-mode inputs for donation panel */
.segn-field--light .segn-label {
    color: var(--text-dark);
}

.segn-field--light .segn-input,
.segn-field--light .segn-select,
.segn-field--light .segn-textarea {
    background-color: var(--white);
    border-color: var(--border);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.segn-field--light .segn-input::placeholder { color: var(--text-light); }

.segn-field--light .segn-input:focus,
.segn-field--light .segn-select:focus,
.segn-field--light .segn-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(154,123,28,0.10);
    background-color: var(--white);
}

/* Full shorthand so background-repeat is explicit — prevents tiling */
.segn-field--light .segn-select {
    background: var(--white) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239A7B1C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") no-repeat right 10px center / 1rem;
}

.segn-field--light .segn-select option { background: var(--white); color: var(--text-dark); }

.segn-field--light .segn-field__error { color: #c53030; }

/* Amount preset pills */
.segn-amount-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 4px;
}

.segn-amount-btn {
    padding: 12px 8px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

.segn-amount-btn small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 3px;
}

.segn-amount-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}

.segn-amount-btn.active {
    border-color: var(--navy);
    color: var(--white);
    background: var(--navy);
}

.segn-amount-btn.active small { color: rgba(255,255,255,0.55); }

/* Donation submit button */
.segn-btn-submit--navy {
    width: 100%;
    justify-content: center;
    background: var(--navy);
    border-color: var(--navy);
}

.segn-btn-submit--navy:hover:not(:disabled) {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(154,123,28,0.35);
}

/* Light powered-by */
.segn-powered--light {
    border-top-color: rgba(0,0,0,0.08);
}

.segn-powered--light .segn-powered__label { color: var(--text-light); }
.segn-powered--light .segn-powered__logo  { color: var(--text-mid); }

/* Donation alert */
.segn-form-alert--light {
    color: var(--navy);
    background: rgba(154,123,28,0.08);
    border-color: rgba(154,123,28,0.22);
}

/* ============================================================
   REGISTRATION CARD — LIGHT OVERRIDE
   White card on dark navy page for premium contrast
   ============================================================ */

/* Give the card-wrap a top pad so the card clears the notice band */
.segn-card-wrap {
    padding-bottom: 96px;
}

/* Flat design — no card chrome, form sits directly on white page */
.segn-card {
    background: transparent !important;
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
}

/* ── Stepper on white ────────────────────────────────────── */
.segn-card .segn-stepper {
    border-bottom-color: var(--gray-light);
}

.segn-card .segn-step__badge {
    background: var(--white);
    border-color: var(--gray-light);
    color: var(--text-mid);
    box-shadow: var(--shadow-sm);
}

.segn-card .segn-step__line {
    background: var(--gray-light);
    margin-bottom: 20px;
}

.segn-card .segn-step__label { color: var(--text-light); }

/* ── Required note ───────────────────────────────────────── */
.segn-card .segn-req-note { color: var(--text-mid); }
.segn-card .segn-req-star { color: var(--gold); }

/* ── Section headers ─────────────────────────────────────── */
.segn-card .segn-section__header {
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 20px;
    margin-bottom: 28px;
}

.segn-card .segn-section__letter {
    color: var(--navy);
    opacity: 0.10;
}

.segn-card .segn-section__eyebrow { color: var(--gold); }
.segn-card .segn-section__title   { color: var(--navy); }

/* ── Dividers ────────────────────────────────────────────── */
.segn-card .segn-divider {
    background: linear-gradient(to right,
        transparent 0%,
        rgba(154,123,28,0.20) 25%,
        rgba(154,123,28,0.20) 75%,
        transparent 100%);
}

/* ── Labels ──────────────────────────────────────────────── */
.segn-card .segn-label { color: var(--text-dark); }

/* ── Inputs (light mode) ─────────────────────────────────── */
/* Use background-color (NOT the background shorthand) so we don't
   reset background-repeat/position/size from the base .segn-select rule */
.segn-card .segn-input,
.segn-card .segn-select,
.segn-card .segn-textarea {
    background-color: var(--white);
    border-color: var(--border);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.segn-card .segn-input::placeholder { color: var(--text-light); }

.segn-card .segn-input:focus,
.segn-card .segn-select:focus,
.segn-card .segn-textarea:focus {
    background-color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(154,123,28,0.10), var(--shadow-sm);
}

/* Selects: use full background shorthand so every sub-property is explicit */
.segn-card .segn-select {
    background: var(--white) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239A7B1C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") no-repeat right 10px center / 1rem;
}

.segn-card .segn-select option { background: var(--white); color: var(--text-dark); }

.segn-card .segn-input[type="file"] { background: var(--off-white); }

/* ── Input groups (password) ─────────────────────────────── */
.segn-card .segn-input-group {
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.segn-card .segn-input-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(154,123,28,0.10);
}

.segn-card .segn-toggle-btn {
    background: var(--off-white);
    border-left-color: var(--border);
    color: var(--text-light);
}

.segn-card .segn-toggle-btn:hover {
    background: var(--gray-light);
    color: var(--gold);
}

.segn-card .segn-password-hint { color: var(--text-light); }
.segn-card .segn-field__error  { color: #c53030; }

/* ── Membership cards (white on white — strong borders) ──── */
.segn-card .segn-mship-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.segn-card .segn-mship-card:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
    box-shadow: var(--shadow-md);
}

.segn-card .segn-mship-card__icon   { color: var(--gold); opacity: 0.75; }
.segn-card .segn-mship-card__name   { color: var(--navy); }
.segn-card .segn-mship-card__desc   { color: var(--text-mid); }
.segn-card .segn-mship-card__rule   { background: var(--gray-light); }

.segn-card .segn-mship-card__badge {
    color: var(--text-mid);
    background: var(--off-white);
    border: 1px solid var(--border);
}

.segn-card .segn-mship-card--selected {
    border-color: var(--gold) !important;
    background: var(--gold-pale) !important;
    box-shadow: 0 0 0 2px rgba(154,123,28,0.22), var(--shadow-md) !important;
}

.segn-card .segn-mship-card--selected .segn-mship-card__icon   { opacity: 1; }
.segn-card .segn-mship-card--selected .segn-mship-card__badge  {
    color: var(--gold);
    background: rgba(154,123,28,0.12);
    border-color: rgba(154,123,28,0.30);
}

/* ── Sponsor note + preview ──────────────────────────────── */
.segn-card .segn-sponsor-note {
    color: var(--text-mid);
    font-style: italic;
    border-left-color: var(--gold);
    background: var(--gold-pale);
}

.segn-card .segn-sponsor-preview {
    background: var(--off-white);
    border-color: var(--border);
}

.segn-card .segn-sponsor-preview__lbl { color: var(--text-light); }
.segn-card .segn-sponsor-preview__val { color: var(--gold); }

/* ── Payment panels ──────────────────────────────────────── */
.segn-card .segn-pay-panel {
    background: var(--off-white);
    border-color: var(--gray-light);
}

.segn-card .segn-section__eyebrow { color: var(--gold); }

.segn-card .segn-dues-label {
    background: var(--white);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.segn-card .segn-dues-label:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.segn-card .segn-dues-label__name   { color: var(--navy); }
.segn-card .segn-dues-label__amount { color: var(--gold); }

/* ── Submit row ──────────────────────────────────────────── */
.segn-card .segn-submit-row  { border-top-color: var(--gray-light); }
.segn-card .segn-login-link  { color: var(--text-mid); }
.segn-card .segn-login-link a { color: var(--gold); text-decoration-color: rgba(154,123,28,0.40); }

/* ── Powered-by (light) ──────────────────────────────────── */
.segn-card .segn-powered { border-top-color: var(--gray-light); }
.segn-card .segn-powered__label { color: var(--text-light); }
.segn-card .segn-powered__logo  { color: var(--text-mid); }
.segn-card .segn-powered__logo i { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE OVERHAUL
   Breakpoints: 960 tablet · 760 large phone · 540 phone · 400 small phone
   ════════════════════════════════════════════════════════════ */

/* ── 960px: Donation stacks vertically ───────────────────── */
@media (max-width: 960px) {
    .segn-donation {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-top: 0;
    }
    .segn-donation__info {
        position: static;
        /* Fill at least the viewport height so content can be centred */
        min-height: 100svh;
        padding: calc(var(--nav-height) + 32px) var(--gutter-mobile) 44px;
        /* Vertically centre the content block inside the dark panel */
        justify-content: center;
        gap: 28px;         /* even breathing room between groups */
    }
    .segn-donation__info .segn-page__sub     { text-align: left; }
    .segn-donation__info .segn-page__title   { text-align: left; font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: 0; }
    .segn-donation__info .segn-page__eyebrow { text-align: left; }
    .segn-donation__stats  { justify-content: flex-start; }
    /* Trust bullets — visible on tablet, hidden on phone (see 540px) */
    .segn-donation__form-panel { padding: 44px var(--gutter-mobile) 72px; }
}

/* ── 760px: Registration card tightens ───────────────────── */
@media (max-width: 760px) {
    .segn-card { padding: 32px 24px; }
    .segn-grid--3     { grid-template-columns: 1fr 1fr; }
    .segn-grid--title { grid-template-columns: 120px 1fr; }
    .segn-mship-grid  { grid-template-columns: 1fr; }
    .segn-dues-grid   { grid-template-columns: 1fr; }
    .segn-amount-presets { grid-template-columns: repeat(3, 1fr); }
}

/* ── 540px: Phone — full-width flat card, 1-column grids ─── */
@media (max-width: 540px) {

    /* ── Segn-page (registration hero) ─────────────────────── */
    .segn-page { padding-bottom: 0; }
    .segn-page__hero {
        padding: calc(var(--nav-height) + 24px) var(--gutter-mobile) 40px;
        text-align: left;
    }
    .segn-page__rule { margin: 0 0 16px; }
    .segn-page__sub  { margin: 0; max-width: 100%; font-size: 0.88rem; }
    .segn-notice     { padding: 0; }
    .segn-notice__inner { border-radius: 0; border-left-width: 3px; }

    /* ── Mobile: card-wrap is already flat — just adjust padding ── */
    .segn-card-wrap {
        padding: 0 var(--gutter-mobile) !important;
        max-width: 100%;
    }
    .segn-card {
        padding: 20px 0 48px !important;
    }

    /* ── Form grids all single column ──────────────────────── */
    .segn-stepper    { display: none; }
    .segn-grid--2    { grid-template-columns: 1fr; }
    .segn-grid--3    { grid-template-columns: 1fr; }
    .segn-grid--title { grid-template-columns: 1fr; }
    .segn-mship-grid  { grid-template-columns: 1fr; }
    .segn-dues-grid   { grid-template-columns: 1fr; }

    /* ── Section header — smaller letter on phone ───────────── */
    .segn-section__letter { font-size: 2.2rem; width: 36px; }
    .segn-section__title  { font-size: 1.1rem; }
    .segn-divider { margin: 32px 0; }

    /* ── Membership cards — full-width stacked ──────────────── */
    .segn-mship-grid { gap: 10px; }

    /* ── Submit row stacks on phone ─────────────────────────── */
    .segn-submit-row  { flex-direction: column; align-items: stretch; }
    .segn-btn-submit  { width: 100%; justify-content: center; font-size: 0.82rem; }

    /* ── Donation page — phone layout ───────────────────────── */
    .segn-donation__info {
        min-height: 100svh;
        padding: calc(var(--nav-height) + 16px) var(--gutter-mobile) 32px;
        justify-content: center;
        gap: 20px;
    }
    .segn-donation__info .segn-page__title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
        margin-bottom: 0;
    }
    /* Hide trust bullets — too much text for phone */
    .segn-donation__trust { display: none; }
    /* Stats — keep 3 columns, shrink text */
    .segn-donation__stats { padding-top: 0; gap: 0; }
    .segn-donation__stat-num { font-size: 1.3rem; }
    .segn-donation__stat-lbl { font-size: 0.48rem; }

    /* Amount presets — 2 columns on phone */
    .segn-amount-presets { grid-template-columns: repeat(2, 1fr); }
    .segn-donation__form-panel { padding: 28px var(--gutter-mobile) 56px; }

    /* Gateway notice wraps on phone */
    .segn-gateway-notice { flex-direction: column; gap: 12px; }
    .segn-gateway-notice__badges { justify-content: flex-start; }

    /* Payment summary card readable on phone */
    .segn-pay-summary { padding: 18px 16px; }
    .segn-pay-summary__total { font-size: 1.5rem; }
}

/* ── 400px: Smallest phones ──────────────────────────────── */
@media (max-width: 400px) {
    .segn-card { padding: 16px 0 36px !important; }
    .segn-amount-presets { grid-template-columns: 1fr 1fr; }
    .segn-donation__stat-num { font-size: 1.1rem; }
    .segn-pay-summary__total { font-size: 1.3rem; }
    .segn-mship-card__name  { font-size: 0.92rem; }
    .segn-section__title    { font-size: 1rem; }
}

/* ── VALIDATION & ERROR UX IMPROVEMENTS ──────────────────── */
/* Invalid input styles */
.segn-input.is-invalid,
.segn-select.is-invalid,
.segn-textarea.is-invalid {
    border-color: #fc8181 !important;
    box-shadow: 0 0 0 3px rgba(252, 129, 129, 0.2) !important;
}

/* Invalid inputs under light themes (e.g. donation form) */
.segn-field--light .segn-input.is-invalid,
.segn-field--light .segn-select.is-invalid,
.segn-field--light .segn-textarea.is-invalid {
    border-color: #c53030 !important;
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.2) !important;
}

/* Custom Validation Modal Overlay */
.segn-validation-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 37, 69, 0.75); /* Navy transparent tint */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: var(--gutter-mobile, 20px);
}
.segn-validation-modal-overlay.active {
    opacity: 1;
}

/* Custom Validation Modal Box */
.segn-validation-modal {
    background: var(--navy-mid, #1B3A5C);
    border: 2px solid var(--gold, #9A7B1C);
    border-radius: var(--radius-md, 12px);
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-lg, 0 8px 48px rgba(11,37,69,0.16));
    transform: scale(0.9);
    transition: transform 0.3s ease;
    color: var(--white, #FFFFFF);
    overflow: hidden;
}
.segn-validation-modal-overlay.active .segn-validation-modal {
    transform: scale(1);
}

.segn-validation-modal__header {
    background: rgba(11, 37, 69, 0.4);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
}
.segn-validation-modal__icon {
    font-size: 1.5rem;
    color: var(--gold-light, #C9922A);
}
.segn-validation-modal__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.segn-validation-modal__body {
    padding: 24px;
    font-size: 0.92rem;
    line-height: 1.6;
}
.segn-validation-modal__intro {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
}
.segn-validation-modal__list {
    max-height: 200px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm, 6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    margin-bottom: 20px;
}
.segn-validation-modal__item {
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.segn-validation-modal__item:last-child {
    border-bottom: none;
}
.segn-validation-modal__item:hover {
    background: rgba(201, 146, 42, 0.15); /* gold hover */
    color: var(--gold-light, #C9922A);
}
.segn-validation-modal__item-num {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.segn-validation-modal__footer {
    padding: 18px 24px;
    background: rgba(11, 37, 69, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: flex-end;
}
.segn-validation-modal__btn {
    background: linear-gradient(135deg, var(--gold, #9A7B1C), var(--gold-light, #C9922A));
    border: none;
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm, 6px);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.segn-validation-modal__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 146, 42, 0.3);
}
.segn-validation-modal__btn:active {
    transform: translateY(0);
}

/* Custom Success Modal Overlay */
.segn-success-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 37, 69, 0.75); /* Navy transparent tint */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: var(--gutter-mobile, 20px);
}
.segn-success-modal-overlay.active {
    opacity: 1;
}

/* Custom Success Modal Box */
.segn-success-modal {
    background: var(--navy-mid, #1B3A5C);
    border: 2px solid #48BB78; /* green border */
    border-radius: var(--radius-md, 12px);
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-lg, 0 8px 48px rgba(11,37,69,0.16));
    transform: scale(0.9);
    transition: transform 0.3s ease;
    color: var(--white, #FFFFFF);
    overflow: hidden;
}
.segn-success-modal-overlay.active .segn-success-modal {
    transform: scale(1);
}

.segn-success-modal__header {
    background: rgba(11, 37, 69, 0.4);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
}
.segn-success-modal__icon {
    font-size: 1.5rem;
    color: #48BB78; /* green checkmark */
}
.segn-success-modal__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.segn-success-modal__body {
    padding: 24px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.segn-success-modal__footer {
    padding: 18px 24px;
    background: rgba(11, 37, 69, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: flex-end;
}
.segn-success-modal__btn {
    background: linear-gradient(135deg, #38A169, #48BB78); /* green gradient */
    border: none;
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm, 6px);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.segn-success-modal__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}
.segn-success-modal__btn:active {
    transform: translateY(0);
}

