:root {
  --bg: #fbf5ec;
  --bg-elevated: #ffffff;
  --line: #e7dcc9;
  --text: #2a0a14;
  --text-dim: #7a6a5c;
  --maroon: #570420;
  --orange: #f0541b;
  --gold: #ffc20f;
  --display: 'Anton', 'Inter', sans-serif;
  --sans: 'Inter', sans-serif;
  --radius: 4px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--maroon);
  margin: 0;
}

p { color: var(--text-dim); margin: 0; }

a { color: inherit; text-decoration: none; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 236, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img, img.logo { display: block; height: 46px; width: auto; }

.logo.small img, img.logo.small { height: 40px; }

.main-nav { display: flex; gap: 32px; }

.main-nav a {
  font-family: var(--display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color 0.15s ease;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--orange); }

@media (max-width: 480px) {
  .main-nav { gap: 16px; flex-basis: 100%; justify-content: flex-start; }
  .main-nav a { font-size: 0.72rem; }
  .header-inner { height: auto; padding: 16px 0; flex-wrap: wrap; gap: 10px; }
}

/* hero */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.hero-copy { flex: 1 1 380px; min-width: 0; max-width: 640px; }

.eyebrow {
  font-family: var(--display);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-pills { display: flex; gap: 12px; flex-wrap: wrap; }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--maroon);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  color: var(--maroon);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pill:hover { background: var(--maroon); color: #fff; }

.hero-art {
  flex: 0 1 280px;
  max-width: 280px;
}

.hero-art img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 48px -12px rgba(87, 4, 32, 0.35);
}

@media (max-width: 560px) {
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-art { max-width: 260px; align-self: center; margin-top: 8px; }
}

/* section labels shared */
.section-label {
  font-family: var(--display);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

/* about */
.about, .topics, .hosts, .media {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.about h2, .topics h2, .hosts h2, .media h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  max-width: 680px;
  margin-bottom: 40px;
}

.topics h2 { margin-bottom: 10px; }

.topics-sub {
  font-family: var(--display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
}

.about-grid p { font-size: 1.02rem; }

/* topics */
.topic-list {
  max-width: 760px;
  border-top: 1px solid var(--line);
}

.topic-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.topic-title {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.3rem;
  color: var(--maroon);
}

/* hosts */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 760px;
}

.host-card {
  background: var(--bg-elevated);
  padding: 0;
}

.host-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  object-position: top center;
  background: var(--bg);
  margin-bottom: 20px;
}

.host-card h3 {
  font-size: 1.3rem;
  margin: 0 28px 4px;
}

.host-role {
  font-family: var(--display);
  color: var(--orange);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 28px 14px;
}

.host-card p:not(.host-role) { font-size: 0.95rem; margin: 0 28px; }

.host-linkedin {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin: 18px 28px 32px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
  width: fit-content;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.host-linkedin:hover { color: var(--maroon); border-color: var(--maroon); }

@media (max-width: 620px) {
  .hosts-grid { grid-template-columns: 1fr; }
}

/* media */
.media-inner { max-width: 620px; }

.media-sub { font-size: 1.02rem; margin-bottom: 24px; }

.media-email {
  display: inline-flex;
  font-family: var(--display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.media-email:hover { color: var(--maroon); border-color: var(--maroon); }

/* footer */
.site-footer { padding: 40px 0; background: var(--maroon); }

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

.logo.small img, img.logo.small { filter: brightness(0) invert(1); opacity: 0.92; }

.footer-inner p {
  font-size: 0.85rem;
  color: #e9c9d3;
}
