/* ============================================
   MOHIT KAMAT — PORTFOLIO (LIGHT THEME)
   ============================================ */

:root {
    --bg: #ffffff;            /* pure white */
    --bg-alt: #faf8f5;        /* very subtle off-white */
    --bg-dark: #1a1a1f;       /* near-black for the testimonials split + footer */
    --line: rgba(26, 26, 31, 0.10);
    --line-strong: rgba(26, 26, 31, 0.18);
    --text: #1a1a1f;
    --text-muted: rgba(26, 26, 31, 0.66);
    --text-dim: rgba(26, 26, 31, 0.42);
    --accent: #a16207;        /* warm muted bronze (replaces bright orange) */
    --accent-2: #b45309;      /* slightly warmer */
    --accent-soft: rgba(161, 98, 7, 0.06);

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --max: 1320px;
    --pad: clamp(20px, 4vw, 56px);
    --section-py: clamp(72px, 9vw, 130px);
    --radius: 16px;           /* global corner radius */
    --radius-sm: 10px;
    --radius-lg: 24px;

    --ease: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--accent); color: #fff; }

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select {
    font: inherit; color: inherit; background: transparent;
    border: 0; outline: 0; width: 100%;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark {
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
}
.loader-mark .dot { color: var(--accent); }
.loader-bar {
    width: 240px; height: 1px;
    background: rgba(26,26,31,0.1);
    margin: 28px auto 18px;
    position: relative; overflow: hidden;
}
.loader-bar span {
    position: absolute; top: 0; left: 0; height: 100%;
    width: 0; background: var(--accent);
    animation: loadBar 1.4s var(--ease-out) forwards;
}
@keyframes loadBar { to { width: 100%; } }
.loader-text {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-dim);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px var(--pad);
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease),
                border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    padding-top: 14px; padding-bottom: 14px;
    border-bottom-color: var(--line);
}

.nav-logo {
    display: flex; align-items: center; gap: 0;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 600; font-size: 26px;
    color: var(--text); letter-spacing: -0.02em;
    line-height: 1;
}
.logo-text .logo-dot { color: var(--accent); }
.logo-sub {
    display: none;
}

.nav-menu ul {
    display: flex; gap: 32px;
}
.nav-menu a {
    font-size: 14px; font-weight: 500; color: var(--text-muted);
    position: relative; padding: 4px 0;
    transition: color 0.3s var(--ease);
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width 0.4s var(--ease);
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 100px;
    background: var(--accent);
    color: #fff; font-size: 13px; font-weight: 500;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover {
    background: var(--text);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none; width: 32px; height: 32px;
    flex-direction: column; justify-content: center; gap: 6px;
    padding: 4px;
}
.nav-toggle span {
    display: block; height: 1.5px; background: var(--text);
    transition: all 0.3s var(--ease);
}
.nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul {
    text-align: center;
    display: flex; flex-direction: column; gap: 28px;
}
.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 60px);
    color: var(--text);
    font-weight: 500;
    letter-spacing: -0.02em;
}
.mobile-menu a:hover { color: var(--accent); }

@media (max-width: 1000px) {
    .nav-menu, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .logo-sub { display: none; }
}

/* ============================================
   HERO — Light, image-driven
   ============================================ */
.hero {
    padding: 140px var(--pad) 0;
    background: var(--bg);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    max-width: var(--max);
    margin: 0 auto;
    min-height: calc(100vh - 220px);
    padding-bottom: 60px;
}
.hero-text { padding-bottom: 30px; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px; border-radius: 100px;
    border: 1px solid var(--line-strong);
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.dot-live {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.15);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(194,65,12,0.15); }
    50% { box-shadow: 0 0 0 8px rgba(194,65,12,0.03); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(44px, 6vw, 92px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 32px;
}
.hero-title em {
    font-style: italic; color: var(--accent);
    font-weight: 400;
}

.hero-sub {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
}

.hero-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

@media (max-width: 900px) {
    .hero { padding-top: 110px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
    .hero-image { aspect-ratio: 4/5; order: -1; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Brand strip */
.brand-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-alt);
    display: flex; align-items: center;
    overflow: hidden;
    white-space: nowrap;
}
.brand-label {
    flex-shrink: 0;
    padding: 22px var(--pad);
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent);
    border-right: 1px solid var(--line);
    font-weight: 500;
}
.brand-track {
    overflow: hidden; flex: 1;
    max-width: 100%;
}
.brand-inner {
    display: inline-flex; gap: 36px;
    padding: 22px 0;
    animation: marquee 36s linear infinite;
    font-family: var(--font-display); font-style: italic;
    font-size: clamp(18px, 2vw, 26px);
    color: var(--text);
    letter-spacing: -0.01em;
}
.brand-inner .dot { color: var(--accent); margin: 0 -12px; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Hero tagline */
.hero-tagline {
    margin-top: 70px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
    position: relative;
}
.hero-tagline::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 3px;
    background: var(--accent);
}
.brand-line {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.8vw, 52px);
    color: var(--text);
    letter-spacing: -0.025em;
    line-height: 1.15;
    display: inline-flex;
    align-items: baseline;
    gap: 0.35em;
    transition: letter-spacing 0.6s var(--ease);
}
.brand-line:hover {
    letter-spacing: -0.012em;
}
.brand-line em {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: transform 0.5s var(--ease);
}
.brand-line em::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -4px;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.brand-line:hover em::after { transform: scaleX(1); }
.brand-line .accent-dot {
    color: var(--accent);
    font-weight: 400;
    font-style: italic;
    margin: 0 0.1em;
}
.brand-line .accent-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    opacity: 0.85;
    transform: translateY(-1px);
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.brand-line:hover .accent-arrow {
    transform: translateX(6px);
    opacity: 1;
}

