/* ============================================================
   Memorii Studios. Cinematic Wedding Films.
   Moody cinematic design system. Dark-first, magenta accent
   on a cool near-black base. Built for parallax + film texture.
   ============================================================ */

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

:root {
  --bg: #120f16;
  --bg-deep: #0b0810;
  --surface: #1a1622;
  --surface-alt: #221c2c;
  --ink: #f2ecf1;
  --text: #f2ecf1;
  --text-muted: #c0b3c2;
  --text-light: #847889;
  /* Accent is magenta. Variable names kept as --gold* to avoid churn. */
  --gold: #cf5a8e;
  --gold-bright: #ef8cb8;
  --gold-soft: rgba(207, 90, 142, 0.12);
  --gold-line: rgba(207, 90, 142, 0.26);
  --emerald: #2a1d35;
  --emerald-bright: #3a2747;
  --bronze: #9c5f7e;
  --border: rgba(207, 90, 142, 0.16);
  --border-soft: rgba(242, 236, 241, 0.08);
  --nav-bg: rgba(11, 8, 16, 0.72);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --container: 1320px;
  --container-narrow: 920px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg);
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

::selection {
  background: var(--gold);
  color: var(--bg-deep);
}

/* ---------- Film grain + vignette overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 8999;
  pointer-events: none;
  box-shadow: inset 0 0 200px 60px rgba(0, 0, 0, 0.55);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section--tight { padding: 5rem 0; }
.section--alt { background: var(--surface); }
.section--deep { background: var(--bg-deep); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }

.narrow { max-width: var(--container-narrow); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Typography ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.kicker--center { justify-content: center; }

h1, h2, h3, .display {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.04;
  color: var(--ink);
}

h1, .display {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.serif-italic { font-style: italic; color: var(--gold-bright); }

p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.lead {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

.muted { color: var(--text-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(207, 90, 142, 0.3);
}

.btn--ghost {
  border-color: var(--gold-line);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow i { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--gold-bright); }
.link-arrow:hover i { transform: translateX(5px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 0.95rem 0;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand { text-decoration: none; line-height: 1; }
.brand__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand__sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-top: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__link:hover,
.nav__link.is-active { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.nav__cta {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  color: var(--gold);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--gold-soft); border-color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   CINEMATIC HERO
   ============================================================ */
.cine-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cine-hero__media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}
.cine-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.18); }
}
.cine-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 30% 40%, rgba(13, 11, 9, 0.35), rgba(13, 11, 9, 0.88)),
    linear-gradient(180deg, rgba(13, 11, 9, 0.55) 0%, rgba(13, 11, 9, 0.35) 45%, rgba(13, 11, 9, 0.95) 100%);
}
.cine-hero__content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  padding: 9rem 0 7rem;
}
.cine-hero__content h1 { margin-bottom: 1.8rem; }
.cine-hero__content .lead { max-width: 620px; }

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-light);
}
.scroll-cue__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: cueDrop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Simple interior header (no media): legal, contact */
.page-head {
  padding: 12rem 0 4rem;
  border-bottom: 1px solid var(--border-soft);
}
.page-head__inner { max-width: var(--container-narrow); }
.page-head h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.4rem; }

.prose h3 { margin-top: 2.5rem; }
.prose h3:first-child { margin-top: 0; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 4.5rem;
}
.page-hero__media { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,11,9,0.6) 0%, rgba(13,11,9,0.3) 40%, rgba(13,11,9,0.92) 100%);
}
.page-hero__content { position: relative; z-index: 2; max-width: 860px; }
.page-hero__content h1 { font-size: clamp(2.6rem, 6vw, 5rem); }

/* ============================================================
   PARALLAX QUOTE BANDS
   ============================================================ */
.parallax-band {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.parallax-band__media {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
  will-change: transform;
}
.parallax-band__media img { width: 100%; height: 100%; object-fit: cover; }
.parallax-band__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(13,11,9,0.85) 0%, rgba(13,11,9,0.5) 60%, rgba(13,11,9,0.3) 100%);
}
.parallax-band__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.parallax-band__inner .display { margin-bottom: 1.5rem; }
.band-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 300;
  line-height: 1.28;
  color: var(--ink);
}
.band-cite {
  display: block;
  margin-top: 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
}

/* ============================================================
   INTRO / SPLIT CONTENT
   ============================================================ */
.split-img {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.img-frame {
  position: relative;
  padding: 14px;
}
.img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  pointer-events: none;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
}

