html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

:root {
    --ink: #0f0f0f;
    --cream: #f8f4ef;
    --gold: #c49a3c;
    --gold-light: #e8c97a;
    --warm: #e8ddd0;
    --deep: #1a1209;
    --slate: #4a4035;
    --accent: #7b4f2e;
    --green: #2d5a3d;
    --border: rgba(196,154,60,0.3);
    --linkedin: #0077b5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

/* ─── SPLASH SCREEN ─── */
#splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    #splash.hide {
        opacity: 0;
        pointer-events: none;
        transform: scale(1.05);
    }

.splash-srv {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--cream);
    line-height: 1;
    animation: splashLetters 1.5s ease forwards;
}

    .splash-srv span {
        color: var(--gold);
    }

.splash-sub {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(248,244,239,0.4);
    margin-top: 1.5rem;
    animation: splashFade 1.8s ease forwards;
}

.splash-brand {
    margin-top: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 2px;
    animation: splashFade 2s ease forwards;
}

    .splash-brand span {
        color: rgba(248,244,239,0.5);
        font-size: 1rem;
        font-family: 'DM Sans', sans-serif;
        letter-spacing: 1px;
    }

.splash-enter {
    margin-top: 3rem;
    background: none;
    border: 1px solid rgba(196,154,60,0.5);
    color: var(--gold);
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2rem;
    transition: all 0.3s;
    animation: splashFade 2.2s ease forwards;
    font-family: 'DM Sans', sans-serif;
}

    .splash-enter:hover {
        background: var(--gold);
        color: var(--deep);
    }

@keyframes splashLetters {
    from {
        opacity: 0;
        letter-spacing: 0.8em;
    }

    to {
        opacity: 1;
        letter-spacing: 0.4em;
    }
}

@keyframes splashFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248,244,239,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    transition: box-shadow 0.3s;
}

    nav.scrolled {
        box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    }

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.5px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .nav-brand .im1by0-highlight {
        color: var(--gold);
    }

    .nav-brand .srv-tag {
        font-size: 0.65rem;
        font-family: 'DM Sans', sans-serif;
        color: var(--slate);
        letter-spacing: 2px;
        font-weight: 600;
        text-transform: uppercase;
        border-left: 1px solid var(--border);
        padding-left: 0.5rem;
    }

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}

    .nav-links li {
        display: flex;
        align-items: center;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--slate);
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        transition: color 0.2s;
        cursor: pointer;
        padding: 0 0.75rem;
    }

        .nav-links a:hover {
            color: var(--gold);
        }

.nav-sep {
    width: 1px;
    height: 18px;
    background: var(--border);
    margin: 0 0.25rem;
    flex-shrink: 0;
}

.nav-group-label {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(74,64,53,0.4);
    font-weight: 600;
    padding: 0 0.5rem 0 0.25rem;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ink);
        transition: 0.3s;
    }

/* ─── SECTIONS ─── */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 64px;
}

    .page.active {
        display: block;
    }

#home {
    padding-top: 0;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-left {
    background: var(--deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 6rem;
    position: relative;
    overflow: hidden;
}

    .hero-left::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    }

    .hero-left::after {
        content: '∞';
        position: absolute;
        font-size: 40rem;
        color: rgba(196,154,60,0.04);
        right: -5rem;
        top: -5rem;
        line-height: 1;
        font-family: serif;
        pointer-events: none;
    }

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    color: var(--cream);
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

    .hero-brand .im1by0-word {
        position: relative;
        display: inline-block;
    }

        .hero-brand .im1by0-word::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
        }

.hero-by-srv {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(248,244,239,0.4);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

    .hero-by-srv strong {
        color: var(--gold-light);
        font-weight: 600;
        letter-spacing: 4px;
    }

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(248,244,239,0.6);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 400px;
}

.hero-creds {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cred-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(196,154,60,0.15);
    border: 1px solid rgba(196,154,60,0.4);
    color: var(--gold-light);
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--deep);
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    width: fit-content;
}

    .hero-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(196,154,60,0.4);
    }

.hero-right {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 6rem;
    gap: 2.5rem;
}

.why-card {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}

    .why-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        color: var(--ink);
        margin-bottom: 0.4rem;
    }

    .why-card p {
        color: var(--slate);
        font-size: 0.9rem;
        line-height: 1.7;
    }

/* ─── PAGE HEADER ─── */
.page-header {
    background: var(--deep);
    color: var(--cream);
    padding: 6rem 3rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '∞';
        position: absolute;
        font-size: 20rem;
        opacity: 0.03;
        font-family: serif;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        line-height: 1;
    }

    .page-header > * {
        position: relative;
        z-index: 1;
    }

    .page-header h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: 1rem;
    }

