/* =============================================================================
   SEPHORA GREY, ESQ. — MAIN STYLESHEET
   Aesthetic: Luxury editorial. Playfair Display + Open Sans. Gold accents.
   ============================================================================= */

/* ── 1. Custom Properties ──────────────────────────────────────────────────── */
:root {
  --clr-black:       #0e0c0a;
  --clr-white:       #ffffff;
  --clr-cream:       #f8f5f0;
  --clr-cream-dark:  #f0ece4;
  --clr-gold:        #c9a96e;
  --clr-gold-dark:   #a07f4a;
  --clr-text:        #2c2c2c;
  --clr-muted:       #6b6b6b;
  --clr-border:      #e5e2dc;

  --font-heading:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:       'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad:     clamp(80px, 10vw, 140px);
  --container:       1200px;
  --nav-h:           80px;
  --gap:             32px;
  --radius:          2px;

  --ease:            cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur:             0.3s;
}

/* ── 2. Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── 3. Layout ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section           { padding: var(--section-pad) 0; }
.section--cream    { background-color: var(--clr-cream); }

/* ── 4. Typography Atoms ───────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}
.section-label--gold  { color: var(--clr-gold); }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-black);
  margin-bottom: 20px;
}
.section-heading--light { color: var(--clr-white); }

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--clr-muted);
  max-width: 560px;
  line-height: 1.85;
}
.section-sub--light { color: rgba(255,255,255,0.6); }

.section__header {
  max-width: 640px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

#speaking,
#booking {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* ── 5. Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-white);
}
.btn--gold:hover { background: var(--clr-gold-dark); transform: translateY(-1px); }

.btn--dark {
  background: var(--clr-black);
  color: var(--clr-white);
}
.btn--dark:hover { background: #2a2520; transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--clr-black);
  color: var(--clr-black);
}
.btn--outline:hover { background: var(--clr-black); color: var(--clr-white); }

.btn--lg { padding: 18px 48px; font-size: 0.82rem; }

.mt-6 { margin-top: 40px; }

/* ── 6. Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--gap);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
}
.nav.scrolled .nav__logo   { color: var(--clr-black); }
.nav__logo-esq { font-style: italic; font-weight: 400; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--dur) var(--ease);
}
.nav__links a:hover          { color: var(--clr-gold); }
.nav.scrolled .nav__links a  { color: var(--clr-text); }
.nav.scrolled .nav__links a:hover { color: var(--clr-gold); }

.nav__cta {
  padding: 10px 22px;
  font-size: 0.74rem;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.5);
}
.nav.scrolled .nav__cta {
  color: var(--clr-black);
  border-color: var(--clr-black);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav.scrolled .nav__toggle span { background: var(--clr-black); }

/* ── 7. Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--clr-black);
  position: relative;
  overflow: hidden;
}

/* Split layout — text in flow, photo absolutely fills right 55% */
.hero__split {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero__left {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 60px) clamp(20px, 5vw, 80px) 80px;
}

.hero__content { max-width: 520px; }

/* Photo: absolute, anchored right, takes 55% of width */
.hero__right {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Wide gradient: fades photo into dark bg across ~60% of the photo column */
.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--clr-black)        0%,
    rgba(14,12,10,0.92)    15%,
    rgba(14,12,10,0.6)     35%,
    rgba(14,12,10,0.15)    58%,
    transparent            75%
  );
  z-index: 2;
  pointer-events: none;
}

.hero__photo-frame {
  width: 100%;
  height: 100%;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Gold accent line on far right */
.hero__right::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--clr-gold), transparent);
  z-index: 3;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 0.8s var(--ease) 0.15s forwards;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--clr-white);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFade 0.9s var(--ease) 0.3s forwards;
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 0.8s var(--ease) 0.48s forwards;
}

.hero .btn--gold {
  padding: 16px 44px;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFade 0.8s var(--ease) 0.62s forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes heroFade  { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.9); }
  50%       { opacity: 0.9; transform: scaleY(1.1); }
}

