:root {
    --crimson: #B22234;
    --crimson-dark: #8B1A27;
    --crimson-light: rgba(178, 34, 52, 0.08);
    --navy: #0D1B2A;
    --navy-mid: #1C2F45;
    --gold: #C9952A;
    --gold-light: rgba(201, 149, 42, 0.15);
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --ink: #1A1A2E;
    --muted: #6B7280;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.14)
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

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

button {
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--cream)
}

::-webkit-scrollbar-thumb {
    background: var(--crimson);
    border-radius: 3px
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px
}

@media(max-width:768px) {
    .wrap {
        padding: 0 20px
    }
}

/* NAV */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: all 0.4s
}

#nav.scrolled {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px
}

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

.nav-logo-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.08em
}

.nav-logo-text span {
    display: block;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 240px;
    line-height: 1.3
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 11px;
    border-radius: 8px;
    transition: all 0.2s
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08)
}

.btn-join {
    background: var(--crimson);
    color: white;
    padding: 9px 20px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.25s;
    white-space: nowrap
}

.btn-join:hover {
    background: var(--crimson-dark);
    transform: translateY(-1px)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    display: block
}

@media(max-width:1000px) {
    .nav-links {
        display: none
    }
}

@media(max-width:768px) {
    .btn-join {
        display: none
    }

    .hamburger {
        display: flex
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy)
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-grid,
.hero-deco,
.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13, 27, 42, 0.93) 0%, rgba(13, 27, 42, 0.7) 55%, rgba(13, 27, 42, 0.35) 100%)
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
    background-size: 80px 80px
}

.hero-deco {
    position: absolute;
    right: -2%;
    bottom: -5%;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(140px, 20vw, 240px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    user-select: none
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 140px 0 90px;
    width: 100%
}

.hero-content {
    max-width: 660px
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease both
}

.eyebrow-line {
    width: 32px;
    height: 1.5px;
    background: var(--gold)
}

.eyebrow-txt {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeUp 0.7s 0.1s ease both
}

.hero h1 em {
    font-style: italic;
    color: var(--gold)
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 300;
    animation: fadeUp 0.7s 0.2s ease both
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both
}

.hero-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(16px);
    animation: fadeIn 0.8s 0.4s ease both;
    min-width: 230px
}

.hero-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.hstat {
    margin-bottom: 18px
}

.hstat:last-child {
    margin-bottom: 0
}

.hstat-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    line-height: 1
}

.hstat-n sup {
    font-size: 1.2rem;
    color: var(--crimson)
}

.hstat-l {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px
}

@media(max-width:1100px) {
    .hero-card {
        display: none
    }
}

/* BUTTONS */
.btn-primary {
    background: var(--crimson);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-primary:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(178, 34, 52, 0.45)
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-gold:hover {
    filter: brightness(1.08);
    transform: translateY(-2px)
}

.btn-light {
    background: white;
    color: var(--crimson);
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-light:hover {
    background: var(--cream);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12)
}

.btn-outline-dk {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-outline-dk:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.btn-ghost {
    border: 1.5px solid var(--border);
    color: var(--muted);
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 500;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-ghost:hover {
    border-color: var(--ink);
    color: var(--ink)
}

.btn-sm-red {
    background: var(--crimson);
    color: white;
    padding: 9px 18px;
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.btn-sm-red:hover {
    background: var(--crimson-dark)
}

/* STATS BAR */
.stats-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border)
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

@media(max-width:640px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }
}

.stat-cell {
    padding: 32px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background 0.3s
}

.stat-cell:last-child {
    border-right: none
}

.stat-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--crimson);
    transition: width 0.4s
}

.stat-cell:hover::after {
    width: 60%
}

.stat-cell:hover {
    background: white
}

.stat-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1
}

.stat-n .acc {
    color: var(--crimson)
}

.stat-l {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px
}

/* SECTIONS */
.section {
    padding: 96px 0
}

.section-alt {
    background: var(--cream)
}

.section-dark {
    background: var(--navy)
}

