:root {
  --ink: #171717;
  --cream: #f4f0e8;
  --paper: #fbfaf7;
  --red: #e33b2f;
  --red-dark: #b8231c;
  --muted: #74716b;
  --line: #d9d4cb;
  --shadow: 0 18px 40px rgba(34, 29, 22, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, select { font: inherit; }

.hero {
  min-height: 700px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgba(227, 59, 47, 0.28), transparent 30%),
    linear-gradient(120deg, #121212 0%, #1d1b19 62%, #281b19 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "N";
  position: absolute;
  right: -3vw;
  bottom: -19vw;
  font-size: min(55vw, 760px);
  line-height: 1;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  transform: rotate(-8deg);
  pointer-events: none;
}
.nav, .hero-content, .directory, footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.nav {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .08em; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; background: var(--red); color: #fff; font-size: 20px; letter-spacing: 0; transform: skew(-7deg); }
.channel-link { color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.45); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a { color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.hero-content { position: relative; z-index: 1; padding: 98px 0 74px; }
.eyebrow { margin: 0 0 22px; color: #f17267; font-size: 12px; letter-spacing: .2em; font-weight: 900; }
.eyebrow.dark { color: var(--red); }
h1 { margin: 0; max-width: 900px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5.2vw, 72px); line-height: 1.02; letter-spacing: -.045em; font-weight: 500; }
h1 em { color: #f07166; font-weight: 400; }
.hero-copy { max-width: 630px; margin: 38px 0 52px; font-size: 19px; line-height: 1.65; color: #c8c5c0; }
.stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.16); width: min(680px, 100%); }
.stats div { flex: 1; padding: 25px 30px 0 0; }
.stats div + div { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.16); }
.stats strong, .stats span { display: block; }
.stats strong { font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.stats span { margin-top: 6px; color: #9d9994; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

.about {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 108px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.about-portraits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.portrait { position: relative; min-width: 0; aspect-ratio: 3 / 4; margin: 0; overflow: hidden; background: #e8e2d9; box-shadow: var(--shadow); }
.portrait img { width: 100%; height: 100%; display: block; object-fit: cover; }
.portrait-business img { object-position: 51% 20%; }
.portrait-speaker img { object-position: 50% 18%; }
.portrait figcaption { position: absolute; inset: auto 0 0; padding: 22px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.84)); font-size: 15px; line-height: 1.3; font-weight: 900; letter-spacing: .03em; text-transform: uppercase; }
.portrait figcaption span { display: block; margin-bottom: 8px; color: #f07166; font-size: 11px; letter-spacing: .16em; }
.about-copy h2 em { color: var(--red); font-weight: 400; }
.about-lead { margin: 34px 0 18px; font-size: 20px; line-height: 1.6; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--muted); font-size: 16px; line-height: 1.75; }
.linkedin-button { display: inline-flex; align-items: center; gap: 12px; margin-top: 25px; padding: 15px 19px; color: #fff; background: var(--ink); text-decoration: none; font-size: 14px; font-weight: 800; }
.linkedin-button:hover { background: var(--red); }
.directory { padding: 100px 0 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
h2 { margin: 0; max-width: 690px; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 68px); line-height: 1.05; letter-spacing: -.035em; font-weight: 500; }
.results-label { color: var(--muted); font-size: 14px; white-space: nowrap; }
.toolbar { display: flex; gap: 14px; margin-bottom: 46px; padding-top: 26px; border-top: 1px solid var(--line); }
.search-box { flex: 1; min-height: 56px; display: flex; align-items: center; gap: 12px; padding: 0 18px; background: #fff; border: 1px solid var(--line); }
.search-box span { font-size: 25px; transform: rotate(-15deg); }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 16px; }
.sort-box { min-width: 230px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 15px 0 18px; background: #fff; border: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.sort-box select { border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 700; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px 24px; }
.video-card { min-width: 0; }
.thumbnail-link { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: #ddd5ca; text-decoration: none; }
.thumbnail { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.thumbnail-link::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,.62)); opacity: .65; transition: opacity .3s ease; }
.play { position: absolute; z-index: 2; left: 18px; bottom: 16px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff; font-size: 13px; padding-left: 2px; box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.watch-label { position: absolute; z-index: 2; left: 72px; bottom: 28px; color: #fff; font-size: 12px; font-weight: 800; opacity: 0; transform: translateX(-8px); transition: .3s ease; }
.thumbnail-link:hover .thumbnail { transform: scale(1.035); filter: saturate(1.08); }
.thumbnail-link:hover::after { opacity: .88; }
.thumbnail-link:hover .watch-label { opacity: 1; transform: none; }
.card-content { padding: 19px 2px 0; }
.guest { margin: 0 0 10px; color: var(--red-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.interview-title { margin: 0; font-family: Georgia, serif; font-size: 24px; line-height: 1.25; font-weight: 500; letter-spacing: -.015em; }
.teaser { min-height: 87px; margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; overflow-wrap: normal; word-break: normal; hyphens: none; }
.card-link { display: inline-block; margin-top: 18px; color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 3px; }
.card-link:hover { color: var(--red); border-color: var(--red); }
.load-more-wrap { text-align: center; margin-top: 70px; }
.load-more, .empty-state button { border: 1px solid var(--ink); background: transparent; color: var(--ink); padding: 15px 24px; cursor: pointer; font-weight: 800; }
.load-more:hover, .empty-state button:hover { background: var(--ink); color: #fff; }
.empty-state { text-align: center; padding: 70px 20px; border: 1px solid var(--line); }
.empty-state > span { font-size: 46px; }
.empty-state h3 { margin: 15px 0 7px; font-family: Georgia, serif; font-size: 30px; }
.empty-state p { color: var(--muted); margin: 0 0 22px; }

footer { min-height: 190px; display: flex; align-items: center; gap: 28px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-brand { color: var(--ink); }
footer p { margin-right: auto; }
footer > a { font-weight: 800; color: var(--ink); text-decoration: none; }

@media (max-width: 900px) {
  .hero { min-height: 650px; }
  .about { grid-template-columns: 1fr; }
  .about-portraits { width: min(760px, 100%); }
  .about-copy { max-width: 700px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: start; flex-direction: column; }
}
@media (max-width: 620px) {
  .nav, .hero-content, .directory, footer { width: min(100% - 30px, 1180px); }
  .nav { height: 76px; }
  .channel-link { font-size: 0; }
  .channel-link span { font-size: 18px; }
  .nav-links { gap: 18px; }
  .hero { min-height: 620px; }
  .hero-content { padding-top: 78px; }
  h1 { font-size: clamp(36px, 10.5vw, 52px); }
  .hero-copy { font-size: 16px; margin-top: 30px; }
  .stats div { padding-right: 13px; }
  .stats div + div { padding-left: 13px; }
  .stats strong { font-size: 23px; }
  .directory { padding: 72px 0 80px; }
  .about { width: min(100% - 30px, 1180px); padding: 78px 0 70px; gap: 50px; }
  .about-portraits { gap: 10px; }
  .portrait { aspect-ratio: 3 / 4.25; }
  .portrait figcaption { padding: 16px 12px; font-size: 11px; }
  .about-lead { font-size: 18px; }
  .toolbar { flex-direction: column; }
  .sort-box { min-height: 52px; }
  .video-grid { grid-template-columns: 1fr; gap: 38px; }
  footer { min-height: 240px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; }
  footer p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
