/* Max Reeves — site stylesheet */

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

:root {
  --bg: oklch(98% 0.006 85);
  --bg-raised: oklch(96% 0.007 85);
  --ink: oklch(16% 0.006 85);
  --muted: oklch(46% 0.014 85);
  --line: oklch(85% 0.008 85);
  --accent: oklch(52% 0.10 55);
  --accent-ink: oklch(98% 0.006 85);
}

body.dis-theme {
  --bg: oklch(13% 0.012 30);
  --bg-raised: oklch(17% 0.014 30);
  --ink: oklch(95% 0.006 30);
  --muted: oklch(62% 0.02 30);
  --line: oklch(30% 0.02 30);
  --accent: oklch(45% 0.17 24);
  --accent-ink: oklch(97% 0.006 30);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.serif { font-family: 'Bodoni Moda', Georgia, 'Times New Roman', serif; }

.eyebrow {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin: 0 0 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 26px 56px; border-bottom: 1px solid var(--line); flex-wrap: wrap; gap: 16px;
}
.nav { display: flex; gap: 34px; align-items: center; flex-wrap: wrap; }
.nav a {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--ink); padding-bottom: 5px; border-bottom: 1px solid transparent;
}
.nav a.is-active { border-bottom-color: var(--accent); }
.header-nav-right { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.wordmark {
  font-family: 'Bodoni Moda', serif; font-size: 21px; letter-spacing: .16em; font-weight: 600;
}
.header-icons { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 999px; background: transparent; flex-shrink: 0;
  cursor: pointer;
}
.icon-btn svg { width: 15px; height: 15px; color: var(--ink); }
.divider-v { width: 1px; height: 20px; background: var(--line); margin: 0 4px; }
.cart-wrap { position: relative; }
.cart-badge {
  position: absolute; top: -4px; right: -4px; background: var(--accent); color: var(--accent-ink);
  font-size: 9px; width: 15px; height: 15px; border-radius: 999px; display: flex;
  align-items: center; justify-content: center; font-weight: 700;
}

@media (min-width: 900px) {
  .site-header { flex-wrap: nowrap; }
}

.sub-nav {
  display: flex; justify-content: center; padding: 12px 24px; border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
}
.sub-nav .nav { gap: 26px; }
.sub-nav .nav a { font-size: 10.5px; color: var(--muted); }
.sub-nav .nav a:hover, .sub-nav .nav a.is-active { color: var(--ink); border-bottom-color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 64px 24px 32px; }
.footer-top {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding-bottom: 36px; border-bottom: 1px solid var(--line); max-width: 1200px; margin: 0 auto;
}
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.ig-link { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.ig-link svg { width: 16px; height: 16px; }
.newsletter-form {
  display: flex; align-items: center; border-bottom: 1px solid var(--ink);
  padding-bottom: 8px; gap: 12px; max-width: 320px;
}
.newsletter-form input {
  flex: 1; border: none; background: transparent; font-family: 'Archivo';
  font-size: 14px; color: var(--ink); outline: none;
}
.newsletter-form button { border: none; background: none; display: flex; flex-shrink: 0; cursor: pointer; }
.newsletter-form svg { width: 16px; height: 16px; }
.footer-legal { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); }
.footer-bottom {
  padding-top: 22px; text-align: center; font-size: 11px; letter-spacing: .1em;
  color: var(--muted); text-transform: uppercase;
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ---------- Placeholder photography blocks (used until real images fill every slot) ---------- */
.ph { position: relative; overflow: hidden; background: linear-gradient(155deg, #4a4038, #211c18); }
.ph::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 28% 18%, rgba(255,255,255,.07), transparent 55%);
}
.ph.tone-2 { background: linear-gradient(155deg, #413c40, #18171b); }
.ph.tone-3 { background: linear-gradient(155deg, #463c3a, #1a1513); }
.ph.tone-4 { background: linear-gradient(155deg, #3d443f, #15191a); }
.ph.tone-5 { background: linear-gradient(155deg, #443c3f, #17141a); }
.dis-theme .ph { background: linear-gradient(160deg, #2c1414, #0e0808); }
.dis-theme .ph::after { background-image: radial-gradient(circle at 30% 20%, rgba(180,40,40,.16), transparent 60%); }
.dis-theme .ph.tone-2 { background: linear-gradient(160deg, #221c1c, #0c0a0a); }

/* ---------- Home ---------- */
.hero { position: relative; height: 82vh; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; }
.hero picture { position: absolute; inset: 0; display: block; }
.hero img.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
@media (min-width: 761px) {
  .hero img.hero-photo { object-position: 78% 30%; }
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,9,8,.72) 0%, rgba(10,9,8,.15) 45%, transparent 70%);
}
.hero-content { position: relative; padding: 0 56px 56px; color: #f4f1ec; width: 100%; }
.hero-content .eyebrow { color: #cbbfae; }
.hero-title { font-family: 'Bodoni Moda', serif; font-size: 96px; line-height: .94; letter-spacing: .01em; margin: 0 0 18px; }
.hero-sub { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: #e7e0d4; font-weight: 500; }

@media (max-width: 760px) {
  .hero { height: 70vh; }
}

section.page-section { padding: 100px 56px; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-title { font-family: 'Bodoni Moda', serif; font-size: 40px; margin: 0; }

.reel-block { max-width: 960px; margin: 0 auto; }
.video-frame {
  position: relative; aspect-ratio: 16/9; border-radius: 2px; display: block; overflow: hidden;
}
.video-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-frame::before { content: ''; position: absolute; inset: 0; background: rgba(10,9,8,.28); z-index: 1; }
.play-btn { position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; color: #f4f1ec; z-index: 2; }
.video-caption {
  display: flex; justify-content: space-between; align-items: center; margin-top: 22px;
  padding-top: 18px; border-top: 1px solid var(--line); gap: 16px; flex-wrap: wrap;
}
.video-caption .title { font-family: 'Bodoni Moda', serif; font-size: 19px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 3px;
}
.link-arrow svg { width: 13px; height: 13px; }

.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.teaser-img { aspect-ratio: 3/4; margin-bottom: 14px; position: relative; overflow: hidden; }
.teaser-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.teaser-caption { font-size: 12px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.teaser-cta { text-align: center; margin-top: 52px; }

.quote-section { background: var(--bg-raised); }
.quote { max-width: 760px; margin: 0 auto; text-align: center; }
.quote p { font-family: 'Bodoni Moda', serif; font-style: italic; font-size: 30px; line-height: 1.4; margin: 0 0 22px; }
.quote cite { font-style: normal; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.rep-strip { display: flex; align-items: center; justify-content: center; gap: 24px; padding: 56px; flex-wrap: wrap; }
.rep-strip .line { height: 1px; width: 80px; background: var(--line); }
.rep-strip p { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0; }
.rep-strip strong { color: var(--ink); }

/* ---------- Generic page head ---------- */
.page-head { padding: 88px 56px 20px; text-align: center; }
.page-title { font-family: 'Bodoni Moda', serif; font-size: 56px; margin: 0; }
.page-sub { font-size: 14px; color: var(--muted); max-width: 520px; margin: 18px auto 0; }

/* ---------- Reel page ---------- */
.reel-page-block { max-width: 960px; margin: 0 auto; padding: 0 56px 100px; }
.clip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; }
.clip-card { display: block; }
.clip-frame { position: relative; aspect-ratio: 16/10; margin-bottom: 16px; overflow: hidden; }
.clip-frame svg.play-sm { width: 44px; height: 44px; position: absolute; inset: 0; margin: auto; color: #f4f1ec; z-index: 2; }
.clip-frame::before { content: ''; position: absolute; inset: 0; background: rgba(10,9,8,.22); z-index: 1; }
.clip-title { font-family: 'Bodoni Moda', serif; font-size: 19px; margin: 0 0 4px; }
.clip-sub { font-size: 12px; color: var(--muted); font-style: italic; }
.resume-strip { max-width: 720px; margin: 0 auto; text-align: center; padding: 56px 56px 100px; border-top: 1px solid var(--line); }
.resume-strip p { font-size: 14px; color: var(--muted); letter-spacing: .04em; margin: 0 0 16px; }
.resume-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }

/* ---------- Portfolio ---------- */
.gallery { columns: 4 260px; column-gap: 24px; padding: 56px 56px 100px; }
.g-item { break-inside: avoid; margin-bottom: 24px; position: relative; }
.g-item .g-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.g-item .credit {
  position: absolute; left: 14px; right: 14px; bottom: 14px; font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: #f4f1ec; opacity: .92; z-index: 2;
}
.g-item .credit .by { display: block; font-size: 10px; color: #cdc3b5; letter-spacing: .06em; text-transform: none; margin-top: 2px; }
.g-item .scrim { position: absolute; inset: auto 0 0 0; height: 46%; background: linear-gradient(0deg, rgba(10,9,8,.62), transparent); }
.g-item.is-enlargeable { cursor: pointer; }
.g-item.is-enlargeable:hover .g-img { transform: scale(1.03); }
.g-item .g-img { transition: transform .35s ease; }

/* Click-to-enlarge modal */
.pf-modal {
  position: fixed; inset: 0; z-index: 1100; background: rgba(8, 7, 6, .94);
  display: flex; align-items: center; justify-content: center; padding: 64px 24px;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.pf-modal.is-open { opacity: 1; pointer-events: auto; }
.pf-modal-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 100%; }
.pf-modal-img { max-width: 88vw; max-height: 80vh; object-fit: contain; display: block; }
.pf-modal-figure figcaption { font-size: 12px; letter-spacing: .06em; color: #cdc3b5; text-align: center; }
.pf-modal-close, .pf-modal-nav {
  position: absolute; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: transparent;
  color: #f4f1ec; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.pf-modal-close { top: 24px; right: 24px; width: 42px; height: 42px; }
.pf-modal-close svg { width: 16px; height: 16px; }
.pf-modal-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.pf-modal-nav svg { width: 18px; height: 18px; }
.pf-modal-prev { left: 20px; }
.pf-modal-next { right: 20px; }

@media (max-width: 640px) {
  .pf-modal-nav { width: 40px; height: 40px; }
  .pf-modal-prev { left: 8px; }
  .pf-modal-next { right: 8px; }
}

.lightbox {
  margin: 0 56px 100px; padding: 40px; border: 1px solid var(--line); background: var(--bg-raised);
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.lightbox .lb-img { flex: 1; aspect-ratio: 4/5; max-width: 420px; min-width: 240px; overflow: hidden; }
.lightbox .lb-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox .lb-meta { flex: 1; min-width: 240px; }
.lightbox .lb-title { font-family: 'Bodoni Moda', serif; font-size: 24px; margin: 0 0 8px; }
.lightbox .lb-credit { font-size: 13px; color: var(--muted); margin: 0 0 24px; }
.lb-nav { display: flex; gap: 14px; }
.lb-nav button {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 999px; background: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lb-nav svg { width: 16px; height: 16px; color: var(--ink); }
.g-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- Site search ---------- */
#site-search-overlay {
  position: fixed; inset: 0; z-index: 1000; background: rgba(10, 9, 8, .55);
  display: flex; align-items: flex-start; justify-content: center; padding: 10vh 24px 24px;
  opacity: 0; pointer-events: none; transition: opacity .18s ease;
}
#site-search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-panel {
  background: var(--bg); border: 1px solid var(--line); width: 100%; max-width: 560px;
  max-height: 70vh; display: flex; flex-direction: column; overflow: hidden;
}
.search-panel-top { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.search-panel-top svg { width: 17px; height: 17px; color: var(--muted); flex-shrink: 0; }
.search-panel-top input {
  flex: 1; border: none; background: transparent; outline: none; font-family: 'Archivo';
  font-size: 15px; color: var(--ink);
}
.search-panel-top button { border: none; background: none; cursor: pointer; display: flex; color: var(--muted); }
.search-panel-top button svg { width: 15px; height: 15px; }
.search-results { overflow-y: auto; padding: 8px 0; }
.search-result {
  display: block; padding: 14px 20px; font-size: 14px; letter-spacing: .02em; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover, .search-result:focus-visible { background: var(--bg-raised); color: var(--accent); }
.search-empty { padding: 20px; font-size: 13px; color: var(--muted); }

/* ---------- About ---------- */
.about-wrap { display: grid; grid-template-columns: 420px 1fr; gap: 72px; padding: 40px 56px 100px; max-width: 1280px; margin: 0 auto; }
.about-img { position: sticky; top: 40px; aspect-ratio: 4/5; align-self: start; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.about-body h2 { font-family: 'Bodoni Moda', serif; font-size: 26px; margin: 36px 0 14px; }
.about-body h2:first-child { margin-top: 0; }
.about-body p { font-size: 15px; line-height: 1.75; color: var(--ink); margin: 0 0 16px; max-width: 620px; }
.about-body p.lede { font-family: 'Bodoni Moda', serif; font-size: 22px; font-style: italic; line-height: 1.5; color: var(--ink); max-width: 620px; }
.lang-line { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 8px; }
.lang-pill { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; color: var(--muted); }
.interests { font-size: 15px; line-height: 1.75; color: var(--muted); max-width: 620px; }
.rep-card { margin-top: 48px; border-top: 1px solid var(--line); padding-top: 32px; max-width: 620px; }
.rep-card .name { font-family: 'Bodoni Moda', serif; font-size: 20px; margin: 0 0 4px; }
.rep-card .agency { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
.rep-card a { font-size: 13px; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-img { position: static; }
}

/* ---------- Languages ---------- */
.lang-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 56px 56px 100px; max-width: 1200px; margin: 0 auto; }
.lang-card { display: block; }
.lang-frame { position: relative; aspect-ratio: 16/10; margin-bottom: 16px; overflow: hidden; }
.lang-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lang-frame::before { content: ''; position: absolute; inset: 0; background: rgba(10,9,8,.22); z-index: 1; }
.lang-frame svg { width: 44px; height: 44px; position: absolute; inset: 0; margin: auto; color: #f4f1ec; z-index: 2; }
.lang-name { font-family: 'Bodoni Moda', serif; font-size: 20px; margin: 0 0 2px; }
.lang-native { font-size: 12px; color: var(--muted); letter-spacing: .04em; }

@media (max-width: 760px) {
  .lang-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .lang-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 100px 56px 110px; max-width: 1180px; margin: 0 auto; align-items: start; }
.contact-title { font-family: 'Bodoni Moda', serif; font-size: 52px; margin: 0 0 24px; }
.contact-intro { font-size: 15px; line-height: 1.75; color: var(--muted); max-width: 420px; margin: 0 0 32px; }
.contact-direct { font-size: 15px; margin: 0 0 6px; }
.contact-direct a { border-bottom: 1px solid var(--ink); }
.contact-nudge { font-size: 13px; color: var(--muted); margin-top: 28px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  border: none; border-bottom: 1px solid var(--line); background: transparent; font-family: 'Archivo';
  font-size: 15px; color: var(--ink); padding: 8px 0; outline: none;
}
.field textarea { resize: none; min-height: 110px; font-family: 'Archivo'; }
.submit-btn {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 10px; background: var(--ink);
  color: var(--bg); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 16px 34px; border: none; cursor: pointer;
}
.submit-btn svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Dinner Is Served ---------- */
.project-tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); padding: 6px 14px;
  border-radius: 999px; margin-bottom: 22px;
}
.dis-hero { position: relative; height: 88vh; min-height: 620px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.dis-hero .ph { position: absolute; inset: 0; }
.dis-hero-scrim { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,.2), rgba(0,0,0,.75)); }
.dis-hero-content { position: relative; max-width: 680px; padding: 0 24px; }
.film-title { font-family: 'Bodoni Moda', serif; font-style: italic; font-size: 80px; line-height: 1; margin: 0 0 20px; }
.tagline { font-size: 16px; letter-spacing: .06em; color: var(--muted); margin: 0 0 40px; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--accent-ink); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: 18px 40px; }
.cta-btn svg { width: 14px; height: 14px; }
.genre-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }
.genre-pill { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--line); color: var(--muted); padding: 8px 18px; border-radius: 999px; }
.film-body { max-width: 720px; margin: 0 auto; text-align: center; }
.film-body .eyebrow { justify-content: center; }
.logline { font-family: 'Bodoni Moda', serif; font-size: 26px; font-style: italic; line-height: 1.5; margin: 0 0 30px; }
.synopsis { font-size: 15px; line-height: 1.8; color: var(--muted); margin: 0; }
.secondary-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 0 56px 110px; }
.ghost-btn { border: 1px solid var(--line); color: var(--ink); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: 16px 32px; }

@media (max-width: 700px) {
  .film-title { font-size: 52px; }
}

/* ---------- About DIS ---------- */
.press-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 56px 100px; max-width: 1320px; margin: 0 auto; }
.press-tile { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.press-tile.is-link { cursor: pointer; }
.press-tile .play-xs { width: 34px; height: 34px; position: absolute; inset: 0; margin: auto; color: #f4f1ec; z-index: 2; }
.press-tile .badge { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 18px; gap: 8px; }
.press-tile .badge .eyebrow { color: var(--accent); margin: 0; }
.press-tile .badge .badge-title { font-family: 'Bodoni Moda', serif; font-size: 17px; line-height: 1.25; margin: 0; }
.press-tile .badge .badge-sub { font-size: 11px; letter-spacing: .06em; color: var(--muted); margin: 0; }

.poster-wrap { display: grid; grid-template-columns: 380px 1fr; gap: 64px; padding: 0 56px 100px; max-width: 1180px; margin: 0 auto; align-items: center; }
.poster-img { aspect-ratio: 2/3; overflow: hidden; }
.poster-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster-copy .eyebrow { margin-bottom: 16px; }
.poster-copy p { font-size: 15px; line-height: 1.8; color: var(--muted); margin: 0; }

.dis-still-wrap { padding: 0 56px 100px; max-width: 640px; margin: 0 auto; }
.dis-still-wrap img { width: 100%; display: block; }

.movie-block { max-width: 720px; margin: 0 auto; padding: 0 56px 60px; }

@media (max-width: 900px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .poster-wrap { grid-template-columns: 1fr; }
  .poster-img { max-width: 320px; margin: 0 auto; }
}

/* ---------- Store ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 28px; padding: 56px 56px 110px; max-width: 1320px; margin: 0 auto; }
.product-img { position: relative; aspect-ratio: 4/5; margin-bottom: 16px; display: block; overflow: hidden; background: var(--bg-raised); }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-name { font-family: 'Bodoni Moda', serif; font-size: 16px; margin: 0 0 6px; line-height: 1.3; }
.product-price { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.add-btn { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; border: 1px solid var(--line); padding: 11px 0; width: 100%; text-align: center; display: block; background: none; color: var(--ink); cursor: pointer; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- Small screens: header/hero ---------- */
@media (max-width: 760px) {
  .hero-title { font-size: 56px; }
  .site-header { padding: 20px 24px; }
  section.page-section, .page-head, .about-wrap, .contact-wrap, .gallery, .lang-grid, .product-grid, .reel-page-block {
    padding-left: 24px; padding-right: 24px;
  }
}