@media(max-width:768px) {
    .section {
        padding: 64px 0
    }
}

.sec-header {
    margin-bottom: 64px
}

.sec-header.center {
    text-align: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.eyebrow-line2 {
    width: 24px;
    height: 1.5px;
    background: var(--crimson)
}

.eyebrow-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--crimson);
    letter-spacing: 0.18em;
    text-transform: uppercase
}

.dk .eyebrow-text {
    color: var(--gold)
}

.dk .eyebrow-line2 {
    background: var(--gold)
}

h2.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink)
}

.section-dark h2.sec-title {
    color: white
}

.sec-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 580px;
    margin-top: 14px;
    font-weight: 300
}

.section-dark .sec-desc {
    color: rgba(255, 255, 255, 0.45)
}

/* MISSION BAND */
.mission-band {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.mission-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson))
}

.mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

@media(max-width:768px) {
    .mission-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.mission-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.mission-tag span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase
}

.mission-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 18px
}

.mission-band p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300
}

.mission-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px
}

.mission-kpi {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center
}

.mission-kpi strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
    display: block
}

.mission-kpi span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block
}

.mv-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px
}

.mv-block p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 14px
}

.mv-block p:last-child {
    margin-bottom: 0
}

.mv-block strong {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 4px
}

/* PROGRAMS */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

@media(max-width:1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:540px) {
    .programs-grid {
        grid-template-columns: 1fr
    }
}

.prog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-sm)
}

.prog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s
}

.prog-card:nth-child(1)::after {
    background: var(--crimson)
}

.prog-card:nth-child(2)::after {
    background: var(--gold)
}

.prog-card:nth-child(3)::after {
    background: #2563EB
}

.prog-card:nth-child(4)::after {
    background: #059669
}

.prog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.prog-card:hover::after {
    transform: scaleX(1)
}

.prog-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: 10px
}

.prog-icon {
    font-size: 1.6rem;
    margin-bottom: 14px
}

.prog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px
}

.prog-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px
}

.prog-list {
    list-style: none
}

.prog-list li {
    font-size: 0.8rem;
    color: var(--muted);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--border)
}

.prog-list li::before {
    content: '→';
    color: var(--crimson);
    font-size: 0.7rem
}

.prog-cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--crimson);
    transition: gap 0.2s
}

.prog-cta:hover {
    gap: 10px
}

/* MID CTA */
.mid-cta {
    background: linear-gradient(135deg, #8B1A27, var(--crimson));
    padding: 64px 0;
    position: relative;
    overflow: hidden
}

.mid-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E")
}

.mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.mid-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: white;
    margin-bottom: 8px
}

.mid-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 460px
}

.mid-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0
}

@media(max-width:768px) {
    .mid-cta-inner {
        flex-direction: column;
        text-align: center
    }
}

/* MEMBERSHIP */
.mem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

@media(max-width:1024px) {
    .mem-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:540px) {
    .mem-grid {
        grid-template-columns: 1fr
    }
}

.mem-card {
    border-radius: 22px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s
}

.mem-card:hover {
    transform: translateY(-5px)
}

.mem-card.std {
    background: white;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm)
}

.mem-card.feat {
    background: var(--navy);
    position: relative;
    box-shadow: 0 20px 60px rgba(13, 27, 42, 0.3)
}

.mem-card.feat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
    border-radius: 22px 22px 0 0
}

.mem-card.intl {
    background: var(--cream);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm)
}

.mem-card.corp {
    background: var(--ink);
    position: relative;
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.4)
}

.mem-card.corp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--crimson));
    border-radius: 22px 22px 0 0
}

.mem-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.std .mem-badge {
    background: var(--crimson-light);
    color: var(--crimson)
}

.feat .mem-badge {
    background: rgba(201, 149, 42, 0.2);
    color: var(--gold)
}

.intl .mem-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB
}

.corp .mem-badge {
    background: rgba(201, 149, 42, 0.15);
    color: var(--gold)
}

.mem-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.feat .mem-name,
.corp .mem-name {
    color: white
}

.mem-desc {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px
}