.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.page-header p {
    color: rgba(248,244,239,0.6);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── MANIFESTO ─── */
.manifesto-section {
    padding: 6rem 4rem;
    max-width: 960px;
    margin: 0 auto;
}

    .manifesto-section h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        color: var(--ink);
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    .manifesto-section p {
        color: var(--slate);
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 1.5rem;
    }

/* ─── STATS STRIP ─── */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--ink);
    padding: 3rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

    .stat:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(248,244,239,0.4);
    margin-top: 0.25rem;
}

/* ─── EXPERIENCE ─── */
.exp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.exp-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-bottom: 5px;
}

.filter-btn {
    background: white;
    border: 1px solid var(--warm);
    color: var(--slate);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

    .filter-btn.active, .filter-btn:hover {
        background: var(--gold);
        color: white;
        border-color: var(--gold);
    }

.exp-card {
    background: white;
    border: 1px solid var(--warm);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s;
}

    .exp-card:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }

.exp-card-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.exp-card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.exp-company-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate);
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
    overflow: hidden;
}

    .exp-company-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.exp-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--ink);
}

.exp-info p {
    font-size: 0.8rem;
    color: var(--slate);
    margin-top: 0.2rem;
}

.exp-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.exp-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-finance {
    background: rgba(196,154,60,0.12);
    color: #7a5f1a;
    border: 1px solid rgba(196,154,60,0.3);
}

.badge-teaching {
    background: rgba(45,90,61,0.12);
    color: #1a5a2e;
    border: 1px solid rgba(45,90,61,0.3);
}

.badge-tech {
    background: rgba(123,79,46,0.12);
    color: #7b4f2e;
    border: 1px solid rgba(123,79,46,0.3);
}

.badge-advisory {
    background: rgba(30,60,100,0.12);
    color: #1e3c64;
    border: 1px solid rgba(30,60,100,0.3);
}

.expand-btn {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.exp-card-body {
    display: none;
    padding: 0 2rem 1.5rem;
}

    .exp-card-body.open {
        display: block;
    }

    .exp-card-body ul {
        list-style: none;
        padding: 0;
    }

    .exp-card-body li {
        padding: 0.5rem 0;
        color: var(--slate);
        font-size: 0.875rem;
        line-height: 1.7;
        display: flex;
        gap: 0.75rem;
        border-bottom: 1px solid rgba(232,221,208,0.5);
    }

        .exp-card-body li:last-child {
            border: none;
        }

        .exp-card-body li::before {
            content: '→';
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

/* ─── EDUCATION ─── */
.edu-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.edu-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--ink);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

    .edu-section-title span {
        color: var(--gold);
        font-size: 0.85em;
    }

.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.edu-card {
    background: white;
    border: 1px solid var(--warm);
    border-radius: 14px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

    .edu-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }

    .edu-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--gold);
    }

.edu-card-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--slate);
    text-align: center;
    margin-bottom: 1rem;
    overflow: hidden;
    line-height: 1.2;
}

    .edu-card-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.edu-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.edu-card-inst {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.edu-card-year {
    font-size: 0.75rem;
    color: var(--slate);
    margin-bottom: 0.75rem;
}

.edu-card-details {
    font-size: 0.8rem;
    color: var(--slate);
    line-height: 1.6;
}

.edu-card-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.skill-tag {
    background: var(--warm);
    color: var(--slate);
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 500;
}

/* ─── TIMELINE ─── */
.timeline-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.timeline-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.timeline-container {
    position: relative;
}

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--gold), rgba(196,154,60,0.1));
        transform: translateX(-50%);
    }

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

    .timeline-item.visible {
        opacity: 1;
        transform: none;
    }

    .timeline-item.right {
        flex-direction: row-reverse;
    }

        .timeline-item.right .timeline-content {
            text-align: right;
        }

.timeline-content {
    flex: 1;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
    flex-shrink: 0;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 3px var(--gold);
}

