:root {
  --bg: #f3ede3;
  --bg-soft: #efe6da;
  --surface: #f8f2e9;
  --surface-2: #fffaf4;
  --text: #241b16;
  --text-soft: #4e3f34;
  --heading: #5f4129;
  --brown-dark: #2a1d16;
  --brown-dark-hover: #3a291f;
  --brown-mid: #4a3325;
  --brown-warm: #6b4a2f;
  --footer-text: #f0e6da;
  --border: rgba(58, 40, 28, 0.10);
  --shadow: rgba(35, 22, 14, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

.container,
.content-wrap {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.content-wrap.narrow {
  width: min(760px, 92%);
}

.page-content {
  padding: 0 0 72px;
}

/* SITE HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brown-dark);
  border-bottom: 1px solid rgba(255, 250, 244, 0.12);
}

.site-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: #fffaf4;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  line-height: 1.2;
  max-width: 72%;
}

.logo:hover {
  opacity: 0.92;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  color: #f5ede2;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.95;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.watch-link {
  padding: 8px 14px;
  border: 1px solid rgba(255, 250, 244, 0.26);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.06);
}

.watch-link:hover {
  background: rgba(255, 250, 244, 0.12);
  text-decoration: none;
}

.desktop-nav a.active,
.mobile-nav a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 34px;
  height: 28px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #fffaf4;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding-bottom: 18px;
}

.mobile-nav a {
  color: #f5ede2;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 250, 244, 0.08);
}

.mobile-nav .watch-link {
  display: inline-block;
  width: fit-content;
  margin-top: 14px;
  padding: 8px 14px;
  border-top: none;
}

.mobile-nav.is-open {
  display: flex;
}

/* HOMEPAGE HERO */
.hero {
  position: relative;
  min-height: 50vh;
  max-height: 620px;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 50vh;
  max-height: 620px;
  object-fit: cover;
  object-position: center 22%;
}

.hero-quote {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  width: min(760px, 88%);
  text-align: center;
  color: #fffaf4;
  z-index: 2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-quote p {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.hero-quote span {
  display: block;
  text-align: center;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  opacity: 0.95;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 1;
}

.title-block {
  background: var(--bg);
  padding: 40px 0 18px;
  text-align: center;
}

.title-block h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  margin: 0 0 10px;
  color: var(--heading);
  letter-spacing: -0.01em;
  font-weight: 600;
}

.title-block .subhead {
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
}

.quick-links {
  background: var(--bg);
  padding: 14px 0 20px;
}

.quick-links-inner {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  display: inline-block;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button.dark {
  background: var(--brown-dark);
  color: #f8f3eb;
}

.button.dark:hover {
  background: var(--brown-dark-hover);
  transform: translateY(-1px);
}

.section {
  padding: 56px 0;
}

.section h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--brown-mid);
  letter-spacing: -0.01em;
  font-weight: 600;
}

.intro {
  padding-top: 24px;
  text-align: center;
}

.intro p {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: var(--text-soft);
}

.laurels-container {
  max-width: 760px;
  margin: 18px auto 0;
}

.laurels-image {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto;
}

.poster-section {
  background: var(--bg);
  padding-top: 8px;
  padding-bottom: 56px;
}

.poster-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.poster-image {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(35, 22, 14, 0.16);
}

.poster-caption {
  margin: 12px 0 0;
  text-align: center;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  opacity: 0.9;
}

.explore {
  background: var(--bg-soft);
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 8px 24px var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(35, 22, 14, 0.12);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--brown-mid);
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.card p {
  margin: 0 auto;
  max-width: 28ch;
  color: var(--text-soft);
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.site-footer {
  background: var(--brown-dark);
  color: var(--footer-text);
  padding: 28px 0;
  text-align: center;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
}

/* ABOUT PAGE */
.about-hero {
  padding: 26px 0 30px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 36px;
  align-items: center;
}

.about-hero-copy h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 18px;
  max-width: 8ch;
}

.about-hero-copy .intro-text {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 30rem;
  margin: 0;
}

.about-hero-image {
  margin: 0;
}

.about-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(35, 22, 14, 0.16);
}

.about-section {
  padding: 28px 0 34px;
}

.about-section h2,
.watch-section h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
  margin: 0 0 16px;
  color: var(--brown-mid);
  letter-spacing: -0.01em;
  font-weight: 600;
}

.about-section p {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: 1.06rem;
  color: var(--text);
}

.about-image-break {
  padding: 18px 0 36px;
}

.feature-image {
  margin: 0;
}

.feature-image img {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(35, 22, 14, 0.14);
}

.key-crew-section,
.credits-section {
  padding-top: 36px;
}

.crew-list {
  display: grid;
  gap: 26px;
}

.crew-bio {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.crew-bio:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.crew-bio h3 {
  margin: 0 0 4px;
  color: var(--brown-mid);
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.crew-role {
  margin: 0 0 10px;
  color: var(--brown-warm);
  font-size: 0.96rem;
  font-weight: 600;
}

.credits-list {
  display: grid;
  gap: 14px;
}

.credit-row {
  display: grid;
  grid-template-columns: minmax(220px, 290px) 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.credit-row:last-child {
  border-bottom: none;
}

.credit-role {
  color: var(--brown-mid);
  font-weight: 700;
}

.credit-name {
  color: var(--text-soft);
}

/* WATCH PAGE */
.watch-page {
  padding-bottom: 72px;
}

.watch-section {
  padding: 30px 0 44px;
}

.watch-section + .watch-section {
  padding-top: 24px;
}

.watch-section p {
  margin: 0 0 18px;
  font-size: 1.04rem;
  color: var(--text);
}

.watch-cta-section {
  padding-top: 26px;
}

.watch-buttons {
  display: flex;
  justify-content: flex-start;
}

.video-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.video-wrap .video-embed {
  width: min(900px, 100%);
  margin: 0 auto;
}

.videos-grid {
  width: min(900px, 100%);
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.video-card {
  width: 100%;
  margin: 0 auto;
}

.video-card h3 {
  margin: 0 0 12px;
  color: var(--brown-mid);
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(35, 22, 14, 0.12);
  background: #000;
}

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

/* PRESS PAGE */
.press-page {
  padding-bottom: 72px;
}

.press-hero {
  padding: 26px 0 10px;
}

.press-section {
  padding: 28px 0 40px;
}

.press-section h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
  margin: 0 0 16px;
  color: var(--brown-mid);
  letter-spacing: -0.01em;
  font-weight: 600;
}

.press-intro {
  margin: 0 0 20px;
  font-size: 1.04rem;
  color: var(--text);
}

.press-quotes {
  display: grid;
  gap: 18px;
}

.press-quote {
  margin: 0;
  padding: 22px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 24px var(--shadow);
}

.press-quote p {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--text);
}

.press-quote cite {
  font-style: normal;
  color: var(--brown-warm);
  font-weight: 600;
}

.laurels-figure {
  margin: 0;
  padding: 10px 0 20px;
}

.laurels-wrap {
  width: min(750px, 100%);
  margin: 0 auto;
}

.laurels-feature {
  display: block;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  height: auto;
}

.press-list {
  display: grid;
  gap: 14px;
}

.press-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.press-item:last-child {
  border-bottom: none;
}

.press-outlet {
  color: var(--brown-mid);
  font-weight: 700;
}

.press-meta {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.press-list.smaller .press-outlet {
  font-weight: 600;
}

/* GALLERY PAGE */
.gallery-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 96px;
}

.gallery-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.gallery-header h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 12px;
}

.gallery-header p {
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 auto;
  max-width: 42rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16, 12, 9, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
}

.lightbox-close:hover {
  opacity: 0.8;
}

body.lightbox-open {
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header-inner {
    min-height: 68px;
  }

  .logo {
    font-size: 0.94rem;
    max-width: 75%;
  }

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

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .about-hero-copy h1 {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5.2vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: 0.01em;
    font-weight: 600;
    color: var(--heading);
    margin: 0 0 18px;
    max-width: 8ch;
  }

  .about-hero-copy .intro-text {
    font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 30rem;
    margin: 0;
}
}

@media (min-width: 901px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .hero-quote {
    bottom: 6%;
    width: 90%;
  }

  .hero-quote p {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.3;
    white-space: normal;
  }

  .hero-quote span {
    font-size: 0.88rem;
  }

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

  .hero,
  .hero-image {
    min-height: 46vh;
    max-height: 420px;
  }

  .hero-image {
    object-position: center 20%;
  }

  h1 {
    font-size: clamp(2.5rem, 9vw, 4rem);
    line-height: 1;
  }

  .laurels-container {
    max-width: 580px;
    margin-top: 22px;
  }

  .poster-image {
    max-width: 280px;
  }

  .about-section p,
  .watch-section p {
    font-size: 1rem;
  }

  .credit-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .credit-role {
    margin-bottom: 2px;
  }

  .watch-section {
    padding: 24px 0 34px;
  }

  .watch-section + .watch-section {
    padding-top: 12px;
  }

  .press-section {
    padding: 24px 0 34px;
  }

  .press-intro,
  .press-quote p,
  .press-meta {
    font-size: 1rem;
  }

  .press-quote {
    padding: 18px;
  }

  .laurels-wrap {
    width: min(420px, 100%);
  }

  .laurels-feature {
    max-width: 420px;
  }

  .gallery-page {
    padding: 24px 18px 72px;
  }

  .gallery-grid {
    gap: 14px;
  }

  .gallery-section-title {
   font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
   font-size: 1.5rem;
   margin-top: 56px;
   margin-bottom: 20px;
   color: var(--heading);
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox-close {
    top: 12px;
    right: 14px;
    font-size: 2rem;
  }
}