/* ============================================================
   BAND OF BROTHERS ONLINE - styles.css
   Rugged Brotherhood · Earthy · Masculine · Light
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --bg:           #f0ead8;
    --bg-alt:       #e6dfc8;
    --bg-card:      #faf6ee;
    --bg-white:     #ffffff;

    --olive:        #3d5220;
    --olive-dark:   #253312;
    --olive-mid:    #4a6228;
    --olive-light:  #7a9440;
    --olive-pale:   #c8d6a0;
    --olive-wash:   #eaedda;
    --olive-tint:   #f2f5ea;

    --tan:          #c4a070;
    --khaki:        #a88850;
    --sand:         #dcc890;
    --brass:        #b09030;

    --red:          #7a1818;

    --dark:         #1a1710;
    --text:         #241f18;
    --text-muted:   #524d45;
    --text-light:   #7a7570;
    --text-on-dark: #ece8df;
    --hero-bg:      #18140e;

    --border:       rgba(61,82,32,0.20);
    --border-mid:   rgba(61,82,32,0.38);
    --border-strong:rgba(61,82,32,0.62);

    --shadow-sm:    0 1px 4px rgba(26,30,16,0.09);
    --shadow:       0 3px 16px rgba(26,30,16,0.11);
    --shadow-lg:    0 8px 40px rgba(26,30,16,0.16);

    --r:            4px;
    --r-lg:         10px;

    /* Fonts - Cinzel replaces Black Ops One for a dignified feel */
    --f-display:    'Cinzel', Georgia, serif;
    --f-head:       'Oswald', 'Arial Narrow', sans-serif;
    --f-body:       'Lato', system-ui, sans-serif;
    --f-serif:      Georgia, 'Times New Roman', serif;

    --t:            0.25s ease;
    --max-w:        1140px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    line-height: 1.7;
    overflow-x: hidden;
    isolation: isolate;
}
a { color: var(--olive); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--olive-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
strong { color: var(--dark); font-weight: 700; }
em { font-style: italic; }

/* Subtle texture overlay */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
        linear-gradient(rgba(30,20,10,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,20,10,0.025) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: -1;
}
body > * { position: relative; z-index: 1; }

/* ── i18n language toggle ────────────────────────────────────── */
html[lang="es"] .lang-en { display: none !important; }
html[lang="en"] .lang-es { display: none !important; }
.lang-es { display: none; } /* default hidden until i18n.js runs */

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5.5rem 0; }
.sec-alt    { background: var(--bg-alt); }
.sec-olive  { background: var(--olive-dark); }
.sec-olive-mid { background: var(--olive-mid); }
.sec-white  { background: var(--bg-white); }

/* ── Eyebrow / Section Labels ────────────────────────────────── */
.eyebrow {
    display: inline-block;
    font-family: var(--f-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--olive-mid);
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.4rem;
}
.eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--olive-light);
    border-radius: 1px;
}
.eyebrow.light {
    color: var(--olive-pale);
    opacity: 0.85;
}
.eyebrow.light::after { background: rgba(200,214,160,0.5); }
.eyebrow.centered { left: 50%; transform: translateX(-50%); }
.eyebrow.centered::after { left: 50%; transform: translateX(-50%); }

.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-title {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--dark);
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.sec-title.light { color: var(--text-on-dark); }
.sec-sub {
    font-family: var(--f-head);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.sec-sub.light { color: rgba(200,214,160,0.65); }

/* Decorative divider */
.divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.9rem auto;
    max-width: 200px;
    justify-content: center;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-mid);
}
.divider-leaf {
    color: var(--olive-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}
.divider.light::before, .divider.light::after { background: rgba(200,214,160,0.3); }
.divider.light .divider-leaf { color: rgba(200,214,160,0.6); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--f-head);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.82rem 1.9rem;
    border: 2px solid transparent;
    border-radius: var(--r);
    cursor: pointer;
    transition: all var(--t);
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive);
}
.btn-primary:hover {
    background: var(--olive-dark);
    border-color: var(--olive-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61,82,32,0.28);
}
.btn-outline {
    background: transparent;
    color: var(--olive);
    border-color: var(--border-strong);
}
.btn-outline:hover {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--bg-card);
    color: var(--olive-dark);
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}
.btn-light:hover {
    background: var(--olive-wash);
    color: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-ghost-light {
    background: transparent;
    color: var(--text-on-dark);
    border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-sm  { font-size: 0.78rem; padding: 0.55rem 1.2rem; }
.btn-lg  { font-size: 1rem; padding: 1rem 2.5rem; }
.btn-full { width: 100%; }

/* ── Language toggle button ──────────────────────────────────── */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--f-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    background: var(--olive-wash);
    border: 1.5px solid var(--border-mid);
    color: var(--olive);
    padding: 0.42rem 0.85rem;
    border-radius: var(--r);
    cursor: pointer;
    transition: all var(--t);
    margin-left: 0.5rem;
}
.lang-btn:hover {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive);
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--border-mid); }
.card-dark {
    background: rgba(255,255,255,0.07);
    border-color: rgba(200,214,160,0.18);
    color: var(--text-on-dark);
}
.card-dark:hover { background: rgba(255,255,255,0.11); border-color: rgba(200,214,160,0.38); }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
    font-family: var(--f-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: var(--f-body);
    font-size: 0.95rem;
    transition: border-color var(--t), box-shadow var(--t);
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5e40' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(61,82,32,0.14);
}
.form-group input::placeholder { color: var(--text-light); }
.form-check { flex-direction: row !important; align-items: flex-start; gap: 0.75rem !important; }
.form-check input[type="checkbox"] {
    width: 18px; height: 18px; min-width: 18px; margin-top: 3px;
    accent-color: var(--olive); cursor: pointer;
}
.form-check label {
    font-family: var(--f-body) !important;
    font-size: 0.9rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--text-muted) !important;
    cursor: pointer;
    line-height: 1.55;
}
.form-hint  { font-size: 0.78rem; color: var(--text-light); margin-top: -0.75rem; margin-bottom: 0.5rem; }
.form-error {
    background: #fdf0ee;
    border: 1px solid #e0a0a0;
    border-radius: var(--r);
    color: var(--red);
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    display: none;
}
.form-error.visible { display: block; }
.pw-strength { height: 4px; border-radius: 2px; background: var(--bg-alt); margin-top: 0.4rem; }
.pw-strength-bar { height: 100%; border-radius: 2px; width: 0; transition: width 0.3s, background 0.3s; }