.feat .mem-desc,
.corp .mem-desc {
    color: rgba(255, 255, 255, 0.45)
}

.mem-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 20px
}

.feat .mem-price,
.corp .mem-price {
    color: white
}

.mem-price sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    font-family: 'Outfit', sans-serif
}

.feat .mem-price sub,
.corp .mem-price sub {
    color: rgba(255, 255, 255, 0.4)
}

.mem-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1
}

.mem-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.84rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink)
}

.feat .mem-features li,
.corp .mem-features li {
    border-bottom-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75)
}

.mem-features li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--crimson-light);
    color: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px
}

.feat .mem-features li::before {
    background: rgba(201, 149, 42, 0.2);
    color: var(--gold)
}

.corp .mem-features li::before {
    background: rgba(201, 149, 42, 0.15);
    color: var(--gold)
}

.btn-mem {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.25s;
    display: block;
    text-align: center;
    margin-top: auto;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif
}

.std .btn-mem,
.intl .btn-mem {
    background: var(--crimson);
    color: white
}

.std .btn-mem:hover,
.intl .btn-mem:hover {
    background: var(--crimson-dark)
}

.feat .btn-mem {
    background: var(--gold);
    color: var(--navy)
}

.feat .btn-mem:hover {
    filter: brightness(1.08)
}

.corp .btn-mem {
    background: var(--gold);
    color: var(--navy)
}

.corp .btn-mem:hover {
    filter: brightness(1.08)
}

.mem-note {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: rgba(201, 149, 42, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(201, 149, 42, 0.2)
}

.mem-note p {
    font-size: 0.9rem;
    color: var(--ink)
}

.mem-note a {
    color: var(--crimson);
    font-weight: 600
}

/* DIRECTORY */
.dir-search {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.dir-search input {
    flex: 1;
    min-width: 200px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s
}

.dir-search input:focus {
    border-color: var(--crimson)
}

.dir-search select {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    color: var(--muted);
    outline: none;
    cursor: pointer
}

.dir-wrap {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.dir-table {
    width: 100%;
    border-collapse: collapse
}

.dir-table thead tr {
    background: var(--cream);
    border-bottom: 1px solid var(--border)
}

.dir-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase
}

.dir-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    vertical-align: middle
}

.dir-table tr:last-child td {
    border-bottom: none
}

.dir-table tr:hover td {
    background: rgba(178, 34, 52, 0.02)
}

.biz-name {
    font-weight: 600;
    color: var(--ink)
}

.biz-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px
}

.dbadge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--crimson-light);
    color: var(--crimson)
}

.dbadge.b {
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB
}

.dbadge.g {
    background: rgba(5, 150, 105, 0.08);
    color: #059669
}

.dbadge.go {
    background: var(--gold-light);
    color: var(--gold)
}

.dbadge.d {
    background: rgba(26, 26, 46, 0.08);
    color: var(--ink)
}

.btn-view {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--crimson);
    background: var(--crimson-light);
    transition: all 0.2s;
    display: inline-block
}

.btn-view:hover {
    background: var(--crimson);
    color: white
}

.dir-cta {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

/* EVENTS */
.events-list {
    display: flex;
    flex-direction: column
}

.ev-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background 0.2s
}

.ev-row:last-child {
    border-bottom: none
}

.ev-date {
    flex-shrink: 0;
    width: 60px;
    text-align: center
}

.ev-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--crimson);
    line-height: 1
}

.ev-mo {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase
}

.ev-div {
    width: 1px;
    height: 44px;
    background: var(--border);
    flex-shrink: 0
}

.ev-info {
    flex: 1
}

.ev-tag {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 5px
}

.edu {
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB
}

.net {
    background: var(--crimson-light);
    color: var(--crimson)
}

.biz {
    background: var(--gold-light);
    color: var(--gold)
}

.leg {
    background: rgba(5, 150, 105, 0.08);
    color: #059669
}

.ev-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.ev-meta {
    font-size: 0.78rem;
    color: var(--muted)
}

