*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #FFFFFF;
  --cream:      #F9F6F2;
  --cream-dk:   #EDE8DF;
  --border:     rgba(193, 171, 140, 0.2);
  --gold:       #C9A97A;
  --gold-dk:    #A88458;
  --text:       #1C1612;
  --text-sub:   rgba(28, 22, 18, 0.58);
  --text-muted: rgba(28, 22, 18, 0.32);
  --ff-display: 'Cormorant Garant', serif;
  --ff-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 20px 40px;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(193, 171, 140, 0.22);
  box-shadow: 0 2px 28px rgba(0,0,0,0.08);
  border-radius: 100px;
  padding: 8px 8px 8px 18px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-right: 6px;
  flex-shrink: 0;
}
.nav-logo-mark {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0 4px;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(28, 22, 18, 0.06);
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: var(--text);
  border-radius: 100px;
  padding: 8px 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover {
  background: var(--gold-dk);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(28, 22, 18, 0.07);
  border: none;
  cursor: pointer;
  margin-left: 4px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.nav-burger:hover { background: rgba(28, 22, 18, 0.12); }
.nav-burger svg { display: block; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream-dk);
  display: flex;
  flex-direction: column;
  padding: 28px 32px 48px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-brand {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  text-decoration: none;
}
.mobile-menu-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(28, 22, 18, 0.08);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.mobile-menu-close:hover { background: rgba(28, 22, 18, 0.14); }

.mobile-nav-links {
  list-style: none;
  margin-top: auto;
  padding-bottom: 12px;
}
.mobile-nav-links li {
  border-top: 1px solid rgba(28, 22, 18, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-nav-links li:last-child { border-bottom: 1px solid rgba(28, 22, 18, 0.08); }
.mobile-menu.open .mobile-nav-links li { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-nav-links li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-nav-links li:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-nav-links li:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-nav-links li:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-nav-links li:nth-child(5) { transition-delay: 0.32s; }
.mobile-nav-links a {
  display: block;
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  line-height: 1;
  transition: color 0.2s ease;
}
.mobile-nav-links a:hover { color: var(--gold); }

.mobile-menu-footer {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-email {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.mobile-menu-email:hover { color: var(--text); }
.mobile-menu-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}
.mobile-menu-socials a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}
.mobile-menu-socials a:hover { color: var(--text); }

/* ─── SECTION LABEL ─── */
.section-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--text);
  border: none;
  border-radius: 12px;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.18s ease;
}
.btn-primary:hover {
  background: #2e2820;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--text);
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.18s ease;
}
.btn-outline:hover {
  background: #2e2820;
  transform: translateY(-1px);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--cream);
  padding: 160px 64px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.01em;
}
.page-hero-sub {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-sub);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ─── PLACEHOLDER GRADIENTS ─── */
.ph-warm    { background: linear-gradient(135deg, #D4C5B0 0%, #BCA890 40%, #C8B29A 100%); }
.ph-warm-dk { background: linear-gradient(135deg, #4A3828 0%, #6B5040 40%, #3A2818 100%); }
.ph-mist    { background: linear-gradient(135deg, #C8C4BC 0%, #B4AEA4 50%, #C0B8AE 100%); }
.ph-forest  { background: linear-gradient(135deg, #8A9080 0%, #707868 50%, #9A9E94 100%); }
.ph-sand    { background: linear-gradient(135deg, #E0D4C0 0%, #CCC0A8 50%, #D8CCBA 100%); }
.ph-gold    { background: linear-gradient(135deg, #C9A97A 0%, #A88458 50%, #BFA070 100%); }

/* ─── FILM CARD ─── */
.film-card {
  display: block;
  text-decoration: none;
  color: var(--text);
}
.film-card-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.film-card:hover .film-card-thumb { transform: scale(1.02); }

.film-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.film-card:hover .film-card-play { opacity: 1; }
.film-card-play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.film-card-play-btn svg { margin-left: 4px; }

.film-card-info {
  padding: 20px 4px 0;
}
.film-card-names {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
}
.film-card-meta {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ─── FOOTER ─── */
footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 64px 64px;
  border-bottom: 1px solid var(--border);
  gap: 40px;
}
.footer-cta-headline {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 400;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.footer-cta-headline em { font-style: italic; color: var(--gold); }

.footer-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 22px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(201, 169, 122, 0.35);
}
.footer-cta-arrow:hover {
  background: var(--gold-dk);
  transform: translateY(-2px) rotate(-45deg);
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding: 48px 64px;
  border-bottom: 1px solid var(--border);
  gap: 40px;
}
.footer-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-col-body {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}
.footer-col-body a {
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col-body a:hover { color: var(--text); }
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.footer-social a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--text); }

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  gap: 24px;
}
.footer-bar-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bar-links {
  display: flex;
  gap: 24px;
}
.footer-bar-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bar-links a:hover { color: var(--text); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-info { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
}

@media (max-width: 680px) {
  nav { padding: 16px 20px; }

  .page-hero { padding: 120px 24px 60px; }
  .page-hero-title { font-size: 52px; }
  .page-hero-sub { font-size: 15px; }

  .footer-cta { padding: 48px 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-cta-headline { font-size: 44px; }
  .footer-info { grid-template-columns: 1fr; padding: 36px 24px; gap: 24px; }
  .footer-social { justify-content: flex-start; }
  .footer-bar { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bar-links { gap: 16px; }
}
