:root {
  color-scheme: dark;
  --ink: #0a0a0b;
  --ink-soft: #111114;
  --panel: #17171b;
  --paper: #f3efe8;
  --muted: #b5b0a8;
  --line: rgba(255, 255, 255, 0.13);
  --copper: #c7956b;
  --copper-bright: #e1b38c;
  --max: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(199, 149, 107, 0.13), transparent 30rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus { top: 1rem; }

.site-header {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper-bright);
  font-family: var(--serif);
}

nav { display: flex; align-items: center; gap: 1.6rem; }
nav a { color: var(--muted); text-decoration: none; font-size: .94rem; }
nav a:hover, nav a:focus-visible { color: var(--paper); }

.nav-cta {
  padding: .55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  min-height: calc(100vh - 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding: 5rem 0 6rem;
}

.eyebrow, .section-label {
  margin: 0 0 1.1rem;
  color: var(--copper-bright);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 780px;
  margin-bottom: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.055em;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 2rem;
  color: #d2cec7;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--paper); color: var(--ink); }
.button-primary:hover { background: white; }
.button-secondary { border: 1px solid var(--line); color: var(--paper); }
.button-secondary:hover { border-color: rgba(255,255,255,.35); }

.signature {
  margin: 2.1rem 0 0;
  color: var(--copper-bright);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.portrait-wrap {
  position: relative;
  justify-self: end;
  width: min(100%, 510px);
  isolation: isolate;
}

.portrait-halo {
  position: absolute;
  inset: 3% 1% 16%;
  z-index: -1;
  border: 1px solid rgba(225, 179, 140, .28);
  border-radius: 50% 50% 44% 44%;
  transform: rotate(4deg);
}

.portrait {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  filter: saturate(.9) contrast(1.02);
}

.portrait-caption {
  position: absolute;
  right: 0;
  bottom: 5%;
  width: min(85%, 330px);
  padding: 1rem 1.1rem;
  background: rgba(15, 15, 17, .86);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.portrait-caption strong, .portrait-caption span { display: block; }
.portrait-caption strong { font-size: 1rem; }
.portrait-caption span { color: var(--muted); font-size: .88rem; }

.credibility {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.credibility span {
  padding: 1.2rem;
  color: var(--muted);
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.credibility span + span { border-left: 1px solid var(--line); }

.section {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(2rem, 8vw, 8rem);
}

h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.about-copy { padding-top: .55rem; }
.about-copy p { color: #c9c4bd; font-size: 1.08rem; }

.topics {
  width: min(calc(100% - 1.25rem), 1380px);
  padding-left: clamp(.6rem, 4vw, 4rem);
  padding-right: clamp(.6rem, 4vw, 4rem);
  background: var(--paper);
  color: var(--ink);
  border-radius: 1.5rem;
}

.topics .section-label { color: #865e3f; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.section-heading > p { color: #595651; font-size: 1.05rem; }

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10,10,11,.18);
  border-left: 1px solid rgba(10,10,11,.18);
}

.topic-card {
  min-height: 270px;
  padding: 1.5rem;
  border-right: 1px solid rgba(10,10,11,.18);
  border-bottom: 1px solid rgba(10,10,11,.18);
}

.topic-card > span {
  display: block;
  margin-bottom: 3rem;
  color: #8b8177;
  font-family: var(--serif);
}

.topic-card h3 {
  margin-bottom: .65rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
}

.topic-card p { margin-bottom: 0; color: #625e58; }
.topic-featured { background: #17171b; color: var(--paper); }
.topic-featured p { color: #bbb6ae; }
.topic-featured > span { color: var(--copper-bright); }

.watch-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(3rem, 10vw, 9rem);
  align-items: end;
}

.watch-copy p:last-child { max-width: 660px; color: var(--muted); font-size: 1.08rem; }

.social-links { border-top: 1px solid var(--line); }
.social-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem .25rem;
  border-bottom: 1px solid var(--line);
  color: #d5d0c9;
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}
.social-links a:hover { color: var(--copper-bright); padding-left: .55rem; }

footer {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  color: #85817b;
  font-size: .78rem;
}

.footer-brand { margin-bottom: .7rem; color: var(--paper); font-family: var(--serif); font-size: 1.15rem; }
footer p { max-width: 900px; }
.copyright { margin-bottom: 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 4rem; }
  .portrait-wrap { justify-self: center; width: min(88vw, 500px); }
  .about-grid, .section-heading, .watch-section { grid-template-columns: 1fr; gap: 2rem; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { min-height: 4.7rem; }
  .brand-name { display: none; }
  nav { gap: 1rem; }
  nav a { font-size: .88rem; }
  h1 { font-size: clamp(3.1rem, 16vw, 4.7rem); }
  .hero { padding: 3.5rem 0 4.5rem; }
  .portrait-caption { position: relative; width: 100%; bottom: auto; margin-top: -1.25rem; }
  .credibility { grid-template-columns: 1fr; }
  .credibility span + span { border-left: 0; border-top: 1px solid var(--line); }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
