/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --text: #f5f5f5;
  --text-muted: #999;
  --accent: #d4a853;
  --accent-hover: #e6be6a;
  --surface: #141414;
  --border: #222;
  --max-w: 1200px;
  --font-heading: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: transform .3s, opacity .3s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-content { max-width: 800px; }

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: 24px;
}

.hero-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-hover); color: var(--bg); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--text-muted); }

/* ===== Social Proof ===== */
.proof {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.proof-label {
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}

@media (max-width: 768px) {
  .proof { padding: 32px 0; }
  .proof-label { margin-bottom: 16px; }
  .proof-logos {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0 36px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 24px;
    mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
  }
  .proof-logos::-webkit-scrollbar { display: none; }
  .proof-logos span,
  .proof-logos a { flex-shrink: 0; }
}

.proof-logos span {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.proof-logos a { display: flex; align-items: center; }

.proof-logo {
  height: 28px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.proof-logo:hover { opacity: 1; }

/* ===== Section shared ===== */
section { padding: 120px 0; }

.section-label {
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo {
  background: var(--surface);
  border-radius: 8px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .875rem;
  border: 1px solid var(--border);
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text);
  line-height: 1.1;
}

.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-height: 400px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-value { font-size: 1.75rem; }
}

/* ===== Speaking ===== */
.topics { display: grid; gap: 32px; }

.topic {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color .2s;
}
.topic:hover { border-color: var(--accent); }

.topic h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.topic p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
}

.speaking-cta { margin-top: 48px; }

/* ===== Podcast ===== */
.podcast-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

/* Mini carousel for non-featured appearances */
.podcast-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.podcast-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.podcast-carousel-track::-webkit-scrollbar { height: 6px; }
.podcast-carousel-track::-webkit-scrollbar-track { background: transparent; }
.podcast-carousel-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.podcast-mini {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.podcast-mini:hover { border-color: var(--accent); transform: translateY(-2px); color: var(--text); }

.podcast-mini img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.podcast-mini-info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.podcast-mini-info .show-name {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
}

.podcast-mini-info span:last-child {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-section-title--more {
  margin-top: 48px;
  font-size: 1.1rem;
}

.podcast-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.podcast-card:hover { border-color: var(--accent); }

.podcast-card .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--border);
  overflow: hidden;
}

.podcast-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

.podcast-card .thumb iframe {
  width: 100%; height: 100%; border: none;
}

.podcast-card .info {
  padding: 20px;
}

.podcast-card .show-name {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.podcast-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.podcast-card .links {
  display: flex;
  gap: 16px;
}

.podcast-card .links a {
  font-size: .85rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .podcast-grid { grid-template-columns: 1fr; }
  .podcast-featured { grid-template-columns: 1fr; }
  .podcast-mini { flex: 0 0 180px; }
}

/* ===== Social ===== */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sl-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, transform .2s;
  min-width: 0;
}
.sl-card:hover { border-color: var(--accent); transform: translateY(-1px); color: var(--text); }

.sl-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--accent);
}

.sl-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.sl-text strong {
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}

.sl-text span {
  font-size: .75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .social-links { gap: 10px; }
  .sl-card { padding: 12px 16px; gap: 10px; }
}

/* ===== Newsletter ===== */
.newsletter {
  text-align: center;
  border-top: 1px solid var(--border);
}

.newsletter .section-heading { max-width: 640px; margin-left: auto; margin-right: auto; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form input::placeholder { color: var(--text-muted); }

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--text-muted);
  font-size: .875rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: .8rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ===== Awards ===== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.award-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color .2s;
}
.award-card:hover { border-color: var(--accent); }

.award-icon { font-size: 2rem; margin-bottom: 16px; }

.award-card h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.award-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

/* ===== YouTube Feature ===== */
.yt-feature {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.yt-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.yt-embed iframe { width: 100%; height: 100%; border: none; }

.yt-feature-info .show-name {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.yt-feature-info h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.yt-feature-info .yt-desc {
  color: var(--text-muted);
  line-height: 1.7;
}

.podcast-section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--text-muted);
}

.podcast-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

@media (max-width: 768px) {
  .yt-feature { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== Newsletter Sub ===== */
.newsletter-sub {
  margin-top: 20px;
  font-size: .9rem;
  color: var(--text-muted);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
