:root {
  --bg: #080604;
  --bg-soft: #100a06;
  --surface: #171008;
  --surface-2: #21150b;
  --line: rgba(247, 218, 169, 0.16);
  --cream: #fff4df;
  --muted: #d6c2a2;
  --gold: #e1a04a;
  --orange: #f07a1f;
  --orange-bright: #ff962f;
  --teal: #05616b;
  --teal-bright: #178b8c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 122, 31, .08), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(5, 97, 107, .08), transparent 30rem),
    var(--bg);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  transform: translateY(-150%); padding: 10px 14px; border-radius: 10px;
  background: var(--cream); color: #111; font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(72px, 9vw, 128px) 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.025em; line-height: 1.08; }
h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(3rem, 7.4vw, 6.75rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.35rem, 5vw, 4.8rem); }
h3 { margin-bottom: 14px; font-size: clamp(1.7rem, 3vw, 2.7rem); }
p { color: var(--muted); }
.eyebrow, .kicker {
  margin-bottom: 16px; color: var(--gold); font-size: .78rem; font-weight: 900;
  letter-spacing: .18em; text-transform: uppercase;
}
.section-heading { max-width: 820px; margin-bottom: 52px; }
.section-heading > p:last-child { max-width: 720px; font-size: 1.08rem; }

