﻿/* ============================================
   Dream Fiction Company — Home Page Styles
   ============================================ */

:root {
  --color-bg: #0a1628;
  --color-surface: hsl(220, 40%, 10%);
  --color-gold: #22c55e;
  --color-gold-bright: #4ade80;
  --color-gold-dim: rgba(34, 197, 94, 0.15);
  --color-green: #22c55e;
  --color-green-bright: #4ade80;
  --color-green-dim: rgba(34, 197, 94, 0.15);
  --color-white: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.7);
  --color-border: rgba(255, 255, 255, 0.14);
  --body-font: "Manrope", Helvetica, Arial, sans-serif;
  --heading-font: "Oxanium", Helvetica, Arial, sans-serif;
  --header-height: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease-out);
  --site-background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(34, 197, 94, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
    var(--color-bg);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--site-background);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-height);
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.2) 70%,
    transparent 100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.logo-img {
  display: block;
  height: 66px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
}

/* Navigation */
[data-site-nav] {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}

.nav-link {
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--color-gold-bright);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.dropdown-chevron {
  transition: transform var(--transition);
}

/* Dropdown */
.nav-item--dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 200px;
  padding: 0.5rem 0;
  background: rgba(14, 14, 14, 0.97);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--color-border);
}

.nav-item--dropdown:hover .dropdown-menu,
.nav-item--dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item--dropdown:hover .dropdown-chevron,
.nav-item--dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
}

.dropdown-menu a:hover {
  color: var(--color-gold-bright);
  background: var(--color-gold-dim);
  padding-left: 1.5rem;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  z-index: 1001;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.3);
}

.btn--primary:hover {
  background: var(--color-green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.9rem 1.75rem;
}

.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-bg);
  border-color: var(--color-white);
}

.btn--outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline-gold:hover {
  background: var(--color-gold-dim);
  color: var(--color-gold-bright);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* Local file warning */
.local-warning {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  text-align: center;
  color: #fff;
  background: #8b2500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.local-warning a {
  color: var(--color-gold-bright);
  text-decoration: underline;
}

/* ---------- HERO (multi-image slider) ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.image-slider--hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

.image-slider--hero .image-slider__viewport,
.image-slider--hero .image-slider__track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-slider--hero .image-slider__slide img {
  transform: scale(1.05);
}

.image-slider--hero .image-slider__slide.is-active img {
  animation: heroSlideKen 10s var(--ease-out) forwards;
}

@keyframes heroSlideKen {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.1);
  }
}

.image-slider--hero .image-slider__btn {
  z-index: 6;
  width: 3.25rem;
  height: 3.25rem;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
}

.image-slider--hero .image-slider__btn--prev {
  left: clamp(1rem, 4vw, 2.5rem);
}

.image-slider--hero .image-slider__btn--next {
  right: clamp(1rem, 4vw, 2.5rem);
}

.image-slider--hero .image-slider__progress {
  bottom: 5.5rem;
  z-index: 6;
}

.image-slider__footer--hero {
  z-index: 6;
  padding-bottom: 4.5rem;
}

.hero-overlay,
.hero-grain {
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.65) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hero captions (per slide) */
.hero-captions {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: calc(var(--header-height) + 2rem) clamp(1rem, 4vw, 3.5rem) 5rem;
  text-align: center;
  pointer-events: none;
}

.hero-captions--grid12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
}

.hero-caption {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out), visibility 0.55s;
  pointer-events: none;
}

.hero-captions--grid12 .hero-caption {
  grid-column: 1 / -1;
}

.hero-caption__inner {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.hero-caption.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hero content (legacy / shared typography) */
.hero-content,
.hero-caption {
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  max-width: 900px;
  animation: heroFadeIn 1.2s var(--ease-out) forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-green-bright);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title-line {
  display: block;
}

.hero-title-line--accent {
  color: var(--color-white);
  text-shadow: 0 0 80px rgba(34, 197, 94, 0.35);
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--heading-font);
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-caption.is-active .hero-eyebrow,
.hero-caption.is-active .hero-title-line,
.hero-caption.is-active .hero-subtitle,
.hero-caption.is-active .hero-desc,
.hero-caption.is-active .hero-cta {
  animation: heroCaptionIn 0.7s var(--ease-out) forwards;
}

.hero-caption.is-active .hero-title-line:first-child {
  animation-delay: 0.1s;
}

.hero-caption.is-active .hero-title-line--accent {
  animation-delay: 0.2s;
}

.hero-caption.is-active .hero-subtitle {
  animation-delay: 0.25s;
}

.hero-caption.is-active .hero-desc {
  animation-delay: 0.35s;
}

.hero-caption.is-active .hero-cta {
  animation-delay: 0.45s;
}

@keyframes heroCaptionIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-cta .btn--outline-gold {
  min-width: 11.5rem;
  padding: 0.9rem 1.75rem;
  color: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
}

.hero-cta .btn--outline-gold:hover {
  background: rgba(34, 197, 94, 0.18);
  color: var(--color-white);
  border-color: var(--color-white);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--color-green-bright), var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- STRIP SECTION (film-style cards) ---------- */
.strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 65%),
    var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 4rem clamp(1.25rem, 4vw, 3.5rem);
}

.strip-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.strip-bg__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 95vw);
  height: min(280px, 45vw);
  margin: calc(min(280px, 45vw) / -2) 0 0 calc(min(680px, 95vw) / -2);
  border: 1px dashed rgba(34, 197, 94, 0.14);
  border-radius: 50%;
  animation: stripRingSpin 24s linear infinite;
}

@keyframes stripRingSpin {
  to { transform: rotate(360deg); }
}

.strip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.strip-card {
  position: relative;
  display: block;
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(34, 197, 94, 0.06) 0%, rgba(255, 255, 255, 0.02) 55%, transparent 100%),
    rgba(10, 10, 10, 0.55);
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out),
    border-color var(--transition),
    box-shadow var(--transition);
  transition-delay: var(--reveal-delay, 0ms);
}

.strip-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.strip-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-8px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(34, 197, 94, 0.12);
}

.strip-card.is-visible:hover {
  transform: translateY(-8px);
}

.strip-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
}

.strip-card:hover .strip-card__shine {
  transform: translateX(120%);
}

.strip-card__icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  color: var(--color-gold);
  background: var(--color-gold-dim);
  animation: stripIconPulse 3s ease-in-out infinite;
}

.strip-card__icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(34, 197, 94, 0.4);
  animation: stripIconRingSpin 8s linear infinite;
}

.strip-card:nth-child(2) .strip-card__icon {
  animation-delay: 0.35s;
}

.strip-card:nth-child(2) .strip-card__icon::before {
  animation-direction: reverse;
}

.strip-card:nth-child(3) .strip-card__icon {
  animation-delay: 0.7s;
}

.strip-card:hover .strip-card__icon {
  color: var(--color-bg);
  background: var(--color-gold-bright);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.45);
}

@keyframes stripIconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

@keyframes stripIconRingSpin {
  to { transform: rotate(360deg); }
}

.strip-num {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--color-gold-bright);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 0.85rem;
  transition: opacity var(--transition), transform 0.35s var(--ease-out), color var(--transition);
}

.strip-card:hover .strip-num {
  opacity: 1;
  transform: translateX(4px);
  color: var(--color-gold-bright);
}

.strip-card h3 {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  transition: color var(--transition);
}

.strip-card:hover h3 {
  color: var(--color-gold-bright);
}

.strip-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.65;
  transition: color var(--transition);
}

.strip-card:hover p {
  color: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .strip-bg__ring,
  .strip-card__icon,
  .strip-card__icon::before {
    animation: none;
  }

  .strip-card {
    transition: none;
  }
}

/* ---------- CINEMA HIGHLIGHT (minimal layout) ---------- */
.cinema-highlight {
  position: relative;
  width: 100%;
  min-height: min(92vh, 940px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg);
  background-image: url("../images/bg/6.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cinema-highlight__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      var(--color-bg) 0%,
      rgba(10, 10, 10, 0.88) 8%,
      rgba(10, 10, 10, 0.62) 22%,
      rgba(10, 10, 10, 0.12) 52%,
      rgba(10, 10, 10, 0.28) 78%,
      var(--color-bg) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.35) 0%,
      transparent 28%,
      transparent 72%,
      rgba(10, 10, 10, 0.35) 100%
    );
  pointer-events: none;
}