.timeline-year {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.timeline-org {
    font-size: 0.8rem;
    color: var(--slate);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.7;
}

.timeline-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.badge-edu {
    background: rgba(45,90,61,0.12);
    color: #1a5a2e;
}

.badge-work {
    background: rgba(196,154,60,0.12);
    color: #7a5f1a;
}

/* ─── SKILLS DASHBOARD ─── */
.skills-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.skill-category {
    margin-bottom: 3rem;
}

.skill-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .skill-category-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.skill-bars {
    display: grid;
    gap: 0.75rem;
}

.skill-bar-item {
    display: grid;
    grid-template-columns: 220px 1fr 50px;
    align-items: center;
    gap: 1rem;
}

.skill-bar-label {
    font-size: 0.875rem;
    color: var(--slate);
    font-weight: 500;
}

.skill-bar-track {
    height: 8px;
    background: var(--warm);
    border-radius: 4px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 0;
}

    .skill-bar-fill.animated {
        width: var(--target-width);
    }

.skill-bar-pct {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
}

.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.skills-cloud-tag {
    background: white;
    border: 1px solid var(--warm);
    color: var(--slate);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: default;
}

    .skills-cloud-tag.strong {
        background: var(--gold);
        color: white;
        border-color: var(--gold);
        font-weight: 600;
    }

    .skills-cloud-tag.medium {
        background: rgba(196,154,60,0.15);
        color: var(--accent);
        border-color: rgba(196,154,60,0.3);
    }

/* ─── INSIGHTS ─── */
.insights-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.insights-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.insight-panel {
    display: none;
}

    .insight-panel.active {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }

.insight-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--warm);
    padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .insight-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    }

.insight-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.insight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.insight-card p {
    color: var(--slate);
    font-size: 0.875rem;
    line-height: 1.75;
}

.newsletter-box {
    background: linear-gradient(135deg, rgba(196,154,60,0.1), rgba(196,154,60,0.05));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.newsletter-input-row {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 1.5rem auto 0;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2rem;
    background: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--ink);
    outline: none;
}

    .newsletter-input:focus {
        border-color: var(--gold);
    }

/* ─── COURSES ─── */
.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.courses-philosophy {
    background: var(--deep);
    color: var(--cream);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

    .courses-philosophy h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .courses-philosophy p {
        color: rgba(248,244,239,0.7);
        line-height: 1.8;
        font-size: 0.95rem;
    }

.quality-badge {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(196,154,60,0.3);
    border-radius: 16px;
}

    .quality-badge .icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .quality-badge h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--gold-light);
        margin-bottom: 0.5rem;
    }

    .quality-badge p {
        font-size: 0.875rem;
        color: rgba(248,244,239,0.6);
        line-height: 1.7;
    }

.course-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--ink);
    margin: 4rem 0 1.5rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.course-card {
    background: white;
    border: 1px solid var(--warm);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .course-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }

.course-card-head {
    background: var(--deep);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .course-card-head .icon {
        font-size: 2rem;
    }

    .course-card-head h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        color: var(--cream);
    }

    .course-card-head p {
        font-size: 0.75rem;
        color: rgba(248,244,239,0.5);
    }

.course-card-body {
    padding: 1.5rem;
}

    .course-card-body p {
        color: var(--slate);
        font-size: 0.875rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .course-card-body .duration {
        font-size: 0.75rem;
        color: var(--gold);
        font-weight: 600;
    }

.course-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.course-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.course-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-type {
    background: rgba(196,154,60,0.12);
    color: #7a5f1a;
    border: 1px solid rgba(196,154,60,0.3);
}

.badge-duration {
    background: rgba(45,90,61,0.12);
    color: #1a5a2e;
    border: 1px solid rgba(45,90,61,0.3);
}

.badge-level {
    background: rgba(123,79,46,0.12);
    color: #7b4f2e;
    border: 1px solid rgba(123,79,46,0.3);
}

.course-details {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--warm);
}

.course-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--slate);
}

    .course-detail-item .icon {
        color: var(--gold);
        font-size: 1rem;
    }

.course-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--deep);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    transition: all 0.2s;
}

    .course-cta:hover {
        background: #a07e2a;
        transform: translateY(-1px);
    }

/* ─── JOURNEY ─── */
.journey-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

/* ─── HOBBIES ─── */
.hobbies-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.hobby-card {
    background: white;
    border: 1px solid var(--warm);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .hobby-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    }

.hobby-banner {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.hobby-body {
    padding: 1.5rem;
}

    .hobby-body h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        color: var(--ink);
        margin-bottom: 0.5rem;
    }

    .hobby-body p {
        color: var(--slate);
        font-size: 0.875rem;
        line-height: 1.7;
    }

/* ─── BOOK REVIEWS ─── */
.books-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.book-card {
    background: white;
    border: 1px solid var(--warm);
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.2s;
}

    .book-card:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    }

