/* ============================================
   Christa Films — christafilms.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg:        #faf7f0;
  --bg-alt:    #f3ede0;
  --ink:       #1a1714;
  --ink-soft:  #2a2520;
  --muted:     #7a6f63;
  --line:      #e3d9c6;
  --line-soft: #efe7d6;
  --gold:      #b4985a;
  --gold-deep: #8f7641;
  --dark:      #181410;
  --dark-2:    #221d18;
  --cream:     #f5ede0;
  --max:       1180px;

  --display:   "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body:      "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26,23,20,.06);
  --shadow-md: 0 12px 36px rgba(26,23,20,.12);
  --shadow-lg: 0 24px 64px rgba(26,23,20,.22);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }

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

::selection { background: var(--gold); color: #fff; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); line-height: 1.05; font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.4rem; line-height: 1.25; }
h4 { font-family: var(--body); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin: 0 0 .35em; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

/* ============================================
   Header
   ============================================ */

.top {
  position: sticky;
  top: 0;
  background: rgba(250,247,240,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo svg, .logo img { height: 44px; width: auto; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--body);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .42em;
  color: var(--gold);
  margin-top: 4px;
  padding-left: 2px;
}
.footer .brand-name { color: #f5ede0; }
.footer .brand-sub { color: var(--gold); }

.menu {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu a { position: relative; padding: 8px 0; }
.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }

.menu .pill a {
  background: var(--ink);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 999px;
  letter-spacing: .12em;
}
.menu .pill a:hover { background: var(--gold); color: #fff; }
.menu .pill a::after { display: none; }

/* ============================================
   Hero — Poster Slider
   ============================================ */

.hero-slider {
  position: relative;
  height: clamp(640px, 92vh, 900px);
  overflow: hidden;
  background: #0a0806;
  color: #f5ede0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 0s linear 1.1s;
  display: flex;
  align-items: center;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.1s ease, visibility 0s linear 0s;
  z-index: 2;
}

/* Backdrop: blurred enlarged poster */
.hero-slide .backdrop {
  position: absolute;
  inset: -8%;
  background-position: center;
  background-size: cover;
  filter: blur(36px) brightness(.55) saturate(1.05);
  transform: scale(1.08);
  z-index: 0;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,6,4,.86) 0%, rgba(8,6,4,.55) 45%, rgba(8,6,4,.25) 70%, rgba(8,6,4,.65) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 30%, transparent 70%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.hero-slide .wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  align-items: center;
  width: 100%;
}

/* Active slide: animate copy in */
.hero-slide .copy {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease .25s, transform .9s ease .25s;
}
.hero-slide.is-active .copy {
  opacity: 1;
  transform: translateY(0);
}

/* Active slide: animate poster in */
.hero-slide .slide-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #1a1714;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(245,237,224,.06);
  border-radius: 2px;
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity 1s ease .15s, transform 1s ease .15s;
}
.hero-slide.is-active .slide-poster {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-slide .eyebrow { color: var(--gold); }
.hero-slide .eyebrow::before { background: var(--gold); }

.hero-slide h1 {
  font-size: clamp(2.6rem, 7.4vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -.018em;
  line-height: 1;
  color: #f5ede0;
  margin-bottom: 22px;
  max-width: 14ch;
}
.hero-slide h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-slide .role {
  font-family: var(--body);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #cdc2ad;
  margin-bottom: 26px;
  font-weight: 500;
}
.hero-slide .role span { color: var(--gold); }

.hero-slide .lede {
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  max-width: 560px;
  color: #d8cdb6;
  margin-bottom: 34px;
  font-weight: 300;
  line-height: 1.55;
}

.hero-slide .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.slider-controls .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.slider-dots {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.slider-dots button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,237,224,.55);
  font-family: var(--body);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .3s ease;
}
.slider-dots .dot-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(245,237,224,.35);
  transition: background .3s ease, width .4s ease;
}
.slider-dots button:hover { color: rgba(245,237,224,.9); }
.slider-dots button:hover .dot-line { background: rgba(245,237,224,.7); }
.slider-dots button.is-active { color: var(--gold); }
.slider-dots button.is-active .dot-line {
  background: var(--gold);
  width: 56px;
}

.slider-arrows { display: flex; gap: 10px; }
.slider-arrows button {
  appearance: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(245,237,224,.25);
  background: transparent;
  color: #f5ede0;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.slider-arrows button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: rgba(245,237,224,.08);
  z-index: 5;
}
.slider-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width .15s linear;
}

