:root {
  color-scheme: light;
  --flour: #fbf7ec;
  --salt: #fffef8;
  --ink: #172015;
  --muted: #5e6857;
  --olive: #53683b;
  --olive-dark: #344526;
  --coriander: #2f744c;
  --ghee: #f3ce62;
  --turmeric: #e4a51b;
  --saffron: #bf4b39;
  --line: rgba(23, 32, 21, 0.16);
  --soft-line: rgba(83, 104, 59, 0.18);
  --shadow: rgba(56, 67, 43, 0.08);
  --font-display: "Bitter", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1040px;
  --wordmark-size: 3.25rem;
  --nav-gap: 1.4rem;
  --hero-min: 40rem;
  --hero-padding: 5rem;
  --h1-size: 6.6rem;
  --hero-copy-size: 1.16rem;
  --section-padding: 5rem;
  --section-heading-space: 2.2rem;
  --h2-size: 3.75rem;
  --feature-title-size: 2.4rem;
  --video-title-size: 2rem;
  --season-gap: 3.8rem;
  --season-note-size: 1.08rem;
  --contact-link-size: 1.45rem;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--flour);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--salt) 0, var(--flour) 44rem),
    var(--flour);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

body::selection {
  color: var(--ink);
  background: var(--ghee);
}

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

.site-header {
  width: min(100% - 2rem, var(--max));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-inline: auto;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--soft-line);
}

.wordmark {
  color: var(--olive);
  font-family: var(--font-display);
  font-size: var(--wordmark-size);
  font-weight: 700;
  line-height: 0.95;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-group.right {
  justify-content: flex-end;
}

.nav-group a {
  padding: 0.35rem 0;
}

.nav-group a:hover,
.nav-group a:focus-visible {
  color: var(--coriander);
  outline: none;
}

main {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  place-items: center;
  min-height: var(--hero-min);
  padding: var(--hero-padding) 0;
  text-align: center;
}

.eyebrow,
.card-label {
  margin: 0;
  color: var(--coriander);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
.feature-card strong {
  margin-top: 0;
  color: var(--olive-dark);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin: 0.65rem 0 0;
  font-size: var(--h1-size);
  line-height: 0.93;
}

.hero-copy {
  max-width: 39rem;
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: var(--hero-copy-size);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.primary-action,
.text-action {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-action {
  color: var(--ink);
  background: var(--ghee);
  box-shadow: 0 0.9rem 2.4rem rgba(228, 165, 27, 0.18);
}

.text-action {
  border: 1px solid var(--line);
  color: var(--olive-dark);
  background: var(--salt);
}

.primary-action:hover,
.primary-action:focus-visible,
.text-action:hover,
.text-action:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.fresh-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.15rem 0;
  border-block: 1px solid var(--soft-line);
}

.fresh-strip span {
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  color: var(--olive-dark);
  background: var(--salt);
  font-size: 0.82rem;
  font-weight: 800;
}

.fresh-strip span:nth-child(2) {
  background: #fff5cf;
}

.fresh-strip span:nth-child(3) {
  background: #eef4dd;
}

.fresh-strip span:nth-child(4) {
  background: #fff0e7;
}

.fresh-strip span:nth-child(5) {
  background: #edf7ee;
}

.start-section,
.season-section,
.contact-section {
  padding: var(--section-padding) 0;
  border-bottom: 1px solid var(--soft-line);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-bottom: var(--section-heading-space);
  text-align: center;
}

h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: var(--h2-size);
  line-height: 0.98;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.25rem;
  align-items: start;
}

.video-card {
  display: grid;
  gap: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
  background: var(--salt);
  box-shadow: 0 1rem 2.8rem var(--shadow);
}

.video-card-main {
  padding: 1.15rem;
  background: #fffdf2;
}

.video-card-secondary {
  align-content: start;
  background: #edf7ee;
}

.video-card-short {
  align-content: start;
  gap: 0.9rem;
  padding: 0.85rem;
  background: #edf7ee;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--olive-dark);
}

.video-frame-wide {
  aspect-ratio: 16 / 9;
}

.video-frame-short {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-inline: auto;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame-short iframe {
  inset: auto;
  top: 54%;
  left: 50%;
  height: 134%;
  transform: translate(-50%, -50%);
}

.video-copy {
  display: grid;
  gap: 0.45rem;
}

.video-copy h3 {
  margin-bottom: 0;
  font-size: var(--video-title-size);
  line-height: 1.02;
}

.video-card-short .video-copy h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.65rem);
}

.video-card-short .video-copy p:not(.card-label) {
  font-size: 0.95rem;
}

.video-copy p:not(.card-label) {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
}

.video-copy a {
  width: fit-content;
  margin-top: 0.25rem;
  color: var(--coriander);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(47, 116, 76, 0.34);
  text-underline-offset: 0.23em;
}

.follow-heading {
  margin-top: 3rem;
}

.feature-card {
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
  background: var(--salt);
  box-shadow: 0 1rem 2.8rem var(--shadow);
}

.feature-card.youtube {
  background: #fff6d4;
}

.feature-card.instagram {
  background: #fff0e7;
}

.feature-card.x-card {
  background: #edf7ee;
}

.feature-card strong {
  display: block;
  margin: auto 0 0.8rem;
  font-size: var(--feature-title-size);
  line-height: 0.98;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.season-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: var(--season-gap);
  align-items: start;
}

.season-section h2 {
  max-width: 12ch;
}

.season-note {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: var(--season-note-size);
}

.season-note p {
  margin: 0;
}

.contact-section {
  border-bottom: 0;
  text-align: center;
}

.contact-section h2 {
  margin-inline: auto;
}

.contact-section a {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--coriander);
  font-size: var(--contact-link-size);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(47, 116, 76, 0.34);
  text-underline-offset: 0.23em;
}