.book-cover1 {
    width: 80px;
    height: 110px;
    background: var(--deep);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.book-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.book-author {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.book-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

    .book-rating span {
        color: var(--gold);
    }

.book-review-text {
    color: var(--slate);
    font-size: 0.875rem;
    line-height: 1.75;
}

.book-category-tag {
    display: inline-block;
    background: rgba(196,154,60,0.12);
    color: var(--accent);
    border: 1px solid rgba(196,154,60,0.3);
    padding: 0.2rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* ─── TESTIMONIALS ─── */
.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--warm);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

    .testimonial-card::before {
        content: '"';
        font-size: 5rem;
        font-family: 'Playfair Display', serif;
        color: rgba(196,154,60,0.15);
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        line-height: 1;
    }

.testimonial-text {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topic-badge {
    display: inline-block;
    background: #eef2ff;
    color: #4e73df;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 6px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate);
    font-family: 'Playfair Display', serif;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--slate);
}

.placeholder-badge {
    background: rgba(196,154,60,0.08);
    border: 1px dashed rgba(196,154,60,0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--gold);
    font-style: italic;
    display: inline-block;
    margin-top: 0.5rem;
}

/* ─── CONTACT / MACRO INSPIRED ─── */
.contact-hero {
    background: var(--ink);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(196,154,60,0.08) 0%, transparent 70%);
    }

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem,5vw,4.5rem);
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-hero p {
    color: rgba(248,244,239,0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: -3rem auto 0;
    padding: 0 2rem;
}

.contact-option-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--warm);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    .contact-option-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

.contact-option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-option-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.contact-option-card p {
    color: var(--slate);
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-form-section {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem 4rem;
}

.form-field {
    margin-bottom: 1.25rem;
}

    .form-field label {
        display: block;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--slate);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .form-field input, .form-field textarea, .form-field select {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 1px solid var(--warm);
        border-radius: 10px;
        background: white;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.9rem;
        color: var(--ink);
        outline: none;
        transition: border-color 0.2s;
    }

        .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
            border-color: var(--gold);
        }

.submit-btn {
    width: 100%;
    background: var(--gold);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

    .submit-btn:hover {
        background: #a07e2a;
        transform: translateY(-1px);
    }

.success-msg {
    display: none;
    padding: 1rem;
    background: rgba(45,90,61,0.1);
    border: 1px solid rgba(45,90,61,0.3);
    border-radius: 8px;
    color: var(--green);
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    }

.whatsapp-popup {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 900;
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    max-width: 280px;
    display: none;
    border: 1px solid var(--warm);
}

    .whatsapp-popup.open {
        display: block;
        animation: fadeInUp 0.3s;
    }

    .whatsapp-popup h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        color: var(--ink);
        margin-bottom: 0.5rem;
    }

    .whatsapp-popup p {
        font-size: 0.8rem;
        color: var(--slate);
        margin-bottom: 1rem;
        line-height: 1.6;
    }

.whatsapp-popup-note {
    font-size: 0.7rem;
    color: var(--slate);
    opacity: 0.7;
    margin-top: 0.5rem;
    font-style: italic;
}

.whatsapp-confirm-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ─── FAQ ─── */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--warm);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    font-weight: 600;
    text-align: left;
    font-size: 0.9rem;
}

.faq-icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    color: var(--slate);
    font-size: 0.875rem;
    line-height: 1.8;
}

/* ─── PRIVACY / TERMS ─── */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

    .legal-container h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--ink);
        margin: 2rem 0 0.75rem;
    }

    .legal-container p, .legal-container li {
        color: var(--slate);
        font-size: 0.9rem;
        line-height: 1.85;
    }

    .legal-container ul {
        padding-left: 1.5rem;
        margin-top: 0.5rem;
    }

/* ─── THESIS ─── */
.thesis-card {
    background: linear-gradient(135deg, var(--deep), #0a0804);
    border-radius: 20px;
    padding: 3rem;
    color: var(--cream);
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}

    .thesis-card::before {
        content: '∑';
        font-size: 20rem;
        opacity: 0.03;
        position: absolute;
        right: -2rem;
        top: -2rem;
        font-family: serif;
    }

/* ─── CONTACT PATH CARDS ─── */
.contact-path-card {
    background: white;
    border: 2px solid var(--warm);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

    .contact-path-card:hover {
        border-color: var(--gold);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    }

    .contact-path-card.active {
        border-color: var(--gold);
        background: rgba(196,154,60,0.04);
        box-shadow: 0 4px 20px rgba(196,154,60,0.15);
    }

    .contact-path-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        color: var(--ink);
        margin-bottom: 0.4rem;
    }

    .contact-path-card p {
        color: var(--slate);
        font-size: 0.78rem;
        line-height: 1.6;
    }

/* ─── RESOURCES ─── */
.resource-panel {
    display: none;
}

    .resource-panel.active {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
        gap: 1.5rem;
    }

        .resource-panel.active.block {
            display: block;
        }


#author {
    background: var(--cream);
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.book-cover {
    background: var(--deep);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15), -5px -5px 20px rgba(196,154,60,0.1);
}

    .book-cover::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 8px;
        background: linear-gradient(to bottom, var(--gold), var(--gold-light));
        border-radius: 0 20px 20px 0;
    }

    .book-cover .book-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--cream);
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .book-cover .book-sub {
        font-style: italic;
        color: var(--gold-light);
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .book-cover .book-author {
        color: rgba(248,244,239,0.6);
        font-size: 0.85rem;
        border-top: 1px solid rgba(196,154,60,0.2);
        padding-top: 1rem;
        margin-top: 1rem;
    }

.book-badge {
    display: inline-block;
    background: rgba(196,154,60,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
}

.book-amazon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--deep);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    justify-content: center;
}

    .book-amazon-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(196,154,60,0.3);
    }