.slider-counter {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 5;
  font-family: var(--display);
  color: rgba(245,237,224,.7);
  font-size: 1rem;
  letter-spacing: .04em;
}
.slider-counter .now { color: #f5ede0; font-size: 1.4rem; font-weight: 500; }
.slider-counter .total { color: rgba(245,237,224,.4); }

/* ============================================
   CTA strip
   ============================================ */

.cta-strip {
  background: var(--dark);
  color: #f5ede0;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(180,152,90,.18), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(180,152,90,.10), transparent 60%);
  pointer-events: none;
}
.cta-strip .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #f5ede0;
  margin: 0 0 14px;
}
.cta-strip h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.cta-strip p { color: #cdc2ad; font-size: 1.05rem; margin: 0; max-width: 50ch; }
.cta-strip .cta-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  padding: 14px 26px;
  font-family: var(--body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff !important; transform: translateY(-1px); }

.btn.outline {
  background: transparent;
  color: var(--gold) !important;
}
.btn.outline:hover { background: var(--gold); color: #fff !important; }

.btn.dark {
  background: var(--ink);
  border-color: var(--ink);
}
.btn.dark:hover { background: var(--gold); border-color: var(--gold); }

.btn.light {
  background: #fff;
  color: var(--ink) !important;
  border-color: #fff;
}
.btn.light:hover { background: var(--gold); border-color: var(--gold); color: #fff !important; }

/* ============================================
   Sections
   ============================================ */

.section { padding: 100px 0; border-bottom: 1px solid var(--line-soft); }
.section.tight { padding: 70px 0; }
.section.dark { background: var(--dark); color: #cdc2ad; border-bottom-color: rgba(255,255,255,.05); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #f5ede0; }
.section.dark h4 { color: var(--gold); }
.section.dark .eyebrow { color: var(--gold); }
.section.dark .eyebrow::before { background: var(--gold); }
.section.alt { background: var(--bg-alt); }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.page-title {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-bottom: 1px solid var(--line-soft);
}
.page-title h1 { margin-bottom: 0; }
.page-title .eyebrow { margin-bottom: 18px; }

/* ============================================
   Production / Capability cards
   ============================================ */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.card {
  background: var(--bg);
  padding: 44px 32px;
  text-align: left;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
  position: relative;
}
.card:hover { background: var(--bg-alt); }
.card .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
}
.card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ============================================
   Movie grid (the visual centerpiece)
   ============================================ */

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

.movie-card {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  background: #1a1714;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  transition: transform .4s ease, box-shadow .4s ease;
}
.movie-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.movie-card .poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .4s ease;
}
.movie-card:hover .poster { transform: scale(1.04); filter: brightness(.55); }

.movie-card .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
  color: #f5ede0;
  transform: translateY(0);
  transition: transform .4s ease;
}
.movie-card .meta h3 {
  font-family: var(--display);
  color: #f5ede0;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 4px;
  line-height: 1.15;
}
.movie-card .meta .by {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.movie-card .arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.0);
  border: 1px solid rgba(245,237,224,.4);
  color: #f5ede0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
}
.movie-card:hover .arrow { opacity: 1; transform: translateY(0); background: var(--gold); border-color: var(--gold); }

/* Movies index list */
.movie-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.movie-list .movie-card { aspect-ratio: 2 / 3; }
.movie-list .movie-card .meta { padding: 26px 24px; }

.movie-list-meta {
  margin-top: 14px;
  text-align: center;
}
.movie-list-meta h3 {
  font-size: 1.3rem;
  margin: 0 0 2px;
}
.movie-list-meta .by {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   Movie detail
   ============================================ */

.detail {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.detail .poster {
  position: sticky;
  top: 110px;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #1a1714;
  box-shadow: var(--shadow-lg);
  border-radius: 2px;
}

.detail .content > p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 1.1em; }
.detail .content > p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 500;
  float: left;
  line-height: .9;
  margin: .08em .12em -.08em 0;
  color: var(--gold);
}