/* ── Alerts ──────────────────────────────────────────────────── */
.alert { padding: 0.85rem 1.1rem; border-radius: var(--r); font-size: 0.9rem; margin-bottom: 1.25rem; border: 1px solid transparent; }
.alert-success { background: #eaf2e0; border-color: #b0cc80; color: #2a4010; }
.alert-error   { background: #fdf0ee; border-color: #e0a0a0; color: var(--red); }
.alert-info    { background: var(--olive-tint); border-color: var(--border); color: var(--olive-dark); }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */

/* Transparent state - over dark hero on homepage */
.navbar:not(.scrolled):not(.solid) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}
.navbar:not(.scrolled):not(.solid) .nav-brand { color: #ffffff; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.navbar:not(.scrolled):not(.solid) .nav-brand:hover { color: var(--olive-pale); }
.navbar:not(.scrolled):not(.solid) .nav-links a {
    font-family: var(--f-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    padding: 0.42rem 0.6rem;
    border-radius: var(--r);
    transition: all var(--t);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.navbar:not(.scrolled):not(.solid) .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar:not(.scrolled):not(.solid) .nav-toggle span { background: rgba(255,255,255,0.85); }
.navbar:not(.scrolled):not(.solid) .lang-btn {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.8);
}
.navbar:not(.scrolled):not(.solid) .lang-btn:hover { background: rgba(255,255,255,0.18); color: #fff; }
.navbar:not(.scrolled):not(.solid) .nav-cta-link {
    background: rgba(255,255,255,0.14) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.38) !important;
}
.navbar:not(.scrolled):not(.solid) .nav-cta-link:hover {
    background: rgba(255,255,255,0.24) !important;
    border-color: rgba(255,255,255,0.6) !important;
}

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 1rem 0;
    transition: background var(--t), padding var(--t), box-shadow var(--t);
}
.navbar.scrolled, .navbar.solid {
    background: rgba(240,234,216,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.65rem 0;
    box-shadow: 0 2px 12px rgba(26,30,16,0.1);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--dark);
    font-family: var(--f-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-decoration: none;
}
.nav-brand:hover { color: var(--olive); }
.nav-cross { font-size: 1.1rem; color: var(--olive); }
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
    font-family: var(--f-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.42rem 0.8rem;
    border-radius: var(--r);
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: all var(--t);
}
.nav-links a:hover { color: var(--olive-dark); background: var(--olive-wash); }
.nav-links a.active { color: var(--olive-dark); }
.nav-cta-link  { background: var(--olive) !important; color: #fff !important; margin-left: 0.35rem; }
.nav-cta-link:hover { background: var(--olive-dark) !important; color: #fff !important; box-shadow: 0 4px 12px rgba(61,82,32,0.25); }
.nav-auth-link { color: var(--olive) !important; border: 1.5px solid var(--border-mid) !important; margin-left: 0.25rem; }
.nav-auth-link:hover { background: var(--olive-wash) !important; color: var(--olive-dark) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--t); }
.nav-sec { display: none; }
.nav-bootcamp-link {
    background: linear-gradient(135deg, #c2410c, #ea580c) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 0.3rem 0.85rem !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    box-shadow: 0 0 10px rgba(234,88,12,0.45) !important;
    animation: bootcamp-pulse 2.5s ease-in-out infinite !important;
}
.nav-bootcamp-link:hover { box-shadow: 0 0 18px rgba(234,88,12,0.7) !important; transform: scale(1.04); }
@keyframes bootcamp-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(234,88,12,0.45); }
    50%       { box-shadow: 0 0 18px rgba(234,88,12,0.75); }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
}
.hero-bg-texture {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 60% 50%, rgba(84,107,44,0.4) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(37,51,18,0.55) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(200,214,160,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,214,160,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2;
    padding: 9rem 2rem 6rem;
    max-width: 860px;
    margin: 0 auto;
}
.hero-eyebrow {
    font-family: var(--f-head);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(200,214,160,0.6);
    margin-bottom: 1.75rem;
}
.hero-title {
    font-family: var(--f-display);
    color: #fff;
    line-height: 1.0;
    margin-bottom: 0.75rem;
}
.hero-title .line-1 {
    display: block;
    font-size: clamp(2.4rem, 6vw, 5rem);
    letter-spacing: 0.06em;
    color: var(--text-on-dark);
    font-weight: 700;
}
.hero-title .line-2 {
    display: block;
    font-size: clamp(3rem, 8vw, 6.5rem);
    letter-spacing: 0.08em;
    color: #e8d5a8;
    font-weight: 900;
    text-shadow: 0 0 60px rgba(200,140,40,0.35);
}
.hero-tagline {
    font-family: var(--f-head);
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(200,214,160,0.8);
    margin: 1.25rem 0 0.75rem;
}
.hero-rule {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--olive-pale), transparent);
    margin: 1.25rem 0;
}
.hero-desc {
    font-size: 1rem;
    color: rgba(232,226,204,0.75);
    max-width: 540px;
    line-height: 1.78;
    margin-bottom: 2.25rem;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    font-family: var(--f-head);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200,214,160,0.8);
    border-top: 1px solid rgba(200,214,160,0.25);
    padding-top: 1.5rem;
}
.hero-meta span { display: flex; align-items: center; gap: 0.45rem; }
.hero-meta #countdown {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}
.hero-meta i { color: var(--olive-light); }

/* ═══════════════════════════════════════════════════════════
   DISCLAIMER
═══════════════════════════════════════════════════════════ */
.disclaimer-section { background: var(--bg-white); padding: 3rem 0; }
.disclaimer-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--olive-tint);
    border: 1px solid var(--border-mid);
    border-left: 5px solid var(--olive);
    border-radius: var(--r-lg);
    padding: 2rem 2.5rem;
}
.disclaimer-icon { font-size: 1.4rem; color: var(--olive); flex-shrink: 0; margin-top: 3px; }
.disclaimer-text h3 {
    font-family: var(--f-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}
.disclaimer-text p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 0.9rem; }
.disclaimer-text p:last-of-type { margin-bottom: 0.75rem; }
.disclaimer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--f-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--olive);
    transition: color var(--t);
}
.disclaimer-link:hover { color: var(--olive-dark); }