.book-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.book-info .tagline {
    font-style: italic;
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.book-info p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.chapter-highlights {
    background: white;
    border: 1px solid var(--warm);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

    .chapter-highlights h4 {
        font-family: 'Playfair Display', serif;
        color: var(--ink);
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .chapter-highlights ul {
        list-style: none;
        display: grid;
        gap: 0.5rem;
    }

        .chapter-highlights ul li {
            font-size: 0.85rem;
            color: var(--slate);
            display: flex;
            gap: 0.75rem;
            align-items: start;
        }

            .chapter-highlights ul li::before {
                content: '📌';
                flex-shrink: 0;
            }

.also-author {
    background: var(--deep);
    border-radius: 20px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

    .also-author h3 {
        font-family: 'Playfair Display', serif;
        color: var(--cream);
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .also-author p {
        color: rgba(248,244,239,0.6);
        font-size: 0.9rem;
        line-height: 1.7;
    }

/* ─── RESOURCES ─── */
.resource-panel {
}

.resource-tab-btn {
}


.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.session-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.session-card {
    background: white;
    border: 2px solid var(--warm);
    border-radius: 16px;
    padding: 1.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .session-card:hover, .session-card.selected {
        border-color: var(--gold);
    }

    .session-card.selected {
        background: rgba(196,154,60,0.05);
    }

.session-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.session-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.session-card p {
    font-size: 0.8rem;
    color: var(--slate);
    line-height: 1.6;
}

.session-duration {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 0.75rem;
}

.cal-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .cal-header h3 {
        font-family: 'Playfair Display', serif;
        color: var(--ink);
        font-size: 1.1rem;
    }

.cal-nav {
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    color: var(--slate);
    font-family: 'DM Sans', sans-serif;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 4px;
}

.cal-day-name {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--slate);
    padding: 0.5rem 0;
}

.cal-day {
    text-align: center;
    padding: 0.6rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.15s;
}

    .cal-day:hover:not(.disabled):not(.empty) {
        background: rgba(196,154,60,0.12);
    }

    .cal-day.today {
        background: rgba(196,154,60,0.15);
        color: var(--gold);
        font-weight: 700;
    }

    .cal-day.selected {
        background: var(--gold);
        color: white;
        font-weight: 600;
    }

    .cal-day.disabled {
        color: var(--warm);
        cursor: default;
    }

    .cal-day.empty {
        cursor: default;
    }

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0.5rem;
}

.slot {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--slate);
}

    .slot:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    .slot.selected {
        background: var(--gold);
        color: white;
        border-color: var(--gold);
    }

.booking-form {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

    .booking-form .full-width {
        grid-column: 1 / -1;
    }

.booking-success {
    display: none;
    background: rgba(45,90,61,0.1);
    border: 1px solid rgba(45,90,61,0.3);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    color: var(--green);
}

/* ─── AUTHOR / BOOKS ─── */
.author-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.book-3d {
    background: var(--deep);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 0 rgba(196,154,60,0.2);
}

    .book-3d .book-emoji {
        font-size: 4rem;
    }

    .book-3d h3 {
        font-family: 'Playfair Display', serif;
        color: var(--cream);
        margin-top: 1rem;
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .book-3d p {
        color: var(--gold-light);
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

/* ─── FOOTER ─── */
footer {
    background: var(--deep);
    text-align: center;
    padding: 4rem 2rem 3rem;
    border-top: 1px solid rgba(196,154,60,0.15);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

    .footer-brand span {
        color: var(--gold);
    }

.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(248,244,239,0.3);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

    .footer-links a {
        color: rgba(248,244,239,0.4);
        font-size: 0.8rem;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0 2rem;
}

    .social-links a {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(196,154,60,0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.2s;
    }

        .social-links a:hover {
            background: var(--gold);
            color: var(--deep);
            border-color: var(--gold);
        }

footer p {
    color: rgba(248,244,239,0.3);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* ─── BENEFIT GRID ─── */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--cream);
    padding: 5rem 4rem;
    gap: 2rem;
    border-top: 1px solid var(--warm);
}

.benefit {
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.benefit p {
    color: var(--slate);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ─── FUTURE SECTION ─── */
.future-section {
    background: var(--deep);
    padding: 5rem 4rem;
    text-align: center;
}

    .future-section h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: var(--cream);
        margin-bottom: 1rem;
    }

    .future-section p {
        color: rgba(248,244,239,0.6);
        font-size: 0.9rem;
        line-height: 1.7;
        max-width: 600px;
        margin: 0 auto 1.5rem;
    }

.future-goals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 2rem auto;
}

.future-goal {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,154,60,0.2);
    border-radius: 12px;
    padding: 1.25rem;
}

    .future-goal h4 {
        font-family: 'Playfair Display', serif;
        font-size: 0.95rem;
        color: var(--gold-light);
        margin-bottom: 0.4rem;
    }

    .future-goal p {
        font-size: 0.75rem;
        color: rgba(248,244,239,0.4);
        line-height: 1.5;
    }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.7s forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* ─── MOBILE ─── */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(248,244,239,0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--slate);
        font-size: 0.95rem;
        font-weight: 500;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--warm);
        cursor: pointer;
    }

@media (max-width: 1100px) {
    .nav-links {
        gap: 1rem;
    }

        .nav-links a {
            font-size: 0.75rem;
        }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 7rem 2rem 3rem;
    }

    .hero-right {
        padding: 3rem 2rem;
    }

    .stats-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .benefit-grid {
        grid-template-columns: 1fr 1fr;
        padding: 3rem 2rem;
    }

    .book-showcase {
        grid-template-columns: 1fr;
    }

    .also-author {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .session-types {
        grid-template-columns: 1fr;
    }

    .future-goals {
        grid-template-columns: 1fr 1fr;
    }

    .cal-wrap {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .courses-philosophy {
        grid-template-columns: 1fr;
    }

    .skill-bar-item {
        grid-template-columns: 140px 1fr 40px;
    }

    .timeline-container::before {
        left: 12px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

        .timeline-item.right .timeline-content {
            text-align: left;
        }

    .timeline-dot {
        margin-left: -4px;
    }
}

@media (max-width: 600px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
        padding: 2rem;
    }

    .future-goals {
        grid-template-columns: 1fr;
    }

    .slots-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .edu-grid {
        grid-template-columns: 1fr;
    }

    .skill-bar-item {
        grid-template-columns: 100px 1fr 36px;
    }

    .skill-bar-label {
        font-size: 0.75rem;
    }
}



/* ── GRAIN OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* ── HERO ── */
.hero {
    background: var(--deep);
    position: relative;
    overflow: hidden;
    padding: 6rem 4rem 5rem;
    text-align: center;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(196,154,60,0.08) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 80% 30%, rgba(123,79,46,0.06) 0%, transparent 70%);
    }

/* decorative infinity mark */
.hero-infinity {
    position: absolute;
    font-size: 32rem;
    line-height: 1;
    color: rgba(196,154,60,0.035);
    font-family: 'Playfair Display', serif;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    user-select: none;
    pointer-events: none;
    letter-spacing: -10px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(196,154,60,0.3);
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
}

    .hero-eyebrow::before {
        content: '✦';
        font-size: 0.6rem;
    }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--cream);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}

    .hero h1 em {
        font-style: italic;
        color: var(--gold-light);
    }

.hero-sub {
    color: rgba(248,244,239,0.55);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.hero-creds {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cred {
    background: rgba(196,154,60,0.12);
    border: 1px solid rgba(196,154,60,0.3);
    color: var(--gold-light);
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(248,244,239,0.25);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ── WHAT TO EXPECT ── */
.expect-strip {
    background: var(--cream);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--warm);
}

.expect-item {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--warm);
    position: relative;
}

    .expect-item:last-child {
        border-right: none;
    }

    .expect-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .expect-item:hover::after {
        transform: scaleX(1);
    }

.expect-icon {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.expect-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.expect-item p {
    color: var(--slate);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* ── SCREENER ── */
.screener-section {
    padding: 5rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-desc {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin-bottom: 2rem;
    border-radius: 2px;
}

/* Screener steps */
.screener-card {
    background: var(--card-bg);
    border: 1px solid var(--warm);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0,0,0,0.04);
}

.screener-progress {
    height: 3px;
    background: var(--warm);
    position: relative;
}

.screener-progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    border-radius: 0 2px 2px 0;
    transition: width 0.4s ease;
    width: 33%;
}

.screener-steps {
    padding: 2.5rem;
}

.step {
    display: none;
}

    .step.active {
        display: block;
        animation: stepIn 0.3s ease;
    }

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.step-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.step > p {
    color: var(--slate);
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

/* Option chips */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.option-chip {
    border: 2px solid var(--warm);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--cream);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

    .option-chip:hover {
        border-color: var(--border);
        background: rgba(196,154,60,0.04);
    }

    .option-chip.selected {
        border-color: var(--gold);
        background: rgba(196,154,60,0.08);
    }

    .option-chip .chip-icon {
        font-size: 1.25rem;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .option-chip .chip-text .chip-label {
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--ink);
        display: block;
        margin-bottom: 0.2rem;
    }

    .option-chip .chip-text .chip-sub {
        font-size: 0.75rem;
        color: var(--slate);
        line-height: 1.4;
    }

    .option-chip.selected .chip-text .chip-label {
        color: var(--gold);
    }

/* Form fields */
.field-group {
    display: grid;
    gap: 1rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .field label {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--slate);
    }

    .field input, .field select, .field textarea {
        padding: 0.75rem 1rem;
        border: 1.5px solid var(--warm);
        border-radius: 10px;
        background: var(--cream);
        font-size: 0.875rem;
        color: var(--ink);
        font-family: 'DM Sans', sans-serif;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .field input:focus, .field select:focus, .field textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(196,154,60,0.1);
            background: white;
        }

/* Nav buttons */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--warm);
}

.btn-back {
    background: none;
    border: 1.5px solid var(--warm);
    border-radius: 2rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--slate);
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
}

    .btn-back:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.btn-next {
    background: var(--gold);
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: white;
    font-family: 'DM Sans', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-next:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(196,154,60,0.35);
    }

.step-indicator {
    font-size: 0.8rem;
    color: var(--slate);
}

    .step-indicator strong {
        color: var(--gold);
    }

/* ── SESSION CARDS ── */
.sessions-section {
    background: var(--deep);
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

    .sessions-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,154,60,0.05), transparent 70%);
    }