/* ============================================
   TRUSTED BY — Boxed label + boxed marquee container
   ============================================ */
.trusted {
    padding: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.trusted .container {
    display: flex; flex-direction: column; align-items: center;
}
.trusted-label-box {
    display: flex; align-items: center; gap: 10px;
    width: fit-content;
    margin: 60px 0 24px;
    padding: 10px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg);
}
.trusted-marquee-box {
    width: 100%;
    max-width: var(--max);
    overflow: hidden;
    padding: 12px 0;
    margin-bottom: 60px;
}
.trusted-marquee-row {
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    padding: 14px 0;
}
.trusted-marquee-row.reverse .trusted-track {
    animation-direction: reverse;
    animation-duration: 40s;
}
.trusted-track {
    display: inline-flex; gap: 40px;
    animation: marquee 50s linear infinite;
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--text-muted);
    font-weight: 500;
    padding: 6px 0;
}
.trusted-track span {
    flex-shrink: 0;
}

/* ============================================
   SCOREBOARD
   ============================================ */
.scoreboard {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}
.scoreboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.score-card {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 16px;
    transition: background 0.3s var(--ease);
}
.score-card:hover { background: var(--bg); }
.score-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text);
    display: inline-flex; align-items: baseline;
}
.score-num .num-plus {
    color: var(--accent);
    font-size: 0.5em;
    font-weight: 400;
    font-style: italic;
    margin-left: 6px;
}
.score-label {
    font-size: 14px; line-height: 1.5;
    color: var(--text-muted);
    max-width: 260px;
}
.score-num .num-prefix {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--accent);
    font-size: 0.5em;
    font-style: italic;
    margin-right: 4px;
}
.scoreboard-underline {
    margin-top: 50px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: 16px;
    align-items: center;
    justify-content: center;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-muted);
}
.scoreboard-underline .dot { color: var(--accent); }
.scoreboard-tag {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--bg);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
    cursor: default;
}
.scoreboard-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.06);
    box-shadow: 0 6px 20px -10px rgba(161, 98, 7, 0.4);
}
@media (max-width: 900px) {
    .scoreboard-grid { grid-template-columns: 1fr 1fr; }
    .score-card { padding: 30px 24px; }
    .score-num { font-size: clamp(36px, 12vw, 64px); }
}
@media (max-width: 600px) {
    .scoreboard-grid { grid-template-columns: 1fr 1fr; }
    .score-card { padding: 24px 16px; }
    .score-num { font-size: clamp(32px, 11vw, 56px); }
    .score-label { font-size: 13px; }
}

/* ============================================
   POSITIONING / THREE DOORS
   ============================================ */
.positioning {
    padding: var(--section-py) 0;
    background: var(--bg);
}
.positioning .section-lead { max-width: 800px; }
.positioning .btn { margin-top: 32px; }

.doors-section {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}
.doors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.door-card {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 18px;
    transition: all 0.4s var(--ease);
}
.door-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26,26,31,0.06);
}
.door-tag {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    padding: 6px 14px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    align-self: flex-start;
}
.door-num {
    font-family: var(--font-display); font-style: italic;
    color: var(--accent); font-size: 14px;
    letter-spacing: 0;
}
.door-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    color: var(--text);
    letter-spacing: -0.015em;
}
.door-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}
.door-list {
    display: flex; flex-direction: column; gap: 8px;
    margin: 8px 0 12px;
}
.door-list li {
    position: relative; padding-left: 22px;
    font-size: 14px; color: var(--text-muted); line-height: 1.5;
}
.door-list li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 12px; height: 1.5px; background: var(--accent);
}
.door-cta {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-display); font-style: italic;
    color: var(--accent); font-size: 17px;
    transition: gap 0.3s var(--ease);
}
.door-cta:hover { gap: 12px; }
@media (max-width: 900px) {
    .doors-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   THE RECORD — Court record + philosophy
   ============================================ */
.record-block {
    margin-top: 16px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.record-block h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    color: var(--accent);
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 16px;
}
.record-list {
    display: flex; flex-direction: column; gap: 8px;
}
.record-list li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 0;
}
.record-list li strong {
    color: var(--text);
    font-weight: 600;
    display: inline-block;
    min-width: 180px;
}

/* ============================================
   THE RECORD
   ============================================ */
.record {
    background: var(--bg);
}
.record-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 600px;
}
.record-visual {
    position: relative; overflow: hidden;
    background: var(--bg-alt);
}
.record-visual img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 30%;
}
.record-visual-caption {
    position: absolute; bottom: 24px; left: 24px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 100px;
    background: rgba(255,255,255,0.95);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text); font-weight: 500;
}
.record-content {
    padding: clamp(60px, 7vw, 90px) clamp(40px, 6vw, 90px);
    display: flex; flex-direction: column; justify-content: center;
    gap: 24px;
    background: var(--bg-alt);
}
.record-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}
.record-quote {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 16px 0;
}
.record-quote-mark {
    font-family: var(--font-display);
    font-size: 40px; color: var(--accent); line-height: 0.5;
    display: block; margin-bottom: 12px;
}
.record-quote p {
    font-family: var(--font-display); font-style: italic;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 12px;
}
.record-quote-attr {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-dim);
}
@media (max-width: 900px) {
    .record-grid { grid-template-columns: 1fr; min-height: auto; }
    .record-visual { aspect-ratio: 4/3; min-height: 300px; }
}

