﻿:root {
  --bg: #0b0b0b;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --text: #f3f4f6;
  --muted: #b6bac4;
  --accent: #c9a96e;
  --accent-2: #9a7b42;
  --line: rgba(255,255,255,0.12);
  --radius: 16px;
}

body.theme-light {
  --bg: #f4f2ef;
  --surface: #ffffff;
  --surface-2: #f3f4f8;
  --text: #151515;
  --muted: #4a5568;
  --line: rgba(0,0,0,0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 80% -20%, rgba(201,169,110,0.12), transparent 40%), var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 0;
}
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; color: #000; padding: .5rem .75rem; z-index: 1000; }

.site-header {
  position: sticky; top: 0; z-index: 99;
  backdrop-filter: blur(10px);
  background: rgba(11,11,11,0.72);
  border-bottom: 1px solid var(--line);
}
body.theme-light .site-header { background: rgba(244,242,239,0.8); }
.header-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand img {
  width: auto;
  height: clamp(34px, 5.2vw, 46px);
  object-fit: contain;
}
.primary-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.primary-nav a {
  color: var(--muted);
  font-size: .95rem;
  transition: color .25s ease;
}
.primary-nav a:hover { color: var(--text); }
.theme-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .85rem;
}
.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 9px;
}
.hamburger span { display:block; height:2px; margin:5px 0; background:var(--text); }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(.55rem, 1.2vw, .9rem);
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: clamp(.55rem, 1.2vw, .9rem);
  border-radius: clamp(14px, 2.2vw, 24px);
}
.hero-media {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 44px rgba(0,0,0,.3);
}
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-media img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}
.hero-overlay {
  background: linear-gradient(105deg, rgba(0,0,0,.82) 5%, rgba(0,0,0,.58) 45%, rgba(0,0,0,.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: clamp(4.6rem, 8vw, 6.3rem);
  padding-bottom: clamp(3.4rem, 6vw, 5rem);
  padding-left: clamp(.25rem, 1vw, .75rem);
  padding-right: clamp(.25rem, 1vw, .75rem);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: .7rem;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 9vw, 5rem);
  line-height: 1.05;
  margin: 0;
}
.hero-subtitle { margin-top: 1rem; font-weight: 600; color: #e4e4e4; font-size: clamp(1rem, 3vw, 1.3rem); }
body.theme-light .hero-subtitle { color: #333; }
.hero-tagline { font-size: clamp(1.05rem, 3vw, 1.45rem); margin-top: .9rem; color: var(--muted); max-width: 40ch; }
.hero-actions { display: flex; gap: .9rem; margin-top: 1.8rem; flex-wrap: wrap; }
.btn-premium,
.btn-ghost {
  padding: .8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .94rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-premium {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e0e0e;
  box-shadow: 0 8px 20px rgba(201,169,110,.28);
}
.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.btn-premium:hover,.btn-ghost:hover{ transform: translateY(-2px); }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head { margin-bottom: 1.75rem; }
.section-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
}

.about-pr {
  position: relative;
  overflow: hidden;
}
.about-pr::before {
  content: "";
  position: absolute;
  inset: auto auto -130px -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201,169,110,.22), transparent 70%);
  pointer-events: none;
}
.about-pr::after {
  content: "";
  position: absolute;
  inset: -140px -180px auto auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201,169,110,.15), transparent 72%);
  pointer-events: none;
}
.about-pr-intro {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: 0 18px 36px rgba(0,0,0,.2);
  padding: clamp(1.2rem, 2vw, 1.7rem);
  max-width: 980px;
  backdrop-filter: blur(8px);
}
.about-pr-intro p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.85;
  font-size: clamp(.95rem, 1.05vw, 1rem);
}
.about-pr-intro p:last-child { margin-bottom: 0; }
.about-pr-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
.about-pr-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(165deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
  box-shadow: 0 20px 34px rgba(0,0,0,.22);
  padding: clamp(1rem, 2.1vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.about-pr-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201,169,110,.18), transparent 72%);
  pointer-events: none;
}
.about-pr-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,169,110,.6);
  box-shadow: 0 24px 38px rgba(0,0,0,.25);
}
.about-pr-profile-photo {
  margin: 0;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.about-pr-profile-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .65s ease, filter .45s ease;
}
.about-pr-profile-left .about-pr-profile-photo img { object-position: center 15%; }
.about-pr-profile-right .about-pr-profile-photo img { object-position: center 12%; }
.about-pr-card:hover .about-pr-profile-photo img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.03);
}
.about-pr-profile-name {
  font-weight: 600;
  letter-spacing: .03em;
  font-size: .97rem;
  color: var(--text);
  text-transform: uppercase;
  text-align: center;
}
.about-pr-card p {
  margin: 0 0 .9rem;
  color: var(--muted);
  line-height: 1.75;
}
.about-pr-card p:last-of-type { margin-bottom: .2rem; }
.about-pr-card blockquote {
  position: relative;
  margin: 0;
  border-left: 3px solid rgba(201,169,110,.8);
  background: linear-gradient(120deg, rgba(0,0,0,.28), rgba(0,0,0,.14));
  border-radius: 0 12px 12px 0;
  padding: .95rem 1rem .9rem 1.15rem;
  color: #ececec;
  line-height: 1.8;
  font-size: clamp(.93rem, 1.1vw, 1rem);
}
.about-pr-card blockquote::before {
  content: "\201C";
  position: absolute;
  left: .5rem;
  top: .1rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(201,169,110,.72);
}
.about-pr-card strong { color: #f0efe9; }

.film-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.film-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.film-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(0,0,0,.35); }
.film-poster img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.film-body { padding: 1rem; }
.film-body h3 { font-size: 1.1rem; margin: 0 0 .25rem; }
.film-body h3 span { color: var(--accent); font-weight: 600; }
.film-body p { margin: .25rem 0; color: var(--muted); }
.film-body .role { font-size: .92rem; }
.film-body a { display: inline-block; margin-top: .55rem; color: var(--accent); font-weight: 600; }