/* ============================================================
   CARDS (features / services / steps)
   ============================================================ */
.feature-card {
  padding: 2.6rem 2.2rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  background: var(--surface-alt);
}
.feature-card__icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.feature-card h3 { font-size: 1.4rem; }

.service-card {
  padding: 3rem 2.6rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-line); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-card ul { list-style: none; margin-top: 1.4rem; }
.service-card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  font-size: 0.96rem;
  color: var(--text-muted);
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Process timeline */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold-line), transparent);
}
.step {
  position: relative;
  padding: 0 0 3.5rem 2.5rem;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: -2.5rem; top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  transform: translateX(-0.5px);
}
.step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.step h3 { margin-top: 0.3rem; }

/* ============================================================
   FILM / PORTFOLIO CARDS
   ============================================================ */
.film-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}
.film-card { display: block; text-decoration: none; color: inherit; }
.film-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3 / 2;
  margin-bottom: 1.5rem;
}
.film-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.film-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,11,9,0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.film-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 2;
  width: 72px; height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(243,236,225,0.5);
  background: rgba(13,11,9,0.3);
  backdrop-filter: blur(4px);
  color: var(--ink);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.film-card:hover .film-card__media img { transform: scale(1.06); }
.film-card:hover .film-card__media::after { opacity: 1; }
.film-card:hover .film-card__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.film-card .kicker { margin-bottom: 0.8rem; }
.film-card h3 { transition: color 0.3s var(--ease); }
.film-card:hover h3 { color: var(--gold); }
.film-card--tall .film-card__media { aspect-ratio: 4 / 5; }

/* ============================================================
   GALLERY (masonry + lightbox)
   ============================================================ */
.gallery {
  column-count: 3;
  column-gap: 1.4rem;
}
.gallery__item {
  position: relative;
  margin-bottom: 1.4rem;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  transition: transform 1s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.92) brightness(0.92);
}
.gallery__item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.3rem;
  background: rgba(13,11,9,0.4);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.gallery__item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(8, 6, 5, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--ink);
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__nav--prev { left: 2vw; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 2vw; top: 50%; transform: translateY(-50%); }

/* ============================================================
   MARQUEE FILM STRIP
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--text-light);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee__track span::after {
  content: "\2022";
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq-item__q:hover { color: var(--gold); }
.faq-item__icon {
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform 0.4s var(--ease);
  font-size: 0.9rem;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-item__a p { padding-bottom: 1.8rem; margin: 0; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 9rem 0;
}
.cta__media { position: absolute; inset: -15% 0; z-index: 0; will-change: transform; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(80% 80% at 50% 50%, rgba(13,11,9,0.7), rgba(13,11,9,0.95));
}
.cta__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

/* ============================================================
   PROJECT PAGE
   ============================================================ */
.project-feature {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 4rem;
}
.project-feature img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.project-meta .meta span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.project-meta .meta strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
}

.detail-card {
  padding: 2.6rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
}
.detail-card ul { list-style: none; }
.detail-card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}
.detail-card li::before {
  content: "";
  position: absolute; left: 0; top: 0.7rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.quote-mark {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--ink);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.mini-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.8s var(--ease);
}
.mini-gallery img:hover { transform: scale(1.03); }

/* Generic feature list */
.feature-list { list-style: none; }
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: "\2014";
  position: absolute; left: 0;
  color: var(--gold);
}

.info-block {
  padding: 2.6rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
}
.info-block p strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 6rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand .brand__name { font-size: 1.8rem; }
.footer-brand p { margin-top: 1.2rem; max-width: 320px; font-size: 0.95rem; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.85rem; }
.footer-col a {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.95rem; margin-bottom: 0.7rem; }
.footer-contact a { color: var(--ink); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
}
.footer-bottom a { color: var(--text-light); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }
[data-reveal-delay="4"] { transition-delay: 0.48s; }

.mt-2 { margin-top: 0.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }

/* ============================================================
   VIDEO PORTFOLIO (films + reels)
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem 2rem;
}
.video-grid--reels {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem 1.5rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.video-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border-soft);
}
.video-card--portrait .video-card__media { aspect-ratio: 9 / 16; }
.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.86);
  transition: transform 1s var(--ease), filter 0.5s var(--ease);
}
.video-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,8,16,0) 40%, rgba(11,8,16,0.6) 100%);
  opacity: 0.7;
  transition: opacity 0.5s var(--ease);
}
.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(0.85);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(242, 236, 241, 0.6);
  background: rgba(11, 8, 16, 0.35);
  backdrop-filter: blur(4px);
  color: var(--ink);
  font-size: 0.95rem;
  opacity: 0.85;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.video-card__play i { margin-left: 3px; }
.video-card:hover .video-card__media img,
.video-card:focus-visible .video-card__media img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.video-card:hover .video-card__play,
.video-card:focus-visible .video-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-deep);
}
.video-card:focus-visible { outline: none; }
.video-card:focus-visible .video-card__media { border-color: var(--gold); }
.video-card__meta { display: flex; flex-direction: column; gap: 0.15rem; }
.video-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  transition: color 0.3s var(--ease);
}
.video-card--portrait .video-card__name { font-size: 1.2rem; }
.video-card:hover .video-card__name { color: var(--gold); }
.video-card__note {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-light);
}

/* Video modal player */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9600;
  background: rgba(8, 6, 11, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal__frame {
  position: relative;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-modal__frame--landscape { width: min(1100px, 92vw); aspect-ratio: 16 / 9; max-height: 84vh; }
.video-modal__frame--portrait { height: min(84vh, 920px); aspect-ratio: 9 / 16; max-width: 92vw; }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__caption {
  position: absolute;
  left: 0;
  bottom: -2.4rem;
  width: 100%;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
}
.video-modal__close {
  position: absolute;
  top: 3vw;
  right: 3vw;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: none;
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.video-modal__close:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   VIDEO BACKGROUNDS + TILE VIDEO
   ============================================================ */
.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--bg-deep);
}
.split-img { aspect-ratio: 4 / 5; }
.split-img .bg-video { position: absolute; inset: 0; }

/* Launcher tile face: cinematic gradient, no image, no download. */
.video-card__media {
  background: linear-gradient(150deg, #2a1c33 0%, #161019 55%, #0f0c14 100%);
}
.video-card.grad-2 .video-card__media { background: linear-gradient(150deg, #321a2b 0%, #14101a 60%); }
.video-card.grad-3 .video-card__media { background: linear-gradient(150deg, #221a30 0%, #120f16 60%); }
.video-card.grad-4 .video-card__media { background: linear-gradient(150deg, #2d2238 0%, #100d15 60%); }
.video-card__poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) brightness(0.8);
  transition: transform 1s var(--ease), filter 0.5s var(--ease);
}
.video-card:hover .video-card__poster,
.video-card:focus-visible .video-card__poster { transform: scale(1.06); filter: saturate(1.06) brightness(0.92); }
.video-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 60% at 50% 42%, rgba(207, 90, 142, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(11, 8, 16, 0.1) 0%, rgba(11, 8, 16, 0.55) 100%);
  opacity: 0.85;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.video-card:hover .video-card__media::before,
.video-card:focus-visible .video-card__media::before { opacity: 1; transform: scale(1.05); }
.video-card__watch {
  position: absolute;
  left: 0; right: 0; bottom: 1.1rem;
  z-index: 2;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.video-card:hover .video-card__watch,
.video-card:focus-visible .video-card__watch { opacity: 1; transform: none; }

/* ============================================================
   TABS (films / reels category switcher)
   ============================================================ */
.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 2.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3.5rem;
}
.tabs__tab {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-light);
  padding: 0 0 1.1rem;
  transition: color 0.3s var(--ease);
}
.tabs__tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.tabs__tab:hover { color: var(--ink); }
.tabs__tab.is-active { color: var(--gold); }
.tabs__tab.is-active::after { transform: scaleX(1); }
.tabs__count {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  margin-left: 0.4rem;
  opacity: 0.75;
}
.tabs__head { text-align: center; max-width: var(--container-narrow); margin: 0 auto 3rem; }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: tabFade 0.55s var(--ease); }
@keyframes tabFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid--reels { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .gallery { column-count: 2; }
  .section { padding: 6rem 0; }

  .nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.4rem; }
  .grid-3, .grid-4, .stats, .film-grid, .project-meta,
  .footer-top, .mini-gallery, .video-grid { grid-template-columns: 1fr; }
  .video-grid--reels { grid-template-columns: repeat(2, 1fr); }
  .gallery { column-count: 1; }
  .stats { gap: 2.5rem; }
  .section { padding: 4.5rem 0; }
  .cine-hero__content { padding: 7rem 0 6rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .parallax-band, .cta { min-height: auto; }
  .parallax-band { padding: 5rem 0; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cine-hero__media img { animation: none; }
  .marquee__track { animation: none; }
}