/* ============================================
   PODCAST
   ============================================ */
.podcast-section {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.podcast-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}
.podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(26,26,31,0.08);
    border-color: var(--accent);
}
.podcast-cover {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg-alt);
}
.podcast-cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--ease-out);
    filter: grayscale(40%);
}
.podcast-card:hover .podcast-cover img { transform: scale(1.05); filter: grayscale(0%); }
.podcast-ep {
    position: absolute; top: 14px; left: 14px;
    padding: 4px 10px; border-radius: 100px;
    background: rgba(255,255,255,0.95);
    font-size: 11px; letter-spacing: 0.18em; font-weight: 500;
    color: var(--text);
}
.podcast-play {
    position: absolute; bottom: 14px; right: 14px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
    border: 0;
    box-shadow: 0 6px 20px rgba(161,98,7,0.3);
    text-decoration: none;
}
.podcast-play:hover { transform: scale(1.1); background: var(--text); }
.podcast-play svg { width: 16px; height: 16px; }
.podcast-play:disabled,
.podcast-play-lg:disabled { cursor: not-allowed; opacity: 0.6; }
.podcast-play:disabled:hover,
.podcast-play-lg:disabled:hover { transform: none; background: var(--accent); }

/* Coming Soon overlay (sits on top of podcast covers) */
.coming-soon-pill {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 100px;
    white-space: nowrap;
    z-index: 2;
}
.coming-soon-pill--overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 30px -10px rgba(161, 98, 7, 0.55);
    pointer-events: none;
}
.podcast-feature-cover .coming-soon-pill--overlay {
    transform: translate(-50%, -50%);
}

/* Coming Soon placeholder tile (replaces the cover image) */
.podcast-placeholder {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--text-dim);
    overflow: hidden;
}
.podcast-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(161,98,7,0.04) 0%, transparent 60%),
        linear-gradient(45deg,  rgba(161,98,7,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.podcast-placeholder .coming-soon-pill {
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 30px -10px rgba(161, 98, 7, 0.45);
}
.podcast-placeholder .podcast-ep {
    position: relative;
    z-index: 1;
    background: var(--bg);
    border: 1px solid var(--line);
}
.podcast-meta {
    padding: 20px;
}
.podcast-meta h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.podcast-meta-info {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-dim);
}
.podcast-cta { text-align: center; }
@media (max-width: 900px) {
    .podcast-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .podcast-grid { grid-template-columns: 1fr; }
}

/* Homepage podcast video cards — link-only (no iframe) */
.podcast-meta-info a {
    color: var(--accent);
    font-weight: 600;
    transition: opacity 0.3s var(--ease);
}
.podcast-meta-info a:hover { opacity: 0.7; }

/* ============================================
   INSIGHTS (homepage)
   ============================================ */
.insights-home {
    padding: var(--section-py) 0;
    background: var(--bg);
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.insight-card {
    background: var(--bg-alt);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 16px;
    transition: all 0.4s var(--ease);
    cursor: pointer;
}
.insight-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: var(--bg);
    box-shadow: 0 16px 40px rgba(26,26,31,0.06);
}
.insight-cat {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}
.insight-card h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    color: var(--text);
    letter-spacing: -0.015em;
}
.insight-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.insight-meta {
    margin-top: auto;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-dim);
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.insights-cta { text-align: center; }
@media (max-width: 900px) {
    .insights-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: 100px;
    font-size: 14px; font-weight: 500;
    transition: all 0.35s var(--ease);
    position: relative; overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--text);
    transform: translateY(-1px);
}
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
    border: 1px solid var(--line-strong);
    color: var(--text);
    background: transparent;
}
.btn-ghost:hover {
    border-color: var(--text);
    background: var(--text);
    color: var(--bg);
}
.btn-ghost svg { transition: transform 0.3s var(--ease); }
.btn-ghost:hover svg { transform: translateX(3px); }

.btn-block { width: 100%; justify-content: center; }
.form-micro {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
    font-style: italic;
    font-family: var(--font-display);
}

/* ============================================
   SECTION HEAD + EYEBROW + TITLE
   ============================================ */
.section-head { margin-bottom: 60px; max-width: 1000px; }

.section-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}
.section-eyebrow .num {
    font-family: var(--font-display);
    font-style: italic; font-weight: 500;
    color: var(--accent); font-size: 14px;
    letter-spacing: 0;
}
.section-eyebrow .bar {
    width: 36px; height: 1px; background: var(--line-strong);
}
.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 4.5vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text);
    max-width: 1000px;
}
.section-title em {
    font-style: italic; color: var(--accent);
    font-weight: 400;
}
.section-title .muted { color: var(--text-muted); font-style: italic; font-weight: 400; }
.section-lead {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.6;
    margin-top: 22px;
}

/* ============================================
   ABOUT — Image-driven editorial
   ============================================ */
.about { padding: var(--section-py) 0; background: var(--bg); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-text p {
    font-size: 16px; line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.about-text p strong { color: var(--text); font-weight: 600; }
.highlight {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--text);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 28px 0 !important;
    line-height: 1.4 !important;
}
.signature {
    font-family: var(--font-display); font-style: italic;
    color: var(--text-dim) !important; font-size: 15px !important;
    margin-top: 8px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 340px;
    gap: 14px;
    position: sticky; top: 100px;
}
.about-img {
    overflow: hidden; border-radius: var(--radius); background: var(--bg-alt);
    position: relative;
}
.about-img img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top;
    transition: transform 1s var(--ease-out);
}
.about-img:hover img { transform: scale(1.05); }
.about-img-1 { grid-row: 1 / 3; }
.about-img-3 { transform: translateY(20px); }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-images { grid-template-rows: 280px 280px; position: static; }
    .about-img-3 { transform: none; }
    .about-img-1 { grid-row: 1 / 3; }
}