.cinema-highlight__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 2rem);
  padding:
    clamp(2rem, 4.5vw, 3rem)
    clamp(1.5rem, 5vw, 4rem)
    clamp(2.25rem, 5.5vw, 4rem);
}

.cinema-highlight__brand {
  margin-top: auto;
  max-width: min(760px, 100%);
}

.cinema-highlight__title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 0.95;
  max-width: min(640px, 100%);
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
  animation: cinemaTitleUp 0.95s var(--ease-out) both 180ms;
}

.cinema-highlight__tagline {
  margin: 0.85rem 0 0;
  font-family: var(--body-font);
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
  animation: cinemaTitleUp 0.95s var(--ease-out) both 280ms;
}

.cinema-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cinema-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: cinemaStatIn 0.85s var(--ease-out) both;
}

.cinema-stat:nth-child(2) { animation-delay: 100ms; }
.cinema-stat:nth-child(3) { animation-delay: 200ms; }
.cinema-stat:nth-child(4) { animation-delay: 300ms; }

.cinema-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  margin-bottom: 0.15rem;
}

.cinema-stat__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.cinema-stat strong {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.cinema-stat > span:not(.cinema-stat__icon) {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

@media (min-width: 1024px) {
  .cinema-highlight {
    min-height: min(94vh, 980px);
    background-position: center 42%;
    background-size: cover;
  }

  .cinema-highlight__overlay {
    background:
      linear-gradient(
        180deg,
        var(--color-bg) 0%,
        rgba(10, 10, 10, 0.9) 10%,
        rgba(10, 10, 10, 0.5) 24%,
        rgba(10, 10, 10, 0.06) 55%,
        rgba(10, 10, 10, 0.22) 82%,
        var(--color-bg) 100%
      ),
      linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.22) 0%,
        transparent 32%,
        transparent 68%,
        rgba(10, 10, 10, 0.22) 100%
      );
  }

  .cinema-stats {
    padding-top: 0.35rem;
  }
}

@keyframes cinemaStatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cinemaTitleUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- FILMS ICON MARQUEE (reel scroll) ---------- */
.section--films-marquee {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 197, 94, 0.1) 0%, transparent 70%),
    var(--color-bg);
  overflow: hidden;
}

.films-reel-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.films-reel-bg__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(34, 197, 94, 0.14);
  animation: filmsReelRingSpin 28s linear infinite;
}

.films-reel-bg__ring--one {
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -28%;
  left: -18%;
}

.films-reel-bg__ring--two {
  width: min(420px, 75vw);
  height: min(420px, 75vw);
  bottom: -32%;
  right: -14%;
  animation-direction: reverse;
  animation-duration: 22s;
}

@keyframes filmsReelRingSpin {
  to { transform: rotate(360deg); }
}

.films-reel {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.5rem 0;
}

.films-reel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 14px;
  transform: translateY(-50%);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(34, 197, 94, 0.22) 0 10px,
      transparent 10px 22px
    );
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.films-reel__wheel {
  position: absolute;
  top: 50%;
  width: clamp(56px, 8vw, 84px);
  height: clamp(56px, 8vw, 84px);
  margin-top: calc(clamp(56px, 8vw, 84px) / -2);
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.4);
  background:
    radial-gradient(circle at center, rgba(10, 10, 10, 0.95) 28%, transparent 29%),
    repeating-conic-gradient(
      from 0deg,
      rgba(34, 197, 94, 0.28) 0deg 14deg,
      transparent 14deg 28deg
    );
  box-shadow:
    inset 0 0 0 4px rgba(10, 10, 10, 0.85),
    0 0 24px rgba(34, 197, 94, 0.15);
  z-index: 3;
  pointer-events: none;
  animation: filmsReelWheelSpin 10s linear infinite;
}

.films-reel__wheel--left {
  left: clamp(0.5rem, 2vw, 1.5rem);
}

.films-reel__wheel--right {
  right: clamp(0.5rem, 2vw, 1.5rem);
  animation-direction: reverse;
  animation-duration: 12s;
}

@keyframes filmsReelWheelSpin {
  to { transform: rotate(360deg); }
}

.section-inner--wide {
  max-width: 100%;
}

.films-marquee__head {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 3.5rem);
  padding-right: clamp(1.25rem, 4vw, 3.5rem);
  animation: filmsHeadIn 0.9s var(--ease-out) both;
}

@keyframes filmsHeadIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.films-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  z-index: 1;
}

.films-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(3rem, 12vw, 8rem);
  z-index: 2;
  pointer-events: none;
}

.films-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg) 0%, transparent 100%);
}

.films-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg) 0%, transparent 100%);
}

.films-marquee__row {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0.35rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.films-marquee__row::before,
.films-marquee__row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    rgba(34, 197, 94, 0.35) 0 8px,
    transparent 8px 18px
  );
  opacity: 0.45;
  pointer-events: none;
  z-index: 2;
}

.films-marquee__row::before {
  top: 0;
}

.films-marquee__row::after {
  bottom: 0;
}

.films-marquee__track {
  display: flex;
  width: max-content;
  animation: filmsMarqueeScroll 38s linear infinite;
  will-change: transform;
}

.films-marquee__row--reverse .films-marquee__track {
  animation-name: filmsMarqueeScrollReverse;
  animation-duration: 32s;
}

.films-marquee:hover .films-marquee__track {
  animation-play-state: paused;
}

.films-reel:hover .films-reel__wheel {
  animation-play-state: paused;
}

@keyframes filmsMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes filmsMarqueeScrollReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.films-marquee__list {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding: 0.5rem 0.65rem;
  flex-shrink: 0;
}

.films-marquee__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-width: clamp(9rem, 14vw, 11.5rem);
  padding: 1.35rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.films-marquee__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(34, 197, 94, 0.12) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
}

.films-marquee__item:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(34, 197, 94, 0.18);
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.films-marquee__item:hover::before {
  transform: translateX(120%);
}

.films-marquee__item--accent {
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.films-marquee__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 50%;
  color: var(--color-gold);
  background: var(--color-gold-dim);
  box-shadow: 0 0 0 rgba(34, 197, 94, 0);
  animation: filmsIconPulse 3s ease-in-out infinite;
  transition:
    color var(--transition),
    background var(--transition),
    transform 0.35s var(--ease-out),
    box-shadow var(--transition);
}

.films-marquee__icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(34, 197, 94, 0.42);
  animation: filmsIconRingSpin 9s linear infinite;
}

.films-marquee__icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold-bright);
  top: -3px;
  left: 50%;
  margin-left: -3.5px;
  transform-origin: 50% calc(1.725rem + 3px);
  animation: filmsIconOrbit 4.5s linear infinite;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.65);
}

@keyframes filmsIconRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes filmsIconOrbit {
  to { transform: rotate(360deg); }
}

.films-marquee__item:nth-child(2n) .films-marquee__icon {
  animation-delay: 0.4s;
}

.films-marquee__item:nth-child(2n) .films-marquee__icon::before {
  animation-direction: reverse;
}

.films-marquee__item:nth-child(3n) .films-marquee__icon {
  animation-delay: 0.8s;
}

.films-marquee__item:nth-child(3n) .films-marquee__icon::after {
  animation-duration: 6s;
}

.films-marquee__item:hover .films-marquee__icon {
  color: var(--color-bg);
  background: var(--color-gold-bright);
  transform: scale(1.14) rotate(8deg);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.5);
  animation-play-state: paused;
}

.films-marquee__item:hover .films-marquee__icon::before,
.films-marquee__item:hover .films-marquee__icon::after {
  animation-play-state: running;
}

@keyframes filmsIconPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
}

.films-marquee__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white);
  transition: color var(--transition), transform 0.35s var(--ease-out);
}

.films-marquee__item:hover .films-marquee__label {
  color: var(--color-gold-bright);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .films-marquee__track,
  .films-reel__wheel,
  .films-reel-bg__ring,
  .films-marquee__icon::before,
  .films-marquee__icon::after {
    animation: none;
  }

  .films-marquee__icon {
    animation: none;
  }

  .films-marquee__head {
    animation: none;
  }
}