/* ═══════════════════════════════════════════════════════════
   MISSION / ABOUT
═══════════════════════════════════════════════════════════ */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.mission-body p { margin-bottom: 1.1rem; color: var(--text-muted); font-size: 0.97rem; }
.mission-body p:first-child { font-size: 1.06rem; color: var(--text); }
.objectives-list { display: flex; flex-direction: column; gap: 1.25rem; }
.objective {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.4rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--olive);
    border-radius: var(--r);
    box-shadow: var(--shadow-sm);
    transition: border-left-color var(--t), box-shadow var(--t);
}
.objective:hover { border-left-color: var(--olive-dark); box-shadow: var(--shadow); }
.obj-icon {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
    background: var(--olive-wash); border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--olive);
}
.obj-label { font-family: var(--f-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 0.2rem; }
.obj-title { font-family: var(--f-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.obj-body  { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   MASCULINE JOURNEY
═══════════════════════════════════════════════════════════ */
.journey-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.journey-stage {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,214,160,0.15);
    border-radius: var(--r-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: background var(--t), border-color var(--t), transform var(--t);
}
.journey-stage:hover { background: rgba(255,255,255,0.11); border-color: rgba(200,214,160,0.4); transform: translateY(-4px); }
.journey-num   { font-family: var(--f-head); font-size: 0.62rem; letter-spacing: 0.2em; color: rgba(200,214,160,0.4); margin-bottom: 0.6rem; }
.journey-icon  { font-size: 1.6rem; margin-bottom: 0.6rem; display: block; }
.journey-title { font-family: var(--f-head); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 0.4rem; }
.journey-desc  { font-size: 0.78rem; color: rgba(200,214,160,0.6); line-height: 1.5; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   CURRICULUM PREVIEW
═══════════════════════════════════════════════════════════ */
.chapter-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.chapter-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.chapter-preview::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--olive);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--t);
}
.chapter-preview:hover { box-shadow: var(--shadow); border-color: var(--border-mid); transform: translateY(-3px); }
.chapter-preview:hover::before { transform: scaleX(1); }
.ch-num  {
    font-family: var(--f-display);
    font-size: 0.62rem; font-weight: 400;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--olive);
    margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.ch-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.ch-week  { font-family: var(--f-head); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tan); margin-bottom: 0.5rem; }
.ch-title { font-family: var(--f-head); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.ch-truth { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   GATHERING
═══════════════════════════════════════════════════════════ */
.gathering-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.gather-time-box {
    background: var(--olive-dark);
    border: 2px solid rgba(200,214,160,0.25);
    border-radius: var(--r-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gather-time-box::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(200,214,160,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,214,160,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.gather-tag { font-family: var(--f-head); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(200,214,160,0.5); margin-bottom: 1.5rem; }
.gather-day { font-family: var(--f-display); font-size: 1.1rem; letter-spacing: 0.1em; color: var(--text-on-dark); margin-bottom: 0.25rem; }
.gather-time { font-family: var(--f-display); font-size: 3.2rem; color: var(--olive-pale); line-height: 1; font-weight: 700; }
.gather-time span { font-size: 1.1rem; color: rgba(200,214,160,0.55); margin-left: 0.2rem; font-weight: 400; }
.gather-hr { width: 40px; height: 1.5px; background: rgba(200,214,160,0.25); margin: 1.25rem auto; }
.gather-platform { font-family: var(--f-head); font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(200,214,160,0.55); }
.gather-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.78; }
.gather-checklist { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.gather-checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.93rem; color: var(--text-muted); }
.gather-checklist i { color: var(--olive); margin-top: 3px; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════
   BOOTCAMP SECTION
═══════════════════════════════════════════════════════════ */
.bootcamp-section {
    background: var(--olive-dark);
    position: relative; overflow: hidden;
    padding: 6rem 0;
}
.bootcamp-noise {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(200,214,160,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,214,160,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}
.bootcamp-section .container {
    position: relative; z-index: 1;
    max-width: 960px;
}

/* Header */
.bootcamp-header { text-align: center; margin-bottom: 3.5rem; }
.bootcamp-logo {
    width: 140px; height: auto; display: block;
    margin: 0 auto 1.5rem;
    filter: invert(1) brightness(1.2);
}
.bootcamp-eyebrow {
    font-family: var(--f-head); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--tan); margin-bottom: 0.75rem;
}
.bootcamp-headline {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff; line-height: 1.15; margin-bottom: 1.25rem;
}
.bootcamp-desc {
    font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.8;
    max-width: 700px; margin: 0 auto;
}

/* Aerial Image */
.bootcamp-aerial {
    border-radius: var(--r-lg); overflow: hidden; margin-bottom: 3.5rem;
    border: 3px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow-lg);
}
.bootcamp-aerial img { width: 100%; height: auto; display: block; }

/* Info Row */
.bootcamp-info-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: 2.5rem; margin-bottom: 3.5rem;
}
.bootcamp-info-item { flex: 1; text-align: center; }
.bootcamp-info-divider {
    width: 1px; height: 80px;
    background: rgba(255,255,255,0.15);
    margin: 0 2rem;
}
.bi-label {
    display: block; font-family: var(--f-head); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--tan); margin-bottom: 0.6rem;
}
.bi-value {
    display: block; font-size: 1.2rem; color: #fff; font-weight: 700;
    margin-bottom: 0.4rem; font-family: var(--f-display);
}
.bi-sub {
    display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.bi-sub a { color: var(--tan); text-decoration: underline; }
.bi-sub a:hover { color: var(--sand); }
.bi-link {
    display: inline-block; margin-top: 0.85rem;
    font-family: var(--f-head); font-size: 0.85rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--sand); border-bottom: 1px solid var(--sand);
    padding-bottom: 2px;
}
.bi-link:hover { color: #fff; border-bottom-color: #fff; }

/* Bottom Section */
.bootcamp-bottom {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; align-items: center;
}
.bootcamp-lodging-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 2px solid rgba(255,255,255,0.12); }
.bootcamp-lodging-wrap img { width: 100%; height: 260px; object-fit: cover; display: block; }
.bootcamp-lodging-tag {
    position: absolute; bottom: 1.25rem; left: 1.25rem;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
    color: #fff; font-family: var(--f-head); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.5rem 1rem; border-radius: var(--r);
}

.bootcamp-cta-wrap { text-align: left; }
.bootcamp-cta-head {
    font-family: var(--f-display); font-size: 2rem; color: #fff;
    margin-bottom: 1.5rem; font-weight: 700;
}
.bootcamp-cta-wrap .btn { margin-right: 0.75rem; margin-bottom: 0.75rem; display: inline-flex; }

/* Custom Buttons for contrast */
.bootcamp-section .btn-primary {
    background: var(--tan); color: var(--dark); border-color: var(--tan); font-weight: 700;
}
.bootcamp-section .btn-primary:hover {
    background: var(--sand); border-color: var(--sand); box-shadow: 0 4px 20px rgba(196,160,112,0.35);
}
.bootcamp-section .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5); color: #fff;
    font-family: var(--f-head); font-size: 0.85rem; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.72rem 1.5rem; border-radius: var(--r);
    display: inline-flex; align-items: center; transition: all var(--t); font-weight: 600;
}
.bootcamp-section .btn-outline-light:hover { background: #fff; color: var(--olive-dark); border-color: #fff; }
.nav-bootcamp-link { color: var(--olive-light) !important; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   FOUNDER NOTE
═══════════════════════════════════════════════════════════ */
.founder-note {
    display: flex; align-items: flex-start; gap: 1.5rem;
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 2rem 2rem 2rem 2rem;
    max-width: 760px; margin: 0 auto;
}
.founder-avatar {
    flex-shrink: 0;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--olive); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-display); font-size: 1rem; font-weight: 700;
    letter-spacing: 0.05em;
}
.founder-text { flex: 1; min-width: 0; }
.founder-name {
    font-family: var(--f-head); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--olive); margin: 0 0 0.6rem;
}
.founder-bio {
    font-size: 0.95rem; color: var(--text-muted); line-height: 1.75;
    margin: 0;
}
.founder-bio a { color: var(--olive); text-decoration: underline; }
.founder-bio a:hover { color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   CULTURE PILLARS
═══════════════════════════════════════════════════════════ */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: all var(--t);
}
.pillar-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--border-mid); }
.pillar-num { font-family: var(--f-display); font-size: 3rem; color: rgba(61,82,32,0.07); line-height: 1; margin-bottom: 0.5rem; }
.pillar-icon-wrap {
    width: 58px; height: 58px; margin: 0 auto 1.25rem;
    background: var(--olive-wash); border: 2px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--olive);
    transition: background var(--t), border-color var(--t);
}
.pillar-card:hover .pillar-icon-wrap { background: var(--olive); color: #fff; border-color: var(--olive); }
.pillar-title { font-family: var(--f-head); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.8rem; }
.pillar-body  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   QUOTE BANNER
═══════════════════════════════════════════════════════════ */
.quote-banner {
    text-align: center; padding: 4rem 2rem;
    background: var(--olive-dark); position: relative; overflow: hidden;
}
.quote-banner::before {
    content: '\201C';
    position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
    font-family: Georgia, serif; font-size: 14rem;
    color: rgba(200,214,160,0.04); line-height: 1; pointer-events: none;
}
.quote-text {
    font-family: var(--f-serif);
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--text-on-dark);
    max-width: 700px; margin: 0 auto 1.25rem; line-height: 1.8; position: relative;
}
.quote-cite {
    font-family: var(--f-head); font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive-pale); opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════════ */