/* ── 8. About ──────────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.about__image-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--clr-cream-dark);
}
.about__image-frame::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,169,110,0.25);
  pointer-events: none;
  z-index: 1;
  transition: border-color var(--dur) var(--ease);
}
.about__image-frame:hover::after {
  border-color: rgba(201,169,110,0.5);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: none;
}
.about__img.loaded { display: block; }

.about__image-placeholder {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: rgba(201,169,110,0.35);
  letter-spacing: -0.02em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.about__body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--clr-muted);
  line-height: 1.9;
}
.about__body p + p { margin-top: 20px; }

/* ── 9. Stats ──────────────────────────────────────────────────────────────── */
.stats { background: var(--clr-black); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 60px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--dur) var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover      { background: rgba(201,169,110,0.04); }

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 14px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 150px;
  margin: 0 auto;
}

/* ── 10. Signature Talks ───────────────────────────────────────────────────── */
.talks__header {
  max-width: 640px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.talks__list {
  border-top: 1px solid var(--clr-border);
}

.talk-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: padding var(--dur) var(--ease);
}
.talk-item:hover {
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
  background: var(--clr-cream);
}

.talk-number {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--clr-gold);
  letter-spacing: 0.05em;
  padding-top: 6px;
}

.talk-content { display: flex; flex-direction: column; gap: 10px; }

.talk-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--clr-black);
  line-height: 1.2;
}

.talk-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--clr-gold);
  font-weight: 400;
}

.talk-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--clr-muted);
  line-height: 1.85;
  max-width: 680px;
  margin-top: 8px;
}
.talk-desc p + p { margin-top: 12px; }

.talks__footer {
  margin-top: clamp(40px, 5vw, 64px);
  text-align: center;
}

/* ── 11. Social ────────────────────────────────────────────────────────────── */
.social__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.social__card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
}

.social__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-black);
  border-radius: 50%;
  flex-shrink: 0;
}
.social__icon svg { width: 20px; height: 20px; fill: white; }

.social__platform-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 2px;
}
.social__handle {
  font-size: 0.82rem;
  color: var(--clr-gold);
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}
.social__handle:hover { color: var(--clr-gold-dark); }

.social__embed-area {
  flex: 1;
  background: var(--clr-cream);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  min-height: 420px;
}
.social__embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 48px 40px;
}
.social__embed-placeholder p { font-size: 0.9rem; color: var(--clr-muted); margin-bottom: 24px; font-weight: 300; }

/* TikTok embed — force fill the card */
.social__tiktok-embed {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.social__tiktok-embed blockquote {
  flex: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}
.social__tiktok-embed iframe {
  width: 100% !important;
  min-width: 0 !important;
  flex: 1;
}

.social__embed-placeholder {
  text-align: center;
  padding: 48px 40px;
}
.social__embed-placeholder p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin-bottom: 24px;
  font-weight: 300;
}

/* ── 11a. Instagram Stats Bar (inside card) ────────────────────────────────── */
.ig-stats-bar {
  display: flex;
  border-bottom: 1px solid var(--clr-border);
}
.ig-stats-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  border-right: 1px solid var(--clr-border);
}
.ig-stats-bar__item:last-child { border-right: none; }

.ig-stats-bar__value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-black);
  line-height: 1;
  margin-bottom: 4px;
}
.ig-stats-bar__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ── 11b. Instagram Grid ───────────────────────────────────────────────────── */
.social__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--clr-border);
}
.social__follow-btn {
  margin-left: auto;
  padding: 9px 20px;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--clr-cream-dark);
}

.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  background: var(--clr-cream-dark);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.ig-tile:hover img { transform: scale(1.05); }

.ig-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,12,10,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.ig-tile:hover .ig-tile__overlay { opacity: 1; }
.ig-tile__overlay svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Empty placeholder tile */
.ig-tile--empty {
  background: var(--clr-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease);
}
.ig-tile--empty:hover { background: var(--clr-border); }
.ig-tile--empty svg {
  width: 28px;
  height: 28px;
  fill: rgba(201,169,110,0.35);
  transition: fill 0.25s var(--ease);
}
.ig-tile--empty:hover svg { fill: var(--clr-gold); }

/* ── 12. Speaking ──────────────────────────────────────────────────────────── */
.speaking { background: var(--clr-black); }

/* Featured workshop card */
.speaking__workshop { margin-bottom: clamp(48px, 6vw, 72px); }

.workshop-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border: 1px solid rgba(201,169,110,0.2);
  max-width: 920px;
}

