 :root {
      --saffron: #E8620A;
      --saffron-hover: #CF5608;
      --saffron-glow: rgba(232, 98, 10, 0.15);
      --saffron-pale: #FFF5ED;
      --navy: #0F1628;
      --navy-mid: #1A2240;
      --navy-surface: #222B4A;
      --gold: #C5A44A;
      --gold-light: #DCC06E;
      --gold-muted: rgba(197, 164, 74, 0.15);
      --parchment: #FAF6EF;
      --parchment-warm: #F5EDE0;
      --white: #FFFFFF;
      --text-primary: #1A1A2E;
      --text-secondary: #555566;
      --text-muted: #888899;
      --text-inverse: rgba(255,255,255,0.88);
      --text-inverse-muted: rgba(255,255,255,0.55);
      --border-warm: rgba(197, 164, 74, 0.18);
      --border-light: rgba(0,0,0,0.06);
      --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
      --shadow-warm: 0 12px 48px rgba(232, 98, 10, 0.1);
      --shadow-lift: 0 20px 60px rgba(0,0,0,0.1);
      --radius: 16px;
      --radius-sm: 10px;
      --section-pad: clamp(80px, 10vw, 120px);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
    body { font-family: 'DM Sans', sans-serif; background: var(--parchment); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; }
    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.2; font-weight: 600; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    section { position: relative; }

    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    .container--narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; margin-bottom: 20px;
    }
    .eyebrow::before { content: ''; width: 24px; height: 2px; border-radius: 1px; }
    .eyebrow--saffron { color: var(--saffron); }
    .eyebrow--saffron::before { background: var(--saffron); }
    .eyebrow--gold { color: var(--gold); }
    .eyebrow--gold::before { background: var(--gold); }
    .eyebrow--white { color: var(--gold-light); }
    .eyebrow--white::before { background: var(--gold-light); }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      font-family: 'DM Sans', sans-serif; font-weight: 600; border: none; cursor: pointer;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 50px; letter-spacing: 0.2px;
    }
    .btn--primary { background: var(--saffron); color: var(--white); font-size: 15px; padding: 17px 38px; box-shadow: 0 8px 32px rgba(232,98,10,0.35); }
    .btn--primary:hover { background: var(--saffron-hover); transform: translateY(-2px); box-shadow: 0 14px 44px rgba(232,98,10,0.4); }
    .btn--primary-lg { font-size: 17px; padding: 20px 48px; }
    .btn--ghost { background: transparent; color: var(--saffron); font-size: 14px; padding: 14px 30px; border: 2px solid var(--saffron); }
    .btn--ghost:hover { background: var(--saffron); color: var(--white); }
    .btn--ghost-light { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }
    .btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: var(--white); }
    .btn--gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); color: var(--navy); font-size: 15px; padding: 17px 38px; font-weight: 700; box-shadow: 0 8px 32px rgba(197,164,74,0.3); }
    .btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(197,164,74,0.4); }

    .photo-placeholder { background: linear-gradient(145deg, #E8DED2, #D4C8B8); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .photo-placeholder-label { position: absolute; z-index: 2; font-size: 11px; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.8px; text-transform: uppercase; background: rgba(255,255,255,0.85); padding: 7px 14px; border-radius: 4px; backdrop-filter: blur(4px); bottom: 50%; left: 50%; transform: translate(-50%, 50%); white-space: nowrap; }

    /* Scroll animations */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1); }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal-right.visible { opacity: 1; transform: none; }
    .stagger-1 { transition-delay: 0.08s; } .stagger-2 { transition-delay: 0.16s; }
    .stagger-3 { transition-delay: 0.24s; } .stagger-4 { transition-delay: 0.32s; }
    .stagger-5 { transition-delay: 0.40s; }

    /* ============================================================ HEADER ============================================================ */
    #header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; padding: 16px 0; transition: all 0.4s ease; }
    #header.scrolled { background: rgba(15,22,40,0.96); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(255,255,255,0.05); padding: 10px 0; }
    .header-inner { display: flex; align-items: center; justify-content: space-between; }
    .header-brand { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); }
    .header-brand span { color: var(--gold-light); font-style: italic; }
    .header-tagline { font-size: 11px; color: var(--text-inverse-muted); letter-spacing: 0.5px; display: none; }
    @media (min-width: 768px) { .header-tagline { display: block; } }
    .header-nav { display: flex; align-items: center; gap: 24px; }
    .header-nav a { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.3s; white-space: nowrap; }
    .header-nav a:hover, .header-nav a.nav-active { color: var(--gold-light); }
    .header-cta { font-size: 13px; padding: 10px 22px; }

    /* Hamburger */
    .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
    .hamburger span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav */
    .mobile-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,22,40,0.98); backdrop-filter: blur(16px); padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
    .mobile-nav.open { display: block; max-height: 500px; padding: 20px 0; }
    .mobile-nav a { display: block; padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color 0.2s, background 0.2s; }
    .mobile-nav a:hover, .mobile-nav a.nav-active { color: var(--gold-light); background: rgba(197,164,74,0.06); }
    .mobile-nav .mobile-cta { display: block; margin: 12px 24px 4px; text-align: center; }

    @media (max-width: 900px) {
      .header-nav { display: none; }
      .header-cta { display: none; }
      .hamburger { display: flex; }
      .mobile-nav { display: block; max-height: 0; }
    }

    /* ============================================================ HERO ============================================================ */
    #hero { background: var(--navy); padding: 140px 0 0; position: relative; overflow: hidden; }
    #hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(232,98,10,0.07) 0%, transparent 60%), radial-gradient(ellipse at 80% 30%, rgba(197,164,74,0.06) 0%, transparent 50%); }
    .hero-geo { position: absolute; right: 5%; top: 50%; transform: translateY(-55%); width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(197,164,74,0.08); pointer-events: none; }
    .hero-geo::before { content: ''; position: absolute; inset: 50px; border-radius: 50%; border: 1px solid rgba(197,164,74,0.06); }
    .hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
    @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero-geo { display: none; } }
    .hero-content { padding-bottom: 80px; position: relative; z-index: 2; }

    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,98,10,0.12); border: 1px solid rgba(232,98,10,0.2); color: var(--saffron); font-size: 12px; font-weight: 600; padding: 8px 18px; border-radius: 50px; margin-bottom: 28px; letter-spacing: 0.5px; }
    .hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.5); } }

    .hero-headline { font-size: clamp(36px, 5vw, 58px); font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.12; }
    .hero-headline em { font-style: italic; color: var(--gold-light); font-weight: 500; }
    .hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--text-inverse-muted); max-width: 520px; margin-bottom: 16px; line-height: 1.65; }
    .hero-free-tag { display: inline-block; background: linear-gradient(90deg, var(--gold), var(--gold-light)); color: var(--navy); font-size: 13px; font-weight: 700; padding: 6px 18px; border-radius: 4px; margin-bottom: 32px; letter-spacing: 1px; text-transform: uppercase; }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
    .hero-trust { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.07); }
    .trust-item { display: flex; flex-direction: column; }
    .trust-item strong { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--white); }
    .trust-item span { font-size: 11px; color: var(--text-inverse-muted); letter-spacing: 1px; text-transform: uppercase; }

    .hero-photo-col { position: relative; z-index: 2; }
    .hero-photo { width: 100%; aspect-ratio: 3.2/4; border-radius: var(--radius) var(--radius) 0 0; background: linear-gradient(170deg, #3A3520, #2A2010); position: relative; overflow: hidden; }
    .hero-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px 28px; background: linear-gradient(to top, rgba(15,22,40,0.95) 0%, transparent 100%); }
    .hero-photo-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); }
    .hero-photo-title { font-size: 13px; color: var(--gold-light); margin-top: 2px; }
    .hero-photo-book { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 11px; color: var(--text-inverse-muted); background: rgba(255,255,255,0.06); padding: 6px 14px; border-radius: 4px; }

    /* Hero slideshow */
    .hero-slideshow { position: relative; }
    .hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease-in-out; }
    .hero-slide.active { opacity: 1; }
    .hero-slide:first-child { position: relative; }

    /* ============================================================ PROOF BAR ============================================================ */
    #proof-bar { background: var(--white); border-bottom: 1px solid var(--border-light); padding: 28px 0; }
    .proof-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
    .proof-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
    .proof-item strong { color: var(--text-primary); font-weight: 600; }
    .proof-icon { font-size: 20px; }

    /* ============================================================ PROBLEM ============================================================ */
    #problem { padding: var(--section-pad) 0; background: var(--white); }
    .problem-header { text-align: center; margin-bottom: 60px; }
    .problem-header h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--navy); margin-bottom: 16px; }
    .problem-header p { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }
    .problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
    @media (max-width: 768px) { .problem-cards { grid-template-columns: 1fr; } }
    .problem-card { padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--border-light); transition: all 0.3s ease; position: relative; overflow: hidden; background: var(--parchment); }
    .problem-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--saffron); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
    .problem-card:hover::before { transform: scaleX(1); }
    .problem-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
    .problem-card .icon { font-size: 28px; margin-bottom: 16px; }
    .problem-card h3 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .problem-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

    .quote-bridge { display: flex; align-items: center; gap: 40px; padding: 48px 44px; background: var(--navy); border-radius: var(--radius); position: relative; overflow: hidden; }
    .quote-bridge::before { content: '"'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 200px; color: rgba(197,164,74,0.06); top: -40px; left: 30px; line-height: 1; }
    .quote-bridge-cover { flex-shrink: 0; width: 140px; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
    .quote-bridge-cover img { width: 100%; height: auto; display: block; }
    .quote-bridge-text { flex: 1; text-align: center; }
    .quote-bridge blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.5vw, 28px); font-style: italic; color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; line-height: 1.45; }
    .quote-bridge cite { font-style: normal; font-size: 13px; color: var(--gold-light); letter-spacing: 1px; }
    @media (max-width: 600px) { .quote-bridge { flex-direction: column; text-align: center; gap: 24px; } .quote-bridge-cover { width: 100px; } }

    /* ============================================================ MASTERCLASS ============================================================ */
    #masterclass { padding: var(--section-pad) 0; background: var(--parchment-warm); }
    .mc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    @media (max-width: 800px) { .mc-grid { grid-template-columns: 1fr; gap: 40px; } }
    .mc-content h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--navy); margin-bottom: 20px; }
    .mc-content p { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.75; }
    .mc-what-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 32px; }
    .mc-what-item { display: flex; gap: 14px; align-items: flex-start; }
    .mc-what-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--saffron-glow); color: var(--saffron); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
    .mc-what-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
    .mc-what-text span { font-size: 13px; color: var(--text-secondary); }
    .mc-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
    .mc-photo { width: 100%; aspect-ratio: 4/3; background: linear-gradient(160deg, #2A2010, #3A3520); position: relative; }
    .mc-details { background: var(--navy); padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .mc-detail-item { display: flex; flex-direction: column; gap: 2px; }
    .mc-detail-item span { font-size: 11px; color: var(--text-inverse-muted); text-transform: uppercase; letter-spacing: 1px; }
    .mc-detail-item strong { font-size: 16px; color: var(--white); font-family: 'Cormorant Garamond', serif; font-weight: 600; }

    /* ============================================================ COURSE LEVELS ============================================================ */
    #course { padding: var(--section-pad) 0; background: var(--parchment-warm); }
    .course-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
    .course-header h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--navy); margin-bottom: 16px; }
    .course-header p { font-size: 16px; color: var(--text-secondary); }

    .level-block { margin-bottom: 48px; }
    .level-bar { display: flex; align-items: center; gap: 20px; padding: 24px 32px; background: var(--navy); flex-wrap: wrap; }
    .level-badge { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border: 1px solid rgba(197,164,74,0.3); color: var(--gold); }
    .level-badge--free { background: var(--saffron); color: var(--white); border-color: var(--saffron); }
    .level-bar-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--white); flex: 1; min-width: 200px; }
    .level-bar-meta { font-size: 12px; color: rgba(255,255,255,0.4); }
    .level-lock-svg { width: 16px; height: 16px; margin-left: 8px; fill: var(--gold); opacity: 0.7; }

    .level-sessions-wrap { background: var(--white); border: 1px solid var(--border-warm); border-top: none; }
    .session-item { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 24px 32px; border-bottom: 1px solid rgba(197,164,74,0.08); transition: background 0.2s ease; }
    .session-item:last-child { border-bottom: none; }
    .session-item:hover { background: rgba(197,164,74,0.03); }
    .session-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: rgba(197,164,74,0.4); line-height: 1; }
    .session-content h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .session-content .session-sub { font-size: 14px; color: var(--text-secondary); font-style: italic; margin-bottom: 4px; }
    .session-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
    .session-tag { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-top: 8px; display: inline-block; }

    .level-footer { padding: 20px 32px; background: var(--white); border: 1px solid var(--border-warm); border-top: none; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
    .level-footer-note { font-size: 13px; color: var(--text-secondary); font-style: italic; }

    /* Collapse: hide sessions after 3rd by default, toggle to show all */
    .level-sessions-wrap .session-item:nth-child(n+4) { display: none; }
    .level-block.expanded .level-sessions-wrap .session-item { display: grid !important; }
    .level-block.expanded .sessions-toggle .sessions-toggle-icon { transform: rotate(45deg); }
    .sessions-toggle { display: flex; align-items: center; gap: 8px; padding: 16px 32px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); cursor: pointer; border: none; background: none; font-family: 'DM Sans', sans-serif; transition: color 0.2s; }
    .sessions-toggle:hover { color: var(--saffron); }
    .sessions-toggle-icon { display: inline-block; transition: transform 0.3s; font-style: normal; }

    /* ============================================================ INSTRUCTOR ============================================================ */
    #instructor { padding: var(--section-pad) 0; background: var(--white); }
    .instr-grid { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; }
    @media (max-width: 800px) { .instr-grid { grid-template-columns: 1fr; } }
    .instr-photo-stack { position: relative; }
    .instr-main-photo { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius); background: linear-gradient(160deg, #3A3520, #2A2010); position: relative; overflow: hidden; }
    .instr-small-photo { position: absolute; bottom: -24px; right: -24px; width: 160px; aspect-ratio: 1; border-radius: var(--radius-sm); border: 4px solid var(--white); background: linear-gradient(160deg, #2A2010, #1A1008); box-shadow: var(--shadow-soft); overflow: hidden; }
    .instr-badge { position: absolute; top: -12px; left: -12px; background: var(--saffron); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 8px 16px; border-radius: 50px; box-shadow: 0 4px 20px rgba(232,98,10,0.4); z-index: 3; }
    .instr-content h2 { font-size: clamp(28px, 3vw, 38px); color: var(--navy); margin-bottom: 20px; }
    .instr-content p { font-size: 15px; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.8; }
    .instr-content p em { color: var(--text-primary); font-style: normal; font-weight: 600; }
    .instr-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .cred { display: inline-flex; align-items: center; gap: 8px; background: var(--parchment); border: 1px solid var(--border-warm); border-radius: 50px; padding: 8px 18px; font-size: 13px; font-weight: 500; color: var(--text-primary); }

    /* ============================================================ WHO IS IT FOR ============================================================ */
    #audience { padding: var(--section-pad) 0; background: var(--saffron-pale); }
    .aud-header { text-align: center; margin-bottom: 56px; }
    .aud-header h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--navy); margin-bottom: 12px; }
    .aud-header p { font-size: 16px; color: var(--text-secondary); max-width: 500px; margin: 0 auto; }
    .aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 768px) { .aud-grid { grid-template-columns: 1fr; } }
    .aud-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid var(--border-warm); transition: all 0.3s ease; }
    .aud-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-4px); }
    .aud-emoji { font-size: 34px; margin-bottom: 14px; }
    .aud-card h3 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .aud-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

    /* ============================================================ TESTIMONIALS ============================================================ */
    #testimonials { padding: var(--section-pad) 0; background: var(--white); }
    .test-header { text-align: center; margin-bottom: 56px; }
    .test-header h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--navy); margin-bottom: 12px; }
    .test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
    .test-card { background: var(--parchment); border: 1px solid var(--border-warm); border-radius: var(--radius); padding: 32px 28px; transition: all 0.3s ease; }
    .test-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
    .test-stars { color: var(--saffron); font-size: 14px; margin-bottom: 14px; }
    .test-text { font-size: 15px; font-style: italic; color: var(--text-primary); line-height: 1.75; margin-bottom: 24px; }
    .test-author { display: flex; align-items: center; gap: 14px; }
    .test-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .test-avatar-initial { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--gold-light); }
    .test-name { font-size: 14px; font-weight: 600; color: var(--navy); }
    .test-role { font-size: 12px; color: var(--text-muted); }

    /* ── ENDORSEMENTS section (prominent, top-positioned) ── */
    #endorsements { padding: 56px 0 64px; background: var(--white); border-bottom: 1px solid var(--border-light); }
    .endorsements-header { text-align: center; margin-bottom: 48px; }
    .endorsements-header h2 { font-size: clamp(26px,3.5vw,42px); color: var(--navy); margin-bottom: 14px; }
    .endorsements-header p { font-size: 15px; color: var(--text-secondary); }
    .endorsements-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    @media (max-width: 768px) { .endorsements-grid { grid-template-columns: 1fr; } }
    .endorse-card { background: var(--parchment); border: 1px solid var(--border-warm); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; transition: all 0.3s ease; }
    .endorse-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
    .endorse-avatar { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; border: 3px solid var(--gold); flex-shrink: 0; box-shadow: 0 4px 20px rgba(197,164,74,0.2); }
    .endorse-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .endorse-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px,1.5vw,19px); line-height: 1.7; color: var(--navy); font-style: italic; margin: 0; border-left: 3px solid var(--gold); padding-left: 18px; flex-grow: 1; }
    .endorse-name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
    .endorse-creds { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

    /* ── BOOK REVIEWS section ── */
    #book-reviews { padding: var(--section-pad) 0; background: var(--navy); }
    .reviews-header { text-align: center; margin-bottom: 56px; }
    .reviews-header h2 { font-size: clamp(26px,3.5vw,42px); color: #fff; margin-bottom: 14px; }
    .reviews-header p { font-size: 15px; color: rgba(255,255,255,0.55); }
    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
    .review-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(197,164,74,0.15); border-radius: var(--radius); padding: 28px 26px; transition: background 0.3s ease; }
    .review-card:hover { background: rgba(255,255,255,0.08); }
    .review-stars { color: var(--gold-light); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
    .review-text { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
    .review-author { display: flex; align-items: center; gap: 14px; }
    .review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; overflow: hidden; }
    .review-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .review-name { font-size: 14px; font-weight: 600; color: #fff; }
    .review-role { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

    /* ============================================================ FAQ ============================================================ */
    #faq { padding: var(--section-pad) 0; background: var(--parchment-warm); }
    .faq-header { text-align: center; margin-bottom: 56px; }
    .faq-header h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--navy); margin-bottom: 12px; }
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid var(--border-warm); }
    .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 16px; font-weight: 600; color: var(--text-primary); cursor: pointer; gap: 20px; transition: color 0.2s; }
    .faq-q:hover { color: var(--saffron); }
    .faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--saffron-glow); color: var(--saffron); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; flex-shrink: 0; transition: all 0.3s ease; }
    .faq-item.open .faq-toggle { background: var(--saffron); color: var(--white); transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a-inner { padding: 0 0 22px; font-size: 15px; color: var(--text-secondary); line-height: 1.8; }

    /* ============================================================ REGISTER ============================================================ */
    #register { padding: var(--section-pad) 0; background: var(--navy); position: relative; overflow: hidden; }
    #register::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(232,98,10,0.08) 0%, transparent 70%); }
    .register-inner { text-align: center; position: relative; z-index: 1; }
    .register-inner h2 { font-size: clamp(28px, 4vw, 48px); color: var(--white); margin-bottom: 20px; }
    .register-inner p { font-size: 17px; color: var(--text-inverse-muted); max-width: 540px; margin: 0 auto 36px; line-height: 1.7; }
    .register-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
    .register-note { font-size: 13px; color: var(--text-inverse-muted); line-height: 1.8; }
    .register-note strong { color: var(--gold-light); }

    /* ============================================================ FOOTER ============================================================ */
    #footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; text-align: center; }
    .footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
    .footer-links a { font-size: 13px; color: var(--text-inverse-muted); transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold-light); }
    #footer p { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.8; }
    #footer a { color: var(--gold-light); }

    /* ============================================================ CREDIBILITY BAR ============================================================ */
    #credibility-bar { background: var(--navy); padding: 24px 0; border-bottom: 1px solid rgba(197,164,74,0.12); }
    .cred-bar-inner { text-align: center; }
    .cred-bar-inner p { font-size: 14px; color: var(--text-inverse-muted); line-height: 1.7; margin: 0; }
    .cred-bar-inner strong { color: var(--gold-light); font-weight: 600; }
    .cred-bar-inner em { font-style: normal; color: rgba(255,255,255,0.7); }

    /* ============================================================ BOOK SECTION ============================================================ */
    #book { padding: var(--section-pad) 0; background: var(--parchment-warm); }
    .book-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; }
    @media (max-width: 800px) { .book-grid { grid-template-columns: 1fr; gap: 36px; } }
    .book-cover { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
    .book-cover img { width: 100%; height: auto; display: block; }
    .book-slideshow .book-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 1.2s ease-in-out; }
    .book-slideshow .book-slide.active { opacity: 1; position: relative; }
    .book-slideshow .book-slide:not(.active) { position: absolute; }
    .book-content h2 { font-size: clamp(28px, 3vw, 40px); color: var(--navy); margin-bottom: 16px; }
    .book-publisher { font-size: 14px; color: var(--saffron); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
    .book-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .book-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
    .book-feature .bf-icon { flex-shrink: 0; font-size: 16px; margin-top: 2px; }
    .book-pull-quote { border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 28px; }
    .book-pull-quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--navy); line-height: 1.6; margin: 0 0 8px; }
    .book-pull-quote cite { font-style: normal; font-size: 13px; color: var(--text-muted); }
    .book-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ============================================================ LIGHTBOX ============================================================ */
    .lightbox-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.92); z-index:9999; align-items:center; justify-content:center; cursor:zoom-out; }
    .lightbox-overlay.active { display:flex; }
    .lightbox-overlay img { max-width:90vw; max-height:90vh; border-radius:8px; object-fit:contain; }
    .lightbox-close { position:absolute; top:20px; right:28px; font-size:32px; color:#fff; cursor:pointer; background:none; border:none; z-index:10000; }
    .scroll-top-btn { position:fixed; bottom:32px; right:32px; width:48px; height:48px; border-radius:50%; background:var(--navy); color:#fff; font-size:22px; border:2px solid var(--gold); cursor:pointer; opacity:0; pointer-events:none; transition:opacity 0.3s, transform 0.3s; z-index:999; box-shadow:0 4px 16px rgba(0,0,0,0.2); }
    .scroll-top-btn.visible { opacity:1; pointer-events:auto; }
    .scroll-top-btn:hover { transform:translateY(-3px); background:var(--saffron); }
    .gallery-clickable { cursor:zoom-in; }

    /* ============================================================ GALLERY (WTW-style) ============================================================ */
    .gallery-section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
    .gallery-grid { display: grid; gap: 12px; margin-bottom: 36px; }
    .gallery-item { position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 4/3; border: 1px solid rgba(197,164,74,0.1); cursor: zoom-in; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.4s ease; }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; background: linear-gradient(to top, rgba(15,22,40,0.85) 0%, transparent 100%); font-size: 11px; color: rgba(255,255,255,0.85); }
    @media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; } }
    @media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr !important; } }

    /* ============================================================ FUD MICRO-COPY ============================================================ */
    .fud-dark { font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 10px; letter-spacing: 0.3px; }
    .fud-light { font-size: 12px; color: rgba(42,33,24,0.45); text-align: center; margin-top: 10px; letter-spacing: 0.3px; }
    .fud-left { text-align: left; }

    /* ============================================================ CROSS-PROMO ============================================================ */
    .also-by { margin-top: 36px; padding: 24px; background: var(--white); border: 1px solid var(--border-warm); border-radius: var(--radius-sm); display: flex; align-items: center; gap: 20px; }
    .also-by-text { flex: 1; }
    .also-by-text .label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
    .also-by-text .title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--navy); }
    .also-by-text .pub { font-size: 13px; color: var(--text-secondary); }

    @media (max-width: 768px) {
      /* FAQ open by default on mobile */
      .faq-a { max-height: none !important; overflow: visible !important; }
      .faq-toggle { display: none; }

      /* Mobile CTA button — bigger touch targets */
      .btn--primary, .btn--primary-lg, .btn--gold {
        min-height: 56px;
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 15px;
        width: 100%;
        text-align: center;
      }

      /* Proof bar — tighter on mobile */
      .proof-bar-inner { gap: 16px; flex-direction: column; text-align: center; }
      .proof-item { font-size: 13px; }

      /* Instructor small photo — prevent overflow */
      .instr-small-photo { right: 8px; bottom: -16px; width: 120px; }

      /* Hero trust bar — 2x2 grid on mobile */
      .hero-trust { gap: 16px; }
      .trust-item { min-width: 40%; }

      /* Video reviews — stack on mobile */
      .video-reviews-grid { grid-template-columns: 1fr !important; max-width: 340px !important; }
    }

    @media (max-width: 600px) {
      .level-bar { flex-wrap: wrap; gap: 12px; padding: 20px; }
      .level-footer { flex-direction: column; align-items: flex-start; }
      .session-item { grid-template-columns: 40px 1fr; gap: 12px; padding: 16px 20px; }
      .session-row { flex-wrap: wrap; }
      .session-duration { min-width: 100%; }

      /* Masterclass details — stack */
      .mc-details { grid-template-columns: 1fr; gap: 14px; }
      .gallery-grid .gallery-item:nth-child(n+6){display: none;} 
    }