@media (max-width: 768px) {
  .films-reel__wheel {
    width: 48px;
    height: 48px;
    margin-top: -24px;
    opacity: 0.65;
  }

  .films-reel__wheel--left {
    left: 0.25rem;
  }

  .films-reel__wheel--right {
    right: 0.25rem;
  }

  .films-marquee__item {
    min-width: 8.5rem;
    padding: 1.1rem 0.85rem;
  }

  .films-marquee__icon {
    width: 3rem;
    height: 3rem;
  }
}

/* ---------- SECTIONS (shared) ---------- */
.section {
  padding: 5rem clamp(1.25rem, 4vw, 3.5rem);
  border-top: 1px solid var(--color-border);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: block;
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-green-bright);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-muted);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

.btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---------- WHY CHOOSE US (circular animation) ---------- */
.section--why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 50% at 85% 15%, rgba(34, 197, 94, 0.09) 0%, transparent 55%),
    var(--color-surface);
}

.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-bg__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(34, 197, 94, 0.12);
  animation: whyRingSpin 26s linear infinite;
}

.why-bg__ring--one {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -12%;
  left: -10%;
}

.why-bg__ring--two {
  width: min(360px, 60vw);
  height: min(360px, 60vw);
  bottom: -14%;
  right: -8%;
  animation-direction: reverse;
  animation-duration: 20s;
}

@keyframes whyRingSpin {
  to { transform: rotate(360deg); }
}

.why-head[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.why-head[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-card {
  position: relative;
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(34, 197, 94, 0.06) 0%, rgba(255, 255, 255, 0.02) 55%, transparent 100%),
    rgba(10, 10, 10, 0.35);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out),
    border-color var(--transition),
    box-shadow var(--transition);
  transition-delay: var(--reveal-delay, 0ms);
}

.why-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  border-color: rgba(34, 197, 94, 0.48);
  transform: translateY(-8px);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(34, 197, 94, 0.12);
}

.why-card.is-visible:hover {
  transform: translateY(-8px);
}

.why-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
}

.why-card:hover .why-card__shine {
  transform: translateX(120%);
}

.why-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transition: transform 0.35s var(--ease-out), filter 0.35s var(--ease-out);
}

.why-card__img {
  display: block;
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s var(--ease-out), filter 0.35s var(--ease-out);
}

.why-card:hover .why-card__icon {
  transform: scale(1.08);
}

.why-card:hover .why-card__img {
  filter:
    drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 16px rgba(34, 197, 94, 0.28));
  transform: scale(1.04);
}

.why-card h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  line-height: 1.2;
  transition: color var(--transition);
}

.why-card:hover h3 {
  color: var(--color-gold-bright);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.7;
  transition: color var(--transition);
}

.why-card:hover p {
  color: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .why-bg__ring {
    animation: none;
  }

  .why-card,
  .why-head[data-reveal] {
    transition: none;
  }
}

/* ---------- ABOUT ---------- */
.section--about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.about-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-stats strong {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--color-gold);
  font-weight: 400;
  line-height: 1;
}

.about-stats span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.about-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.about-tagline {
  font-size: 0.95rem;
  color: var(--color-gold);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.about-social__title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.social-links a:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-dim);
  color: var(--color-gold-bright);
}

.social-links svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

.about-frame {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.about-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-gold);
  margin: 12px;
  border-radius: 4px;
  z-index: 4;
  pointer-events: none;
  opacity: 0.5;
}

/* ---------- IMAGE SLIDER ---------- */
.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-slider__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: none;
}

.image-slider__viewport:focus-visible {
  box-shadow: inset 0 0 0 2px var(--color-gold);
}

.image-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s var(--ease-out), visibility 0.65s;
}

.image-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.image-slider__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-slider__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.72);
  color: var(--color-white);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.image-slider__btn:hover,
.image-slider__btn:focus-visible {
  border-color: var(--color-gold);
  background: rgba(34, 197, 94, 0.2);
  color: var(--color-gold-bright);
}

.image-slider__btn--prev {
  left: 0.75rem;
}

.image-slider__btn--next {
  right: 0.75rem;
}

.image-slider__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
}

.image-slider__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.image-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.image-slider__dot.is-active,
.image-slider__dot:hover,
.image-slider__dot:focus-visible {
  background: var(--color-gold);
  transform: scale(1.2);
}

.image-slider__counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}

.image-slider__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.25rem;
  z-index: 3;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.image-slider__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--color-gold);
  transform-origin: left center;
}

.image-slider.is-autoplaying .image-slider__progress-bar {
  animation: slider-progress var(--slider-autoplay-duration, 4s) linear forwards;
}

@keyframes slider-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- GALLERY (full-width auto slider) ---------- */
.section--gallery {
  padding: 0;
  background: #000;
}

.gallery-slider-wrap {
  width: 100%;
  max-height: min(72vh, 720px);
}

.image-slider--full {
  aspect-ratio: 16 / 7;
  max-height: min(72vh, 720px);
}

.image-slider--full .image-slider__btn {
  width: 3rem;
  height: 3rem;
}

.image-slider--full .image-slider__btn--prev {
  left: clamp(0.75rem, 3vw, 2rem);
}

.image-slider--full .image-slider__btn--next {
  right: clamp(0.75rem, 3vw, 2rem);
}

.image-slider--full .image-slider__footer {
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .image-slider__slide {
    transition: none;
  }

  .image-slider.is-autoplaying .image-slider__progress-bar {
    animation: none;
    width: 100%;
  }
}

.about-video__play {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  display: block;
  background: #000;
}

.about-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--transition), transform 0.5s var(--ease-out);
}

.about-video__play:hover .about-video__poster {
  transform: scale(1.03);
}

.about-video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease, background var(--transition);
}

.about-video__icon svg {
  margin-left: 4px;
  color: var(--color-bg);
}

.about-video__play:hover .about-video__icon {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--color-green-bright);
}

.about-video__embed {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
}

.about-video__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video.is-playing .about-video__play {
  display: none;
}

.about-video.is-playing .about-video__embed {
  display: block;
}

.about-video__fallback {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.about-video__fallback:hover {
  background: var(--color-gold-bright);
  color: var(--color-bg);
}

.about-video.is-playing .about-video__fallback {
  display: block;
}

/* ---------- OUR FACILITIES ---------- */
.section--facilities {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(34, 197, 94, 0.06) 0%, transparent 70%),
    var(--color-bg);
}

.facilities-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
  list-style: none;
}

.facilities-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.08) 0%, transparent 100%);
  transition: border-color var(--transition);
}

.facilities-highlight:hover {
  border-color: rgba(34, 197, 94, 0.35);
}

.facilities-highlight__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--color-gold-dim);
  color: var(--color-gold);
}

.facilities-highlight__text {
  font-family: var(--heading-font);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  perspective: 1200px;
}

.facility-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    border-color var(--transition),
    box-shadow var(--transition);
  transition-delay: var(--reveal-delay, 0ms);
}

.facility-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.facility-card:hover {
  border-color: rgba(34, 197, 94, 0.55);
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(34, 197, 94, 0.2),
    0 0 40px rgba(34, 197, 94, 0.12);
}

.facility-card.is-visible:hover {
  transform: translateY(-10px) scale(1.02);
}

.facility-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.facility-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    transparent 35%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.92) 100%
  );
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}

.facility-card:hover .facility-card__media::before {
  opacity: 0.95;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.facility-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s var(--ease-out), filter 0.45s var(--ease-out);
}

.facility-card:hover .facility-card__media img {
  transform: scale(1.12);
  filter: brightness(1.08);
}

.facility-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.25rem 1.25rem;
  pointer-events: none;
}

.facility-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.35;
  transition: opacity var(--transition), transform 0.45s var(--ease-out);
}

.facility-card:hover .facility-card__num {
  opacity: 0.7;
  transform: scale(1.1);
}

.facility-card__body {
  transform: translateY(0);
  transition: transform 0.45s var(--ease-out);
}

.facility-card:hover .facility-card__body {
  transform: translateY(-4px);
}

.facility-card__title {
  font-family: var(--heading-font);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0.35rem;
  padding: 0;
  color: var(--color-white);
  transition: color var(--transition);
}

.facility-card:hover .facility-card__title {
  color: var(--color-gold-bright);
}

.facility-card__desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    max-height 0.45s var(--ease-out),
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out),
    margin 0.45s var(--ease-out);
}