.sessions-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.sessions-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

    .sessions-header .section-label {
        color: var(--gold-light);
    }

    .sessions-header .section-title {
        color: var(--cream);
    }

    .sessions-header .section-desc {
        color: rgba(248,244,239,0.5);
        margin: 0 auto;
    }

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.session-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,154,60,0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .session-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .session-card:hover {
        transform: translateY(-6px);
        border-color: rgba(196,154,60,0.45);
        box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    }

        .session-card:hover::before {
            transform: scaleX(1);
        }

    .session-card.featured {
        border-color: rgba(196,154,60,0.5);
        background: rgba(196,154,60,0.06);
    }

        .session-card.featured::before {
            transform: scaleX(1);
        }

.featured-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gold);
    color: var(--deep);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
}

.session-top {
    padding: 2rem 2rem 1.5rem;
    flex: 1;
}

.duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

    .duration-badge::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
    }

.session-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.session-card .tagline {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: rgba(232,201,122,0.7);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.session-card .desc {
    color: rgba(248,244,239,0.5);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.what-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

    .what-list li {
        display: flex;
        gap: 0.6rem;
        align-items: flex-start;
        font-size: 0.82rem;
        color: rgba(248,244,239,0.65);
        line-height: 1.5;
    }

        .what-list li::before {
            content: '→';
            color: var(--gold);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 0.05rem;
        }

.session-bottom {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(196,154,60,0.12);
}

    .session-bottom .best-for {
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(248,244,239,0.3);
        margin-bottom: 0.6rem;
    }

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.s-tag {
    background: rgba(196,154,60,0.12);
    border: 1px solid rgba(196,154,60,0.2);
    color: rgba(232,201,122,0.8);
    padding: 0.2rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: transparent;
    border: 1.5px solid rgba(196,154,60,0.5);
    color: var(--gold-light);
    padding: 0.85rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
}

    .book-btn:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--deep);
        transform: none;
    }