/* ============================================
   WORK / PORTFOLIO — Cards with side image
   ============================================ */
.work {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}

.work-grid {
    display: flex; flex-direction: column;
    gap: 50px;
}
.work-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    background: var(--bg);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    align-items: center;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26,26,31,0.08);
}
.work-card.reverse { grid-template-columns: 1.1fr 1fr; }
.work-card.reverse .work-visual { order: 2; }

.work-visual {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
}
.work-visual img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--ease-out);
}
.work-card:hover .work-visual img { transform: scale(1.05); }

.work-tag {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    font-weight: 500;
}
.work-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 12px;
}
.work-role {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
    font-family: var(--font-display);
}
.work-desc {
    font-size: 15px; line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 22px;
}
.work-points { display: flex; flex-direction: column; gap: 10px; }
.work-points li {
    position: relative; padding-left: 22px;
    font-size: 14px; color: var(--text-muted); line-height: 1.5;
}
.work-points li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 12px; height: 1.5px; background: var(--accent);
}

@media (max-width: 900px) {
    .work-card { grid-template-columns: 1fr; padding: 28px; gap: 30px; }
    .work-card.reverse { grid-template-columns: 1fr; }
    .work-card.reverse .work-visual { order: 0; }
    .work-visual { aspect-ratio: 16/10; }
}

/* ============================================
   NUMBERS BAND
   ============================================ */
.numbers {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.numbers-item {
    padding: 30px 32px;
    border-left: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 14px;
}
.numbers-item:first-child { border-left: 0; }
.numbers-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(52px, 6vw, 80px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text);
    display: inline-flex;
    align-items: baseline;
}
.numbers-num .num-plus {
    color: var(--accent);
    font-size: 0.5em;
    font-weight: 400;
    font-style: italic;
    margin-left: 6px;
}
.numbers-label {
    font-size: 13px; line-height: 1.5;
    color: var(--text-muted);
    max-width: 220px;
}
@media (max-width: 900px) {
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .numbers-item { padding: 24px 16px; }
    .numbers-item:nth-child(2) { border-left: 0; }
    .numbers-item:nth-child(3) { border-top: 1px solid var(--line); }
    .numbers-item:nth-child(4) { border-top: 1px solid var(--line); }
}

/* ============================================
   SPEAKING — Image + topics list
   ============================================ */
.speaking {
    padding: var(--section-py) 0;
    background: var(--bg);
}
.speaking-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 50px;
}
.speaking-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg-alt);
}
.speaking-image img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top;
}
.speaking-image-tag {
    position: absolute; bottom: 20px; left: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text); font-weight: 500;
}

.topics {
    display: flex; flex-direction: column;
    border-top: 1px solid var(--line);
}
.topic {
    border-bottom: 1px solid var(--line);
    transition: background 0.3s var(--ease);
    position: relative;
}
.topic:hover { background: var(--accent-soft); }
.topic.active { background: var(--accent-soft); }
.topic-row {
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    gap: 24px;
    align-items: center;
    padding: 26px 8px;
    cursor: pointer;
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
}
.topic-num {
    font-family: var(--font-display); font-style: italic;
    color: var(--accent); font-size: 16px;
}
.topic h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--text);
}
.topic-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
    font-size: 18px; font-weight: 300;
    transition: all 0.3s var(--ease);
}
.topic:hover .topic-icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: rotate(135deg);
}
.topic.active .topic-icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: rotate(135deg);
}
.topic-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
}
.topic.active .topic-body {
    max-height: 300px;
}
.topic-body-inner {
    padding: 0 40px 28px 84px;
}
.topic-body-inner p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s var(--ease) 0.1s, transform 0.3s var(--ease) 0.1s;
}
.topic.active .topic-body-inner p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .speaking-grid { grid-template-columns: 1fr; gap: 40px; }
    .topic-row { grid-template-columns: 40px 1fr 24px; gap: 14px; padding: 20px 0; }
    .topic-body-inner { padding: 0 16px 24px 54px; }
}

.speaking-cta { text-align: center; }

/* ============================================
   TESTIMONIALS — Image left, carousel right (Adam Braun style)
   ============================================ */
.testimonials {
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 600px;
}

.testimonials-image {
    position: relative;
    overflow: hidden;
    background: #0a0a0e;
}
.testimonials-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.95;
}
.testimonials-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%);
}
.testimonials-image-caption {
    position: absolute; bottom: 30px; left: 30px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 100px;
    background: rgba(255,255,255,0.95);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text); font-weight: 500;
}

.testimonials-content {
    padding: 80px clamp(40px, 6vw, 90px);
    display: flex; flex-direction: column; justify-content: center;
}
.testimonials-head { margin-bottom: 40px; max-width: 600px; }
.testimonials-content .section-eyebrow { color: rgba(255,255,255,0.7); }
.testimonials-content .section-eyebrow .bar { background: rgba(255,255,255,0.25); }
.testimonials-content .section-title { color: #fff; }
.testimonials-content .section-title em { color: var(--accent); }

.carousel {
    display: flex; flex-direction: column;
    gap: 40px;
    max-width: 600px;
}
.carousel-track {
    position: relative;
    min-height: 260px;
}
.slide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0.6s var(--ease);
}
.slide.active { opacity: 1; visibility: visible; transform: translateY(0); }
.slide .quote-mark {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--accent);
    line-height: 0.8;
    display: block;
    margin-bottom: 8px;
}
.slide .quote-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.4;
    color: rgba(255,255,255,0.92);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.slide .quote-author strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 14px; font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.slide .quote-author span {
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.carousel-controls {
    display: flex; align-items: center; gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
}
.carousel-btn:hover {
    background: #fff;
    color: var(--text);
    border-color: #fff;
    transform: scale(1.05);
}
.carousel-dots {
    display: flex; gap: 8px;
    flex: 1; justify-content: center;
}
.carousel-dots .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: all 0.3s var(--ease);
    border: 0; padding: 0;
    cursor: pointer;
}
.carousel-dots .dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; min-height: auto; }
    .testimonials-image { aspect-ratio: 4/3; min-height: 300px; }
    .testimonials-content { padding: 60px 24px; }
}