.facility-card:hover .facility-card__desc {
  max-height: 4rem;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.35rem;
}

.facility-card__arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  opacity: 0;
  transform: translate(-8px, 8px) scale(0.8);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.facility-card:hover .facility-card__arrow {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  background: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
  color: var(--color-bg);
}

.facility-card__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
}

.facility-card:hover .facility-card__shine {
  transform: translateX(120%);
}

@media (prefers-reduced-motion: reduce) {
  .facility-card {
    opacity: 1;
    transform: none;
    transition: border-color var(--transition), box-shadow var(--transition);
  }

  .facility-card:hover {
    transform: none;
  }

  .facility-card__desc {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-top: 0.35rem;
  }

  .facility-card__arrow {
    opacity: 1;
    transform: none;
  }

  .facility-card__shine {
    display: none;
  }
}

/* ---------- PORTFOLIO ---------- */
.section--portfolio {
  background: var(--color-surface);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.portfolio-card {
  display: block;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.portfolio-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-4px);
  background: var(--color-gold-dim);
}

.portfolio-card--wide {
  grid-column: span 2;
}

.portfolio-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.portfolio-card h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.portfolio-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ---------- TOP 100 BEST CINEMAS ---------- */
.section--cinemas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(34, 197, 94, 0.11) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 95% 100%, rgba(255, 117, 88, 0.08) 0%, transparent 52%),
    linear-gradient(180deg, var(--color-bg) 0%, hsl(220, 38%, 8%) 100%);
}

.cinemas-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cinemas-bg__beam {
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}

.cinemas-bg__beam--one {
  top: -18%;
  right: -8%;
  background: rgba(34, 197, 94, 0.35);
}

.cinemas-bg__beam--two {
  bottom: -22%;
  left: -10%;
  background: rgba(255, 117, 88, 0.22);
}

.cinemas-bg__reel {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px dashed rgba(34, 197, 94, 0.18);
  border-radius: 50%;
  animation: cinemasReelSpin 22s linear infinite;
}

.cinemas-bg__reel--left {
  top: 12%;
  left: 4%;
}

.cinemas-bg__reel--right {
  bottom: 10%;
  right: 5%;
  animation-direction: reverse;
  animation-duration: 18s;
}

@keyframes cinemasReelSpin {
  to { transform: rotate(360deg); }
}

.cinemas-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.cinemas-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cinemas-hero__badge {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: clamp(6.5rem, 14vw, 9rem);
  height: clamp(6.5rem, 14vw, 9rem);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(74, 222, 128, 0.22) 0%, rgba(34, 197, 94, 0.08) 100%);
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow:
    0 0 40px rgba(34, 197, 94, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cinemas-hero__badge::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  border: 1px dashed rgba(74, 222, 128, 0.28);
  animation: cinemasReelSpin 16s linear infinite;
}

.cinemas-hero__num {
  font-family: var(--heading-font);
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-gold-bright);
  text-shadow: 0 0 30px rgba(74, 222, 128, 0.45);
}

.cinemas-hero__plus {
  margin-top: 0.35rem;
  margin-left: 0.1rem;
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-gold);
}

.cinemas-hero__title {
  margin-bottom: 0.75rem;
}

.cinemas-hero__desc {
  max-width: 52ch;
}

.cinemas-lanes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.cinemas-lane {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.cinemas-lane.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cinemas-lane__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

.cinemas-lane__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-gold-dim);
  color: var(--color-gold-bright);
  flex-shrink: 0;
}

.cinemas-lane__title {
  font-family: var(--heading-font);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cinemas-lane__rated {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-gold-bright);
  font-family: var(--heading-font);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cinemas-lane__rated--channel {
  border-color: rgba(255, 117, 88, 0.35);
  background: rgba(255, 117, 88, 0.12);
  color: #ffb89a;
}

.cinemas-lane__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 222, 128, 0.45), transparent);
}

.cinemas-lane--channel .cinemas-lane__line {
  background: linear-gradient(90deg, rgba(255, 117, 88, 0.45), transparent);
}

.cinemas-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.65rem 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 22, 40, 0.45) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cinemas-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 100px);
  z-index: 2;
  pointer-events: none;
}

.cinemas-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, hsl(220, 38%, 8%) 0%, transparent 100%);
}

.cinemas-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, hsl(220, 38%, 8%) 0%, transparent 100%);
}

.cinemas-marquee__track {
  display: flex;
  width: max-content;
}

.cinemas-marquee--left .cinemas-marquee__track {
  animation: cinemasScrollLeft 32s linear infinite;
}

.cinemas-marquee--right .cinemas-marquee__track {
  animation: cinemasScrollRight 36s linear infinite;
}

.cinemas-marquee[data-pause-on-hover]:hover .cinemas-marquee__track {
  animation-play-state: paused;
}