.workshop-card__left {
  padding: clamp(32px, 4vw, 52px);
  background: rgba(201,169,110,0.05);
  border-right: 1px solid rgba(201,169,110,0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.workshop-card__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.workshop-card__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
}

.workshop-card__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.workshop-card__right {
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workshop-card__body {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}

.workshop-card__pitch {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.workshop-card__formats {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.workshop-card__formats svg {
  width: 16px;
  height: 16px;
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.workshop-card__formats span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--clr-gold);
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 720px) {
  .workshop-card {
    grid-template-columns: 1fr;
  }
  .workshop-card__left {
    border-right: none;
    border-bottom: 1px solid rgba(201,169,110,0.2);
  }
}

/* Google Form embed — responsive wrapper */
.gform-wrap {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px);
  background: var(--clr-white);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  overflow: hidden;
}
.gform-iframe {
  display: block;
  width: 100%;
  min-height: 1500px;
  height: 1500px;
  border: none;
  background: var(--clr-white);
}

@media (max-width: 960px) {
  .gform-iframe {
    min-height: 1380px;
    height: 1380px;
  }
}

@media (max-width: 640px) {
  .gform-wrap {
    padding: 8px;
  }

  .gform-iframe {
    min-height: 1280px;
    height: 1280px;
  }
}

/* ── 13. Footer ────────────────────────────────────────────────────────────── */
.footer { background: #080604; border-top: 1px solid rgba(255,255,255,0.05); }

.footer__inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding-top: 52px;
  padding-bottom: 52px;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
}
.footer__tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.footer__nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur) var(--ease);
}
.footer__nav a:hover { color: var(--clr-gold); }

.footer__email {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur) var(--ease);
}
.footer__email:hover { color: var(--clr-gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  text-align: center;
}

/* ── 14. Scroll Reveal ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ── 15. Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__right           { width: 45%; }
  .hero__right::before   { background: linear-gradient(to right, var(--clr-black) 0%, rgba(14,12,10,0.95) 30%, rgba(14,12,10,0.4) 65%, transparent 100%); }
  .hero__left            { padding: calc(var(--nav-h) + 40px) clamp(20px, 5vw, 60px) 80px; }

  .nav__links, .nav__cta { display: none; }
  .nav__toggle           { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--clr-white);
    padding: 32px clamp(20px, 5vw, 60px) 40px;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-top: 1px solid var(--clr-border);
  }
  .nav__links.open a {
    color: var(--clr-text);
    font-size: 0.95rem;
    padding: 4px 0;
  }

  .about__grid { grid-template-columns: 1fr; }
  .about__image-frame { aspect-ratio: 4/3; max-height: 420px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }

  .social__grid { grid-template-columns: 1fr; }
  .form__row    { grid-template-columns: 1fr; }

  .footer__inner      { flex-direction: column; text-align: center; gap: 20px; }
  .footer__nav        { margin-left: 0; }
}

@media (max-width: 640px) {
  /* Push text to the bottom so it sits below her face */
  .hero__split {
    align-items: flex-end;
  }
  .hero__left {
    padding-top: 0;
    padding-bottom: clamp(18px, 7vw, 50px);
    width: 100%;
  }

  /* Full-bleed photo fills the hero */
  .hero__right {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100% !important;
    height: 100%;
    z-index: 1;
  }
  /* Clear at the top (show her face), fade to near-black at the bottom (text area) */
  .hero__right::before {
    background: linear-gradient(
      to bottom,
      transparent              0%,
      transparent              40%,
      rgba(14, 12, 10, 0.25)   55%,
      rgba(14, 12, 10, 0.80)   72%,
      rgba(14, 12, 10, 0.97)   86%,
      rgba(14, 12, 10, 1.00)  100%
    ) !important;
  }
  .hero__right::after { display: none; }
  /* Shift image down ~30% to skip the gray background above her head */
  .hero__photo { object-position: center 30%; }

  .talk-item             { grid-template-columns: 1fr; gap: 8px; }
  .stats__grid           { grid-template-columns: 1fr; }
  .stat-item             { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child  { border-bottom: none; }
  .talk-item:hover       { padding: 52px 0; margin: 0; background: none; }
}
