@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Header — stacked rows matching original ─────────────────── */
.site-header { width: 100%; background: #fff; }

.header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* header-brand wraps name + tagline — display:contents lets children flow naturally */
.header-brand { display: contents; }

.site-name {
  font-family: 'Caudex', serif;
  font-size: 41px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 0.05em;
  color: #333333;
  margin: 31px 0 6px;
}
.site-name a { color: inherit; }

.site-tagline {
  font-family: 'Caudex', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1em;
  color: #333333;
  margin: 0 0 38px;
}

/* ── Navigation (row 3, right-aligned) ───────────────────────── */
.site-nav {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: stretch;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 9px;
  font-size: 15px;
  color: #6e6d6d;
  white-space: nowrap;
  transition: color 0.3s;
}

.nav-list > li > a:hover,
.nav-list > li > a.active,
.nav-list > li.has-dropdown:hover > a { color: #80e3ff; }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  background: #141414;
  list-style: none;
  min-width: 130px;
  z-index: 200;
}
.has-dropdown:hover .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 14px;
  color: #6e6d6d;
  text-align: right;
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-dropdown li a:hover,
.nav-dropdown li a.active { color: #80e3ff; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 24px;
  right: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #333; }

/* ── Slideshow ────────────────────────────────────────────────── */
.slideshow-wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }

.slideshow {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #111;
}

.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }

.slide-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  z-index: 10;
}

/* ── Social Bar ───────────────────────────────────────────────── */
.social-bar {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 20px 8px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-bar a { display: inline-block; }
.social-bar img { width: 46px; height: 46px; display: block; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  border-top: 1px solid #e8e8e8;
  padding: 28px 20px;
  text-align: center;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.04em;
  margin-top: 40px;
}

.foot-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
}