@keyframes cinemasScrollLeft {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes cinemasScrollRight {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cinemas-marquee__list {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  padding: 0 0.65rem;
  flex-shrink: 0;
}

.cinemas-ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 280px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(74, 222, 128, 0.08);
  transition:
    transform 0.35s var(--ease-out),
    border-color var(--transition),
    box-shadow var(--transition);
}

.cinemas-ticket__media {
  position: relative;
}

.cinemas-ticket__media::before,
.cinemas-ticket__media::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: hsl(220, 38%, 8%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.cinemas-ticket__media::before { left: -7px; }
.cinemas-ticket__media::after { right: -7px; }

.cinemas-ticket__meta {
  padding: 0.75rem 1rem 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.cinemas-ticket__name {
  font-family: var(--heading-font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cinemas-ticket__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
}

.cinemas-ticket__stars {
  color: var(--color-gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.cinemas-ticket--channel .cinemas-ticket__stars {
  color: #ffb89a;
}

.cinemas-ticket__score {
  font-family: var(--heading-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-gold-bright);
  line-height: 1;
}

.cinemas-ticket--channel .cinemas-ticket__score {
  color: #ffb89a;
}

.cinemas-ticket::before,
.cinemas-ticket::after {
  display: none;
}

.cinemas-ticket:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(34, 197, 94, 0.18);
}

.cinemas-ticket--channel:hover {
  border-color: rgba(255, 117, 88, 0.45);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(255, 117, 88, 0.15);
}

.cinemas-ticket img {
  display: block;
  width: 100%;
  height: clamp(88px, 12vw, 118px);
  object-fit: contain;
  object-position: center;
  padding: 0.85rem 1.15rem 0.65rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 70%),
    rgba(255, 255, 255, 0.02);
  filter: grayscale(0.15) brightness(1.05);
  transition: filter 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.cinemas-ticket:hover .cinemas-ticket__name {
  color: var(--color-gold-bright);
}

.cinemas-ticket--channel:hover .cinemas-ticket__name {
  color: #ffb89a;
}

.cinemas-ticket:hover img {
  filter: grayscale(0) brightness(1.12);
  transform: scale(1.04);
}

.cinemas-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.cinemas-metrics.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cinemas-metric {
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(155deg, rgba(34, 197, 94, 0.08) 0%, rgba(255, 255, 255, 0.02) 55%, transparent 100%);
}

.cinemas-metric strong {
  display: block;
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gold-bright);
  margin-bottom: 0.35rem;
}

.cinemas-metric span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

@media (prefers-reduced-motion: reduce) {
  .cinemas-bg__reel,
  .cinemas-marquee__track {
    animation: none;
  }

  .cinemas-hero,
  .cinemas-lane,
  .cinemas-metrics {
    transition: none;
  }
}

@media (max-width: 768px) {
  .cinemas-hero {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .cinemas-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .cinemas-metrics {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .cinemas-bg__reel {
    display: none;
  }
}

/* ---------- TEAM ---------- */
.section--team {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 45% at 90% 10%, rgba(34, 197, 94, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 5% 90%, rgba(255, 117, 88, 0.08) 0%, transparent 50%),
    var(--color-bg);
}

.team-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.team-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.35;
  animation: teamOrbFloat 18s ease-in-out infinite alternate;
}

.team-bg__orb--one {
  width: 300px;
  height: 300px;
  top: 5%;
  left: -5%;
  background: rgba(34, 197, 94, 0.18);
}

.team-bg__orb--two {
  width: 240px;
  height: 240px;
  bottom: 8%;
  right: -3%;
  background: rgba(255, 117, 88, 0.12);
  animation-delay: -6s;
}

@keyframes teamOrbFloat {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -20px, 0); }
}

.team-head[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.team-head[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Team category tabs */
.team-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.team-tabs[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.team-tabs[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.team-tabs__track {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 100%;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 22, 40, 0.55) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.28);
}

.team-tabs__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color var(--transition),
    transform 0.25s var(--ease-out),
    box-shadow var(--transition);
}

.team-tabs__btn:hover {
  color: var(--color-gold-bright);
  transform: translateY(-1px);
}

.team-tabs__btn:focus-visible {
  outline: 2px solid var(--color-gold-bright);
  outline-offset: 2px;
}

.team-tabs__btn.is-active {
  color: var(--color-bg);
  box-shadow:
    0 8px 22px rgba(34, 197, 94, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.team-tabs__label {
  line-height: 1;
}

.team-tabs__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.team-tabs__btn.is-active .team-tabs__count {
  background: rgba(10, 22, 40, 0.18);
  color: var(--color-bg);
}

.team-tabs__indicator {
  position: absolute;
  top: 0.45rem;
  left: 0;
  height: calc(100% - 0.9rem);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 100%);
  box-shadow:
    0 0 24px rgba(74, 222, 128, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 0.42s var(--ease-out),
    width 0.42s var(--ease-out);
  pointer-events: none;
}

.team-list.is-switching,
.team-page-grid.is-switching {
  opacity: 0.35;
  transform: translateY(10px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.team-page-grid {
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.team-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "prev viewport next"
    ". footer .";
  gap: 1rem 0.75rem;
  align-items: center;
}

.team-slider__viewport {
  grid-area: viewport;
  overflow: hidden;
  outline: none;
  perspective: 1400px;
  perspective-origin: center center;
}

.team-slider__viewport:focus-visible {
  box-shadow: inset 0 0 0 2px var(--color-gold);
  border-radius: 14px;
}

.team-list {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.team-slider__btn {
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.2s ease, opacity var(--transition), box-shadow var(--transition);
  z-index: 2;
}

.team-slider__btn:hover:not(:disabled) {
  border-color: var(--color-gold);
  background: var(--color-gold-dim);
  color: var(--color-gold-bright);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.25);
}

.team-slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.team-slider__btn--prev {
  grid-area: prev;
}

.team-slider__btn--next {
  grid-area: next;
}

.team-slider__footer {
  grid-area: footer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.team-slider__dots {
  display: flex;
  gap: 0.5rem;
}

.team-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background var(--transition), transform 0.2s ease;
}

.team-slider__dot.is-active {
  background: var(--color-gold);
  transform: scale(1.25);
}

.team-slider__counter {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.team-actions,
.events-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.team-actions[data-reveal],
.events-actions[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.team-actions[data-reveal].is-visible,
.events-actions[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.team-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
}

.team-cta svg {
  transition: transform 0.3s var(--ease-out);
}

.team-cta:hover svg {
  transform: translateX(4px);
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  flex: 0 0 calc((100% - 3.75rem) / 4);
  min-width: calc((100% - 3.75rem) / 4);
  height: auto;
  border-radius: 14px;
  transform-style: preserve-3d;
  transition: flex-basis 0.6s var(--ease-out), min-width 0.6s var(--ease-out);
}

.team-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
  transition:
    transform 0.15s ease-out,
    border-color var(--transition),
    box-shadow var(--transition);
  animation: teamCardFloat 5s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.team-card.is-center .team-card__inner {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(34, 197, 94, 0.15),
    0 0 32px rgba(34, 197, 94, 0.1);
}

.team-card:hover .team-card__inner {
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(34, 197, 94, 0.25),
    0 0 48px rgba(34, 197, 94, 0.18);
  animation: none;
}

@keyframes teamCardFloat {
  0%, 100% { transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0) translateZ(0); }
  50% { transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px) translateZ(8px); }
}

.team-card__photo {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s var(--ease-out), filter 0.45s var(--ease-out);
}

.team-card:hover .team-card__photo img {
  transform: scale(1.1);
  filter: brightness(1.08);
}

.team-card__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease-out);
  pointer-events: none;
}

.team-card:hover .team-card__shine {
  transform: translateX(120%);
}

.team-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.25rem 1.5rem;
}

.team-card__name {
  flex-shrink: 0;
  font-family: var(--heading-font);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.35rem;
  transition: color var(--transition);
}

.team-card:hover .team-card__name {
  color: var(--color-gold-bright);
}

.team-card__role {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.team-card__bio {
  flex: 1;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-muted);
  margin-bottom: 1.1rem;
}

.team-card__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-top: auto;
  flex-shrink: 0;
}

.team-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    transform 0.25s ease;
}

.team-card__social a:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-dim);
  color: var(--color-gold-bright);
  transform: translateY(-3px) scale(1.08);
}

.team-card__social svg {
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .team-bg__orb {
    animation: none;
  }

  .team-card__inner {
    animation: none;
  }

  .team-card,
  .team-head[data-reveal],
  .team-tabs[data-reveal],
  .team-actions[data-reveal],
  .events-actions[data-reveal] {
    transition: none;
  }
}

@media (max-width: 1200px) {
  .team-card {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    min-width: calc((100% - 2.5rem) / 3);
  }
}

@media (max-width: 1024px) {
  .team-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
    min-width: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 768px) {
  .team-slider {
    grid-template-columns: 1fr;
    grid-template-areas:
      "viewport"
      "footer";
    gap: 1rem;
  }

  .team-slider__btn {
    display: none;
  }

  .team-slider__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .team-slider__viewport::-webkit-scrollbar {
    display: none;
  }

  .team-list {
    transform: none !important;
  }

  .team-card {
    flex: 0 0 78%;
    min-width: 78%;
    scroll-snap-align: center;
  }

  .team-card__inner {
    animation: none;
  }

  .team-card:hover .team-card__inner {
    transform: perspective(900px) rotateX(0) rotateY(0);
  }

  .team-tabs__track {
    width: 100%;
    border-radius: 18px;
    padding: 0.4rem;
    gap: 0.35rem;
  }

  .team-tabs__btn {
    flex: 1 1 calc(50% - 0.35rem);
    justify-content: center;
    padding: 0.65rem 0.75rem;
    font-size: 0.7rem;
  }

  .team-tabs__indicator {
    display: none;
  }

  .team-tabs__btn.is-active {
    background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 100%);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
  }
}

@media (max-width: 640px) {
  .team-card {
    flex: 0 0 88%;
    min-width: 88%;
  }
}

/* ---------- EVENTS ---------- */
.section--events {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(34, 197, 94, 0.1) 0%, transparent 55%),
    var(--color-bg);
}

.events-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.events-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: eventsGlowFloat 16s ease-in-out infinite alternate;
}

.events-bg__glow--one {
  width: 280px;
  height: 280px;
  top: 8%;
  right: -4%;
  background: rgba(34, 197, 94, 0.2);
}

.events-bg__glow--two {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: -3%;
  background: rgba(255, 117, 88, 0.14);
  animation-delay: -5s;
}

@keyframes eventsGlowFloat {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -18px, 0); }
}

.events-head[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.events-head[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.events-slider__viewport {
  grid-area: viewport;
  overflow: hidden;
  outline: none;
  container-type: inline-size;
  container-name: events-viewport;
}

.events-list {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

.events-list .event-card {
  flex: 0 0 calc((100cqi - 2.5rem) / 3);
  min-width: calc((100cqi - 2.5rem) / 3);
  max-width: calc((100cqi - 2.5rem) / 3);
}

.events-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "prev viewport next"
    ". footer .";
  gap: 1rem 0.75rem;
  align-items: center;
}

.events-slider__btn {
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.2s ease, opacity var(--transition);
  z-index: 2;
}

.events-slider__btn:hover:not(:disabled) {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.55);
  transform: scale(1.06);
}

.events-slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.events-slider__btn--prev {
  grid-area: prev;
}

.events-slider__btn--next {
  grid-area: next;
}

.events-slider__footer {
  grid-area: footer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.events-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.events-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.25s ease, background var(--transition), width 0.25s ease;
}

.events-slider__dot.is-active {
  width: 1.45rem;
  border-radius: 999px;
  background: var(--color-gold-bright);
}

.events-slider__counter {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(34, 197, 94, 0.07) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 100%),
    rgba(12, 12, 12, 0.9);
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out),
    border-color var(--transition),
    box-shadow var(--transition);
  transition-delay: var(--reveal-delay, 0ms);
}