/* ============================================
   QUOTE — Large editorial
   ============================================ */
.quote {
    padding: var(--section-py) 0;
    background: var(--bg);
    text-align: center;
}
.quote-inner {
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
}
.big-quote {
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 140px);
    color: var(--accent);
    line-height: 0.5;
    margin-bottom: 24px;
    display: block;
}
.quote-text-large {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text);
}
.quote-text-large em { font-style: italic; color: var(--accent); font-weight: 400; }
.quote-attr {
    margin-top: 30px;
    font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-dim);
}

.press-row {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding-top: 50px;
}
.press-label {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 500;
}
.press-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.press-card {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
    transition: all 0.4s var(--ease);
    border: 0;
    padding: 0;
    cursor: zoom-in;
    display: block;
    width: 100%;
    position: relative;
}
.press-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26,26,31,0.1);
}
.press-card::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(26,26,31,0);
    transition: background 0.3s var(--ease);
}
.press-card:hover::after { background: rgba(26,26,31,0.15); }
.press-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .press-grid { grid-template-columns: repeat(3, 1fr); }
    .press-card:nth-child(n+4) { display: none; }
}

/* ============================================
   EDUCATION — Card grid
   ============================================ */
.education {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}
.edu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.edu-card {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
    position: relative;
}
.edu-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.edu-num {
    display: inline-block;
    font-family: var(--font-display); font-style: italic;
    color: var(--accent); font-size: 16px;
    margin-bottom: 16px;
}
.edu-card h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}
.edu-card p {
    font-size: 15px; color: var(--text-muted); line-height: 1.65;
}
@media (max-width: 900px) {
    .edu-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   CONTACT — Light, two-column
   ============================================ */
.contact {
    padding: var(--section-py) 0;
    background: var(--bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-lead {
    font-size: 17px;
    color: var(--text-muted);
    margin: 24px 0 32px;
    line-height: 1.6;
    max-width: 420px;
}
.contact-mail {
    margin-bottom: 40px;
    font-size: 15px;
    color: var(--text-muted);
    display: flex; flex-direction: column; gap: 8px;
}
.contact-mail span {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-dim); font-weight: 500;
}
.contact-mail a {
    color: var(--accent);
    border-bottom: 1px solid rgba(194,65,12,0.3);
    padding-bottom: 2px;
    font-size: 17px;
    transition: border-color 0.3s var(--ease);
}
.contact-mail a:hover { border-color: var(--accent); }

.contact-meta {
    display: flex; flex-direction: column; gap: 16px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}
.contact-meta div {
    display: grid; grid-template-columns: 130px 1fr;
    gap: 16px;
    font-size: 14px;
    align-items: baseline;
}
.contact-meta strong {
    font-weight: 500;
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-dim);
}
.contact-meta span { color: var(--text); }

.contact-form {
    display: flex; flex-direction: column; gap: 24px;
}
.contact-form .row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.field {
    display: flex; flex-direction: column; gap: 6px;
}
.field label {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-dim); font-weight: 500;
}
.field input, .field textarea, .field select {
    padding: 12px 0;
    font-size: 16px; color: var(--text);
    border-bottom: 1px solid var(--line-strong);
    transition: border-color 0.3s var(--ease);
}
.field select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c2410c' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat; background-position: right 0 center;
}
.field select option { background: var(--bg); color: var(--text); }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--accent);
}

/* Time slot & payment chips */
.field-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}
.field-fieldset legend {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 12px;
    padding: 0;
}
.slot-grid,
.pay-grid {
    display: grid;
    gap: 14px;
}
.slot-grid { grid-template-columns: 1fr 1fr; }
.pay-grid  { grid-template-columns: 1fr 1fr; }