.award-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--accent);
  display: block;
}
.stat-label { color: var(--muted); font-size: .92rem; }
.award-timeline {
  display: grid;
  gap: .9rem;
}
.timeline-item {
  border-left: 2px solid var(--accent);
  padding: .35rem 0 .35rem 1rem;
}
.timeline-item h3 { margin: 0; font-size: 1.02rem; }
.timeline-item p { margin: .2rem 0 0; color: var(--muted); }

.quote-block {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(201,169,110,.24), transparent 35%), linear-gradient(120deg, rgba(255,255,255,.03), transparent 50%);
}
.quote-block blockquote {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 5.5vw, 3rem);
  line-height: 1.25;
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.press-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  padding: 1rem;
  transition: transform .25s ease, border-color .25s ease;
}
.press-card:hover { transform: translateY(-3px); border-color: rgba(201,169,110,.6); }
.press-card h3 { margin: 0 0 .35rem; font-size: 1rem; }
.press-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.media-news {
  position: relative;
  overflow: hidden;
}
.news-slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(165deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  backdrop-filter: blur(8px);
  box-shadow: 0 26px 50px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1rem, 3vw, 1.6rem) 3.2rem;
}
.news-slider-glow {
  position: absolute;
  inset: auto auto -130px -100px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201,169,110,.28), transparent 70%);
  pointer-events: none;
  filter: blur(1px);
  animation: newsGlowFloat 6s ease-in-out infinite alternate;
}
.news-track-shell {
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.24);
  padding: clamp(.35rem, .8vw, .5rem);
}
.news-track {
  display: flex;
  gap: clamp(.7rem, 1.6vw, 1rem);
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.news-slide {
  min-width: calc(100% - clamp(2.2rem, 9vw, 6.2rem));
  margin: 0;
  padding: clamp(.55rem, 1.2vw, .75rem);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 22px rgba(0,0,0,.22);
}
.news-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  object-position: center;
  background: rgba(0,0,0,.46);
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255,255,255,.1);
  transform: scale(1);
  transition: transform .9s ease, filter .6s ease, box-shadow .4s ease;
  cursor: zoom-in;
}
.news-slide:hover img {
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
  box-shadow: 0 16px 30px rgba(0,0,0,.26);
}
.news-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(9,9,9,.54);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.news-prev { left: .6rem; }
.news-next { right: .6rem; }
.news-nav:hover {
  border-color: rgba(201,169,110,.7);
  box-shadow: 0 0 0 4px rgba(201,169,110,.2);
  transform: translateY(-50%) scale(1.05);
}
.news-dots {
  position: absolute;
  left: 50%;
  bottom: 1.05rem;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
}
.news-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,.4);
  transition: transform .3s ease, background .25s ease, box-shadow .25s ease;
}
.news-dot.is-active {
  background: var(--accent);
  transform: scale(1.24);
  box-shadow: 0 0 0 4px rgba(201,169,110,.18);
}
.news-empty {
  width: 100%;
  border: 1px dashed var(--line);
  border-radius: calc(var(--radius) - 4px);
  padding: 1.1rem;
  color: var(--muted);
  font-size: .92rem;
}
.news-empty code {
  color: var(--accent);
  font-family: inherit;
}