.event-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.event-card.is-visible:hover {
  transform: translateY(-6px) scale(1);
}

.event-card:hover {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(34, 197, 94, 0.15);
  transform: translateY(-6px);
}

.event-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.event-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 10, 10, 0.82) 100%);
  pointer-events: none;
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s var(--ease-out), filter 0.45s var(--ease-out);
}

.event-card:hover .event-card__media img {
  transform: scale(1.08);
  filter: brightness(1.06);
}

.event-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

.event-card:hover .event-card__shine {
  transform: translateX(120%);
}

.event-card__date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 0.65rem 0.75rem;
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease-out), border-color var(--transition);
  animation: eventDatePulse 3.2s ease-in-out infinite;
}

.event-card:hover .event-card__date {
  transform: scale(1.06);
  border-color: rgba(34, 197, 94, 0.75);
  animation: none;
}

@keyframes eventDatePulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 10px 28px rgba(34, 197, 94, 0.22); }
}

.event-card__day {
  font-family: var(--heading-font);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--color-gold-bright);
}

.event-card__month {
  margin-top: 0.2rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.event-card__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  padding: 1.15rem 1.1rem 1.25rem;
}

.event-card__body {
  flex: 1;
  min-width: 0;
}

.event-card__tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  background: rgba(34, 197, 94, 0.1);
}

.event-card__body h3 {
  font-family: var(--heading-font);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  line-height: 1.15;
  transition: color var(--transition);
}

.event-card:hover .event-card__body h3 {
  color: var(--color-gold-bright);
}

.event-card__subtitle {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.event-card__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.event-card__loc::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-gold-bright);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.55);
}

.event-card__btn {
  width: 100%;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow var(--transition), background var(--transition);
}

.event-card:hover .event-card__btn {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .events-bg__glow,
  .event-card__date {
    animation: none;
  }

  .event-card,
  .events-head[data-reveal] {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .events-list .event-card {
    flex: 0 0 calc((100cqi - 1.25rem) / 2);
    min-width: calc((100cqi - 1.25rem) / 2);
    max-width: calc((100cqi - 1.25rem) / 2);
  }
}

@media (max-width: 640px) {
  .events-list .event-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  .event-card[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .event-card[data-reveal]:hover {
    transform: none;
  }
}

/* ---------- TESTIMONIALS ---------- */
.section--testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(34, 197, 94, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(255, 117, 88, 0.08) 0%, transparent 65%),
    var(--color-surface);
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.testimonials-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: testimonialOrbFloat 14s ease-in-out infinite alternate;
}

.testimonials-orb--one {
  width: min(360px, 55vw);
  height: min(360px, 55vw);
  top: -8%;
  right: 8%;
  background: rgba(34, 197, 94, 0.22);
}

.testimonials-orb--two {
  width: min(280px, 45vw);
  height: min(280px, 45vw);
  bottom: -6%;
  left: 6%;
  background: rgba(255, 117, 88, 0.16);
  animation-delay: -4s;
}

@keyframes testimonialOrbFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -24px, 0) scale(1.08); }
}

.testimonials-head[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.testimonials-head[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testimonials-slider__viewport {
  overflow: hidden;
  border-radius: 16px;
  outline: none;
}

.testimonials-slider__track {
  position: relative;
  min-height: clamp(320px, 42vw, 380px);
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 55%),
    rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateX(36px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.testimonial-card.is-leaving {
  opacity: 0;
  transform: translateX(-36px) scale(0.97);
  z-index: 1;
}

.testimonial-card__quote {
  color: var(--color-gold-bright);
  opacity: 0.85;
  animation: testimonialQuoteIn 0.7s var(--ease-out) both;
}

.testimonial-card.is-active .testimonial-card__quote {
  animation: testimonialQuoteIn 0.7s var(--ease-out) both;
}

@keyframes testimonialQuoteIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }
  to {
    opacity: 0.85;
    transform: translateY(0) scale(1);
  }
}

.testimonial-card__stars {
  display: inline-flex;
  gap: 0.3rem;
}

.testimonial-card__stars span {
  width: 0.95rem;
  height: 0.95rem;
  background: currentColor;
  color: var(--color-gold-bright);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0;
  transform: scale(0.4);
  animation: testimonialStarPop 0.45s var(--ease-out) forwards;
}

.testimonial-card.is-active .testimonial-card__stars span:nth-child(1) { animation-delay: 0.08s; }
.testimonial-card.is-active .testimonial-card__stars span:nth-child(2) { animation-delay: 0.14s; }
.testimonial-card.is-active .testimonial-card__stars span:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card.is-active .testimonial-card__stars span:nth-child(4) { animation-delay: 0.26s; }
.testimonial-card.is-active .testimonial-card__stars span:nth-child(5) { animation-delay: 0.32s; }

@keyframes testimonialStarPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-card__text {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-bg);
  background: linear-gradient(145deg, var(--color-green), var(--color-green-bright));
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
}

.testimonial-card__name {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.testimonial-card__role {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.testimonials-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.2s ease;
}

.testimonials-slider__btn:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.55);
  transform: translateY(-50%) scale(1.06);
}

.testimonials-slider__btn--prev {
  left: clamp(-0.25rem, -2vw, -1.25rem);
}

.testimonials-slider__btn--next {
  right: clamp(-0.25rem, -2vw, -1.25rem);
}

.testimonials-slider__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.35rem;
}

.testimonials-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.testimonials-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.25s ease, background var(--transition), width 0.25s ease;
}

.testimonials-slider__dot.is-active {
  width: 1.6rem;
  border-radius: 999px;
  background: var(--color-gold-bright);
}

.testimonials-slider__counter {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.testimonials-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid var(--color-border);
}

.testimonials-metrics[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out) 0.15s, transform 0.8s var(--ease-out) 0.15s;
}

.testimonials-metrics[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-metrics li {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition), transform var(--transition);
}

.testimonials-metrics li:hover {
  border-color: rgba(34, 197, 94, 0.35);
  transform: translateY(-4px);
}

.testimonials-metrics strong {
  display: block;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1;
  color: var(--color-gold-bright);
  margin-bottom: 0.35rem;
}

.testimonials-metrics span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-orb,
  .testimonial-card__stars span,
  .testimonial-card__quote {
    animation: none;
  }

  .testimonial-card,
  .testimonials-head[data-reveal],
  .testimonials-metrics[data-reveal] {
    transition: none;
  }
}

