:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-soft: #101010;
  --text: #f1f1ed;
  --text-soft: #cbcbc6;
  --muted: #a7a7a2;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --glow: rgba(255, 255, 255, 0.14);
  --max: 1200px;
  --max-narrow: 820px;
  --page-gutter: clamp(1.25rem, 3.6vw, 2.75rem);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-image: url("assets/hello-mentor-cover.jpg");
  --font-headline: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --font-body: "Lora", "Iowan Old Style", "Georgia", serif;
  --font-ui: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  --fs-h1: clamp(3.5rem, 7vw, 5rem);
  --fs-h2: clamp(2.5rem, 5vw, 3.5rem);
  --fs-h3: clamp(1.75rem, 3.2vw, 2.25rem);
  --fs-h4: clamp(1.375rem, 2.2vw, 1.75rem);
  --fs-h5: clamp(1.125rem, 1.6vw, 1.25rem);
  --fs-h6: clamp(1rem, 1.45vw, 1.125rem);
  --fs-body: clamp(1rem, 1.05vw, 1.125rem);
  --fs-body-lg: clamp(1.125rem, 1.35vw, 1.25rem);
  --fs-small: clamp(0.8125rem, 0.9vw, 0.875rem);
  --fs-caption: clamp(0.75rem, 0.82vw, 0.8125rem);
  --fs-quote: clamp(1.25rem, 1.7vw, 1.5rem);
  --lh-h1: 0.92;
  --lh-h2: 0.95;
  --lh-h3: 1;
  --lh-body: 1.65;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.06), transparent 26%), var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-variant-numeric: tabular-nums;
}

a {
  color: inherit;
  font-weight: 500;
  text-decoration-color: rgba(241, 241, 237, 0.55);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.16em;
  transition: text-decoration-color 180ms ease, text-decoration-thickness 180ms ease, opacity 180ms ease;
}

a:hover,
a:focus-visible {
  text-decoration-color: rgba(241, 241, 237, 0.95);
  text-decoration-thickness: 0.085em;
}

p {
  margin: 0 0 0.9em;
  max-width: 72ch;
  color: var(--text-soft);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.35em;
}

h1,
h2,
h3 {
  font-family: var(--font-headline);
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  letter-spacing: 0.04em;
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: 0.035em;
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  letter-spacing: 0.03em;
}

h4,
h5,
h6 {
  font-family: var(--font-ui);
  font-weight: 650;
}

h4 {
  font-size: var(--fs-h4);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h5 {
  font-size: var(--fs-h5);
  line-height: 1.25;
  letter-spacing: -0.005em;
}

h6 {
  font-size: var(--fs-h6);
  line-height: 1.3;
}

blockquote {
  margin: 0 0 0.9em;
  max-width: 72ch;
  font-size: var(--fs-quote);
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
}

.text-body-large {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
}

.text-small {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.text-caption {
  font-family: var(--font-ui);
  font-size: var(--fs-caption);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

.skip-link {
  position: absolute;
  top: 0;
  left: -10000px;
  z-index: 999;
  padding: 0.65rem 0.9rem;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-family: var(--font-ui);
}

.skip-link:focus {
  left: 0;
}

.shell {
  width: min(var(--max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.shell-narrow {
  width: min(var(--max-narrow), calc(100% - (var(--page-gutter) * 2)));
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 30;
  width: 100%;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(7px);
  transition: border-color 220ms var(--ease), background-color 220ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.82);
  border-color: rgba(255, 255, 255, 0.09);
}

.site-header .shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.wordmark img {
  width: clamp(118px, 11vw, 156px);
  height: auto;
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.15rem;
}

.nav-list a {
  font-family: var(--font-ui);
  text-decoration: none;
  color: #bebeb8;
  font-size: var(--fs-small);
  font-weight: 500;
  transition: color 180ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.8) 100%);
  z-index: -2;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.09), transparent 32%),
    radial-gradient(circle at 14% 80%, rgba(255, 255, 255, 0.05), transparent 32%);
  z-index: -1;
}

.hero-content {
  padding-top: 6rem;
  padding-bottom: 4.5rem;
}

.eyebrow {
  font-family: var(--font-ui);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #c8c8c3;
  font-size: var(--fs-caption);
  font-weight: 500;
  line-height: 1.4;
}

.hero-subhead {
  margin: 0.4rem 0 0;
  max-width: 28ch;
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: #d8d8d2;
}

.hero-bio {
  margin: 1.2rem 0 0;
  max-width: 72ch;
  color: var(--text-soft);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.73rem 1.3rem;
  font-family: var(--font-ui);
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), background-color
    220ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(0, 0, 0, 0.2);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: #ffffff;
  box-shadow: 0 0 26px var(--glow);
}