.ev-btns {
    flex-shrink: 0;
    display: flex;
    gap: 8px
}

@media(max-width:640px) {
    .ev-btns {
        display: none
    }
}

/* CTA BAND */
.cta-section {
    background: var(--navy);
    padding: 96px 0;
    position: relative;
    overflow: hidden
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(178, 34, 52, 0.2) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 10% 50%, rgba(201, 149, 42, 0.1) 0%, transparent 50%)
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em
}

.cta-section p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    max-width: 480px
}

.cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0
}

@media(max-width:768px) {
    .cta-inner {
        flex-direction: column;
        text-align: center
    }
}

/* BOARD */
.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

@media(max-width:900px) {
    .board-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:540px) {
    .board-grid {
        grid-template-columns: 1fr
    }
}

.board-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s
}

.board-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px)
}

.b-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white
}

.b-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px
}

.b-role {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase
}

.b-bio {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    line-height: 1.6
}

.dir-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.dir-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

@media(max-width:900px) {
    .dir-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.dir-chip {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03)
}

.dir-chip-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7)
}

.dir-chip-role {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 2px
}

/* TESTIMONIAL */
.test-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--crimson);
    opacity: 0.1;
    line-height: 0.6;
    display: block;
    margin-bottom: 24px
}

.test-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.8vw, 1.75rem);
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 36px
}

.test-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px
}

.t-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white
}

.t-name {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.95rem
}

.t-co {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 2px
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px
}

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.c-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border)
}

.c-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--crimson-light);
    color: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.c-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase
}

.c-val {
    font-size: 0.9rem;
    color: var(--ink);
    margin-top: 3px;
    font-weight: 500
}

.contact-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

@media(max-width:540px) {
    .form-row {
        grid-template-columns: 1fr
    }
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
    appearance: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--crimson);
    background: white
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--crimson);
    color: white;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif
}

.btn-submit:hover {
    background: var(--crimson-dark)
}

#formMsg {
    font-size: 0.82rem;
    color: #059669;
    margin-top: 12px;
    text-align: center;
    display: none;
    font-weight: 600
}

.social-row {
    display: flex;
    gap: 8px;
    margin-top: 20px
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s
}

.social-btn:hover {
    border-color: var(--crimson);
    color: white;
    background: var(--crimson)
}

/* FOOTER */
footer {
    background: #080D15;
    padding: 64px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px
}

@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
}

@media(max-width:540px) {
    .footer-grid {
        grid-template-columns: 1fr
    }
}

.f-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.f-brand img {
    width: 44px;
    height: 44px;
    border-radius: 4px
}

.f-brand-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: white
}

.f-brand-sub {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 1px;
    max-width: 200px;
    line-height: 1.3
}

.f-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
    margin-bottom: 20px
}

.f-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.f-col ul {
    list-style: none
}

.f-col li {
    margin-bottom: 10px
}

.f-col li a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s
}

.f-col li a:hover {
    color: white
}

.nl-form {
    display: flex;
    gap: 8px;
    margin-top: 12px
}

.nl-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.83rem;
    outline: none
}

.nl-form input::placeholder {
    color: rgba(255, 255, 255, 0.22)
}

.nl-form input:focus {
    border-color: var(--crimson)
}

.nl-form button {
    background: var(--crimson);
    color: white;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif
}

.nl-form button:hover {
    background: var(--crimson-dark)
}

.f-social {
    display: flex;
    gap: 8px;
    margin-top: 0
}

.f-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    transition: all 0.2s
}

.f-social a:hover {
    border-color: var(--crimson);
    color: white;
    background: var(--crimson)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.2)
}

.footer-bottom a {
    color: var(--gold)
}

/* MOBILE MENU */
#mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 32px 40px;
    overflow-y: auto
}

#mob-menu.open {
    display: flex
}

#mob-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s
}

#mob-menu a:hover {
    color: var(--gold)
}

.mob-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none
}

.mob-btns {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: 0.1s
}

.d2 {
    transition-delay: 0.2s
}

.d3 {
    transition-delay: 0.3s
}