/* ============================================
   MOHIT KAMAT — PORTFOLIO
   Premium dark theme, editorial typography,
   motion-rich. Inspired by adam braun's site.
   ============================================ */

:root {
    --bg: #010104;
    --bg-2: #0a0a10;
    --bg-3: #11111a;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.4);
    --gold: #d4b87a;
    --gold-2: #f1d99e;
    --accent: #d4b87a;

    --font-sans: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --max: 1320px;
    --pad: clamp(20px, 4vw, 60px);

    --ease: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold); color: var(--bg); }

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: auto;
    overflow-x: hidden;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

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);
}

/* ============================================
   NOISE / GRAIN OVERLAY
   ============================================ */
.noise {
    position: fixed; inset: 0; pointer-events: none; z-index: 9000;
    opacity: 0.04; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor, .cursor-follower {
    position: fixed; top: 0; left: 0; pointer-events: none;
    z-index: 9999; transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease),
                background 0.25s var(--ease), border-color 0.25s var(--ease),
                opacity 0.3s var(--ease);
    will-change: transform;
}
.cursor {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
}
.cursor-follower {
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transition: width 0.3s var(--ease), height 0.3s var(--ease),
                transform 0.15s linear, opacity 0.3s var(--ease);
}
.cursor.hover { width: 0; height: 0; opacity: 0; }
.cursor-follower.hover {
    width: 60px; height: 60px;
    background: rgba(212, 184, 122, 0.08);
}
@media (max-width: 900px) {
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
    a, button { cursor: pointer; }
}

/* ============================================
   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: 700;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
}
.loader-mark .dot { color: var(--gold); }
.loader-bar {
    width: 240px; height: 1px;
    background: rgba(255,255,255,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(--gold);
    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);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(1, 1, 4, 0.7);
    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: 14px;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 700; font-size: 28px;
    color: var(--text); letter-spacing: -0.02em;
    line-height: 1;
}
.logo-text .logo-dot { color: var(--gold); }
.logo-sub {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-dim); font-weight: 500;
    padding-left: 14px;
    border-left: 1px solid var(--line);
}

.nav-menu ul {
    display: flex; gap: 36px;
}
.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(--gold);
    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;
    border: 1px solid var(--line-strong);
    color: var(--text); font-size: 13px; font-weight: 500;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s var(--ease);
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    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(--gold); }

@media (max-width: 900px) {
    .nav-menu, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .logo-sub { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px var(--pad) 140px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
    position: absolute; inset: 0;
    background-image: url('images/hero/hero-main.jpg');
    background-size: cover;
    background-position: right center;
    opacity: 0.7;
    filter: contrast(1.05) saturate(0.9);
    transform: scale(1.05);
    will-change: transform;
}
.hero-bg-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.15; mix-blend-mode: overlay;
}
.hero-bg-gradient {
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, rgba(1,1,4,0.85) 0%, rgba(1,1,4,0.6) 40%, rgba(1,1,4,0.2) 70%, rgba(1,1,4,0.5) 100%),
      linear-gradient(180deg, rgba(1,1,4,0.3) 0%, rgba(1,1,4,0.5) 60%, var(--bg) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
    padding-bottom: 80px;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 16px; border-radius: 100px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 36px;
}
.dot-live {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 184, 122, 0.18);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(212,184,122,0.18); }
    50% { box-shadow: 0 0 0 8px rgba(212,184,122,0.04); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(48px, 9vw, 132px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 40px;
}
.hero-title .line {
    display: block;
    overflow: hidden;
    padding: 0.05em 0;
}
.hero-title .line > span {
    display: inline-block;
    will-change: transform;
}
.hero-title em {
    font-style: italic; color: var(--gold);
    font-weight: 400;
}
.hero-title .accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-sub {
    max-width: 560px;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 44px;
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-bottom: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 720px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}
.stat {
    display: flex; flex-direction: column; gap: 4px;
}
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 500;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}
.stat-plus {
    color: var(--gold);
    font-size: 0.55em;
    font-weight: 400;
    font-style: italic;
    font-family: var(--font-display);
    margin-left: 4px;
}
.stat-label {
    font-size: 12px; letter-spacing: 0.1em;
    color: var(--text-dim);
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* HERO MARQUEE */
.hero-marquee {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(1,1,4,0.6);
    backdrop-filter: blur(8px);
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}
.marquee-track {
    display: inline-flex; gap: 40px;
    animation: marquee 32s linear infinite;
    font-family: var(--font-display);
    font-style: italic; font-weight: 400;
    font-size: clamp(18px, 2.4vw, 32px);
    color: var(--text);
    letter-spacing: -0.01em;
    max-width: 100%;
}
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 100px;
    font-size: 15px; font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.35s var(--ease);
    position: relative; overflow: hidden;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--bg);
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--text);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
    z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--bg); }

