 /* ============================================================
       DESIGN PHILOSOPHY
       ---------------------------------------------------------------
       Brand: "The Gita is not meant to be worshipped from a distance.
       It's meant to be lived."

       Aesthetic: Warm parchment meets editorial authority.
       Think: an ancient manuscript opened on a modern desk.
       Saffron warmth, deep navy trust, gold accents for heritage.

       Funnel: Website sells the FREE Live Session.
       Live Session sells the Course. Email nurtures.
    ============================================================ */

    :root {
      /* Core Palette — Option C: Forest Green + Gold */
      --saffron: #E8620A;
      --saffron-hover: #CF5608;
      --saffron-glow: rgba(232, 98, 10, 0.15);
      --saffron-pale: #FFF5ED;

      --navy: #05261B;
      --navy-mid: #0B3D2E;
      --navy-surface: #134D3A;

      --gold: #C5A44A;
      --gold-light: #DCC06E;
      --gold-muted: rgba(197, 164, 74, 0.15);
      --forest: #1D7A56;
      --forest-light: #2A9D7E;

      --parchment: #F0EBE1;
      --parchment-warm: #E8E0D4;
      --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(245, 196, 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;
      --radius-xs: 6px;

      /* Spacing system */
      --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', -apple-system, 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; }

    /* ============================================================
       LAYOUT
    ============================================================ */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    .container--narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
    .container--wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

    /* ============================================================
       REUSABLE COMPONENTS
    ============================================================ */
    .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);
    }

    /* Photo Placeholder */
    .photo-placeholder {
      background: linear-gradient(145deg, #E8DED2, #D4C8B8);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .photo-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.06) 50%, transparent 52%);
    }
    .photo-placeholder-label {
      position: absolute;
      z-index: 2;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary);
      letter-spacing: 1px;
      text-transform: uppercase;
      background: rgba(255,255,255,0.85);
      padding: 8px 16px;
      border-radius: 4px;
      backdrop-filter: blur(4px);
    }


    @media(min-width:900px){#communityNavLink{display:inline !important;}}
    .level-block{background:var(--white);border-radius:var(--radius);padding:32px;border:1px solid var(--border-light);box-shadow:var(--shadow-soft);}
    .level-badge{display:inline-block;}

    /* 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; }

    /* ============================================================
       STICKY 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(5, 38, 27, 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-cta { font-size: 13px; padding: 10px 22px; }
    .header-nav { display: flex; align-items: center; gap: 20px; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
    .header-nav.nav-revealed { opacity: 1; pointer-events: auto; }
    .header-nav a { font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.3s; white-space: nowrap; }
    .header-nav a:hover, .header-nav a.active { color: var(--gold-light); }
    @media (max-width: 900px) { .header-nav { display: none; } }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      background: var(--navy);
      padding: 140px 0 0;
      position: relative;
      overflow: hidden;
    }
    /* Subtle texture */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(29, 122, 86, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(197, 164, 74, 0.06) 0%, transparent 50%);
    }
    /* Decorative geometric */
    .hero-geo {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-55%);
      width: 440px;
      height: 440px;
      border-radius: 50%;
      border: 1px solid rgba(245, 196, 74, 0.08);
      pointer-events: none;
    }
    .hero-geo::before {
      content: '';
      position: absolute;
      inset: 50px;
      border-radius: 50%;
      border: 1px solid rgba(245, 196, 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 */
    .hero-photo-col {
      position: relative;
      z-index: 2;
    }
    .hero-video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    }
    .hero-video-wrap iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
    }
    .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 .photo-placeholder-label { bottom: 50%; left: 50%; transform: translate(-50%, 50%); }
    .hero-photo-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 32px 28px 28px;
      background: linear-gradient(to top, rgba(5, 38, 27, 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-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease-in-out; object-fit: cover; object-position: top center; }
    .hero-slide.active { opacity: 1; }
    .hero-slide:first-child { position: relative; }

    /* ============================================================
       SOCIAL 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 SECTION
    ============================================================ */
    #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.8vw, 44px);
      color: var(--navy);
      margin-bottom: 16px;
    }
    .problem-header p {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 540px;
      margin: 0 auto;
    }

    .problem-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 56px;
    }
    .problem-card {
      padding: 32px 28px;
      border-radius: var(--radius);
      border: 1px solid var(--border-light);
      background: var(--parchment);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .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 */
    .quote-bridge {
      text-align: center;
      padding: 48px 40px;
      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(245, 196, 74, 0.06);
      top: -40px;
      left: 30px;
      line-height: 1;
    }
    .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;
    }

    /* ============================================================
       MASTERCLASS SECTION
    ============================================================ */
    #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; } }
    @media (max-width: 600px) { .mc-details { grid-template-columns: 1fr; gap: 12px; } }

    .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-photo .photo-placeholder-label { bottom: 50%; left: 50%; transform: translate(-50%, 50%); }
    .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;
    }

    /* ============================================================
       ABOUT 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-main-photo .photo-placeholder-label { bottom: 50%; left: 50%; transform: translate(-50%, 50%); }
    .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-small-photo .photo-placeholder-label { font-size: 9px; padding: 4px 8px; bottom: 50%; left: 50%; transform: translate(-50%, 50%); }
    .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); }

    .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);
    }

    /* ============================================================
       WHAT YOU'LL LEARN (Framework)
    ============================================================ */
    #learn {
      padding: var(--section-pad) 0;
      background: var(--navy);
    }
    .learn-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .learn-header h2 {
      font-size: clamp(28px, 3.5vw, 44px);
      color: var(--white);
      margin-bottom: 16px;
    }
    .learn-header p {
      font-size: 17px;
      color: var(--text-inverse-muted);
      max-width: 520px;
      margin: 0 auto;
    }

    .learn-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
    }
    .learn-card {
      padding: 28px 24px;
      border-radius: var(--radius);
      background: var(--parchment);
      border: 1px solid rgba(245, 196, 74, 0.2);
      transition: all 0.35s ease;
      position: relative;
    }
    .learn-card:hover {
      background: #fff;
      transform: translateY(-4px);
      border-color: rgba(245, 196, 74, 0.4);
      box-shadow: 0 12px 36px rgba(13,33,55,0.1);
    }
    .learn-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px;
      font-weight: 700;
      color: rgba(245, 196, 74, 0.35);
      line-height: 1;
      margin-bottom: 10px;
    }
    .learn-card h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .learn-card p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }
    .learn-tag {
      display: inline-block;
      margin-top: 14px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--saffron);
      background: rgba(232,98,10,0.08);
      border: 1px solid rgba(232,98,10,0.15);
      padding: 4px 12px;
      border-radius: 20px;
    }

    /* ── FRAMEWORK / TOOLS section ── */
    #framework { padding: var(--section-pad) 0; background: var(--parchment); }
    .framework-header { text-align: center; margin-bottom: 56px; }
    .framework-header h2 { font-size: clamp(28px,3.5vw,44px); color: var(--navy); margin-bottom: 14px; }
    .framework-header p { font-size: 16px; color: var(--text-secondary); max-width: 540px; margin: 0 auto; }
    .tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
    .tool-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px 26px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .tool-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,33,55,0.1); }
    .tool-icon { font-size: 28px; margin-bottom: 14px; }
    .tool-card h3 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .tool-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
    .tool-session { display: inline-block; margin-top: 12px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }

    /* ── ENDORSEMENTS section ── */
    #endorsements { padding: var(--section-pad) 0; background: var(--parchment); }
    .endorsements-header { text-align: center; margin-bottom: 56px; }
    .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: #fff; border: 1px solid rgba(245,196,74,0.25); border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; gap: 18px; }
    .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(245,196,74,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); }
    .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: var(--white); margin-bottom: 14px; }
    .reviews-header p { font-size: 15px; color: var(--text-inverse-muted); }
    .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(245,196,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: var(--white); }
    .review-role { font-size: 12px; color: var(--text-inverse-muted); margin-top: 2px; }

    /* ============================================================
       EVENT GALLERY
    ============================================================ */
    #gallery {
      padding: var(--section-pad) 0;
      background: var(--parchment);
    }
    .gallery-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .gallery-header h2 {
      font-size: clamp(28px, 3.5vw, 42px);
      color: var(--navy);
      margin-bottom: 12px;
    }
    .gallery-header p {
      font-size: 16px;
      color: var(--text-secondary);
    }

    .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; 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(13,33,55,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; } }

    /* ============================================================
       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;
      margin-bottom: 48px;
    }
    .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%;
      overflow: hidden;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .test-avatar .photo-placeholder-label { font-size: 7px; padding: 2px 4px; position: static; transform: none; background: none; color: var(--gold-light); }
    .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); }

    /* Video testimonial placeholder */
    .video-test-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }
    .video-test-item {
      border-radius: var(--radius-sm);
      aspect-ratio: 16/9;
      background: linear-gradient(160deg, #E0D5C4, #C8BBA8);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .video-test-item:hover { transform: scale(1.02); }
    .play-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(13, 33, 55, 0.7);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
    .play-btn::after {
      content: '';
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 16px solid var(--white);
      margin-left: 4px;
    }

    /* ============================================================
       WHO IS THIS 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-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .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; }

    /* ============================================================
       CTA / REGISTER
    ============================================================ */
    #register {
      padding: var(--section-pad) 0 calc(var(--section-pad) + 20px);
      background: var(--navy);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #register::before, #register::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(245, 196, 74, 0.06);
    }
    #register::before { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    #register::after { width: 800px; height: 800px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

    .register-inner { position: relative; z-index: 2; }
    #register h2 {
      font-size: clamp(30px, 4vw, 52px);
      color: var(--white);
      margin-bottom: 20px;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }
    #register p {
      font-size: 17px;
      color: var(--text-inverse-muted);
      max-width: 480px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .register-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .register-note {
      font-size: 13px;
      color: var(--text-inverse-muted);
    }
    .register-note strong { color: var(--gold-light); }

    /* ============================================================
       FAQ
    ============================================================ */
    #faq {
      padding: var(--section-pad) 0;
      background: var(--parchment);
    }
    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .faq-header h2 {
      font-size: clamp(28px, 3.5vw, 42px);
      color: var(--navy);
    }
    .faq-list {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--white);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-light);
      overflow: hidden;
    }
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 24px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      gap: 16px;
      user-select: none;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--saffron); }
    .faq-toggle {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--saffron-pale);
      color: var(--saffron);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .faq-item.open .faq-toggle { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-item.open .faq-a { max-height: 280px; }
    .faq-a-inner {
      padding: 0 24px 22px;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.75;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    #footer {
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,0.04);
      padding: 36px 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);
    }
    #footer a { color: var(--gold-light); }

    /* Book slide */
    .book-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease-in-out; object-fit: cover; }
    .book-slide.active { opacity: 1; }
    .book-slide:first-child { position: relative; }

    /* Book grid responsive */
    @media (max-width: 800px) { .book-grid { grid-template-columns: 1fr !important; }.gallery-grid .gallery-item:nth-child(n+6) {display: none;} .learn-grid{grid-template-columns: auto;}}

    /* Video grid responsive */
    @media (max-width: 800px) { #video-testimonials [style*="grid-template-columns"] { grid-template-columns: 1fr !important; max-width: 300px !important; } }

    /* Scroll to top */
    .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); }

    /* 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; }
    .lightbox-overlay.active { display:flex; }
    .lightbox-overlay img { max-width:90vw; max-height:85vh; border-radius:8px; }
    .lightbox-close { position:absolute; top:20px; right:28px; font-size:32px; color:#fff; cursor:pointer; background:none; border:none; z-index:10000; }
  
    /* ============================================================
       COMMUNITY ORGANISER SECTION
    ============================================================ */
    #community {
      background: var(--parchment-warm);
      padding: var(--section-pad) 0;
      border-top: 1px solid var(--border-light);
    }
    .community-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    @media (max-width: 768px) { .community-inner { grid-template-columns: 1fr; gap: 36px; } }
    .community-text h2 {
      font-size: clamp(28px, 3.5vw, 44px);
      color: var(--navy);
      margin-bottom: 16px;
    }
    .community-text p {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .community-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px 36px;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-light);
    }
    .community-card h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 22px;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .community-card p {
      font-size: 14px;
      color: var(--text-secondary);
      margin-bottom: 24px;
      line-height: 1.7;
    }
    .community-contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border-light);
    }
    .community-contact-item:last-child { border-bottom: none; }
    .community-contact-icon {
      width: 40px; height: 40px;
      background: var(--saffron-pale);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 18px;
    }
    .community-contact-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      display: block;
      margin-bottom: 2px;
    }
    .community-contact-value {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
    }
    .community-contact-value a {
      color: var(--saffron);
      text-decoration: none;
    }
    .community-contact-value a:hover { text-decoration: underline; }
  
    /* ============================================================
       HAMBURGER + MOBILE NAV
    ============================================================ */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: rgba(255,255,255,0.8);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    @media (max-width: 900px) { .hamburger { display: flex; } }

    /* Mobile nav panel — slides down from top */
    .mobile-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(5, 38, 27, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 80px 32px 36px;
      z-index: 997;
      flex-direction: column;
      gap: 0;
      transform: translateY(-110%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
    }
    .mobile-nav.open { transform: translateY(0); }
    .mobile-nav a {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color 0.25s, padding-left 0.25s;
      display: block;
    }
    .mobile-nav a:hover { color: var(--gold-light); padding-left: 6px; }
    .mobile-nav a.active { color: var(--gold-light); }
    .mobile-nav-cta {
      margin-top: 28px;
      display: flex;
      justify-content: center;
    }
    /* Overlay behind mobile nav */
    .mobile-nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 996;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.bigin-form {
    width: 600px;
    margin: 0 auto;
    height: 600px;
  }

  .bigin-form iframe {
    width: 100%;
    height: 600px;
    border: none;
  }

  @media (max-width: 768px) {
    .bigin-form {
      width: 100%;
      height: 600px;
    }
  }