:root {
  --paper: #f7f3e9;
  --paper-2: #f0e9d8;
  --card: #ffffff;
  --ink: #10263f;
  --ink-soft: #4a5a71;
  --line: #ddd2b3;
  --line-strong: #c7b98c;
  --gold: #b8863b;
  --gold-deep: #8f6526;
  --lagoon: #0e7a72;
  --shadow: 0 1px 2px rgba(16, 38, 63, 0.06), 0 8px 24px rgba(16, 38, 63, 0.08);
  --maxw: 1140px;
  --font-heading: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { width: min(var(--maxw), 92%); margin: 0 auto; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 10px;
  display: block;
}

/* ---------- Nav ---------- */
.site-nav {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 45%;
}
.brand-text {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 17px;
  line-height: 1.2;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.nav-btn {
  padding: 9px 10px;
  font-size: 13px;
  text-transform: none;
  white-space: nowrap;
}
.nav-links .nav-btn {
  background: none;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 0;
}
.nav-links .nav-btn:hover {
  background: none;
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  color: #fff;
  width: 40px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(184,134,59,0.14), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #163150 100%);
  color: #fff;
  padding: 90px 0 100px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 20px;
}
.hero p.lede {
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  max-width: 52ch;
}
.hero .eyebrow { color: var(--gold); }
.hero-emblem {
  justify-self: center;
  width: min(230px, 70%);
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.35));
}
.hero-emblem img { width: 100%; border-radius: 12px; }

.cta-row { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: #c8974a; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-tight { padding: 60px 0; }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.pillar-card .num {
  font-family: var(--font-heading);
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.pillar-card h3 { font-size: 20px; margin-bottom: 10px; }
.pillar-card p { margin: 0; font-size: 15.5px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img, .split .img-box {
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.img-box {
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.img-box img { width: 100%; border-radius: 6px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}
.stat {
  text-align: center;
  padding: 20px;
}
.stat .n {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-deep);
}
.stat .l {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--paper-2), var(--line));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.leader-photo {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--paper-2), var(--line));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader-bio p { margin-bottom: 1em; }
.team-body { padding: 20px 22px 24px; }
.team-body h3 { font-size: 18px; margin-bottom: 2px; }
.team-role {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}
.team-body p { font-size: 15px; margin: 0; }
.placeholder-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--paper-2);
  border: 1px dashed var(--line-strong);
  color: var(--ink-soft);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ---------- Press / Coverage ---------- */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.press-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 32px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.press-card-body { flex: 1 1 420px; }
.press-meta {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold-deep);
  margin-bottom: 10px;
  display: block;
}
.press-card h3 { font-size: 21px; margin-bottom: 10px; }
.press-card p { margin: 0; font-size: 15.5px; }
.press-card .btn {
  flex-shrink: 0;
  font-size: 14px;
  padding: 11px 22px;
}

/* ---------- Episodes ---------- */
.episode-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 720px;
}
.episode-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.episode-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.episode-body { padding: 26px 28px; }
.episode-body h3 { font-size: 20px; margin-bottom: 14px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .k {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  width: 100px;
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-list .v a { text-decoration: none; }
.contact-list .v a:hover { text-decoration: underline; }

/* ---------- Quote / CTA band ---------- */
.band {
  background: linear-gradient(180deg, #163150, var(--ink));
  color: #fff;
  text-align: center;
}
.band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.band p { color: rgba(255,255,255,0.78); max-width: 60ch; margin: 0 auto 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 46px 0 30px;
  font-size: 14px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 45%;
}
.footer-brand span {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: left; }
  .hero-emblem { justify-self: start; width: 140px; order: -1; }
  .pillars, .team-grid, .stat-row { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-nav-inner { flex-wrap: wrap; row-gap: 12px; }
  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  .nav-toggle { display: none; }
  .nav-btn { padding: 7px 12px; font-size: 11px; }
  .brand-text { font-size: 14px; }
  .brand-text small { display: none; }
}