.btn-ghost {
    border: 1px solid var(--line-strong);
    color: var(--text);
    background: transparent;
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-ghost .play-icon {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg);
}
.btn-ghost .play-icon svg { width: 12px; height: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   SECTION EYEBROW + TITLE
   ============================================ */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.section-eyebrow .num {
    font-family: var(--font-display);
    font-style: italic; font-weight: 400;
    color: var(--gold); font-size: 13px;
    letter-spacing: 0;
}
.section-eyebrow .bar {
    width: 40px; height: 1px; background: var(--line-strong);
}
.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(36px, 5.5vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    max-width: 1100px;
}
.section-title em {
    font-style: italic; color: var(--gold);
    font-weight: 400;
}
.section-title .muted { color: var(--text-muted); font-style: italic; font-weight: 400; }
.section-lead {
    font-size: clamp(16px, 1.2vw, 19px);
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.6;
    margin-top: 24px;
}

/* ============================================
   TICKER (working across)
   ============================================ */
.ticker {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center;
    padding: 24px 0;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}
.ticker-label {
    flex-shrink: 0;
    padding: 0 var(--pad);
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    border-right: 1px solid var(--line);
}
.ticker-track {
    overflow: hidden; flex: 1;
    max-width: 100%;
}
.ticker-inner {
    display: inline-flex; gap: 56px;
    animation: marquee 40s linear infinite;
    font-family: var(--font-display); font-style: italic;
    font-size: clamp(20px, 2.6vw, 34px);
    color: var(--text);
    letter-spacing: -0.01em;
    max-width: 100%;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: clamp(80px, 12vw, 160px) 0;
    position: relative;
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}
.about-right p {
    font-size: 17px; line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 22px;
}
.about-right p strong { color: var(--text); font-weight: 600; }
.quote-mark {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--text);
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin-top: 36px;
}
.quote-mark em { color: var(--gold); font-weight: 400; }
.signature {
    margin-top: 20px;
    font-family: var(--font-display); font-style: italic;
    color: var(--text-dim) !important; font-size: 16px !important;
}

.about-strip {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
    gap: 16px;
    align-items: center;
    min-height: 540px;
    padding: 30px 0;
    max-width: 100%;
    overflow: hidden;
}
.strip-item {
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-3);
    position: relative;
    height: 480px;
    min-width: 0;
}
.strip-tall { height: 540px; }
.strip-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
    filter: grayscale(20%) contrast(1.05);
}
.strip-item:hover img { transform: scale(1.05); filter: grayscale(0%) contrast(1.1); }
.strip-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(1,1,4,0.4) 100%);
    pointer-events: none;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-strip { grid-template-columns: 1fr 1fr; height: auto; padding: 0; gap: 12px; }
    .strip-tall { transform: none; height: auto; }
    .strip-item { aspect-ratio: 3/4; height: auto; width: auto; min-width: 0; max-width: 100%; }
    .strip-item:nth-child(n+3) { display: none; }
}

@media (max-width: 480px) {
    .about-strip { grid-template-columns: 1fr; gap: 12px; }
    .strip-item { aspect-ratio: 4/5; max-width: 100%; }
    .strip-item:nth-child(n+2) { display: none; }
}

/* ============================================
   WORK / PORTFOLIO
   ============================================ */
.work {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.work-head {
    margin-bottom: 100px;
    max-width: 1100px;
}

.work-list {
    display: flex; flex-direction: column;
    gap: 0;
}
.work-item {
    display: grid;
    grid-template-columns: 80px 1.4fr 1fr;
    gap: 60px;
    padding: 80px 0;
    border-top: 1px solid var(--line);
    align-items: start;
    position: relative;
    transition: padding 0.6s var(--ease);
}
.work-item:last-child { border-bottom: 1px solid var(--line); }

.work-num {
    font-family: var(--font-display); font-style: italic;
    font-size: 22px; color: var(--gold);
    padding-top: 8px;
}
.work-tag {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.work-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 14px;
    max-width: 700px;
}
.work-role {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 24px;
    font-style: italic;
    font-family: var(--font-display);
}
.work-desc {
    font-size: 16px; line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 560px;
}
.work-points { display: flex; flex-direction: column; gap: 12px; }
.work-points li {
    position: relative; padding-left: 24px;
    font-size: 15px; color: var(--text-muted); line-height: 1.5;
}
.work-points li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 12px; height: 1px; background: var(--gold);
}
.work-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-3);
}
.work-visual img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--ease-out), filter 0.6s var(--ease);
    filter: grayscale(15%) contrast(1.05);
}
.work-visual:hover img { transform: scale(1.04); filter: grayscale(0%) contrast(1.1); }
.work-visual-glow {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(1,1,4,0.6) 100%);
    pointer-events: none;
}

@media (max-width: 900px) {
    .work-item { grid-template-columns: 1fr; gap: 30px; padding: 50px 0; }
    .work-item.reverse .work-visual { order: -1; }
    .work-num { font-size: 18px; }
    .work-visual { aspect-ratio: 4/3; }
}

/* ============================================
   NUMBERS BAND
   ============================================ */