.session-card.featured .book-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep);
}

    .session-card.featured .book-btn:hover {
        box-shadow: 0 8px 28px rgba(196,154,60,0.4);
    }

/* ── TOPICS CLOUD ── */
.topics-section {
    padding: 5rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.topics-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.topic-pill {
    background: white;
    border: 1.5px solid var(--warm);
    color: var(--slate);
    padding: 0.5rem 1.1rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: default;
}

    .topic-pill:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(196,154,60,0.04);
    }

    .topic-pill.big {
        font-size: 0.95rem;
        padding: 0.6rem 1.4rem;
        font-weight: 600;
        border-width: 2px;
    }

    .topic-pill.gold {
        background: rgba(196,154,60,0.1);
        border-color: var(--border);
        color: var(--accent);
    }

/* ── WHO IS THIS FOR ── */
.who-section {
    background: var(--deep);
    padding: 5rem 4rem;
}

.who-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.who-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(196,154,60,0.15);
    border-radius: 16px;
    padding: 1.75rem;
    transition: border-color 0.3s, background 0.3s;
}

    .who-card:hover {
        border-color: rgba(196,154,60,0.35);
        background: rgba(196,154,60,0.04);
    }

    .who-card .avatar {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(196,154,60,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .who-card h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        color: var(--cream);
        margin-bottom: 0.5rem;
    }

    .who-card p {
        color: rgba(248,244,239,0.45);
        font-size: 0.82rem;
        line-height: 1.7;
    }

/* ── PHILOSOPHY STRIP ── */
.philosophy {
    border-top: 1px solid var(--warm);
    border-bottom: 1px solid var(--warm);
    padding: 4rem;
    text-align: center;
    background: white;
}

    .philosophy blockquote {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: clamp(1.2rem, 2.5vw, 1.75rem);
        color: var(--ink);
        max-width: 760px;
        margin: 0 auto 1.25rem;
        line-height: 1.5;
    }

    .philosophy cite {
        font-size: 0.8rem;
        color: var(--gold);
        font-weight: 600;
        font-style: normal;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

/* ── CTA FINAL ── */
.final-cta {
    padding: 5rem 4rem;
    text-align: center;
    background: var(--cream);
}

    .final-cta h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--ink);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .final-cta p {
        color: var(--slate);
        font-size: 1rem;
        line-height: 1.7;
        max-width: 540px;
        margin: 0 auto 2.5rem;
    }

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.25s;
    border: none;
}