.auth-page   { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }
.auth-layout { flex: 1; display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 70px); margin-top: 70px; }
.auth-panel  { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem; }
.auth-panel-form  { background: var(--bg-card); }
.auth-panel-hero  {
    background: var(--hero-bg); padding: 4rem 3rem; position: relative;
    overflow: hidden; display: flex; flex-direction: column; justify-content: center;
}
.auth-panel-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(200,214,160,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,214,160,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}
.auth-hero-content { position: relative; z-index: 1; }
.auth-title {
    font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff; margin-bottom: 1rem; line-height: 1.15; letter-spacing: 0.04em; font-weight: 700;
}
.auth-subtitle { font-size: 0.97rem; color: rgba(232,226,204,0.75); line-height: 1.7; margin-bottom: 2rem; }
.auth-perks    { display: flex; flex-direction: column; gap: 0.85rem; }
.auth-perk     { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: rgba(200,214,160,0.82); }
.auth-perk i   { color: var(--olive-light); margin-top: 2px; flex-shrink: 0; }
.auth-form-title { font-family: var(--f-display); font-size: 1.6rem; color: var(--dark); letter-spacing: 0.03em; margin-bottom: 0.35rem; font-weight: 700; }
.auth-form-sub   { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }
.auth-link       { font-size: 0.88rem; color: var(--text-muted); text-align: center; margin-top: 1.25rem; }
.auth-link a     { color: var(--olive); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   DASHBOARD
═══════════════════════════════════════════════════════════ */
.dashboard-page { min-height: 100vh; background: var(--bg); }
.dash-header { background: var(--hero-bg); padding: 5rem 0 3rem; position: relative; overflow: hidden; }
.dash-header::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(200,214,160,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,214,160,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}
.dash-header-inner { position: relative; z-index: 1; }
.dash-member-tag  {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--f-head); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(200,214,160,0.55); border: 1px solid rgba(200,214,160,0.18);
    padding: 0.3rem 0.75rem; margin-bottom: 0.75rem;
    border-radius: 100px;
}
.dash-welcome { font-family: var(--f-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; letter-spacing: 0.05em; margin-bottom: 0.35rem; font-weight: 700; }
.dash-welcome span { color: var(--olive-pale); }
.dash-tagline  { font-size: 0.9rem; color: rgba(200,214,160,0.55); font-style: italic; font-family: var(--f-serif); }
.dash-stats-row { display: flex; gap: 2rem; margin-top: 1.75rem; flex-wrap: wrap; }
.dash-stat { display: flex; flex-direction: column; }
.dash-stat-val   { font-family: var(--f-display); font-size: 1.6rem; color: var(--olive-pale); line-height: 1; font-weight: 700; }
.dash-stat-label { font-family: var(--f-head); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(200,214,160,0.45); margin-top: 0.25rem; }
.dash-body { padding: 3rem 0; }
.dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.dash-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.dash-card-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.dash-card-title  { font-family: var(--f-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive); }
.dash-card-body   { padding: 1.75rem; }
.chapter-track    { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem; }
.ch-track-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; cursor: pointer; }
.ch-track-bubble {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid var(--border); background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-display); font-size: 0.7rem; color: var(--text-muted);
    transition: all var(--t);
}
.ch-track-item:hover .ch-track-bubble { border-color: var(--olive); color: var(--olive); }
.ch-track-item.done    .ch-track-bubble { background: var(--olive); border-color: var(--olive); color: #fff; }
.ch-track-item.current .ch-track-bubble { background: var(--bg-card); border-color: var(--olive); color: var(--olive); box-shadow: 0 0 0 3px rgba(61,82,32,0.14); }
.ch-track-label { font-family: var(--f-head); font-size: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-light); text-align: center; line-height: 1.3; max-width: 56px; }
.countdown-wrap  { text-align: center; padding: 1rem 0; }
.countdown-title { font-family: var(--f-head); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.countdown-grid  { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 0.75rem; }
.cd-unit { text-align: center; }
.cd-val  { font-family: var(--f-display); font-size: 1.9rem; color: var(--olive-dark); line-height: 1; display: block; background: var(--olive-wash); border: 1.5px solid var(--border); border-radius: var(--r); padding: 0.5rem 0.75rem; min-width: 58px; font-weight: 700; }
.cd-label { font-family: var(--f-head); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-top: 0.3rem; display: block; }
.current-chapter-card { background: var(--olive-dark); border-radius: var(--r-lg); padding: 2rem; color: var(--text-on-dark); margin-top: 1.5rem; position: relative; overflow: hidden; }
.current-chapter-card::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(200,214,160,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,214,160,0.04) 1px, transparent 1px); background-size: 20px 20px; }
.current-chapter-card > * { position: relative; z-index: 1; }
.progress-bar-wrap { background: var(--bg-alt); border-radius: 100px; height: 8px; margin: 0.5rem 0; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--olive), var(--olive-light)); transition: width 0.6s ease; }
.resource-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1rem; border-radius: var(--r); border: 1px solid var(--border); background: var(--bg); transition: all var(--t); text-decoration: none; color: var(--text); margin-bottom: 0.65rem; }
.resource-link:hover { border-color: var(--border-mid); background: var(--olive-wash); transform: translateX(3px); }
.resource-link i { color: var(--olive); width: 18px; text-align: center; flex-shrink: 0; }
.resource-link span { font-family: var(--f-head); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; flex: 1; }
.resource-link .arrow { color: var(--text-light); font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   CURRICULUM PAGE
═══════════════════════════════════════════════════════════ */
.curriculum-hero { background: var(--olive-dark); padding: 7rem 0 4rem; position: relative; overflow: hidden; }
.curriculum-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(200,214,160,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(200,214,160,0.05) 1px, transparent 1px); background-size: 32px 32px; }
.curriculum-hero-inner { position: relative; z-index: 1; }
.curriculum-intro { font-size: 1rem; color: rgba(200,214,160,0.72); max-width: 620px; margin: 1rem 0 2rem; line-height: 1.78; }
.chapters-list { display: flex; flex-direction: column; gap: 1.25rem; padding: 3rem 0; }
.chapter-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--t), border-color var(--t); }
.chapter-card:hover { box-shadow: var(--shadow); border-color: var(--border-mid); }
.chapter-card-header { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 2rem; cursor: pointer; user-select: none; background: var(--bg-card); transition: background var(--t); }
.chapter-card-header:hover { background: var(--olive-tint); }
.ch-num-badge {
    flex-shrink: 0; width: 52px; height: 52px;
    background: var(--olive); color: #fff; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: var(--f-display); font-size: 0.55rem; letter-spacing: 0.1em; line-height: 1.2; font-weight: 400;
}
.ch-num-badge .big { font-size: 1.1rem; letter-spacing: 0; font-weight: 700; }
.ch-header-meta { flex: 1; }
.ch-week-tag { font-family: var(--f-head); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); margin-bottom: 0.2rem; }
.ch-card-title { font-family: var(--f-head); font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.ch-card-core  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.ch-toggle { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--olive-wash); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--olive); font-size: 0.8rem; transition: transform var(--t), background var(--t); }
.chapter-card.open .ch-toggle { transform: rotate(180deg); background: var(--olive); color: #fff; }
.chapter-card-body { display: none; padding: 0 2rem 2rem; border-top: 1px solid var(--border); background: var(--bg-white); }
.chapter-card.open .chapter-card-body { display: block; }
.ch-body-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding-top: 1.75rem; }
.intel-box { background: var(--olive-tint); border: 1.5px solid var(--border); border-left: 4px solid var(--olive); border-radius: var(--r); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.intel-label { font-family: var(--f-head); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.5rem; }
.intel-box p { font-size: 0.9rem; color: var(--text); margin: 0; line-height: 1.65; font-style: italic; }
.exercise-section h4 { font-family: var(--f-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive-dark); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.exercise-list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; }
.exercise-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.exercise-list li::before { content: '▸'; color: var(--olive); flex-shrink: 0; margin-top: 1px; font-size: 0.75rem; }
.prayer-box { background: rgba(61,82,32,0.05); border: 1px dashed var(--border-mid); border-radius: var(--r); padding: 1.1rem 1.25rem; margin-top: 0.5rem; }
.prayer-label { font-family: var(--f-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 0.35rem; }
.prayer-box p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; font-style: italic; }
.scripture-tag { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--f-serif); font-size: 0.78rem; font-style: italic; color: var(--khaki); background: var(--bg-alt); border: 1px solid var(--border); padding: 0.3rem 0.75rem; border-radius: 100px; margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--hero-bg); color: var(--text-on-dark); padding: 3.5rem 0 2rem; border-top: 2px solid rgba(200,214,160,0.12); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(200,214,160,0.1); }
.footer-brand { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.85rem; }
.footer-brand-name { font-family: var(--f-display); font-size: 0.95rem; letter-spacing: 0.05em; color: #fff; font-weight: 700; }
.footer-desc  { font-size: 0.85rem; color: rgba(200,214,160,0.5); line-height: 1.65; margin-bottom: 1.25rem; }
.footer-verse { font-family: var(--f-serif); font-size: 0.82rem; color: rgba(200,214,160,0.45); font-style: italic; line-height: 1.6; }
.footer-col-title { font-family: var(--f-display); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive-pale); border-bottom: 1px solid rgba(200,214,160,0.12); padding-bottom: 0.6rem; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a  { font-size: 0.85rem; color: rgba(200,214,160,0.55); transition: color var(--t); }
.footer-col a:hover { color: var(--olive-pale); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: rgba(200,214,160,0.3); font-family: var(--f-head); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-disclaimer { font-size: 0.75rem; color: rgba(200,214,160,0.35); text-align: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(200,214,160,0.08); font-style: italic; font-family: var(--f-serif); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   PROFILE PAGE
═══════════════════════════════════════════════════════════ */
.profile-header-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 2rem;
    display: flex; align-items: center; gap: 2rem;
    margin-bottom: 1.5rem;
}
.profile-avatar-wrap { position: relative; flex-shrink: 0; }
.profile-avatar-lg {
    width: 90px; height: 90px; border-radius: 50%;
    background: var(--olive); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-display); font-size: 1.5rem; font-weight: 700;
    overflow: hidden; border: 3px solid var(--border-mid);
}
.profile-avatar-lg img { width: 100%; height: 100%; object-fit: cover; }
.profile-photo-btn {
    position: absolute; bottom: 0; right: 0;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--olive); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: 2px solid var(--card-bg);
    font-size: 0.75rem; transition: background var(--t);
}
.profile-photo-btn:hover { background: var(--olive-mid); }
.profile-upload-hint { font-size: 0.72rem; color: var(--text-light); margin-top: 0.5rem; text-align: center; }
.profile-name { font-family: var(--f-display); font-size: 1.4rem; color: var(--dark); margin-bottom: 0.25rem; }
.profile-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.profile-badge {
    display: inline-block; font-family: var(--f-head);
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    background: var(--olive-wash); color: var(--olive);
    border: 1px solid var(--border); border-radius: 2rem;
    padding: 0.2rem 0.75rem;
}
.profile-badge.admin { background: var(--olive); color: #fff; border-color: var(--olive); }

.profile-edit-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 1.75rem;
    margin-bottom: 1.5rem;
}
.profile-edit-card h2 {
    font-family: var(--f-head); font-size: 1rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark);
    margin-bottom: 1.25rem;
}
.profile-field { margin-bottom: 1.25rem; }
.profile-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.profile-field input,
.profile-field textarea {
    width: 100%; background: var(--section-alt); border: 1px solid var(--border);
    border-radius: var(--r); padding: 0.65rem 0.9rem;
    font-family: var(--f-body); font-size: 0.95rem; color: var(--text);
    box-sizing: border-box; transition: border-color var(--t);
}
.profile-field input:focus,
.profile-field textarea:focus { outline: none; border-color: var(--olive); }
.profile-field textarea { min-height: 90px; resize: vertical; line-height: 1.6; }
.profile-save-row { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.profile-save-msg { font-size: 0.85rem; color: var(--olive); }
.profile-save-msg.err { color: var(--red); }

.profile-progress-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 1.75rem;
}
.profile-progress-card h2 {
    font-family: var(--f-head); font-size: 1rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark);
    margin-bottom: 1.25rem;
}
.profile-chapters { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; }
.profile-ch {
    aspect-ratio: 1; border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-head); font-size: 0.8rem; font-weight: 600;
    border: 1px solid var(--border); background: var(--bg-alt);
    color: var(--text-muted);
}
.profile-ch.done { background: var(--olive); color: #fff; border-color: var(--olive); }
.profile-ch.current { border-color: var(--olive); color: var(--olive); background: var(--olive-wash); }

@media (max-width: 640px) {
    .profile-header-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .profile-chapters { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.left  { transform: translateX(-20px); }
.reveal.right { transform: translateX(20px); }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .journey-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
    .mission-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
    .gathering-wrap     { grid-template-columns: 1fr; }
    .pillars-grid       { grid-template-columns: 1fr; gap: 1rem; }
    .bootcamp-info-row { flex-direction: column; gap: 2.5rem; }
    .bootcamp-info-divider { width: 100%; height: 1px; margin: 0; }
    .bootcamp-bottom { grid-template-columns: 1fr; gap: 2.5rem; }
    .bootcamp-cta-wrap { text-align: center; }
    .chapter-preview-grid { grid-template-columns: 1fr 1fr; }
    .auth-layout        { grid-template-columns: 1fr; }
    .auth-panel-hero    { display: none; }
    .dash-grid          { grid-template-columns: 1fr; }
    .chapter-track      { grid-template-columns: repeat(4, 1fr); }
    .ch-body-grid       { grid-template-columns: 1fr; }
    .disclaimer-box     { flex-direction: column; gap: 1rem; }
}
@media (max-width: 640px) {
    .section              { padding: 4rem 0; }
    .chapter-preview-grid { grid-template-columns: 1fr; }
    .journey-grid         { grid-template-columns: repeat(2, 1fr); }
    .form-row             { grid-template-columns: 1fr; }
    .auth-panel           { padding: 2rem 1.5rem; }
    .footer-top           { grid-template-columns: 1fr; gap: 2rem; }
    .chapter-track        { grid-template-columns: repeat(3, 1fr); }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(240,234,216,0.98); border-bottom: 1.5px solid var(--border); padding: 1rem; gap: 0.15rem; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero-meta  { gap: 1rem; }
    .nav-sec    { display: list-item; }
    .gather-time { font-size: 2rem; }
    .bootcamp-lodging-wrap img { height: auto; }
    .bootcamp-info-row { padding: 1.5rem 1rem; }
    .gather-time-box { padding: 2rem 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   EXTRA VARIABLES / ALIASES
   (so dashboard.html inline styles using --primary etc. work)
═══════════════════════════════════════════════════════════ */
:root {
    --primary:      var(--olive);
    --primary-dark: var(--olive-dark);
    --card-bg:      var(--bg-card);
    --section-alt:  var(--bg-alt);
    --accent:       var(--olive-light);
    --r-md:         6px;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR - id selector alias so #navbar gets same styles
═══════════════════════════════════════════════════════════ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    padding: 1rem 0;
    transition: background var(--t), padding var(--t), box-shadow var(--t);
}
#navbar.scrolled,
#navbar.solid {
    background: rgba(240,234,216,0.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 0.65rem 0;
    box-shadow: 0 2px 12px rgba(26,30,16,0.1);
    border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════
   HERO - new utility classes used in index.html
═══════════════════════════════════════════════════════════ */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 65% 45%, rgba(160,100,30,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 5% 85%, rgba(100,60,10,0.30) 0%, transparent 60%),
        linear-gradient(rgba(255,220,150,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,220,150,0.02) 1px, transparent 1px);
    background-size: auto, auto, 40px 40px, 40px 40px;
    pointer-events: none;
}
.hero h1 {
    font-family: var(--f-display);
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    color: #fff; font-weight: 700;
    letter-spacing: 0.06em; line-height: 1.05;
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1rem;
    color: rgba(232,226,204,0.78);
    max-width: 540px; line-height: 1.78;
    margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS - additional variants
═══════════════════════════════════════════════════════════ */
.btn-secondary {
    background: transparent;
    color: var(--olive);
    border-color: var(--border-strong);
}
.btn-secondary:hover {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--text-on-dark);
    border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════════════════
   NAV CTA link
═══════════════════════════════════════════════════════════ */
.nav-cta {
    background: var(--olive) !important; color: #fff !important;
    border-radius: var(--r); margin-left: 0.25rem;
}
.nav-cta:hover { background: var(--olive-dark) !important; color: #fff !important; }

/* ═══════════════════════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════════════════════ */
.section-alt     { background: var(--bg-alt); }
.section-header  { text-align: center; margin-bottom: 3.5rem; }
.section-sub     { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0.75rem auto 0; line-height: 1.7; }
.section-cta     { text-align: center; margin-top: 2.5rem; }

/* ═══════════════════════════════════════════════════════════
   TWO-COLUMN STORY LAYOUT
═══════════════════════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:860px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }
.col-text h2 { font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--dark); margin-bottom: 1rem; font-weight: 700; letter-spacing: 0.03em; }
.col-text p  { font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.pull-quote  { border-left: 4px solid var(--olive); padding-left: 1.5rem; }
.pull-quote p    { font-family: var(--f-serif); font-size: 1.2rem; font-style: italic; color: var(--dark); line-height: 1.7; margin-bottom: 0.75rem; }
.pull-quote cite { font-family: var(--f-head); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); font-style: normal; }

/* ═══════════════════════════════════════════════════════════
   PILLARS SECTION
═══════════════════════════════════════════════════════════ */
.pillar-icon {
    font-size: 1.6rem; color: var(--olive);
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--olive-wash); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    transition: background var(--t), border-color var(--t);
}
.pillar-card:hover .pillar-icon { background: var(--olive); color: #fff; border-color: var(--olive); }
.pillar-card h3 { font-family: var(--f-head); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.75rem; }
.pillar-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   CHAPTER CHIPS (index page preview)
═══════════════════════════════════════════════════════════ */
.chapter-preview-grid .chapter-chip {
    display: block;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 1rem 1.25rem;
    font-family: var(--f-head); font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.05em; color: var(--dark);
    text-align: center; transition: all var(--t);
    text-decoration: none; cursor: pointer;
}
.chapter-preview-grid .chapter-chip:hover {
    border-color: var(--olive); background: var(--olive-tint);
    transform: translateY(-2px); box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
    background: var(--hero-bg); padding: 5rem 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,220,150,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,220,150,0.03) 1px, transparent 1px);
    background-size: 32px 32px; pointer-events: none;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--f-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; margin-bottom: 1rem; }
.cta-banner p  { font-size: 1rem; color: rgba(200,214,160,0.75); margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════════
   FOOTER - simplified version
═══════════════════════════════════════════════════════════ */
.footer .footer-brand {
    font-family: var(--f-display); font-size: 1rem; font-weight: 700;
    color: #fff; letter-spacing: 0.05em; margin-bottom: 1rem;
    display: block; /* override flex from old rule */
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1rem; }
.footer-links a { font-family: var(--f-head); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(200,214,160,0.55); transition: color var(--t); }
.footer-links a:hover { color: var(--olive-pale); }
.footer-copy { font-size: 0.78rem; color: rgba(200,214,160,0.3); font-family: var(--f-head); letter-spacing: 0.06em; text-transform: uppercase; text-align: center; margin-top: 0.5rem; }
.footer .container { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES - centered card layout
═══════════════════════════════════════════════════════════ */
.auth-main {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 6rem 1.5rem 3rem; min-height: calc(100vh - 70px);
}
.auth-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 2.5rem 2.75rem;
    width: 100%; max-width: 500px; box-shadow: var(--shadow-lg);
}
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header h1 { font-family: var(--f-display); font-size: 1.8rem; color: var(--dark); font-weight: 700; letter-spacing: 0.03em; margin-bottom: 0.35rem; }
.auth-sub  { font-size: 0.92rem; color: var(--text-muted); }
.auth-switch { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin-top: 1.5rem; }
.auth-switch a { color: var(--olive); font-weight: 700; }
.auth-disclaimer { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.auth-disclaimer p { font-size: 0.78rem; color: var(--text-light); line-height: 1.65; text-align: center; font-style: italic; }
.form-row-between { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.check-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); cursor: pointer; }
.link-subtle { font-size: 0.82rem; color: var(--text-light); transition: color var(--t); }
.link-subtle:hover { color: var(--olive); }
.form-success {
    background: #eaf2e0; border: 1px solid #b0cc80;
    border-radius: var(--r); color: #2a4010;
    font-size: 0.88rem; padding: 0.75rem 1rem; margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   MODALS
═══════════════════════════════════════════════════════════ */
.modal-overlay { position: fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.8); display:flex; align-items:center; justify-content:center; z-index:9999; opacity:0; pointer-events:none; transition:opacity .3s; }
.modal-overlay.active { opacity:1; pointer-events:auto; }
.modal-card { background:var(--bg-card); width:90%; max-width:500px; border-radius:var(--r-lg); border:1px solid var(--border); padding:2rem; box-shadow:0 10px 30px rgba(0,0,0,0.5); transform:translateY(20px); transition:transform .3s; position:relative; margin:auto; }
.modal-overlay.active .modal-card { transform:translateY(0); }
.modal-title { font-family:var(--f-display); font-size:1.5rem; font-weight:700; color:var(--text); margin-bottom:1rem; }
.modal-body { font-size:0.95rem; color:var(--text-muted); line-height:1.6; margin-bottom:1.5rem; }

/* ═══════════════════════════════════════════════════════════
   PAGE MAIN - for pages with fixed navbar
═══════════════════════════════════════════════════════════ */
.page-main { padding-top: 80px; min-height: 100vh; }

/* -----------------------------------------------------------
   MEMBERS DIRECTORY
----------------------------------------------------------- */
.members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; padding: 2rem 0; }
.member-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow-sm); transition: all var(--t); }
.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-mid); }
.member-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--olive); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; overflow: hidden; border: 2px solid var(--border-mid); }
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-name { font-family: var(--f-head); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.member-loc { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.75rem; }
.member-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1.25rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.btn-msg { width: 100%; background: var(--section-alt); border: 1px solid var(--border); border-radius: var(--r); padding: 0.5rem; font-family: var(--f-head); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-dark); cursor: pointer; transition: all var(--t); margin-top: auto; }
.btn-msg:hover { background: var(--olive); color: #fff; border-color: var(--olive); }

/* -----------------------------------------------------------
   MESSAGES INBOX
----------------------------------------------------------- */
.msg-layout { display: grid; grid-template-columns: 300px 1fr; gap: 1.5rem; height: calc(100vh - 180px); min-height: 500px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.msg-sidebar { border-right: 1px solid var(--border); background: var(--bg-alt); display: flex; flex-direction: column; }
.msg-sidebar-header { padding: 1.25rem; border-bottom: 1px solid var(--border); font-family: var(--f-head); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark); background: var(--olive-wash); }
.msg-contact-list { overflow-y: auto; flex: 1; }
.msg-contact { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); cursor: pointer; transition: background var(--t); }
.msg-contact:hover { background: rgba(255,255,255,0.4); }
.msg-contact.active { background: #fff; border-left: 3px solid var(--olive); }
.msg-contact-av { width: 40px; height: 40px; border-radius: 50%; background: var(--olive); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; overflow: hidden; flex-shrink: 0; }
.msg-contact-av img { width: 100%; height: 100%; object-fit: cover; }
.msg-contact-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }

.msg-chat { display: flex; flex-direction: column; background: #fff; }
.msg-chat-header { padding: 1.25rem; border-bottom: 1px solid var(--border); font-family: var(--f-head); font-size: 1.1rem; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 1rem; }
.msg-chat-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; background: var(--bg-white); }
.chat-bubble { max-width: 70%; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.95rem; line-height: 1.5; position: relative; clear: both; }
.chat-bubble.them { background: var(--bg-alt); color: var(--dark); align-self: flex-start; border-bottom-left-radius: 2px; }
.chat-bubble.me { background: var(--olive); color: #fff; align-self: flex-end; border-bottom-right-radius: 2px; }
.chat-time { font-size: 0.65rem; color: var(--text-light); margin-top: 0.25rem; display: block; }
.chat-bubble.me .chat-time { color: rgba(255,255,255,0.7); text-align: right; }
.msg-chat-input { padding: 1rem; border-top: 1px solid var(--border); background: var(--bg-alt); display: flex; gap: 0.75rem; }
.msg-chat-input input { flex: 1; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 2rem; font-family: var(--f-body); font-size: 0.95rem; outline: none; }
.msg-chat-input input:focus { border-color: var(--olive); }
.msg-send-btn { background: var(--olive); color: #fff; border: none; border-radius: 2rem; padding: 0 1.25rem; font-family: var(--f-head); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: background var(--t); }
.msg-send-btn:hover { background: var(--olive-dark); }
@media (max-width: 768px) { .msg-layout { grid-template-columns: 1fr; } .msg-sidebar { display: none; } .msg-layout.show-sidebar .msg-sidebar { display: flex; } .msg-layout.show-sidebar .msg-chat { display: none; } }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials-section { padding: 6rem 0; }
.testimonials-container { position: relative; z-index: 1; }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* Card shell */
.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,214,160,0.18);
    border-radius: var(--r-lg);
    overflow: hidden;
    padding: 2.5rem 2rem 2rem;
    gap: 1.5rem;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease,
                box-shadow 0.25s ease;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(200,214,160,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

/* Olive top-accent bar */
.tc-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--olive-light), var(--olive-pale), transparent);
}