.slot-field {
    margin: 0;
    padding: 0;
    border: 0;
}
.slot-field label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    margin-bottom: 8px;
    display: block;
}
.slot-field input[type="date"],
.slot-field select {
    width: 100%;
    padding: 14px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    cursor: pointer;
    line-height: 1.3;
    height: 50px;
}
.slot-field input[type="date"]:hover,
.slot-field select:hover { border-color: var(--text-muted); }
.slot-field input[type="date"]:focus,
.slot-field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(161, 98, 7, 0.12);
}
.slot-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(38%) sepia(46%) saturate(627%) hue-rotate(2deg) brightness(95%) contrast(92%);
    opacity: 0.7;
    transition: opacity 0.25s var(--ease);
}
.slot-field input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
.slot-chip,
.pay-chip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-size: 13px;
    color: var(--text);
    line-height: 1.3;
}
.slot-chip span,
.pay-chip span {
    font-weight: 500;
    display: block;
}
.pay-chip span em {
    font-style: normal;
    color: var(--accent);
    font-weight: 600;
}
.slot-chip:hover,
.pay-chip:hover {
    border-color: var(--text-muted);
}
.slot-chip input,
.pay-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.slot-chip:has(input:checked),
.pay-chip:has(input:checked) {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}
.slot-chip:has(input:checked) span,
.pay-chip:has(input:checked) span { color: #fff; }
.slot-chip:has(input:checked) span em,
.pay-chip:has(input:checked) span em { color: #fff; opacity: 0.95; }

.contact-form .field-fieldset + .field,
.contact-form .field + .field-fieldset,
.contact-form .field-fieldset + .field-fieldset { margin-top: 18px; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-form .row { grid-template-columns: 1fr; }
    .slot-grid { grid-template-columns: 1fr; }
    .pay-grid  { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER — Dark for contrast
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}
.footer .logo-text { color: #fff; }
.footer .logo-sub { color: rgba(255,255,255,0.5); border-left-color: rgba(255,255,255,0.15); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}
.footer-brand { max-width: 360px; }
.footer-tag {
    font-family: var(--font-display); font-style: italic;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-top: 16px;
}
.footer-col h5 {
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s var(--ease);
    font-size: 15px;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    visibility: hidden; opacity: 0;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.lightbox.open { visibility: visible; opacity: 1; }

.lightbox-backdrop {
    position: absolute; inset: 0;
    background: rgba(10,10,14,0.92);
    backdrop-filter: blur(8px);
}

.lightbox-figure {
    position: relative; z-index: 2;
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    transform: scale(0.94);
    opacity: 0;
    transition: transform 0.45s var(--ease-out), opacity 0.45s var(--ease-out);
}
.lightbox.open .lightbox-figure {
    transform: scale(1);
    opacity: 1;
}

.lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    background: #fff;
}

.lightbox-caption {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.lightbox-counter {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
    z-index: 2;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute; z-index: 3;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.08);
}

.lightbox-close {
    top: 24px; right: 24px;
}
.lightbox-prev {
    left: 24px; top: 50%; transform: translateY(-50%);
}
.lightbox-next {
    right: 24px; top: 50%; transform: translateY(-50%);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }

body.lightbox-open { overflow: hidden; }

@media (max-width: 700px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next { width: 40px; height: 40px; }
    .lightbox-close { top: 16px; right: 16px; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-counter { bottom: 18px; font-size: 11px; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    will-change: opacity, transform;
}
[data-reveal].in {
    opacity: 1; transform: translateY(0);
}

/* ============================================
   PAGE HERO (used on inner pages)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.page-hero .container { max-width: 1100px; }
.page-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 28px;
}
.page-title em {
    font-style: italic; color: var(--accent);
    font-weight: 400;
}
.page-lead {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 720px;
}

/* Nav active state */
.nav-menu a.active {
    color: var(--text);
    position: relative;
}
.nav-menu a.active::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: var(--accent);
}

/* ============================================
   ABOUT PAGE — Chapters
   ============================================ */
.about-chapter { padding: var(--section-py) 0; }
.chapter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid var(--line);
}
.chapter-grid:first-of-type { border-top: 0; padding-top: 0; }
.chapter-grid.reverse .chapter-visual { order: 2; }
.chapter-visual {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
}
.chapter-visual img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top;
}
.chapter-content { display: flex; flex-direction: column; gap: 16px; }
.chapter-num {
    font-family: var(--font-display); font-style: italic;
    color: var(--accent); font-size: 14px;
}
.chapter-content h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -0.025em;
}
.chapter-content p {
    font-size: 16px; line-height: 1.7;
    color: var(--text-muted);
}
.about-quote {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
    text-align: center;
}
.about-quote-inner { max-width: 900px; margin: 0 auto; }
@media (max-width: 900px) {
    .chapter-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
    .chapter-grid.reverse .chapter-visual { order: 0; }
}

/* ============================================
   ADVISORY GRID
   ============================================ */
.advisory-grid-section { padding: var(--section-py) 0; background: var(--bg); }
.advisory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.advisory-card {
    background: var(--bg-alt);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 16px;
    transition: all 0.4s var(--ease);
}
.advisory-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.advisory-num {
    font-family: var(--font-display); font-style: italic;
    color: var(--accent); font-size: 14px;
}
.advisory-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.advisory-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.advisory-card ul {
    display: flex; flex-direction: column; gap: 6px;
    margin-top: 8px;
}
.advisory-card li {
    font-size: 13px;
    color: var(--text-muted);
    position: relative; padding-left: 18px;
}
.advisory-card li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 10px; height: 1.5px; background: var(--accent);
}
@media (max-width: 900px) {
    .advisory-grid { grid-template-columns: 1fr; gap: 16px; }
    .formats-list { grid-template-columns: 1fr; }
    .format-item,
    .format-item:nth-child(odd),
    .format-item:nth-child(even) {
        padding: 24px 0;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
}

.engagement-formats {
    padding: var(--section-py) 0;
    background: var(--bg);
}
.formats-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid var(--line);
}
.format-item {
    padding: 36px 32px 36px 0;
    border-bottom: 1px solid var(--line);
}
.format-item:nth-child(odd) {
    padding-right: 48px;
    border-right: 1px solid var(--line);
}
.format-item:nth-child(even) {
    padding-left: 48px;
}
.format-title {
    font-family: var(--font-sans);
    font-size: 20px; font-weight: 700;
    color: var(--text);
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
}
.format-desc {
    font-size: 15px; line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}
.formats-cta {
    margin-top: 48px;
    display: flex; justify-content: center; align-items: center;
}

.advisory-trust {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}
.trust-grid {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-top: 30px;
}
.trust-grid span {
    padding: 12px 20px;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 14px; color: var(--text);
    transition: all 0.3s var(--ease);
}
.trust-grid span:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================
   ACADEMY
   ============================================ */
.academy-image-band { background: var(--bg-alt); }
.academy-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: var(--max);
    margin: 0 auto;
}
.academy-image-grid img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
@media (max-width: 900px) {
    .academy-image-grid { grid-template-columns: 1fr; }
}

