:root {
  --yss-plum: #47194f;
  --yss-orchid: #834675;
  --yss-sage: #96b40c;
  --yss-lavender: #a38a9b;
  --yss-ink: #363538;
  --yss-paper: #fafaf9;
  --yss-mist: #f2f4f3;
  --yss-line: #e0e0df;
  --yss-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--yss-ink);
  background: var(--yss-paper);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: var(--yss-orchid);
}

.yss-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.yss-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 250, 249, .94);
  border-bottom: 1px solid var(--yss-line);
  backdrop-filter: blur(14px);
}

.yss-site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.yss-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yss-plum);
  font-weight: 700;
  text-decoration: none;
}

.yss-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.custom-logo {
  max-width: 64px;
  max-height: 64px;
}

.yss-nav__menu,
.yss-footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yss-nav a,
.yss-footer-nav a {
  color: var(--yss-plum);
  font-weight: 700;
  text-decoration: none;
}

.yss-main h1,
.yss-main h2,
.yss-main h3 {
  color: var(--yss-plum);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.08;
}

.yss-main h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 86px);
}

.yss-main h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
}

.yss-main h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.yss-kicker {
  margin: 0 0 14px;
  color: var(--yss-sage);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yss-lede {
  max-width: 720px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
}

.yss-hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  color: var(--yss-white);
  background-position: center;
  background-size: cover;
}

.yss-hero h1,
.yss-hero .yss-kicker {
  color: var(--yss-white);
}

.yss-hero p {
  max-width: 720px;
}

.yss-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.yss-actions--center {
  justify-content: center;
}

.yss-button,
.yss-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.yss-button--primary,
.yss-form button {
  background: var(--yss-orchid);
  color: var(--yss-white);
}

.yss-button--light {
  background: var(--yss-white);
  color: var(--yss-plum);
}

.yss-button--ghost {
  border-color: var(--yss-white);
  color: var(--yss-white);
}

.yss-band {
  padding: clamp(64px, 9vw, 110px) 0;
}

.yss-band--white {
  background: var(--yss-white);
}

.yss-band--light {
  background: var(--yss-paper);
}

.yss-band--mist {
  background: var(--yss-mist);
}

.yss-band--deep,
.yss-page-hero {
  color: var(--yss-white);
  background: linear-gradient(135deg, var(--yss-plum), var(--yss-orchid));
}

.yss-band--deep h2,
.yss-band--deep .yss-kicker,
.yss-page-hero h1,
.yss-page-hero .yss-kicker {
  color: var(--yss-white);
}

.yss-page-hero {
  padding: 96px 0 74px;
}

.yss-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
}

.yss-center {
  max-width: 820px;
  text-align: center;
}

.yss-section-intro {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: 19px;
}

.yss-portrait,
.yss-book {
  margin: 0;
}

.yss-portrait img,
.yss-book img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(54, 53, 56, .18);
}

.yss-portrait figcaption {
  margin-top: 12px;
  color: var(--yss-orchid);
  font-weight: 800;
  text-align: center;
}

.yss-grid {
  display: grid;
  gap: 24px;
}

.yss-grid--episodes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yss-grid--resources {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yss-grid article {
  min-width: 0;
}

.yss-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: var(--yss-line);
}

.yss-grid h3 {
  margin-top: 16px;
  font-size: 19px;
}

.yss-label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--yss-mist);
  color: var(--yss-orchid);
  font-weight: 800;
  text-transform: uppercase;
}

.yss-band--contact {
  background: var(--yss-line);
}

.yss-contact {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: 40px;
}

.yss-form {
  display: grid;
  gap: 14px;
}

.yss-form label {
  display: grid;
  gap: 6px;
  color: var(--yss-plum);
  font-weight: 800;
}

.yss-form input,
.yss-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--yss-lavender);
  border-radius: 6px;
  background: var(--yss-white);
}

.yss-form textarea {
  min-height: 130px;
}

.yss-form-note {
  margin: 0;
  color: var(--yss-orchid);
  font-size: 14px;
  font-weight: 800;
}

.yss-site-footer {
  padding: 44px 0;
  color: var(--yss-white);
  background: var(--yss-plum);
}

.yss-site-footer__inner {
  display: grid;
  gap: 20px;
}

.yss-footer-brand {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.yss-site-footer a {
  color: var(--yss-white);
}

.yss-copyright {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

@media (max-width: 840px) {
  .yss-site-header__inner,
  .yss-nav__menu,
  .yss-footer-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .yss-site-header__inner {
    padding: 14px 0;
  }

  .yss-split,
  .yss-contact,
  .yss-grid--episodes,
  .yss-grid--resources {
    grid-template-columns: 1fr;
  }

  .yss-hero {
    min-height: 620px;
  }
}