@media (max-width: 980px) {
  :root {
    --hero-min: 34rem;
    --hero-padding: 4rem;
    --h1-size: 5rem;
    --h2-size: 3.1rem;
    --section-padding: 4rem;
    --feature-title-size: 2.15rem;
    --video-title-size: 1.8rem;
    --season-gap: 2.4rem;
  }

  .watch-grid {
    grid-template-columns: 1fr;
  }

  .video-frame-short {
    width: min(100%, 17rem);
    aspect-ratio: 9 / 16;
  }

  .video-frame-short iframe {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --wordmark-size: 2.15rem;
    --hero-padding: 3.2rem;
    --h1-size: 3.45rem;
    --hero-copy-size: 1rem;
    --section-padding: 3rem;
    --section-heading-space: 1.5rem;
    --h2-size: 2.35rem;
    --feature-title-size: 2rem;
    --video-title-size: 1.55rem;
    --season-note-size: 1rem;
    --contact-link-size: 1.1rem;
  }

  main,
  .site-header {
    width: min(100% - 1.5rem, var(--max));
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.55rem;
  }

  .nav-group {
    display: none;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
  }

  h1 {
    max-width: 8ch;
    line-height: 0.95;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 13.5rem);
    margin-inline: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 18.5rem;
    margin-inline: auto;
  }

  .primary-action,
  .text-action {
    width: 100%;
  }

  .fresh-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1rem 0;
  }

  .fresh-strip span {
    display: block;
    width: 100%;
    text-align: center;
  }

  .feature-grid,
  .season-section {
    grid-template-columns: 1fr;
  }

  .video-card {
    padding: 0.75rem;
  }

  .video-frame-short {
    width: min(100%, 15rem);
  }

  .feature-card {
    min-height: 12rem;
  }

  .section-heading {
    justify-items: start;
    text-align: left;
  }

  .contact-section {
    text-align: left;
  }

  .contact-section h2 {
    margin-inline: 0;
  }
}

@media (max-width: 420px) {
  :root {
    --h1-size: 3.15rem;
    --h2-size: 2.15rem;
    --video-title-size: 1.35rem;
  }

  .hero-copy {
    max-width: 17.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Legal pages (privacy, etc.) */
.legal-page {
  width: min(100% - 2rem, 42rem);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal-page h1 {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--olive-dark);
}

.legal-updated {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-page section {
  margin-bottom: 1.75rem;
}

.legal-page h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--olive-dark);
}

.legal-page h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.legal-page ul {
  margin: 0.4rem 0 0.6rem;
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--coriander);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
