:root {
  --paper: #fbf7f2;
  --paper-alt: #f4ece7;
  --ink: #241722;
  --ink-soft: #6e5a68;
  --rose: #d7729e;
  --rose-deep: #c04b81;
  --violet: #6f4c9f;
  --violet-deep: #5a3c85;
  --white: #ffffff;
  --hairline: rgba(36, 23, 34, 0.14);
  --hairline-strong: rgba(36, 23, 34, 0.28);
  --brand-gradient: linear-gradient(100deg, var(--rose) 0%, var(--violet) 100%);
  --font-display: "Bodoni Moda", "Didot", Georgia, serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Masthead */
.site-header { background: var(--paper); position: sticky; top: 0; z-index: 50; }

.utility-bar {
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.utility-inner a {
  color: var(--ink-soft);
  text-decoration: none;
}

.utility-inner a:hover { color: var(--rose-deep); }

.masthead { padding: 20px 0; text-align: center; }

.wordmark { display: inline-flex; text-decoration: none; }

.logo-img { height: 52px; width: auto; display: block; }

.nav-row { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

.nav-row-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  position: relative;
}

.site-nav {
  display: flex;
  gap: 36px;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--rose-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  right: 24px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-gradient);
  color: var(--white);
}

.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.text-link {
  display: inline-block;
  color: var(--violet-deep);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link:hover { color: var(--rose-deep); border-color: var(--rose-deep); }

/* Hero */
.hero {
  padding: 88px 0 76px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--rose-deep);
  margin: 0 0 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section { padding: 84px 0; border-bottom: 1px solid var(--hairline); }
.section:last-of-type { border-bottom: none; }

.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin: 0 0 10px;
  color: var(--ink);
  text-wrap: balance;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section-lede {
  color: var(--ink-soft);
  margin: 0 0 44px;
  font-size: 1rem;
}

.episodes { text-align: center; }

.player-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}

.player-tab {
  position: relative;
  background: none;
  border: none;
  padding: 4px 2px 14px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.player-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.player-tab:hover { color: var(--ink); }
.player-tab.is-active { color: var(--ink); }
.player-tab.is-active::after { transform: scaleX(1); }

.player-card {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--hairline);
}

.player-card iframe { display: block; }

.platform-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 0.2s ease;
}

.badge-mark svg { width: 100%; height: 100%; display: block; }

.platform-badge:hover { color: var(--violet-deep); }
.platform-badge:hover .badge-mark { transform: translateY(-2px) scale(1.06); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 761px) {
  .about-frame { position: sticky; top: 190px; }
}

.about-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-alt);
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--white);
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
}
.frame-corner.tl { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.frame-corner.tr { top: 14px; right: 14px; border-width: 1px 1px 0 0; }
.frame-corner.bl { bottom: 14px; left: 14px; border-width: 0 0 1px 1px; }
.frame-corner.br { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }

.about-copy p { font-size: 1.02rem; color: var(--ink-soft); }
.host-line { color: var(--ink) !important; }

/* FAQ */
.faq-inner { max-width: 720px; margin: 0 auto; text-align: center; }

.faq-item {
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--hairline); margin-top: 40px; }

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--rose-deep);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 16px 0 0;
}

/* Get Involved */
.get-involved { text-align: center; }

.involved-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.involved-column {
  padding: 0 40px;
}

.involved-column:first-child {
  border-right: 1px solid var(--hairline);
}

.involved-column h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.involved-column p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0 0 20px;
}

/* Application / inquiry form pages */
.form-page { padding-top: 64px; border-bottom: none; }

.form-page-inner { max-width: 640px; margin: 0 auto; }

.form-page h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--ink);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hp-field { position: absolute; left: -9999px; }

.app-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select {
  padding: 12px 2px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
}

.field textarea {
  padding: 13px 16px;
  border-radius: 0;
  border: 1px solid var(--hairline-strong);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
}

.field textarea { resize: vertical; }

.app-form .btn { align-self: flex-start; }

.thank-you-inner { text-align: center; }
.thank-you-inner .section-lede { margin-bottom: 32px; }

/* Notify */
.notify { background: var(--paper-alt); text-align: center; }

.notify-inner { max-width: 560px; }

.notify-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  margin-top: 8px;
}

.notify-form input[type="email"] {
  flex: 1 1 260px;
  padding: 13px 2px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: transparent;
  color: var(--ink);
}

.notify-form input[type="email"]:focus {
  outline: none;
  border-color: var(--violet);
}

.notify-status {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--ink);
  min-height: 1.2em;
}

/* Connect */
.connect { text-align: center; }

/* Footer */
.site-footer {
  padding: 26px 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 1px solid var(--hairline);
}

/* Responsive */
@media (max-width: 760px) {
  .utility-inner span:last-child,
  .utility-inner a { display: none; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .about-inner { grid-template-columns: 1fr; }
  .about-frame { max-width: 320px; margin: 0 auto; }
  .involved-columns { grid-template-columns: 1fr; gap: 40px; }
  .involved-column:first-child {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 32px;
  }
  .section { padding: 60px 0; }
  .hero { padding: 64px 0 52px; }
}

@media (max-width: 760px) {
  .nav-row-inner { justify-content: flex-start; }
  .nav-row { position: relative; }
  .site-header.nav-open .site-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--hairline);
    z-index: 40;
  }
}