.foot-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.foot-links a { color: #888; transition: color 0.2s; }
.foot-links a:hover { color: #333; }

.foot-social { display: flex; justify-content: center; align-items: center; gap: 16px; margin: 4px 0 12px; flex-wrap: wrap; }
.foot-social a { color: #9a9a9a; display: inline-flex; align-items: center; transition: color 0.2s; }
.foot-social a:hover { color: #1a1a1a; }
.foot-social svg { width: 19px; height: 19px; display: block; }
.foot-social .foot-bs-icon { width: 17px; height: 19px; display: block; background-color: currentColor; -webkit-mask: url(images/backstage-icon.png) center/contain no-repeat; mask: url(images/backstage-icon.png) center/contain no-repeat; }
.foot-social .foot-imdb { font-weight: 700; font-size: 11px; letter-spacing: 0.03em; color: currentColor; border: 1px solid currentColor; border-radius: 3px; padding: 1px 4px; line-height: 1.5; }
.foot-credit a { color: #888; text-decoration: none; }
.foot-credit a:hover { color: #1a1a1a; text-decoration: underline; }

/* ── Page wrapper ─────────────────────────────────────────────── */
.page-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Resume layout ────────────────────────────────────────────── */
.resume-top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e8e8;
}

.resume-about h2 {
  font-family: 'Caudex', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.resume-about p {
  font-family: 'Caudex', serif;
  font-size: 13.5px;
  color: #555;
  line-height: 1.65;
  margin: 0 0 16px;
}

.resume-photo {
  position: relative;
}
.resume-photo img {
  width: 100%;
  max-width: 240px;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.resume-download {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid #1a1a1a;
  font-family: 'Caudex', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: #fff;
  cursor: pointer;
  transition: all 0.18s;
}
.resume-download:hover { background: #1a1a1a; color: #fff; }
.resume-download:focus-visible { outline: 2px solid #1a1a1a; outline-offset: 3px; }

@media (max-width: 740px) {
  .resume-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .resume-photo { display: flex; justify-content: center; order: -1; }
  .resume-photo img { max-width: 200px; }
}

/* Resume sections — typography matched to the rest of the site (Caudex serif) */
.resume-section {
  margin-bottom: 36px;
}
.resume-section:last-child { margin-bottom: 0; }

.resume-section h5 {
  font-family: 'Caudex', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #333;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e8e8;
}

.resume-table { width: 100%; border-collapse: collapse; }
.resume-table tr { border-bottom: 1px solid #f4f4f4; }
.resume-table tr:last-child { border-bottom: none; }
.resume-table td {
  font-family: 'Caudex', serif;
  font-size: 14.5px;
  color: #444;
  padding: 10px 14px 10px 0;
  vertical-align: top;
  line-height: 1.55;
}
.resume-table td:first-child {
  white-space: normal;
  width: 38%;
  color: #1a1a1a;
  font-weight: 700;
}
.resume-table td:nth-child(2) {
  white-space: normal;
  width: 26%;
  color: #444;
}
.resume-table td:last-child {
  color: #777;
  font-size: 13.5px;
  width: 36%;
}

/* Awards callout block — replaces the asterisk-footnote system */
.resume-awards {
  background: #fafafa;
  border-left: 3px solid #1a1a1a;
  padding: 16px 22px;
  margin: 16px 0 0;
  font-family: 'Caudex', serif;
  font-size: 13.5px;
  color: #444;
  line-height: 1.85;
}
.resume-awards p { margin: 0; }
.resume-awards strong { color: #1a1a1a; }

.resume-text {
  font-family: 'Caudex', serif;
  font-size: 14.5px;
  color: #555;
  line-height: 1.75;
}

.resume-dates {
  text-align: right;
  font-family: 'Caudex', serif;
  font-size: 13px;
  color: #777;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

/* ── Contact layout ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 416px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-layout img {
  width: 416px;
  height: 324px;
  object-fit: cover;
  display: block;
}

.contact-form { padding-top: 8px; }

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  text-align: right;
  font-family: 'Noticia Text', Georgia, 'Times New Roman', serif;
  font-size: 15px;
  color: #112A4B;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: #999; }

.form-field textarea { height: 100px; resize: vertical; }

.form-submit {
  display: inline-block;
  padding: 10px 28px;
  background: #333;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: #555; }
.form-submit:disabled { background: #999; cursor: not-allowed; }

/* Two-column row for first / last name */
.form-row { display: grid; gap: 16px; }
.form-row-2col { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
.form-row-2col .form-field { margin-bottom: 20px; }

/* Newsletter checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 20px;
  font-family: 'Caudex', serif;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #1a1a1a;
  cursor: pointer;
}
.form-checkbox label {
  cursor: pointer;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
}

/* Submit status */
.form-status {
  margin-top: 14px;
  font-family: 'Caudex', serif;
  font-size: 13px;
  line-height: 1.5;
  min-height: 1.5em;
}
.form-status-success { color: #1a7a4a; }
.form-status-error   { color: #b1232a; }

@media (max-width: 540px) {
  .form-row-2col { grid-template-columns: 1fr; gap: 0; }
}

/* ── Gallery grid ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #bbb;
}

/* ── Video ────────────────────────────────────────────────────── */
.video-wrap { max-width: 860px; margin: 0 auto; padding: 40px 20px 60px; }

.video-box {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  color: #555; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.video-box iframe { width: 100%; height: 100%; border: none; }

/* Video figure (iframe + caption pair, used on Commercials / VO / Reel pages) */
.video-figure { margin: 0 0 28px; }
.video-figure .video-box { margin-bottom: 8px; }
.video-caption {
  font-family: 'Caudex', serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #555;
  text-align: center;
  text-transform: none;
}

/* Home page intro — short bio paragraph below the slideshow */
.home-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 24px 8px;
  text-align: center;
}
.home-intro-text {
  font-family: 'Caudex', serif;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  letter-spacing: 0.02em;
  margin: 0;
}
.home-intro-text strong { color: #1a1a1a; font-weight: 700; }
.home-intro-text em     { color: #555; font-style: italic; }

/* Collapsed overflow — hidden visually but kept in the DOM for SEO. */
.home-intro-more { display: none; }
.home-intro.expanded .home-intro-more,
.page-intro.expanded .home-intro-more { display: inline; }

/* Footer variant of the page intro — supporting bio placed below the work. */
.page-intro-foot {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
}
.home-intro-toggle {
  margin-top: 14px;
  background: none;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  padding: 2px 0;
  font-family: 'Caudex', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.home-intro-toggle:hover { color: #777; border-color: #777; }

/* Reels page intro — short framing paragraph above the demo reel */
.page-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 24px;
  text-align: center;
}
.page-intro p {
  font-family: 'Caudex', serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
  letter-spacing: 0.02em;
  margin: 0;
}
.page-intro strong { color: #1a1a1a; font-weight: 700; }
.page-intro em     { color: #555; font-style: italic; }

/* ── Featured Work — cinematic cards, lightbox player ──────────── */
.featured-work {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}
.featured-section-title {
  font-family: 'Caudex', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
  margin: 44px 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}
.featured-section-title:first-of-type { margin-top: 12px; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.featured-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  padding: 0;
  margin: 0;
  border: none;
  background: #000;
  overflow: hidden;
  cursor: pointer;
  appearance: none;
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.featured-card:focus-visible { outline: 2px solid #fff; outline-offset: -4px; box-shadow: 0 0 0 3px #333; }

.featured-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.35s ease;
}
.featured-card:hover img { transform: scale(1.04); filter: brightness(0.85); }

.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}

.featured-play {
  position: absolute;
  top: 50%; left: 50%;
  width: 64px; height: 64px;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.featured-card:hover .featured-play { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
.featured-play svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }

.featured-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  color: #fff;
  pointer-events: none;
}
.featured-eyebrow {
  display: block;
  font-family: 'Caudex', serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.featured-title {
  display: block;
  font-family: 'Caudex', serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

/* ── Theatre section on Reels page — text-based credits + awards ── */
.theatre-credits {
  max-width: 760px;
  margin: 0 auto;
  padding: 4px 12px 0;
}
.theatre-lead {
  font-family: 'Caudex', serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}
.theatre-lead strong { color: #1a1a1a; }

.theatre-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid #e8e8e8;
}
.theatre-list li {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 16px;
  padding: 14px 6px;
  border-bottom: 1px solid #e8e8e8;
  font-family: 'Caudex', serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: #444;
}
.theatre-title { color: #1a1a1a; font-weight: 700; }
.theatre-title em { font-style: italic; font-weight: 700; }
.theatre-role  { color: #444; }
.theatre-dir   { color: #777; font-size: 12.5px; }

.theatre-awards {
  background: #fafafa;
  border-left: 3px solid #1a1a1a;
  padding: 18px 22px;
  margin: 0 0 24px;
}
.theatre-awards-title {
  font-family: 'Caudex', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.theatre-awards ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.theatre-awards li {
  font-family: 'Caudex', serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: #444;
  padding: 4px 0;
}
.theatre-awards strong { color: #1a1a1a; }

.theatre-foot {
  text-align: center;
  font-family: 'Caudex', serif;
  font-size: 12.5px;
  color: #777;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
}
.theatre-foot a { color: #1a1a1a; border-bottom: 1px solid #999; }

@media (max-width: 600px) {
  .theatre-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 4px;
  }
  .theatre-dir { font-size: 12px; }
}

/* ── Lightbox modal ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease;
}
.lightbox-frame {
  width: 100%;
  max-width: 1180px;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-frame iframe {
  width: 100%; height: 100%; border: 0;
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); transform: scale(1.05); }
.lightbox-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 600px) {
  .featured-grid { grid-template-columns: 1fr; gap: 16px; }
  .featured-title { font-size: 16px; }
  .featured-play { width: 52px; height: 52px; }
}

/* ── Page hero (simple pages) ─────────────────────────────────── */
.page-hero {
  padding: 40px 0 20px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 36px;
}

.page-hero h1 {
  font-family: 'Caudex', serif;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.04em;
}

/* ── VOD / Reel player ────────────────────────────────────────── */
.vod-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.vod-widget {
  background: #141414;
  color: #fff;
}

.vod-header {
  padding: 20px 20px 0;
}

.vod-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.vod-player {
  position: relative;
  width: 940px;
  height: 528.75px;
  margin: 12px auto 0;
  overflow: hidden;
  background: #000;
}

.vod-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vod-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.vod-overlay-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.vod-play-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vod-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.vod-play-btn svg { opacity: 0.9; transition: opacity 0.2s; }
.vod-play-btn:hover svg { opacity: 1; }

.vod-list {
  padding: 16px 20px 20px;
  display: flex;
  gap: 4px;
}

.vod-thumb {
  width: 306.66px;
  cursor: pointer;
}

.vod-thumb-img {
  position: relative;
  width: 306.66px;
  height: 172.5px;
  overflow: hidden;
  background: #222;
}

.vod-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vod-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.active-thumb .vod-thumb-play,
.vod-thumb:hover .vod-thumb-play { opacity: 1; }

.active-thumb .vod-thumb-play svg,
.vod-thumb:hover .vod-thumb-play svg { width: 40px; height: 40px; }

.vod-thumb-meta {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vod-now-playing {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #80e3ff;
}

.vod-duration {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.vod-thumb-title {
  padding: 8px 4px 0;
  font-size: 13px;
  color: #ccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Voice Overs hero ─────────────────────────────────────────── */
.vo-hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #141414;
}

.vo-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.6;
}

.vo-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.vo-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}

.vo-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.vo-hero-title {
  font-family: 'Caudex', serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.vo-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.vo-hero-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.vo-cta {
  display: inline-block;
  padding: 11px 28px;
  border: 1px solid #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.2s;
}
.vo-cta:hover { background: #fff; color: #141414; }

.vo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vo-card {
  border: 1px solid #e8e8e8;
  padding: 28px;
}

.vo-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f2e2e;
  margin-bottom: 8px;
}

.vo-card-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 16px;
}

.vo-card-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  border-bottom: 1px solid #333;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.vo-card-link:hover { color: #80e3ff; border-color: #80e3ff; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .vod-player { width: 100%; height: auto; aspect-ratio: 16/9; }
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-layout img { width: 100%; height: auto; }
  .resume-table td:first-child { white-space: normal; }
  .resume-table td:nth-child(2) { white-space: normal; }
  .resume-table { display: block; }
  .resume-table tbody, .resume-table tr { display: block; padding: 8px 0; }
  .resume-table td { display: block; padding: 2px 0; width: auto !important; }
  .resume-table td:first-child { font-weight: 700; color: #1a1a1a; padding-top: 8px; }
  .resume-table td:nth-child(2) { color: #555; }
  .resume-table td:last-child { color: #888; font-size: 12.5px; }
  .vo-grid { grid-template-columns: 1fr; }
  .vod-thumb { width: 100%; }
  .vod-thumb-img { width: 100%; height: auto; aspect-ratio: 16/9; }
  .vo-hero { height: 360px; }
  .vo-hero-title { font-size: 36px; }
}

@media (max-width: 680px) {
  .site-name { font-size: 26px; }
  .site-tagline { font-size: 16px; }
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .site-nav.open { display: flex; }

  .nav-list {
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #e8e8e8;
    padding: 6px 0 12px;
  }
  .nav-list > li > a { height: auto; padding: 8px 0; line-height: 1.4; }

  .nav-dropdown {
    position: static;
    background: none;
    display: block;
    padding-left: 16px;
  }
  .nav-dropdown li a { text-align: left; padding: 5px 0; color: #999; }

  .slideshow { height: 56vw; min-height: 180px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
}

/* ── Print styles (used by wkhtmltopdf PDF render + browser Print) ── */
@media print {
  body { background: #fff; color: #1a1a1a; font-family: 'Caudex', Georgia, serif; }
  .site-header, footer, .nav-toggle, .resume-download, .social-bar { display: none !important; }
  .page-inner { padding: 0 !important; max-width: none !important; }
  #resume-pdf-target { padding: 0 4px; }

  /* Big print-only name header */
  #resume-pdf-target::before {
    content: 'GREDIVEL VASQUEZ';
    display: block;
    text-align: center;
    font-family: 'Caudex', Georgia, serif;
    font-weight: 700;
    font-size: 22pt;
    letter-spacing: 0.16em;
    color: #1a1a1a;
    margin-bottom: 4pt;
  }
  #resume-pdf-target::after { content: ''; }

  /* Photo at top of PDF — small, centered, framed by the header line */
  .resume-top {
    display: block !important;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 10pt;
    margin-bottom: 14pt;
  }
  .resume-photo {
    display: block !important;
    margin: 6pt auto 8pt;
  }
  .resume-photo img {
    width: 110pt !important;
    max-width: 110pt !important;
    height: auto !important;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: none !important;
    border: 1px solid #ccc;
    margin: 0 auto;
    display: block;
  }
  .resume-about { text-align: left; }
  .resume-about h2 { display: none; }   /* page header replaces it */
  .resume-about p {
    font-size: 9pt !important;
    line-height: 1.5 !important;
    color: #333 !important;
    margin: 0 !important;
  }

  /* Section spacing */
  .resume-section { margin-bottom: 12pt !important; page-break-inside: avoid; }
  .resume-section h5 {
    font-size: 11pt !important;
    margin: 0 0 4pt !important;
    padding-bottom: 3pt !important;
    border-bottom: 1px solid #999 !important;
    page-break-after: avoid;
  }

  /* Tables — denser, no row borders bleeding to next page */
  .resume-table { page-break-inside: auto; }
  .resume-table tr { page-break-inside: avoid; }
  .resume-table td {
    font-size: 9pt !important;
    padding: 3pt 8pt 3pt 0 !important;
    line-height: 1.35 !important;
  }
  .resume-table td:first-child { width: 36% !important; color: #1a1a1a; font-weight: 700; }
  .resume-table td:nth-child(2) { width: 26% !important; color: #444; }
  .resume-table td:last-child { width: 38% !important; color: #666; font-size: 8.5pt !important; }

  /* Awards callout */
  .resume-awards {
    background: #f6f6f6 !important;
    border-left: 2pt solid #1a1a1a !important;
    padding: 8pt 12pt !important;
    margin: 6pt 0 0 !important;
    font-size: 9pt !important;
    line-height: 1.5 !important;
    page-break-inside: avoid;
  }
  .resume-text { font-size: 9pt !important; line-height: 1.5 !important; }
  .resume-dates { font-size: 8.5pt !important; }

  /* Footer URL on every page (wkhtmltopdf will respect via @page rule) */
  @page {
    size: Letter;
    margin: 14mm 14mm 14mm 14mm;
  }
  a, a:visited { color: #1a1a1a; text-decoration: none; }
}


/* ── Warm refresh (2026-06-12) — REVERSIBLE: delete from here to EOF ─────── */
body { background: #faf8f4; }
.site-header { background: #faf8f4; }                         /* header matches warm body (seamless, no white band) */

/* Subtle hairline frame on gallery photos */
.gallery-item { border: 1px solid #e7e1d6; background: #f3f1ec; }

/* Dark, premium footer */
footer { background: #161616; border-top: none; color: #9a9a9a; }
footer .foot-name { color: #f5f5f5; }
footer .foot-links a { color: #bdbdbd; }
footer .foot-links a:hover { color: #fff; }
.foot-social a { color: #b0b0b0; }
.foot-social a:hover { color: #fff; }
.foot-credit { color: #8a8a8a; }
.foot-credit a { color: #bdbdbd; }
.foot-credit a:hover { color: #fff; }
/* ── end warm refresh ───────────────────────────────────────────────────── */

/* ── Language toggle (top-right) ─────────────────────────────────────────── */
.lang-toggle { position: absolute; top: 34px; right: 20px; z-index: 50; display: inline-flex; border: 1px solid #cfc8ba; border-radius: 999px; overflow: hidden; font-family: 'Caudex', serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; }
.lang-toggle a { padding: 3px 10px; color: #8a8378; background: transparent; transition: background 0.2s, color 0.2s; }
.lang-toggle a.active { background: #1a1a1a; color: #faf8f4; }
.lang-toggle a:not(.active):hover { color: #1a1a1a; }
@media (max-width: 680px) { .lang-toggle { top: 20px; right: 54px; } }

/* ── Now Playing (current Repertorio Español productions) ────────────────── */
.now-playing { max-width: 980px; margin: 52px auto 0; padding: 46px 20px 24px; text-align: center; border-top: 1px solid #e7e1d6; }
.np-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a8378; margin: 0 0 9px; display: inline-flex; align-items: center; gap: 7px; }
.np-dot { width: 7px; height: 7px; border-radius: 50%; background: #c0392b; animation: np-pulse 2s infinite; }
@keyframes np-pulse { 0% { box-shadow: 0 0 0 0 rgba(192,57,43,0.45); } 70% { box-shadow: 0 0 0 7px rgba(192,57,43,0); } 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); } }
.np-heading { font-family: 'Caudex', serif; font-size: 24px; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; }
.np-lead { font-family: 'Caudex', serif; font-size: 14px; color: #555; line-height: 1.6; max-width: 620px; margin: 0 auto 22px; }
.np-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.np-card { display: flex; flex-direction: column; border: 1px solid #e3ddd1; border-radius: 8px; background: #fff; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.np-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.08); transform: translateY(-2px); }
.np-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.np-card-body { display: flex; flex-direction: column; justify-content: space-between; gap: 14px; padding: 15px 14px 16px; flex: 1; }
.np-show { font-family: 'Caudex', serif; font-size: 16px; font-weight: 700; color: #1a1a1a; line-height: 1.3; }
.np-cta { display: inline-block; font-family: 'Caudex', serif; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: #1a1a1a; padding: 9px 0; border-radius: 5px; transition: background 0.2s; }
.np-card:hover .np-cta { background: #c0392b; }
@media (max-width: 860px) { .np-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .np-grid { grid-template-columns: 1fr; } }

/* "Now Streaming" bar (screen credit under the stage band) */
.np-stream { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 18px; margin-top: 28px; padding-top: 24px; border-top: 1px solid #ece6da; }
.np-stream-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a8378; display: inline-flex; align-items: center; }
.np-stream-title { font-family: 'Caudex', serif; font-size: 16px; font-weight: 700; color: #1a1a1a; }
.np-stream-btn { display: inline-block; font-family: 'Caudex', serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: #e50914; padding: 9px 18px; border-radius: 5px; transition: background 0.2s; }
.np-stream-btn:hover { background: #b20710; }

.np-meta { display: flex; flex-direction: column; gap: 4px; }
.np-credit { font-family: 'Caudex', serif; font-size: 11.5px; font-style: italic; color: #8a8378; line-height: 1.3; }

/* ── Now Playing — listing rows (v2; overrides earlier card styles) ──────── */
.np-grid { display: grid; grid-template-columns: 1fr; gap: 16px; text-align: left; max-width: 820px; margin: 0 auto; }
.np-card { display: grid; grid-template-columns: 230px 1fr; align-items: stretch; gap: 0; border: 1px solid #e3ddd1; border-radius: 10px; background: #fff; overflow: hidden; padding: 0; transition: box-shadow 0.2s, transform 0.2s; }
.np-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); transform: translateY(-2px); }
.np-card img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; aspect-ratio: auto; display: block; }
.np-card-body { display: flex; flex-direction: column; gap: 6px; padding: 18px 22px; flex: 1; }
.np-show { font-family: 'Caudex', serif; font-size: 19px; font-weight: 700; color: #1a1a1a; line-height: 1.25; }
.np-credit { font-family: 'Caudex', serif; font-size: 12px; font-style: italic; color: #8a8378; margin-top: -1px; }
.np-summary { font-family: 'Caudex', serif; font-size: 13.5px; color: #555; line-height: 1.55; margin-top: 3px; }
.np-info { font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; color: #9a9384; margin-top: 3px; }
.np-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.np-price { font-family: 'Caudex', serif; font-size: 13px; font-weight: 700; color: #1a1a1a; }
.np-cta { display: inline-block; font-family: 'Caudex', serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: #1a1a1a; padding: 9px 18px; border-radius: 5px; transition: background 0.2s; }
.np-card:hover .np-cta { background: #c0392b; }
@media (max-width: 600px) { .np-card { grid-template-columns: 1fr; } .np-card img { min-height: 0; height: 200px; } }
/* streaming bar (two items) */
.np-stream { max-width: 820px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid #ece6da; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 18px; }
.np-stream-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a8378; }
.np-stream-item { display: inline-flex; align-items: center; gap: 9px; font-family: 'Caudex', serif; font-size: 14px; color: #1a1a1a; }
.np-stream-tag { font-family: 'Caudex', serif; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: #1a1a1a; padding: 5px 10px; border-radius: 4px; transition: background 0.2s; }
.np-stream-item:hover .np-stream-tag { background: #555; }
.np-tag-netflix { background: #e50914; }
.np-stream-item:hover .np-tag-netflix { background: #b20710; }

/* ── Now Playing — looping 3-up carousel (v3; overrides v2 list styles) ──── */
.np-carousel { position: relative; max-width: 900px; margin: 0 auto; padding: 0 6px; }
.npc-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px; scrollbar-width: none; -ms-overflow-style: none; }
.npc-track::-webkit-scrollbar { display: none; }
.npc-track > .np-card { flex: 0 0 calc((100% - 92px) / 3); scroll-snap-align: start; }   /* 3 cards + a sliver of the next */
@media (max-width: 920px) { .npc-track > .np-card { flex-basis: calc((100% - 74px) / 2); } }
@media (max-width: 600px) { .npc-track > .np-card { flex-basis: calc(100% - 56px); } }
.np-card { display: flex; flex-direction: column; text-align: left; border: 1px solid #e3ddd1; border-radius: 10px; background: #fff; overflow: hidden; padding: 0; transition: box-shadow 0.2s, transform 0.2s; }
.np-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); transform: translateY(-2px); }
.np-card img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; display: block; min-height: 0; }
.np-card-body { display: flex; flex-direction: column; gap: 5px; padding: 16px 18px; flex: 1; }
.np-show { font-family: 'Caudex', serif; font-size: 17px; font-weight: 700; color: #1a1a1a; line-height: 1.25; }
.np-credit { font-family: 'Caudex', serif; font-size: 11.5px; font-style: italic; color: #8a8378; }
.np-summary { font-family: 'Caudex', serif; font-size: 13px; color: #555; line-height: 1.5; margin-top: 2px; }
.np-info { font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: #9a9384; margin-top: auto; padding-top: 8px; }
.np-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.np-price { font-family: 'Caudex', serif; font-size: 12.5px; font-weight: 700; color: #1a1a1a; }
.np-cta { display: inline-block; font-family: 'Caudex', serif; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: #1a1a1a; padding: 8px 14px; border-radius: 5px; transition: background 0.2s; white-space: nowrap; }
.np-card:hover .np-cta { background: #c0392b; }
.np-cta-netflix, .np-card:hover .np-cta-netflix { background: #e50914; }
.np-card:hover .np-cta-netflix { background: #b20710; }
.np-substream { font-size: 11px; color: #8a8378; font-style: italic; margin-top: 7px; }
.npc-arrow { position: absolute; top: 38%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid #ddd6c8; color: #1a1a1a; font-size: 20px; line-height: 1; cursor: pointer; z-index: 5; box-shadow: 0 2px 8px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.npc-arrow:hover { background: #f3efe7; }
.npc-prev { left: -8px; }
.npc-next { right: -8px; }
@media (max-width: 600px) { .npc-arrow { display: none; } }

/* Now Playing — full-width section band (warm sand tone, deeper than the body) */
.now-playing { max-width: none; margin: 46px 0 0; padding: 48px 20px 48px; background: #f6f1e8; border-top: 1px solid #ece5d7; border-bottom: none; }
.now-playing ~ footer { margin-top: 0; }   /* band flows straight into the dark footer — no light gap (script sits between them) */

/* ── Hero — full-bleed slideshow + overlay (Ken Burns, scrim, CTAs, dots) ── */
.hero { position: relative; width: 100%; height: 600px; overflow: hidden; background: #111; }
@media (max-width: 740px) { .hero { height: 64vh; min-height: 400px; } }
.hero-slides { position: absolute; inset: 0; }
.hero .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero .slide.active { opacity: 1; }
.hero .slide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transform: scale(1.02); transition: transform 6s ease-out; }
.hero .slide.active img { transform: scale(1.09); }
.hero-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0) 52%); }
.hero-overlay { position: absolute; left: 0; right: 0; bottom: 52px; z-index: 3; text-align: center; padding: 0 20px; }
.hero-eyebrow { font-family: 'Caudex', serif; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 16px; text-shadow: 0 1px 8px rgba(0,0,0,0.45); }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-btn { display: inline-block; font-family: 'Caudex', serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 11px 22px; border-radius: 6px; background: #faf8f4; color: #1a1a1a; transition: background 0.2s, color 0.2s; }
.hero-btn:hover { background: #fff; }
.hero-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.85); }
.hero-btn-ghost:hover { background: #fff; color: #1a1a1a; border-color: #fff; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 20px; z-index: 3; display: flex; gap: 8px; justify-content: center; }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.hero-dots button.active { background: #fff; transform: scale(1.15); }
@media (max-width: 740px) { .hero-eyebrow { font-size: 12px; letter-spacing: 0.1em; } .hero-overlay { bottom: 44px; } }

/* Footer — a touch more breathing room */
footer { padding: 44px 20px 40px; }
.foot-name { margin-bottom: 16px; }
.foot-social { margin: 8px 0 20px; }
.foot-links { margin-bottom: 16px; gap: 22px; }
.foot-credit { margin-top: 8px; line-height: 1.7; }

/* Mobile header — stop the wordmark overlapping the toggle + hamburger */
@media (max-width: 680px) {
  .site-name { font-size: 19px; letter-spacing: 0.04em; }
  .site-tagline { font-size: 14px; }
  .nav-toggle { top: 20px; right: 12px; }
  .lang-toggle { top: 56px; right: 14px; }
}

/* ── Mobile menu — left slide-in drawer ─────────────────────────────────── */
.nav-backdrop, .nav-close { display: none; }
@media (max-width: 680px) {
  .site-nav {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 80%; max-width: 300px; margin: 0;
    background: #faf8f4;
    transform: translateX(-100%);
    transition: transform 0.32s ease;
    z-index: 400;
    display: flex !important; flex-direction: column; justify-content: flex-start;
    box-shadow: 3px 0 24px rgba(0,0,0,0.18);
    padding: 60px 0 28px; overflow-y: auto;
  }
  body.nav-open .site-nav { transform: translateX(0); }
  .nav-backdrop {
    display: block; position: fixed; inset: 0;
    background: rgba(0,0,0,0.45); opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease; z-index: 350;
  }
  body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .nav-close {
    display: block; position: absolute; top: 12px; right: 14px;
    background: none; border: none; font-size: 30px; line-height: 1;
    color: #1a1a1a; cursor: pointer; padding: 2px 10px;
  }
  .nav-list { flex-direction: column; width: 100%; align-items: stretch; border-top: none; padding: 6px 26px; gap: 0; }
  .nav-list > li { width: 100%; }
  .nav-list > li > a { display: block; height: auto; padding: 14px 0; font-size: 18px; color: #1a1a1a; border-bottom: 1px solid #ece5d7; }
  .nav-list > li:last-child > a { border-bottom: none; }
}

/* ── Brand colors ───────────────────────────────────────────────────────── */
:root {
  --bg: #faf8f4;          /* warm off-white body */
  --band: #f6f1e8;        /* section band (sand) */
  --ink: #1a1a1a;         /* primary text */
  --ink-soft: #555555;    /* body text */
  --muted: #8a8378;       /* eyebrows / captions */
  --hairline: #e8e0d0;    /* dividers */
  --accent: #c0392b;      /* theatrical red (Now Playing, hovers) */
  --footer-bg: #161616;   /* dark footer */
}

/* On-brand nav — red hover, BOLD (not coloured) for the current page */
.nav-list > li > a:hover,
.nav-list > li.has-dropdown:hover > a { color: var(--accent); }
.nav-list > li > a.active { color: var(--ink); font-weight: 700; }
.nav-dropdown li a:hover, .nav-dropdown li a.active { color: var(--accent); }

/* Language toggle — now lives in the nav (top bar on desktop, drawer on mobile) */
.site-nav { align-items: center; }
.lang-toggle { position: static; top: auto; right: auto; z-index: auto; margin-left: 20px; align-self: center; }
.lang-toggle a.active { background: var(--ink); color: var(--bg); }
.lang-toggle a:not(.active):hover { color: var(--accent); }
@media (max-width: 680px) {
  .lang-toggle { margin: 22px 26px 4px; align-self: flex-start; }
}

/* Mobile — menu icon uniform with the wordmark (ink colour, vertically centred on the brand block) */
@media (max-width: 680px) {
  .nav-toggle { top: 8px; right: 16px; padding: 5px; gap: 5px; }
  .nav-toggle span { background: var(--ink); width: 24px; height: 2px; }
}
/* Desktop — EN/ES back to a pill switch in the top-right corner, separate from the nav row */
@media (min-width: 681px) {
  .lang-toggle {
    position: absolute; top: 34px; right: 20px; z-index: 50;
    margin-left: 0; align-self: auto;
    border: 1px solid #cfc8ba; border-radius: 999px; overflow: hidden;
    gap: 0; font-size: 11px;
  }
  .lang-toggle a { padding: 3px 10px; color: #8a8378; background: transparent; border: none; }
  .lang-toggle a.active { background: var(--ink); color: var(--bg); font-weight: 700; }
  .lang-toggle a:not(.active):hover { color: var(--ink); }
}

/* Footer legal row */
.foot-legal { font-size: 11px; letter-spacing: 0.04em; margin: 2px 0 6px; }
.foot-legal a { color: #bdbdbd; text-decoration: none; }
.foot-legal a:hover { color: #fff; text-decoration: underline; }

/* Legal / info pages (Privacy, Accessibility) */
.legal { max-width: 720px; margin: 0 auto; padding: 4px 4px 0; font-family: 'Caudex', serif; text-align: left; }
.legal p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; margin: 0 0 16px; }
.legal h2 { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin: 30px 0 12px; }
.legal a { color: var(--ink); text-decoration: underline; }
.legal-updated { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