.button-solid {
  margin-top: 1.5rem;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #050505;
}

.button-solid:hover,
.button-solid:focus-visible {
  background: transparent;
  color: #ffffff;
}

.section-divider {
  height: 1px;
  width: min(var(--max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, var(--line) 18%, var(--line) 82%, transparent 100%);
}

.section {
  padding: clamp(4.6rem, 9vw, 8rem) 0;
}

.section h2 {
  margin-bottom: 0.6em;
}

.section-intro {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.05), transparent 32%),
    radial-gradient(circle at 84% 78%, rgba(255, 255, 255, 0.04), transparent 36%),
    var(--bg);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
}

.intro-portrait {
  margin: 0;
  position: sticky;
  top: 94px;
}

.intro-portrait img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
}

.intro-copy .eyebrow {
  margin-bottom: 0.45rem;
}

.intro-copy h2 {
  margin-bottom: 0.6em;
}

.intro-copy p {
  margin-top: 0;
  color: var(--text-soft);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.intro-copy .intro-signoff {
  margin-top: 1.2rem;
  color: #f1f1f1;
}

.section-story .shell {
  width: min(1200px, calc(100% - (var(--page-gutter) * 2)));
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
}

.story-copy {
  max-width: 64ch;
}

.story-copy p {
  margin-top: 0;
  color: var(--text-soft);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.story-media {
  margin: 0;
}

.story-media img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.section-head {
  max-width: 64ch;
  margin-bottom: 2rem;
}

.section-head p {
  margin-top: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.section-social .shell {
  width: min(1380px, calc(100% - (var(--page-gutter) * 2)));
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.social-card {
  background: linear-gradient(165deg, #0f0f0f 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.9rem 0.9rem 1rem;
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease);
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.embed-frame {
  overflow: hidden;
  border-radius: 14px;
  background: #060606;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.embed-frame iframe {
  width: 100%;
  border: 0;
  display: block;
  aspect-ratio: 9 / 16;
  background: #000000;
  transition: transform 340ms var(--ease);
}

.social-card:hover .embed-frame iframe {
  transform: scale(1.02);
}

.social-card p {
  margin: 0.85rem 0 0;
  color: #d3d3d3;
  font-size: 0.9rem;
}

.inline-link {
  font-family: var(--font-ui);
  display: inline-block;
  margin-top: 0.6rem;
  color: #d7d7d2;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 0.18rem;
  font-size: var(--fs-small);
  font-weight: 500;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

.section-podcast {
  background:
    radial-gradient(circle at 88% 2%, rgba(118, 76, 255, 0.24), transparent 34%),
    radial-gradient(circle at 16% 84%, rgba(38, 170, 255, 0.16), transparent 34%),
    var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.podcast-shell {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
}

.podcast-head {
  max-width: 62ch;
}

.podcast-subhead {
  margin-top: 0;
  color: var(--text-soft);
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  max-width: 52ch;
}

.podcast-stage {
  margin-top: 1.55rem;
}

.podcast-hero-card {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.95), rgba(11, 11, 11, 0.92)),
    radial-gradient(circle at 82% 6%, rgba(141, 86, 255, 0.32), transparent 34%);
  display: grid;
  grid-template-columns: minmax(460px, 1.05fr) minmax(520px, 0.95fr);
  gap: clamp(1.2rem, 2.8vw, 2.3rem);
  align-items: stretch;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.podcast-cover-art {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  object-position: center;
}

.podcast-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 48rem;
  padding: clamp(0.15rem, 0.9vw, 0.55rem) 0;
}

.podcast-kicker {
  font-family: var(--font-ui);
  margin: 0 0 0.55rem;
  color: #d3c9ff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: var(--fs-caption);
  font-weight: 500;
  line-height: 1.4;
}

.podcast-hero-copy h3 {
  margin: 0;
  max-width: 20.5ch;
  font-size: clamp(2.05rem, 2.55vw, 3rem);
  line-height: 0.94;
  letter-spacing: 0.028em;
}

.podcast-hero-copy p {
  margin: 0.72rem 0 0;
  color: var(--text-soft);
  max-width: 50ch;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.podcast-hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.podcast-hero-actions .button-solid {
  margin-top: 0;
}

.podcast-embed-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.podcast-player-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: #0a0a0a;
}

.podcast-player {
  width: 100%;
  height: 352px;
  border: 0;
}

.section-speaking {
  background:
    radial-gradient(circle at 84% 16%, rgba(129, 96, 255, 0.14), transparent 38%),
    var(--bg);
}

.speaking-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.1rem, 2.5vw, 2.2rem);
  align-items: start;
}

.speaking-media {
  margin: 0;
}

.speaking-media img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.speaking-copy {
  max-width: 68ch;
}

.speaking-copy p {
  margin-top: 0;
  color: var(--text-soft);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.section-links {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.06), transparent 34%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.05rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  text-decoration: none;
  min-height: 100px;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.link-card strong {
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 600;
  color: #f2f2f2;
}

.link-card span {
  font-family: var(--font-ui);
  color: #afafaf;
  font-size: 0.83rem;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.section-contact {
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 255, 255, 0.07), transparent 35%),
    var(--bg);
}

.contact-direct {
  padding: clamp(1.3rem, 2.8vw, 2.1rem);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #0a0a0a;
}

.contact-direct p {
  margin-top: 0;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  font-family: var(--font-ui);
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  font-weight: 600;
  color: #f0f0f0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  padding-bottom: 0.12rem;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-bottom-color: #ffffff;
}

.site-footer {
  padding: 1.8rem 0 2rem;
  background: #030303;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  align-items: center;
  justify-content: center;
}

.footer-shell a {
  font-family: var(--font-ui);
  color: #939393;
  text-decoration: none;
  font-size: 0.86rem;
}

.footer-shell a:hover,
.footer-shell a:focus-visible {
  color: #ffffff;
}

.footer-copy {
  font-family: var(--font-ui);
  margin: 0.9rem 0 0;
  text-align: center;
  color: #757575;
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speaking-layout {
    grid-template-columns: 1fr;
  }

  .speaking-media img {
    max-height: 620px;
    object-fit: cover;
  }

  .podcast-hero-card {
    grid-template-columns: 1fr;
  }

  .podcast-cover-art {
    max-width: 100%;
    min-height: 400px;
  }

  .podcast-hero-copy {
    max-width: 100%;
    padding-top: 0.35rem;
  }

  .podcast-hero-copy h3 {
    max-width: 22ch;
  }

}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .site-header .shell {
    min-height: 64px;
  }

  .nav-list {
    gap: 0.8rem;
  }

  .nav-list a {
    font-size: 0.8rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero {
    min-height: 100svh;
    background-position: center 25%;
  }

  .hero-content {
    padding-top: 5.8rem;
    padding-bottom: 3.4rem;
  }

  .intro-layout {
    grid-template-columns: 1fr;
  }

  .intro-portrait {
    position: static;
    max-width: min(100%, 420px);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .podcast-player {
    height: 300px;
  }

  .contact-email {
    font-size: 1.04rem;
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