.news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(4px);
}
.news-lightbox[hidden] { display: none; }
.news-lightbox-inner {
  width: min(1100px, 96vw);
  max-height: 92vh;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(160deg, rgba(17,17,17,.95), rgba(14,14,14,.94));
  box-shadow: 0 24px 55px rgba(0,0,0,.45);
  padding: clamp(.75rem, 1.4vw, 1rem);
}
.news-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}
.news-lightbox-zoom-controls {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.news-lightbox-zoom-controls button {
  height: 36px;
  min-width: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 .75rem;
}
.news-lightbox-zoom-controls button:hover {
  border-color: rgba(201,169,110,.7);
  box-shadow: 0 0 0 3px rgba(201,169,110,.2);
}
.news-lightbox-zoom-reset {
  min-width: 68px;
  font-size: .84rem;
  font-weight: 600;
}
.news-lightbox-close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.news-lightbox-close:hover {
  border-color: rgba(201,169,110,.7);
  box-shadow: 0 0 0 3px rgba(201,169,110,.2);
}
.news-lightbox-image-wrap {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: calc(var(--radius) + 2px);
  background: #060606;
  padding: clamp(.45rem, 1vw, .65rem);
  margin-top: .5rem;
  overflow: auto;
}
.news-lightbox-image {
  width: 100%;
  max-height: calc(92vh - 160px);
  object-fit: contain;
  border-radius: calc(var(--radius) - 3px);
  transform-origin: center center;
  transition: transform .2s ease;
}
.news-lightbox-caption {
  margin: .7rem 0 .2rem;
  color: #e8e8e8;
  font-size: .92rem;
  line-height: 1.55;
}
@keyframes newsGlowFloat {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .9; }
  to { transform: translate3d(18px, -14px, 0) scale(1.06); opacity: 1; }
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.contact-copy p { color: var(--muted); }
.contact-socials { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }
.contact-socials a {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: .45rem .9rem;
  font-size: .9rem;
}
.contact-form {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
}
.contact-form label { display: block; font-size: .88rem; color: var(--muted); margin-bottom: .75rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: .35rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .7rem .75rem;
  background: rgba(255,255,255,.04);
  color: var(--text);
}
body.theme-light .contact-form input,
body.theme-light .contact-form textarea { background: #fff; }
.form-note { margin-top: .7rem; font-size: .8rem; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 1.4rem;
}
.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.footer-shell p { margin: 0; color: var(--muted); font-size: .9rem; }
.footer-links { display: flex; gap: .7rem; align-items: center; }
.footer-links a,
.footer-links button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface);
  color: var(--text);
}
.footer-links button { cursor: pointer; }

.page-hero {
  padding: clamp(5.5rem, 10vw, 8rem) 0 clamp(2rem, 4vw, 3rem);
}

.prose-block h2,
.prose-block h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 .65rem;
}

.prose-block h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
.prose-block h3 { margin-top: 1.3rem; font-size: 1.15rem; }
.prose-block ul { margin: .35rem 0 0; padding-left: 1.1rem; }
.prose-block li { margin-bottom: .35rem; color: var(--muted); }
.prose-block a { color: var(--accent); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.blog-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.blog-card-body { padding: 1rem; }
.blog-card-body h2 {
  font-size: clamp(1.15rem, 3.2vw, 1.6rem);
  font-family: "Playfair Display", serif;
  margin: .2rem 0 .5rem;
}
.blog-card-body p { color: var(--muted); margin: 0 0 .5rem; }
.blog-card-body a { color: var(--accent); font-weight: 600; }

/* ============================================ */

.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(16px); }
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s ease; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 92vh;
    padding: .5rem;
  }
  .hero-media,
  .hero-overlay {
    inset: .5rem;
    border-radius: 14px;
  }
  .hero-content { padding-top: 4.4rem; padding-bottom: 3.1rem; }
  .hamburger { display: inline-block; }
  .primary-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .primary-nav a { padding: .9rem 1rem; border-top: 1px solid var(--line); }
  .primary-nav.open { max-height: 340px; }
  .news-slider { padding-bottom: 2.75rem; }
  .news-nav { width: 36px; height: 36px; }
  .news-prev { left: .36rem; }
  .news-next { right: .36rem; }
}

@media (max-width: 575.98px) {
  .hero { min-height: 84vh; }
  .hero-content {
    padding-top: 4rem;
    padding-bottom: 2.6rem;
    padding-left: .2rem;
    padding-right: .2rem;
  }
  .news-slider {
    padding: .8rem .8rem 2.65rem;
    border-radius: calc(var(--radius) + 4px);
  }
  .news-slide { padding: .45rem; }
  .news-track { gap: .55rem; }
  .news-slide { min-width: 100%; }
  .news-slide img { aspect-ratio: 4/3; }
  .news-nav {
    top: auto;
    bottom: .62rem;
    transform: none;
  }
  .news-nav:hover { transform: scale(1.03); }
  .news-prev { left: .78rem; }
  .news-next { right: .78rem; }
  .news-dots { bottom: .95rem; }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .news-slide { min-width: calc(100% - 3rem); }
}

@media (min-width: 768px) {
  .about-pr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .film-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .press-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (max-width: 767.98px) {
  .about-pr-grid { gap: .85rem; }
}

@media (max-width: 575.98px) {
  .about-pr-intro,
  .about-pr-card {
    padding: .9rem;
  }
  .about-pr-card blockquote {
    padding: .8rem .85rem;
    font-size: .91rem;
  }
  .about-pr-profile-name {
    font-size: .9rem;
    letter-spacing: .025em;
  }
  .about-pr-profile-photo img { aspect-ratio: 4 / 3; }
}

@media (min-width: 1200px) {
  .film-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .blog-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .press-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