/* Giant ghost quote mark */
.tc-quote-mark {
    font-family: var(--f-display);
    font-size: 5rem;
    line-height: 0.75;
    font-weight: 700;
    color: var(--olive-light);
    opacity: 0.55;
    user-select: none;
    flex-shrink: 0;
}

/* Quote body */
.tc-body {
    font-size: 1rem;
    color: rgba(236,232,223,0.88);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
}

/* Attribution row */
.tc-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(200,214,160,0.2);
    padding-top: 1.4rem;
    margin-top: auto;
}
.tc-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive-mid) 0%, var(--olive-dark) 100%);
    border: 2px solid rgba(200,214,160,0.38);
    color: var(--olive-pale);
    font-family: var(--f-display);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(200,214,160,0.07);
}
.tc-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.tc-name {
    font-family: var(--f-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--olive-pale);
}
.tc-loc {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(200,214,160,0.45);
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--t), box-shadow var(--t);
}
.faq-item[open] { border-color: var(--border-mid); box-shadow: var(--shadow-sm); }
.faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-family: var(--f-head);
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--dark);
    user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--olive-light);
    flex-shrink: 0;
    transition: transform var(--t);
    line-height: 1;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}
.faq-a p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin: 1rem 0 0;
}

/* Hero member count separator */
.hero-meta-sep { opacity: 0.35; font-size: 1.1rem; }
.hero-trust { margin-top: 0.75rem; font-size: 0.88rem; color: rgba(232,213,168,0.82); letter-spacing: 0.04em; }

/* ══════════════════════════════════════════════════════════
   EMAIL CAPTURE STRIP
═══════════════════════════════════════════════════════════ */
.email-capture-strip {
    background: var(--olive-dark);
    border-top: 1px solid rgba(122,148,64,0.25);
    border-bottom: 1px solid rgba(122,148,64,0.25);
    padding: 2.5rem 0;
}
.email-capture-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.email-capture-text { flex: 1 1 320px; }
.email-capture-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--olive-light);
    margin-bottom: 0.35rem;
}
.email-capture-heading {
    font-family: var(--f-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}
.email-capture-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin: 0;
}
.email-capture-form {
    flex: 0 1 420px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.email-capture-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r-md);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.email-capture-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.email-capture-form input[type="email"]:focus { border-color: var(--olive-light); }
.email-capture-form .btn { width: 100%; text-align: center; }
.email-capture-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    text-align: center;
    min-height: 1.2em;
    margin: 0;
}
.email-capture-note.success { color: var(--olive-light); }
.email-capture-note.error   { color: #e88; }

@media (max-width: 768px) {
    .email-capture-inner { gap: 1.5rem; }
    .email-capture-heading { font-size: 1.4rem; }
    .email-capture-form { flex: 1 1 100%; }
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}