/* ---------- CONTACT ---------- */
.section--contact {
  background: var(--color-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
}

.contact-block h3 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.contact-block p {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.7;
}

.contact-block a:hover {
  color: var(--color-gold-bright);
}

/* ---------- FOOTER ---------- */
.site-footer {
  width: 100%;
  background: #111827;
  color: var(--color-white);
}

.footer-wishes {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wishes__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.footer-wishes__line {
  display: block;
  width: min(220px, 55vw);
  height: 2px;
  background: var(--color-gold-bright);
}

.footer-wishes__eyebrow {
  font-family: var(--body-font);
  font-size: clamp(0.72rem, 1.8vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  width: 100%;
  max-width: 100%;
  padding-right: 0.42em;
}

.footer-wishes__handle {
  font-family: var(--heading-font);
  font-size: clamp(1.25rem, 5.5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--color-white);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
}

.footer-wishes__marquee {
  overflow: hidden;
  width: 100%;
}

.footer-wishes__track {
  display: flex;
  width: max-content;
  animation: footerWishesScroll 180s linear infinite;
}

.footer-wishes__marquee:hover .footer-wishes__track {
  animation-play-state: paused;
}

@keyframes footerWishesScroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.footer-wishes__list {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-shrink: 0;
}

.footer-wishes__item {
  position: relative;
  flex: 0 0 auto;
  width: clamp(160px, 18vw, 240px);
  aspect-ratio: 1;
  overflow: hidden;
}

.footer-wishes__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-wishes__ig {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .footer-wishes__track {
    animation: none;
  }
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2rem);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
  grid-column: 1;
  grid-row: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo .logo-img {
  height: clamp(52px, 7vw, 72px);
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0.92;
  transition: opacity var(--transition), color var(--transition), transform var(--transition);
}

.footer-social-link:hover {
  opacity: 1;
  color: var(--color-gold-bright);
  transform: translateY(-1px);
}

.footer-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  padding-top: clamp(0.5rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.75rem) clamp(1rem, 2.8vw, 2rem);
  margin: 0;
  padding: 0;
}

.footer-nav-link {
  font-family: var(--heading-font);
  font-size: clamp(0.68rem, 1.2vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
  opacity: 0.92;
  transition: color var(--transition), opacity var(--transition);
}

.footer-nav-link:hover {
  opacity: 1;
  color: var(--color-gold-bright);
}

.footer-nav-link.active {
  opacity: 1;
  color: #ff7558;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.footer-qr {
  margin: 0;
  line-height: 0;
}

.footer-qr img {
  display: block;
  width: clamp(108px, 12vw, 148px);
  height: auto;
  border-radius: 2px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body-font);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 500;
  color: var(--color-white);
  transition: color var(--transition);
}

.footer-whatsapp:hover {
  color: var(--color-gold-bright);
}

.footer-whatsapp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem clamp(1.5rem, 4vw, 3.5rem) 1.35rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

/* Mobile nav close (hidden on desktop) */
.nav-close,
.nav-backdrop {
  display: none;
}

@media (min-width: 769px) {
  .site-header [data-site-nav] {
    flex: 1;
    display: flex;
    justify-content: center;
    width: auto;
    overflow: visible;
  }

  .site-header .main-nav {
    position: static;
    top: auto;
    right: auto;
    z-index: auto;
    width: auto;
    height: auto;
    background: transparent;
    flex: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    transform: none;
    border: none;
    overflow: visible;
  }

  .site-header .nav-list {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.75rem, 1.8vw, 2.25rem);
    width: auto;
    padding: 0;
  }

  .site-header .nav-list > li {
    width: auto;
    border-bottom: none;
  }

  .site-header .nav-list > li:first-child {
    border-top: none;
  }

  .site-header .nav-link {
    display: inline-flex;
    width: auto;
    padding: 0;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0.85;
  }

  .site-header .nav-link::after {
    display: block;
  }

  .site-header .nav-link--has-dropdown {
    flex-direction: row;
    align-items: center;
  }

  .site-header .nav-item--dropdown .dropdown-menu {
    position: absolute;
    display: block;
    padding: 0.5rem 0;
  }

  .menu-toggle,
  .nav-close {
    display: none;
  }
}

/* ---------- MOBILE NAV (phones & small tablets) ---------- */
@media (max-width: 768px) {
  .btn--primary {
    display: none;
  }

  .site-header {
    display: flex;
  }

  .site-header [data-site-nav] {
    flex: 0 0 0;
    width: 0;
    overflow: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity var(--transition),
      visibility var(--transition);
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-backdrop[hidden] {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: min(78vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: #000000;
    flex: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 56px;
    height: 56px;
    margin: 0.5rem 0.75rem 0 0;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    flex-shrink: 0;
    transition: color var(--transition), opacity var(--transition);
  }

  .nav-close:hover {
    color: var(--color-gold-bright);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0.5rem 0 2rem;
  }

  .nav-list > li {
    width: 100%;
    border-bottom: 1px solid #333333;
  }

  .nav-list > li:first-child {
    border-top: 1px solid #333333;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 1.35rem 1.75rem;
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 1;
    color: var(--color-white);
  }

  .nav-link:hover {
    color: var(--color-gold-bright);
  }

  .nav-link.active {
    color: var(--color-gold-bright);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link--has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .nav-link--has-dropdown .dropdown-chevron {
    width: 12px;
    height: 8px;
    margin-left: 0.15rem;
  }

  .nav-item--dropdown.is-open .dropdown-chevron {
    transform: rotate(180deg);
  }

  .nav-item--dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 1.75rem 1rem;
    display: none;
    min-width: 0;
  }

  .nav-item--dropdown.is-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    padding: 0.65rem 0;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
  }

  .dropdown-menu a:hover {
    color: var(--color-gold-bright);
    background: transparent;
    padding-left: 0;
  }

  .nav-item--dropdown:hover .dropdown-menu {
    transform: none;
  }

  .nav-item--dropdown:hover .dropdown-chevron {
    transform: none;
  }

  .nav-item--dropdown.is-open:hover .dropdown-chevron,
  .nav-item--dropdown.is-open .dropdown-chevron {
    transform: rotate(180deg);
  }
}

@media (max-width: 900px) {
  .cinema-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facilities-highlights,
  .facilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card--wide {
    grid-column: span 2;
  }

  .testimonials-metrics {
    grid-template-columns: 1fr;
  }
}

/* ---------- TABLET & MOBILE ---------- */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 0 max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
    gap: 0.75rem;
  }

  .logo-img {
    height: 36px;
    max-width: min(180px, 50vw);
  }

  .footer-logo .logo-img {
    height: 44px;
  }

  .footer-nav-list {
    gap: 0.65rem 1rem;
  }

  .footer-nav-link {
    font-size: 0.78rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .local-warning {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    line-height: 1.45;
  }

  /* Hero: image on top, text below */
  .hero.hero-slider {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: auto;
    padding-top: var(--header-height);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .hero-slider-bg {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    height: min(46vh, 360px);
    height: min(46dvh, 360px);
    min-height: 220px;
  }

  .image-slider--hero {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .image-slider--hero .image-slider__viewport,
  .image-slider--hero .image-slider__track {
    position: absolute;
    inset: 0;
  }

  .hero.hero-slider .hero-overlay {
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: auto;
    height: min(46dvh, 360px);
    min-height: 220px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 55%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, transparent 35%);
  }

  .hero-grain {
    display: none;
  }

  .image-slider--hero .image-slider__btn {
    width: 2.75rem;
    height: 2.75rem;
    top: 50%;
  }

  .image-slider--hero .image-slider__btn--prev {
    left: 0.5rem;
  }

  .image-slider--hero .image-slider__btn--next {
    right: 0.5rem;
  }

  .image-slider--hero .image-slider__progress {
    bottom: 0.5rem;
  }

  .image-slider__footer--hero {
    padding: 0.5rem 0.75rem 0.65rem;
  }

  .hero-captions {
    position: relative;
    z-index: 10;
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.5rem 1.25rem 1.25rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg) 100%);
  }

  .hero-captions--grid12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .hero-caption__inner {
    grid-column: 1 / -1;
    max-width: none;
  }

  .hero-caption {
    text-align: center;
  }

  .image-slider__footer--hero {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .image-slider__footer--hero .image-slider__dots {
    justify-content: center;
    flex: 1 1 100%;
  }

  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3.75rem);
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 3.2vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0 auto 1.5rem;
    max-width: 100%;
    line-height: 1.65;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    margin-bottom: 0.65rem;
  }

  .hero-scroll {
    display: none;
  }

  .strip {
    padding: 2.5rem 1.25rem;
  }

  .strip-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .strip-card {
    padding: 1.5rem;
    text-align: center;
  }

  .strip-card__icon {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto 1rem;
  }

  .cinema-highlight {
    min-height: min(78vh, 680px);
    background-position: center 35%;
    background-size: cover;
  }

  .cinema-highlight__content {
    padding-bottom: 2rem;
  }

  .cinema-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
  }

  .cinema-stat strong {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .cinema-stat > span:not(.cinema-stat__icon) {
    font-size: 0.62rem;
  }

  .cinema-highlight__title {
    font-size: clamp(2rem, 11vw, 3rem);
    max-width: 100%;
  }

  .cinema-highlight__tagline {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
    letter-spacing: 0.12em;
  }

  .section--films-marquee {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .films-marquee {
    gap: 0.85rem;
    margin-top: 1.75rem;
  }

  .films-marquee__item {
    min-width: 8.5rem;
    padding: 1rem 0.75rem;
    gap: 0.65rem;
  }

  .films-marquee__icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .films-marquee__label {
    font-size: 0.65rem;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .about-grid {
    gap: 2rem;
  }

  .about-text {
    text-align: center;
  }

  .about-social {
    text-align: center;
  }

  .about-tagline {
    text-align: center;
  }

  .about-frame {
    border-radius: 6px;
  }

  .image-slider__btn {
    width: 2.35rem;
    height: 2.35rem;
  }

  .image-slider__btn--prev {
    left: 0.35rem;
  }

  .image-slider__btn--next {
    right: 0.35rem;
  }

  .image-slider__footer {
    padding: 0.5rem 0.65rem;
  }

  .social-links {
    flex-direction: column;
  }

  .social-links a {
    width: 100%;
    justify-content: center;
  }

  .section-head {
    text-align: center;
  }

  .section-head .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .section--testimonials {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .testimonials-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "viewport viewport viewport"
      "prev controls next";
    gap: 0.85rem 0.65rem;
    align-items: center;
    max-width: 100%;
  }

  .testimonials-slider__viewport {
    grid-area: viewport;
    overflow: visible;
  }

  .testimonials-slider__track {
    min-height: 0;
  }

  .testimonial-card {
    position: relative;
    inset: auto;
    justify-content: flex-start;
    gap: 0.9rem;
    padding: 1.35rem 1rem 1.5rem;
    transform: none;
  }

  .testimonial-card:not(.is-active) {
    display: none;
  }

  .testimonial-card.is-active {
    display: flex;
    opacity: 1;
    transform: none;
  }

  .testimonial-card.is-leaving {
    display: none;
    opacity: 0;
    transform: none;
  }

  .testimonial-card__quote svg {
    width: 30px;
    height: 30px;
  }

  .testimonial-card__text {
    font-size: 0.94rem;
    line-height: 1.65;
    text-align: left;
  }

  .testimonial-card__author {
    align-items: flex-start;
    margin-top: 0.25rem;
    width: 100%;
  }

  .testimonial-card__avatar {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    font-size: 0.75rem;
  }

  .testimonial-card__name {
    font-size: 0.9rem;
    text-align: left;
  }

  .testimonial-card__role {
    font-size: 0.66rem;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
  }

  .testimonials-slider__btn {
    position: static;
    top: auto;
    transform: none;
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;
  }

  .testimonials-slider__btn:hover {
    transform: scale(1.06);
  }

  .testimonials-slider__btn--prev {
    grid-area: prev;
    justify-self: start;
  }

  .testimonials-slider__btn--next {
    grid-area: next;
    justify-self: end;
  }

  .testimonials-slider__footer {
    grid-area: controls;
    margin-top: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    min-width: 0;
  }

  .testimonials-metrics {
    gap: 0.75rem;
    margin-top: 1.75rem;
  }

  .testimonials-metrics li {
    padding: 0.95rem 0.65rem;
  }

  .events-list .event-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  .events-slider {
    grid-template-columns: 1fr;
    grid-template-areas:
      "viewport"
      "footer";
    gap: 0.85rem;
    width: 100%;
  }

  .events-slider__btn {
    display: none;
  }

  .events-slider__viewport {
    width: 100%;
    max-height: min(72vh, 780px);
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(34, 197, 94, 0.45) rgba(255, 255, 255, 0.08);
  }

  .events-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    transform: none !important;
  }

  .events-list .event-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .events-slider__footer {
    margin-top: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-card {
    text-align: center;
  }

  .why-card__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .facilities-highlights,
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .facilities-highlight {
    flex-direction: column;
    text-align: center;
  }

  .facility-card__desc {
    max-height: 4rem;
    opacity: 1;
    transform: none;
    margin-top: 0.35rem;
  }

  .facility-card__arrow {
    opacity: 0.85;
    transform: none;
    background: rgba(0, 0, 0, 0.45);
  }

  .portfolio-card {
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-block {
    text-align: center;
  }

  .footer-wishes__eyebrow {
    letter-spacing: 0.28em;
    padding-right: 0.28em;
  }

  .footer-wishes__handle {
    font-size: clamp(1.1rem, 5vw, 2rem);
    letter-spacing: 0.02em;
  }

  .footer-wishes__item {
    width: clamp(140px, 42vw, 180px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.75rem;
    padding: 2.5rem clamp(1rem, 4vw, 2rem) 1.5rem;
  }

  .footer-brand {
    align-items: center;
    grid-column: 1;
    grid-row: 1;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-cta {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .footer-nav {
    grid-column: 1;
    grid-row: 3;
    padding-top: 1rem;
  }

  .footer-nav-list {
    gap: 0.65rem 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-row input,
  .form-row textarea {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card--wide {
    grid-column: span 1;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
  }

  .about-stats li {
    min-width: 5rem;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .cinema-highlight {
    min-height: min(66vh, 540px);
  }

  .cinema-stats {
    grid-template-columns: 1fr 1fr;
  }

  :root {
    --header-height: 64px;
  }

  .hero-slider-bg {
    height: min(42vh, 300px);
    min-height: 200px;
  }

  .hero-captions {
    padding: 1.25rem 1rem 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 48px;
    padding: 0.95rem 1.25rem;
  }

  .image-slider--hero .image-slider__btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .image-slider__counter {
    font-size: 0.65rem;
  }

  .btn--sm {
    min-height: 44px;
  }

  .section {
    padding: 3rem 1rem;
  }

  .strip {
    padding: 2rem 1rem;
  }

  .portfolio-card {
    padding: 1.5rem;
  }

  .contact-info {
    padding: 1.25rem;
  }

  .main-nav {
    width: min(88vw, 300px);
  }
}

@media (max-width: 380px) {
  .cinema-stats {
    grid-template-columns: 1fr;
  }

  .logo-img {
    height: 66px;
    max-width: min(160px, 48vw);
  }

  .hero-subtitle {
    font-size: 0.75rem;
  }

  .contact-float {
    right: 0;
  }

  .contact-float__panel {
    min-width: 180px;
  }
}

/* ---------- FLOATING CONTACT (right side) ---------- */
.contact-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 950;
  display: flex;
  align-items: stretch;
}

.contact-float__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-right: 0;
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: 14px 0 0 14px;
  background: rgba(18, 18, 18, 0.96);
  color: var(--color-gold);
  cursor: pointer;
  box-shadow: -4px 8px 28px rgba(0, 0, 0, 0.45);
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.contact-float__toggle:hover,
.contact-float__toggle:focus-visible {
  background: rgba(28, 28, 28, 0.98);
  border-color: rgba(34, 197, 94, 0.45);
  outline: none;
}

.contact-float__toggle-icon--close {
  display: none;
}

.contact-float.is-open .contact-float__toggle-icon--open {
  display: none;
}

.contact-float.is-open .contact-float__toggle-icon--close {
  display: block;
}

.contact-float.is-open .contact-float__toggle {
  border-radius: 14px 0 0 14px;
}

.contact-float__panel {
  position: absolute;
  right: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 196px;
  padding: 0.75rem;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: 14px 0 0 14px;
  box-shadow: -8px 8px 28px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.contact-float.is-open .contact-float__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.contact-float__panel[hidden] {
  display: flex;
}

.contact-float__action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.contact-float__action:hover,
.contact-float__action:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-border);
  outline: none;
}

.contact-float__action--email:hover,
.contact-float__action--email:focus-visible {
  color: var(--color-gold);
}

.contact-float__action--whatsapp:hover,
.contact-float__action--whatsapp:focus-visible {
  color: #25d366;
}

.contact-float__action--appointment:hover,
.contact-float__action--appointment:focus-visible {
  color: var(--color-gold);
}

.contact-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.contact-float__action--whatsapp .contact-float__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.contact-float__action--email .contact-float__icon {
  color: var(--color-gold);
}

.contact-float__action--appointment .contact-float__icon {
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-gold);
}

@media (prefers-reduced-motion: reduce) {
  .contact-float__panel,
  .contact-float__toggle,
  .contact-float__action {
    transition: none;
  }
}

/* ---------- HEADER MENU: desktop hidden, mobile side menu ---------- */
@media (min-width: 769px) {
  .site-header [data-site-nav],
  .site-header .nav-backdrop,
  .site-header .header-actions {
    display: none !important;
  }

  .site-header {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    justify-content: space-between;
  }

  .site-header [data-site-nav] {
    display: block !important;
    flex: 0 0 0 !important;
    width: 0 !important;
    overflow: visible !important;
  }

  .site-header .header-actions {
    display: flex !important;
  }

  .site-header .menu-toggle {
    display: flex !important;
  }

  .site-header .nav-backdrop {
    display: block !important;
  }
}
