:root {
  --ink: #231f20;
  --muted: #6f6764;
  --paper: #fffaf4;
  --panel: #ffffff;
  --rose: #b60004;
  --gold: #d89a1c;
  --teal: #1d7f84;
  --line: #eadfd5;
  --shadow: 0 18px 45px rgba(54, 37, 28, 0.12);
}

@font-face {
  font-family: "Tangerine";
  src: url("../fonts/tangerine-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Tangerine";
  src: url("../fonts/tangerine-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cherry Swash";
  src: url("../fonts/cherry-swash-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cherry Swash";
  src: url("../fonts/cherry-swash-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--rose);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #7d0003;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--rose);
  font-family: "Tangerine", "Palace Script MT", "Edwardian Script ITC", cursive;
  font-size: clamp(2.28rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.94rem;
}

.site-nav a,
.nav-trigger {
  color: var(--ink);
  text-decoration: none;
  font: inherit;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  width: 0.42em;
  height: 0.42em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.15em) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(270px, calc(100vw - 32px));
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  line-height: 1.35;
}

.nav-dropdown a span {
  display: block;
}

.video-title-indent {
  margin-left: 77px;
  white-space: nowrap;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a[aria-current="page"],
.nav-trigger[aria-current="page"],
.nav-trigger:hover,
.nav-trigger:focus-visible,
.site-nav a:hover {
  color: var(--rose);
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown a[aria-current="page"] {
  background: #fff6eb;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-items: end;
  background: var(--paper);
  color: #fff;
}

.hero-slides,
.hero-slide {
  grid-column: 1;
  grid-row: 1;
}

.hero-slides {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  aspect-ratio: 4590 / 2586;
  background: #000;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  animation: hero-fade 14s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 7s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 22px;
}

@keyframes hero-fade {
  0%,
  46% {
    opacity: 1;
  }

  50%,
  96% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.eyebrow,
.hero .eyebrow {
  margin: 0 0 10px;
  color: #ffe2a8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cherry Swash", Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.home-intro h1 {
  font-weight: 400;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.hero p {
  max-width: 650px;
  margin: 20px 0 0;
  color: #fff7ec;
  font-size: 1.16rem;
}

.hero .eyebrow {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.28rem;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 1), 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.section {
  padding: 78px 0;
}

.home-intro {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.intro-wrap {
  max-width: 860px;
}

.home-tagline {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
}

.video-section {
  padding-top: 64px;
}

.video-section h2 {
  font-size: clamp(1.95rem, 4.5vw, 4.2rem);
  font-weight: 400;
  text-align: center;
}

.video-section .intro {
  max-width: 920px;
  margin: 18px auto 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  text-align: left;
}

.video-page h1,
.contact-page h1,
.crew-page h1 {
  font-size: clamp(1.95rem, 4.5vw, 4.2rem);
  font-weight: 400;
}

.video-page .eyebrow,
.contact-page .eyebrow,
.crew-page .eyebrow {
  color: var(--teal);
}

.crew-page .section {
  background: #fff;
}

.crew-page .crew-hero {
  padding: 58px 0 50px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.crew-page .crew-hero h1,
.contact-page .contact-hero h1 {
  max-width: none;
}

.crew-page .crew-bios {
  padding-top: 64px;
}

.contact-page .contact-hero {
  padding: 58px 0 50px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.contact-page .contact-content {
  padding-top: 64px;
}

.video-title {
  display: flex;
  max-width: 920px;
  flex-direction: column;
}

.video-title span:last-child {
  align-self: flex-end;
  text-align: right;
}

.video-description {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
}

.crew-page .intro {
  max-width: none;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
}

.video-description a {
  color: inherit;
  text-decoration-line: none;
}

.video-description a:hover,
.video-description a:focus-visible {
  text-decoration-line: underline;
}

@media (hover: none) {
  .video-description a {
    text-decoration-line: underline;
  }
}

.video-page h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.video-page > .section:first-child .wrap {
  max-width: 990px;
}

.cast-section .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-player-section h2,
.cast-section h2 {
  text-align: center;
}

.cast-section .intro {
  text-align: left;
}

.section.alt {
  background: #fff;
  border-block: 1px solid var(--line);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.intro {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.feature-card,
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-body {
  padding: 24px;
}

.feature-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.feature-head h3 {
  white-space: nowrap;
}

.video-note {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  font-weight: 800;
}

.meta {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.9rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #111;
  aspect-ratio: 16 / 9;
}

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

.cast-photo {
  width: min(780px, 100%);
  margin-top: 0;
  margin-bottom: 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.crew-profile {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.crew-photo-shell {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 950ms ease, transform 950ms ease;
}

.crew-photo-shell.is-visible {
  opacity: 1;
  transform: scale(1);
}

.crew-photo {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.crew-copy {
  max-width: 660px;
  font-size: 1.08rem;
}

.crew-copy p {
  margin: 0 0 1.1em;
}

.crew-copy p:first-child {
  color: var(--teal);
  font-weight: 800;
}

.crew-copy strong {
  color: var(--ink);
  font-family: "Cherry Swash", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 400;
  line-height: 1.16;
}

.memorial-note {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: #fff8e8;
}

.memorial-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crew-copy p:last-child,
.feature-body p:last-child,
.contact-panel p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .crew-photo-shell {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.contact-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px;
}

.site-footer {
  padding: 34px 0;
  background: #231f20;
  color: #f8eee2;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #ffd27d;
}

@media (max-width: 860px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .video-grid,
  .crew-profile {
    grid-template-columns: 1fr;
  }

  .crew-list {
    gap: 52px;
  }

  .crew-profile {
    align-items: start;
  }

  .crew-photo {
    max-height: none;
  }

  .feature-head {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-head h3 {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: clamp(1.96rem, 11.4vw, 2.6rem);
  }

  .site-nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .hero-inner {
    padding: 64px 0 14px;
  }

  .hero .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .section {
    padding: 56px 0;
  }

  .video-description a {
    text-decoration-line: underline;
  }

  .feature-body,
  .contact-panel {
    padding: 20px;
  }
}