.pathway-section { padding: var(--section-py) 0; background: var(--bg); }
.pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.pathway-card {
    background: var(--bg-alt);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 14px;
    transition: all 0.4s var(--ease);
}
.pathway-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.pathway-tier {
    font-family: var(--font-display); font-style: italic;
    color: var(--accent); font-size: 14px;
}
.pathway-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    color: var(--text);
    letter-spacing: -0.02em;
}
.pathway-card p {
    font-size: 14px; line-height: 1.6;
    color: var(--text-muted);
}
.pathway-card ul {
    display: flex; flex-direction: column; gap: 6px;
}
.pathway-card li {
    font-size: 13px;
    color: var(--text-muted);
    position: relative; padding-left: 18px;
}
.pathway-card li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 10px; height: 1.5px; background: var(--accent);
}
.pathway-meta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-dim);
}
@media (max-width: 900px) {
    .pathway-grid { grid-template-columns: 1fr; gap: 16px; }
}

.centres-section { padding: var(--section-py) 0; background: var(--bg-alt); }
.centres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.centre-card {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 8px;
    transition: all 0.3s var(--ease);
}
.centre-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.centre-city {
    font-family: var(--font-display); font-weight: 500;
    font-size: 22px;
    color: var(--text);
}
.centre-meta {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-dim);
}
.centre-cta {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}
.centre-cta .centre-city { color: var(--bg); }
.centre-cta .centre-meta { color: rgba(255,255,255,0.7); }
@media (max-width: 900px) {
    .centres-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ============================================
   INSIGHTS LIST PAGE
   ============================================ */
.insights-list-section { padding: var(--section-py) 0; background: var(--bg); }
.insights-list {
    display: flex; flex-direction: column;
}
.insight-list-card {
    padding: 36px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 40px;
    align-items: start;
    cursor: pointer;
    transition: padding 0.3s var(--ease), border-color 0.3s var(--ease);
    text-decoration: none;
    color: inherit;
}
.insight-list-card:hover { padding-left: 12px; border-top-color: var(--accent); }
.insight-list-card-last { border-bottom: 1px solid var(--line); }
.insight-list-body { min-width: 0; }
.insight-cat {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}
.insight-list-card h3,
.insight-list-card h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(22px, 2.4vw, 28px);
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.insight-list-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 8px;
    max-width: 600px;
}
.insight-list-meta {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-dim);
    padding-top: 4px;
    display: flex; gap: 8px;
}
@media (max-width: 900px) {
    .insight-list-card { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
}

/* ============================================
   SPEAKING PAGE
   ============================================ */

/* Gallery — 8 photo mosaic */
.speaking-gallery { padding: 0 0 var(--section-py); }
.speaking-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.speaking-gallery-item {
    margin: 0;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
}
.speaking-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.speaking-gallery-item:hover img { transform: scale(1.04); }

/* Teaching cards */
.speaking-teaching { padding: var(--section-py) 0; background: var(--bg); }
.teaching-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.teaching-card {
    padding: 36px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    transition: all 0.35s var(--ease);
    position: relative;
}
.teaching-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.teaching-num {
    display: block;
    font-family: var(--font-display);
    font-size: 14px; font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}
.teaching-title {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
    line-height: 1.1;
}
.teaching-role {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}
.teaching-desc {
    font-size: 15px; line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

/* Panels & moderation */
.speaking-panels { padding: var(--section-py) 0; background: var(--bg-alt); }
.panels-list {
    display: grid;
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid var(--line);
}
.panel-item {
    display: grid;
    grid-template-columns: 180px 1.1fr 1.8fr;
    gap: 32px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}
.panel-media {
    margin: 0;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
}
.panel-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.panel-item:hover .panel-media img { transform: scale(1.04); }
.panel-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.panel-where {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}
.panel-role {
    font-size: 12px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
}
.panel-topic {
    font-size: 15px; line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.panels-also { margin-top: 60px; }
.panels-also-title {
    font-family: var(--font-sans);
    font-size: 13px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    margin: 0 0 20px 0;
}
.panels-tags {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.panels-tags span {
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text);
    transition: all 0.3s var(--ease);
}
.panels-tags span:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Speaking formats */
.speaking-formats { padding: var(--section-py) 0; background: var(--bg); }
.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.format-card {
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    transition: all 0.35s var(--ease);
}
.format-card:hover {
    border-color: var(--accent);
}
.format-card-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 0 0 12px 0;
}
.format-card-desc {
    font-size: 14px; line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.formats-cta {
    margin-top: 48px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    text-align: center;
}
.formats-microcopy {
    font-size: 13px; color: var(--text-dim);
    margin: 0; max-width: 520px;
}

/* Speaking page responsive */
@media (max-width: 900px) {
    .speaking-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .teaching-grid { grid-template-columns: 1fr; }
    .formats-grid { grid-template-columns: 1fr 1fr; }
    .panel-item {
        grid-template-columns: 120px 1fr;
        gap: 20px;
        align-items: start;
        padding: 24px 0;
    }
    .panel-item .panel-topic {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .speaking-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .formats-grid { grid-template-columns: 1fr; }
    .panel-item { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .speaking-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .formats-grid { grid-template-columns: 1fr; }
    .teaching-title { font-size: 30px; }
}

/* ============================================
   PODCAST PAGE
   ============================================ */
.podcast-platforms {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 30px;
}
.podcast-platform {
    padding: 12px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.3s var(--ease);
}
.podcast-platform:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.podcast-featured-videos { padding: var(--section-py) 0; background: var(--bg); }
.video-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.video-link-card {
    display: flex; align-items: center; gap: 22px;
    padding: 26px 28px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    transition: all 0.35s var(--ease);
}
.video-link-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -22px rgba(161, 98, 7, 0.4);
}

/* ============================================
   INSIGHT ARTICLE PAGES
   ============================================ */
.article-hero {
    padding: 160px 0 60px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}
.article-back {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 36px;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.article-back:hover { color: var(--accent); transform: translateX(-3px); }
.article-hero .insight-cat { display: inline-block; margin-bottom: 20px; }
.article-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text);
    margin: 0 0 24px 0;
    max-width: 900px;
}
.article-lead {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 0 30px 0;
}
.article-meta {
    display: flex; flex-wrap: wrap; gap: 10px;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.article-meta .dot { color: var(--accent); }

.article-body {
    padding: var(--section-py) 0;
    background: var(--bg);
}
.article-body .container { max-width: 720px; }
.article-body p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 24px 0;
}
.article-quote {
    margin: 50px 0;
    padding: 32px 0 32px 28px;
    border-left: 3px solid var(--accent);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.article-cta {
    margin: 80px 0;
    padding: 50px 30px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    text-align: center;
}
.article-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.015em;
    margin: 0 0 12px 0;
}
.article-cta p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.article-more { margin-top: 80px; }
.article-more h4 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 0 0 30px 0;
}
.article-more-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.article-more-card {
    display: block;
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s var(--ease);
}
.article-more-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.article-more-card .insight-cat { display: inline-block; margin-bottom: 12px; }
.article-more-card h5 {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 10px 0;
}
.article-more-card p {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.55; margin: 0;
}

/* Teaching card link */
.teaching-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.teaching-link:hover { opacity: 0.7; transform: translateX(3px); }

/* Inline brand links in chapter text */
.chapter-content p a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(161, 98, 7, 0.3);
    transition: border-color 0.3s var(--ease);
}
.chapter-content p a:hover { border-color: var(--accent); }
@media (max-width: 700px) {
    .article-title { font-size: 32px; }
    .article-more-grid { grid-template-columns: 1fr; }
}
.video-link-card:hover .video-link-meta { color: var(--accent); }
.video-link-card:hover .video-link-icon { background: var(--accent); color: #fff; transform: scale(1.05); }
.video-link-icon {
    flex: 0 0 56px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.35s var(--ease);
}
.video-link-icon svg { width: 20px; height: 20px; }
.video-link-icon-ig svg { width: 26px; height: 26px; }
.video-link-body { display: flex; flex-direction: column; gap: 4px; }
.video-link-eyebrow {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
}
.video-link-title {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
}
.video-link-meta {
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    margin-top: 6px;
    transition: color 0.3s var(--ease);
}
.video-link-meta .arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.video-link-card:hover .video-link-meta .arrow { transform: translateX(4px); }
@media (max-width: 800px) {
    .video-links { grid-template-columns: 1fr; }
    .video-link-card { padding: 22px 22px; gap: 16px; }
    .video-link-icon { flex-basis: 48px; width: 48px; height: 48px; }
}

.podcast-latest { padding: var(--section-py) 0; background: var(--bg-alt); }
.podcast-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px;
}
.podcast-feature-cover {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg);
}
.podcast-feature-cover img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(40%);
}
.podcast-play-lg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--accent); color: #fff;
    border: 0;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(161,98,7,0.4);
    transition: all 0.3s var(--ease);
}
.podcast-play-lg:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--text); }
.podcast-play-lg svg { width: 30px; height: 30px; }
.podcast-feature-info h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.podcast-feature-info p {
    font-size: 16px; line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 24px;
}
@media (max-width: 900px) {
    .podcast-feature { grid-template-columns: 1fr; gap: 30px; }
}