.detail h2 {
  margin: 50px 0 18px;
  font-size: 1.7rem;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #100c08;
  margin: 24px 0 36px;
  box-shadow: var(--shadow-md);
  border-radius: 2px;
  overflow: hidden;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 36px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta-grid > div p { margin: 0; color: var(--ink); font-size: .98rem; }
.meta-grid > div h4 { margin-bottom: 6px; }

.links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ============================================
   Press grid
   ============================================ */

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.press-grid.three { grid-template-columns: repeat(3, 1fr); }

.press-item {
  background: var(--bg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.press-item:hover { border-color: var(--gold); transform: translateY(-2px); }
.press-item .date {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.press-item h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 14px;
}
.press-item p {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 22px;
  flex-grow: 1;
}
.press-item .read-more {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.press-item .read-more::after {
  content: " →";
  transition: transform .25s ease;
  display: inline-block;
}
.press-item:hover .read-more::after { transform: translateX(4px); }

/* ============================================
   About / content section
   ============================================ */

.prose { max-width: 760px; }
.prose p { font-size: 1.05rem; color: var(--ink-soft); }
.prose p + p { margin-top: 1em; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

/* ============================================
   Contact
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info p { color: var(--ink-soft); }
.contact-info .ci-item { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-info .ci-item:last-child { border-bottom: 1px solid var(--line); }
.contact-info .ci-item h4 { margin-bottom: 4px; }

.contact-form { display: grid; gap: 18px; }
.contact-form label {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: .98rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 160px; font-family: var(--body); }

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--dark);
  color: #b8ad97;
  padding: 70px 0 30px;
}
.footer .footgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}
.footer h3 {
  color: #f5ede0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer p { color: #b8ad97; font-size: .94rem; line-height: 1.7; max-width: 36ch; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: .92rem; color: #b8ad97; }
.footer ul a:hover { color: var(--gold); }

.footer .brand-mark { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .brand-mark svg, .footer .brand-mark img { height: 40px; }
.footer .brand-mark .brand-text {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: .04em;
  color: #f5ede0;
}

.footer .copy {
  border-top: 1px solid rgba(245,237,224,.08);
  margin-top: 50px;
  padding-top: 24px;
  font-size: .82rem;
  letter-spacing: .04em;
  color: #8a7e69;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   Mobile
   ============================================ */

@media (max-width: 980px) {
  .nav { padding: 14px 0; }
  .menu { gap: 18px; font-size: .72rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .movie-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .movie-list { grid-template-columns: repeat(2, 1fr); }
  .detail { grid-template-columns: 1fr; gap: 36px; }
  .detail .poster { position: static; max-width: 360px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer .footgrid { grid-template-columns: 1fr; gap: 36px; }
  .press-grid, .press-grid.three { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }

  .hero-slider { height: auto; min-height: 100vh; padding: 100px 0 130px; }
  .hero-slide { padding: 0; }
  .hero-slide .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }
  .hero-slide .slide-poster { max-width: 240px; order: -1; }
  .hero-slide h1 { max-width: none; }
  .slider-counter { top: 100px; right: 28px; }
  .cta-strip .wrap { grid-template-columns: 1fr; gap: 24px; }
  .cta-strip .cta-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }
  .menu { width: 100%; flex-wrap: wrap; gap: 14px; }
  .menu .pill { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .movie-list { grid-template-columns: 1fr; }
  .meta-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .footer { padding: 50px 0 24px; }
  .hero-slider { padding: 80px 0 110px; }
  .hero-slide .slide-poster { max-width: 200px; }
  .slider-counter { display: none; }
  .slider-arrows { display: none; }
  .slider-controls { bottom: 28px; }
  .slider-dots button { font-size: 0; padding: 6px; }
  .slider-dots button .dot-line { width: 22px; }
  .slider-dots button.is-active .dot-line { width: 40px; }
}

/* ============================================
   Utilities
   ============================================ */

.pad-bottom-tight { padding-bottom: 30px !important; }
.center { text-align: center; }
.divider { height: 1px; background: var(--line); border: 0; margin: 40px 0; }