.numbers {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--bg);
    position: relative;
    border-top: 1px solid var(--line);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.numbers-item {
    padding: 40px;
    border-left: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 16px;
}
.numbers-item:first-child { border-left: 0; }
.numbers-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text);
    display: inline-flex;
    align-items: baseline;
}
.numbers-num .counter { display: inline-block; }
.numbers-num .num-plus {
    color: var(--gold);
    font-size: 0.5em;
    font-weight: 400;
    font-style: italic;
    margin-left: 8px;
}
.numbers-label {
    font-size: 14px; 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: 30px 20px; }
    .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
   ============================================ */
.speaking {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
}
.speaking-head { margin-bottom: 80px; max-width: 1000px; }

.topics {
    border-top: 1px solid var(--line);
    margin-bottom: 60px;
}
.topic {
    border-bottom: 1px solid var(--line);
    transition: background 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.topic:hover { background: rgba(255,255,255,0.02); }
.topic::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background: var(--gold);
    transform: scaleY(0); transform-origin: top;
    transition: transform 0.5s var(--ease);
}
.topic:hover::before { transform: scaleY(1); }
.topic-row {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    gap: 40px;
    padding: 36px 20px;
    align-items: center;
}
.topic-num {
    font-family: var(--font-display); font-style: italic;
    color: var(--gold); font-size: 18px;
}
.topic-text h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 8px;
}
.topic-text p {
    font-size: 15px; line-height: 1.6;
    color: var(--text-muted);
    max-width: 700px;
}
.topic-toggle {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
    transition: all 0.3s var(--ease);
}
.topic:hover .topic-toggle {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    transform: rotate(180deg);
}
.topic-toggle svg { width: 18px; height: 18px; }
@media (max-width: 700px) {
    .topic-row { grid-template-columns: 50px 1fr 40px; gap: 16px; padding: 24px 0; }
}

.speaking-cta { text-align: center; }

/* ============================================
   QUOTE
   ============================================ */
.quote {
    padding: clamp(100px, 14vw, 200px) 0;
    background: var(--bg);
    text-align: center;
    position: relative;
}
.quote::before, .quote::after {
    content: ''; position: absolute; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 80px;
    background: linear-gradient(180deg, transparent, var(--line-strong));
}
.quote::before { top: 0; }
.quote::after { bottom: 0; transform: translateX(-50%) rotate(180deg); }

.quote-mark-big {
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 160px);
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 40px;
}
.quote-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text);
    max-width: 1000px;
    margin: 0 auto 50px;
}
.quote-text em {
    font-style: italic; color: var(--gold); font-weight: 400;
}
.quote-author {
    margin-bottom: 80px;
}
.quote-attr {
    font-family: var(--font-display); font-style: italic;
    font-size: 20px; color: var(--text);
}
.quote-sub {
    font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 6px;
}

.quote-cta {
    max-width: 1100px; margin: 0 auto;
    border-top: 1px solid var(--line);
    padding-top: 60px;
}
.featured-label {
    display: block;
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}
.press-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.press-card {
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}
.press-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.press-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(0.9);
    transition: filter 0.4s var(--ease);
}
.press-card:hover img { filter: grayscale(0%) contrast(1); }
@media (max-width: 900px) {
    .press-row { grid-template-columns: repeat(3, 1fr); }
    .press-card:nth-child(n+4) { display: none; }
}

/* ============================================
   EDUCATION
   ============================================ */
.education {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.edu-lead {
    font-size: 17px;
    color: var(--text-muted);
    margin-top: 24px;
    font-family: var(--font-display); font-style: italic;
}
.edu-list { display: flex; flex-direction: column; gap: 0; }
.edu-list li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
}
.edu-list li:last-child { border-bottom: 1px solid var(--line); }
.edu-num {
    font-family: var(--font-display); font-style: italic;
    color: var(--gold); font-size: 18px;
}
.edu-list h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}
.edu-list p {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
}
@media (max-width: 900px) {
    .edu-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--bg);
    position: relative;
}
.contact-head {
    max-width: 900px;
    margin-bottom: 80px;
}
.contact-mail {
    margin-top: 32px;
    font-size: 15px;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap;
}
.contact-mail a {
    color: var(--gold);
    border-bottom: 1px solid rgba(212,184,122,0.4);
    padding-bottom: 2px;
    transition: border-color 0.3s var(--ease);
}
.contact-mail a:hover { border-color: var(--gold); }

.contact-form {
    max-width: 900px;
    display: flex; flex-direction: column; gap: 28px;
}
.contact-form .row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.field {
    display: flex; flex-direction: column; gap: 8px;
    position: relative;
}
.field label {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-dim);
}
.field input, .field textarea, .field select {
    padding: 14px 0;
    font-size: 16px; color: var(--text);
    border-bottom: 1px solid var(--line-strong);
    transition: border-color 0.3s var(--ease);
    background: transparent;
}
.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='%23d4b87a' 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(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
@media (max-width: 700px) {
    .contact-form .row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}
.footer-brand { max-width: 360px; }
.footer-logo {
    display: inline-flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
}
.footer-tag {
    font-family: var(--font-display); font-style: italic;
    color: var(--text-muted);
    font-size: 16px;
}
.footer-col h5 {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
    font-size: 15px;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 30px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
    will-change: opacity, transform;
}
[data-reveal].in {
    opacity: 1; transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
}