.site-header {
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent;
  background: rgba(8, 6, 4, .72); backdrop-filter: blur(18px); transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(8, 6, 4, .94); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 44px; aspect-ratio: 1; border: 1px solid rgba(240, 122, 31, .45);
  border-radius: 50%; background: linear-gradient(145deg, #3a1a06, #0c0805); color: var(--orange-bright);
  font-family: Georgia, serif; font-weight: 900; box-shadow: inset 0 0 22px rgba(240, 122, 31, .12);
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: Georgia, serif; font-size: 1.06rem; }
.brand small { margin-top: 1px; color: var(--muted); font-size: .72rem; letter-spacing: .06em; }
.primary-nav { display: flex; align-items: center; gap: 26px; font-size: .92rem; font-weight: 750; }
.primary-nav a { color: #ead9bd; transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--orange-bright); }
.nav-cta { padding: 10px 16px; border: 1px solid rgba(240, 122, 31, .48); border-radius: 999px; background: rgba(240, 122, 31, .08); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 9px; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--cream); transition: transform .2s ease, opacity .2s ease; }

.hero { min-height: calc(100vh - 78px); display: grid; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-text { max-width: 770px; margin-bottom: 26px; font-size: clamp(1.05rem, 1.45vw, 1.24rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 20px;
  border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-weight: 850; line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--orange), var(--gold)); color: #180b02; box-shadow: 0 12px 32px rgba(240, 122, 31, .22); }
.button-primary:hover, .button-primary:focus-visible { box-shadow: 0 16px 40px rgba(240, 122, 31, .34); }
.button-secondary { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); color: var(--cream); }
.button-ghost { border-color: rgba(240, 122, 31, .45); color: #ffd8a3; background: rgba(240, 122, 31, .06); }
.button-teal { background: linear-gradient(135deg, var(--teal), var(--teal-bright)); color: white; box-shadow: 0 12px 32px rgba(5, 97, 107, .2); }
.hero-points { display: flex; flex-wrap: wrap; gap: 11px 24px; margin: 28px 0 0; padding: 0; list-style: none; color: #dfc8a8; font-size: .92rem; }
.hero-points li::before { content: "✦"; margin-right: 8px; color: var(--orange); }
.hero-media { position: relative; }
.portrait-frame { position: relative; padding: 14px; border: 1px solid var(--line); border-radius: 40px; background: linear-gradient(145deg, rgba(240,122,31,.12), rgba(255,255,255,.03)); box-shadow: var(--shadow); }
.portrait-frame img { width: 100%; min-height: 560px; object-fit: cover; object-position: center; border-radius: 29px; }
.portrait-card { position: absolute; left: 32px; right: 32px; bottom: 30px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(8,6,4,.78); backdrop-filter: blur(15px); }
.portrait-card strong, .portrait-card span { display: block; }
.portrait-card strong { font-family: Georgia, serif; font-size: 1.15rem; }
.portrait-card span { margin-top: 3px; color: var(--muted); font-size: .88rem; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .2; pointer-events: none; }
.glow-one { width: 360px; height: 360px; top: 10%; left: -180px; background: var(--orange); }
.glow-two { width: 420px; height: 420px; bottom: -160px; right: -130px; background: var(--teal); }

.section-podcasts { border-top: 1px solid var(--line); background: linear-gradient(180deg, #0b0704, #100905); }
.podcast-feature { display: grid; grid-template-columns: minmax(300px, .88fr) 1.12fr; gap: clamp(30px, 6vw, 78px); align-items: center; padding: clamp(22px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.025); box-shadow: var(--shadow); }
.podcast-feature + .podcast-feature { margin-top: 34px; }
.podcast-feature-alt { grid-template-columns: 1.12fr minmax(300px, .88fr); }
.podcast-feature-alt .podcast-art { order: 2; }
.podcast-art { overflow: hidden; border-radius: 26px; }
.podcast-art img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.dark-art { border: 1px solid rgba(240,122,31,.24); box-shadow: 0 20px 55px rgba(0,0,0,.38); }
.radiance-art { border: 1px solid rgba(23,139,140,.35); box-shadow: 0 20px 55px rgba(0,0,0,.32); }
.podcast-copy p:not(.kicker) { font-size: 1.04rem; }
.podcast-copy blockquote { margin: 26px 0; padding: 17px 20px; border-left: 3px solid var(--orange); background: rgba(240,122,31,.06); color: #ffe1b9; font-family: Georgia, serif; font-size: 1.22rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag-row span { padding: 7px 11px; border: 1px solid rgba(240,122,31,.32); border-radius: 999px; background: rgba(240,122,31,.06); color: #ecc796; font-size: .76rem; font-weight: 800; letter-spacing: .04em; }
.teal-text { color: #5cc2c2; }
.teal-tags span { border-color: rgba(23,139,140,.4); background: rgba(23,139,140,.08); color: #a9e0dc; }

.section-coaching { background: radial-gradient(circle at 90% 20%, rgba(5,97,107,.13), transparent 35rem), var(--bg); }
.coaching-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.coaching-copy { position: sticky; top: 120px; }
.coaching-copy p { font-size: 1.04rem; }
.fine-print { margin-top: 16px; font-size: .78rem !important; opacity: .76; }
.coaching-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.coaching-cards article { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(155deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); }
.coaching-cards article:nth-child(2), .coaching-cards article:nth-child(4) { transform: translateY(30px); }
.coaching-cards span { color: var(--orange); font-size: .76rem; font-weight: 900; letter-spacing: .16em; }
.coaching-cards h3 { margin-top: 28px; font-size: 1.7rem; }
.coaching-cards p { margin-bottom: 0; font-size: .93rem; }

.section-speaking { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #140c06, #0b0704); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 7vw, 90px); align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.text-link { color: #ffd49e; font-weight: 850; border-bottom: 1px solid rgba(255,212,158,.35); }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.speaking-gallery { display: grid; grid-template-columns: 1.45fr .75fr; gap: 20px; }
.speaking-gallery figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
.speaking-gallery img { width: 100%; height: 100%; object-fit: cover; }
.speaker-main { min-height: 660px; }
.speaker-main img { object-position: center; }
.speaker-side { display: grid; grid-template-rows: 1fr auto; }
.speaker-side img { min-height: 390px; object-position: center; }
.speaker-side figcaption { padding: 26px; }
.speaker-side figcaption strong { display: block; font-family: Georgia, serif; font-size: 1.3rem; }
.speaker-side ul { margin: 14px 0 0; padding-left: 20px; color: var(--muted); font-size: .9rem; }
.speaker-side li + li { margin-top: 8px; }

.section-voiceover { background: radial-gradient(circle at 0 50%, rgba(240,122,31,.1), transparent 30rem), var(--bg); }
.voice-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(35px, 7vw, 90px); align-items: center; }
.voice-copy p { max-width: 650px; font-size: 1.04rem; }
.audio-card { padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--surface-2), #0d0805); box-shadow: var(--shadow); }
.audio-icon { display: grid; place-items: center; width: 56px; aspect-ratio: 1; margin-bottom: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--gold)); color: #160b03; font-size: 1.6rem; font-weight: 900; }
.audio-card h3 { font-size: 2rem; }
audio { width: 100%; margin: 18px 0 22px; accent-color: var(--orange); }

.section-contact { border-top: 1px solid var(--line); background: linear-gradient(180deg, #100904, #060403); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.contact-copy > p { max-width: 570px; }
.contact-methods { display: grid; gap: 10px; margin: 28px 0; }
.contact-methods a { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-methods span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-methods strong { word-break: break-word; }
.qr-card { display: inline-flex; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.03); }
.qr-card img { width: 70px; height: 70px; padding: 5px; border-radius: 9px; background: white; }
.qr-card strong, .qr-card small { display: block; }
.qr-card small { color: var(--muted); }
.contact-form { display: grid; gap: 18px; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.03); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: #f5dfbd; font-size: .86rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: #0d0906; color: var(--cream); padding: 13px 14px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,122,31,.12); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .button { justify-self: start; border: 0; }
.hidden-field { display: none; }
.form-note { margin: -4px 0 0; font-size: .76rem; }

.site-footer { padding: 54px 0 24px; border-top: 1px solid var(--line); background: #050302; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr; gap: 40px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid > div:first-child p { max-width: 500px; font-size: .92rem; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 7px; color: var(--gold); font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { color: var(--muted); font-size: .9rem; }
.footer-links a:hover { color: var(--orange-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); color: #9e8b70; font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .primary-nav { gap: 16px; }
  .hero { min-height: auto; }
  .hero-grid, .coaching-grid, .voice-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 30px; }
  .hero-media { max-width: 700px; }
  .portrait-frame img { min-height: 0; }
  .podcast-feature, .podcast-feature-alt { grid-template-columns: 1fr; }
  .podcast-feature-alt .podcast-art { order: 0; }
  .podcast-art { max-width: 620px; }
  .coaching-copy { position: static; }
  .coaching-cards article:nth-child(2), .coaching-cards article:nth-child(4) { transform: none; }
  .split-heading { grid-template-columns: 1fr; align-items: start; }
  .speaking-gallery { grid-template-columns: 1fr; }
  .speaker-main { min-height: 0; }
  .speaker-side { grid-template-columns: .95fr 1.05fr; grid-template-rows: auto; }
  .speaker-side img { min-height: 100%; }
}

@media (max-width: 780px) {
  .site-header { background: rgba(8,6,4,.94); }
  .nav-toggle { display: block; z-index: 102; }
  .primary-nav { position: fixed; inset: 78px 0 auto 0; display: grid; gap: 0; padding: 14px 20px 24px; border-bottom: 1px solid var(--line); background: rgba(8,6,4,.98); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .25s ease, opacity .25s ease, visibility .25s ease; }
  .primary-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .primary-nav .nav-cta { margin-top: 10px; text-align: center; border: 1px solid rgba(240,122,31,.4); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .coaching-cards { grid-template-columns: 1fr; }
  .coaching-cards article { min-height: auto; }
  .speaker-side { grid-template-columns: 1fr; }
  .speaker-side img { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .brand small { display: none; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .hero-copy { padding-top: 14px; }
  .button-row .button { width: 100%; }
  .portrait-frame { padding: 8px; border-radius: 26px; }
  .portrait-frame img { border-radius: 19px; }
  .portrait-card { left: 18px; right: 18px; bottom: 18px; padding: 14px; }
  .podcast-feature { padding: 14px; border-radius: 24px; }
  .podcast-copy { padding: 8px 8px 14px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; }
  .contact-form .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .qr-card { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