.podcast-archive { padding: var(--section-py) 0; background: var(--bg); }

/* ============================================
   CONTACT PAGE (full form)
   ============================================ */
.contact-page { padding-top: clamp(60px, 8vw, 110px); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================
   PRICING CHIPS (contact form packages)
   ============================================ */
.pricing-grid { grid-template-columns: 1fr 1fr; }
.pricing-chip {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 22px 22px !important;
    gap: 8px;
    min-height: 110px;
    cursor: pointer;
}
.pricing-title {
    font-family: var(--font-display);
    font-size: 18px !important;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.pricing-amount {
    font-size: 22px !important;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.pricing-meta {
    font-size: 11px !important;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.pricing-chip:has(input:checked) .pricing-title { color: #fff; }
.pricing-chip:has(input:checked) .pricing-amount { color: #fff; }
.pricing-chip:has(input:checked) .pricing-meta { color: rgba(255,255,255,0.85); }

@media (max-width: 700px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAYMENT STATUS BANNER
   ============================================ */
.pay-status {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 22px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid transparent;
    animation: paySlide 0.4s var(--ease) both;
}
@keyframes paySlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pay-status strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.005em;
}
.pay-status--success {
    background: #ecf6ef;
    border-color: #b9dcc4;
    color: #1f5a36;
}
.pay-status--error {
    background: #fbecec;
    border-color: #e8b9b9;
    color: #7a2424;
}