.cta-primary {
    background: var(--gold);
    color: white;
}

    .cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(196,154,60,0.35);
    }

.cta-secondary {
    background: white;
    color: var(--ink);
    border: 1.5px solid var(--warm);
}

    .cta-secondary:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,8,5,0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 1.5rem;
}

    .modal-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

.modal {
    background: var(--cream);
    border-radius: 20px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.3s;
    box-shadow: 0 40px 120px rgba(0,0,0,0.4);
}

.modal-overlay.open .modal {
    transform: none;
}

.modal-header {
    background: var(--deep);
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

    .modal-header h3 {
        font-family: 'Playfair Display', serif;
        color: var(--cream);
        font-size: 1.15rem;
    }

    .modal-header .dur {
        background: rgba(196,154,60,0.2);
        border: 1px solid rgba(196,154,60,0.3);
        color: var(--gold-light);
        padding: 0.25rem 0.75rem;
        border-radius: 2rem;
        font-size: 0.72rem;
        font-weight: 600;
    }

.modal-close {
    background: none;
    border: none;
    color: rgba(248,244,239,0.5);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

    .modal-close:hover {
        color: var(--cream);
    }

.modal-body {
    padding: 2rem;
}

    .modal-body .summary-box {
        background: rgba(196,154,60,0.06);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.1rem 1.25rem;
        margin-bottom: 1.5rem;
        font-size: 0.82rem;
        color: var(--slate);
        line-height: 1.6;
    }

        .modal-body .summary-box strong {
            color: var(--gold);
        }

.modal-form {
    display: grid;
    gap: 1rem;
}

    .modal-form .field label {
        color: var(--slate);
    }

.modal-confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--gold);
    border: none;
    border-radius: 2rem;
    padding: 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: white;
    font-family: 'DM Sans', sans-serif;
    margin-top: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

    .modal-confirm-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(196,154,60,0.35);
    }

    .modal-confirm-btn.tidycal-link {
        background: linear-gradient(135deg, var(--gold), var(--accent));
    }

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* staggered children */
.stagger .reveal:nth-child(1) {
    transition-delay: 0s;
}

.stagger .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger .reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger .reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger .reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger .reveal:nth-child(6) {
    transition-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .expect-strip {
        grid-template-columns: 1fr 1fr;
    }

    .sessions-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .who-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero, .screener-section, .sessions-section, .who-section, .topics-section, .final-cta, .philosophy {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .field-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .expect-strip {
        grid-template-columns: 1fr;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .option-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

        .hero h1 {
            letter-spacing: -0.5px;
        }

    .sessions-grid {
        max-width: 100%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width:900px) {
    .tgrid {
        grid-template-columns: 1fr 1fr;
    }

    .hero, .filter-section, .tgrid-section, .linkedin-section, .write-section, .quote-strip, .footer-cta {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .li-form .field-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width:600px) {
    .tgrid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

