/* ─────────────────────────────────────────────
   JASS BAINS FILMS - Cinematic Wedding Films
   Stylesheet · dark cinematic theme with depth
   ───────────────────────────────────────────── */

:root {
  /* palette - monochrome with a very faint warm-ivory accent */
  --bg:          #0a0a0a;
  --bg-2:        #121212;
  --surface:     #181818;
  --surface-2:   #1f1f1f;
  --ink:         #f2f1ed;
  --ink-soft:    #c8c6c1;
  --mute:        #6f6d68;
  --mute-2:      #46443f;
  --accent:      #e8e6df;
  --accent-soft: rgba(232, 230, 223, 0.16);
  --accent-glow: rgba(232, 230, 223, 0.22);
  /* legacy aliases - kept so existing rules continue to work */
  --gold:        var(--accent);
  --gold-soft:   var(--accent-soft);
  --gold-glow:   var(--accent-glow);

  /* type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  /* sizing */
  --container:   1320px;
  --pad-x:       clamp(1.25rem, 3vw, 3rem);
  --section-y:   clamp(5rem, 10vw, 9rem);

  /* motion */
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --dur-1:       0.35s;
  --dur-2:       0.7s;
  --dur-3:       1.1s;
}

/* ── reset & base ───────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

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

/* ── utilities ──────────────────────────────────────── */

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); position: relative; }
.muted { color: var(--mute); }
em { font-style: italic; color: var(--ink); font-family: var(--font-display); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
  padding-left: 2.2rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1.6rem;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

.lede {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--ink-soft);
  max-width: 100ch;
  margin-bottom: 0;
}

.section-head {
  max-width: 740px;
  margin: 0 auto 4.5rem;
  text-align: center;
}
.section-head .eyebrow { display: block; }
.section-head .lede { margin: 0 auto; }

.section-cta {
  margin-top: 4.5rem;
  text-align: center;
}
.section-cta .muted { display: block; margin-bottom: 1.25rem; }

/* ── buttons ────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--dur-1) var(--ease), background var(--dur-1), color var(--dur-1), box-shadow var(--dur-2);
  position: relative;
  will-change: transform;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 14px 40px -16px var(--gold-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px -18px var(--gold-glow), 0 0 0 1px var(--gold);
}
.btn--ghost {
  border-color: rgba(245, 241, 232, 0.22);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(245, 241, 232, 0.04);
  transform: translateY(-2px);
}
.btn--text {
  padding: 0;
  border: 0;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.12em;
}
.btn--text:hover { color: var(--ink); }
.btn--full { width: 100%; justify-content: center; }

/* ── grain & loader ─────────────────────────────────── */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.85'/></svg>");
  background-size: 200px 200px;
}

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__logo {
  height: 38px;
  width: auto;
  margin: 0 auto 1.75rem;
  opacity: 0;
  transform: translateY(8px);
  animation: loaderLogoIn 0.9s var(--ease-out) forwards;
}
.loader__bar {
  width: 200px;
  height: 1px;
  background: rgba(245, 241, 232, 0.12);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.loader__bar span {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderBar 1.3s var(--ease-out) 0.35s forwards;
}
@keyframes loaderLogoIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar {
  0%   { transform: scaleX(0); transform-origin: left; }
  60%  { transform: scaleX(1); transform-origin: left; }
  61%  { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ── video lightbox ────────────────────────────────── */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vh 2vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border: 0;
  cursor: pointer;
}
.video-modal__content {
  position: relative;
  width: min(75vw, calc(73vh * 16 / 9));
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  /* Layered glow: hairline edge + soft cream halo + wide warm ambient + original drop shadow */
  box-shadow:
    0 0 0 1px rgba(242, 241, 237, 0.06),
    0 0 40px -2px rgba(242, 241, 237, 0.10),
    0 0 140px -30px rgba(232, 230, 223, 0.14),
    0 60px 160px -40px rgba(0, 0, 0, 0.95);
  transform: scale(0.96);
  transition: transform 0.5s var(--ease-out);
}
.video-modal.is-open .video-modal__content { transform: scale(1); }

.video-modal__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-modal__frame iframe,
.video-modal__frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-1), color var(--dur-1), transform var(--dur-1) var(--ease);
  z-index: 10;
}
.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent);
  transform: rotate(90deg);
}
.video-modal__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .video-modal__close {
    top: 0.9rem;
    right: 0.9rem;
    width: 47px;
    height: 47px;
  }
  .video-modal__content {
    width: 94vw;
  }
}

body.video-modal-open { overflow: hidden; }

/* ── reveal animations ──────────────────────────────── */

.reveal, [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
.is-in.reveal, .is-in[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

/* ── nav ────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: padding var(--dur-1), background var(--dur-1), backdrop-filter var(--dur-1);
}
.nav.is-scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
}
.nav__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}
.nav__logo { height: 35px; width: auto; opacity: 0.95; transition: opacity var(--dur-1); }
.nav__brand:hover .nav__logo { opacity: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links--left  { grid-column: 1; justify-self: start; }
.nav__links--right { grid-column: 3; justify-self: end; }
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--dur-1);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur-1) var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  padding: 0.55rem 1.1rem !important;
  border: 1px solid rgba(245, 241, 232, 0.2);
  border-radius: 999px;
}
.nav__cta:hover { border-color: var(--gold); }
.nav__cta::after { display: none; }

.nav__toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur-1), opacity var(--dur-1);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  padding: 6rem 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-1), visibility var(--dur-1);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ink);
}

/* ── hero ───────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-layer {
  position: absolute;
  inset: -10% -10%;
  will-change: transform;
}
.hero__bg-layer--back {
  background:
    radial-gradient(ellipse 90% 60% at 50% 40%, rgba(242, 241, 237, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(242, 241, 237, 0.03), transparent 60%),
    var(--bg);
}
.hero__bg-layer--mid {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(242, 241, 237, 0.04) 0, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(242, 241, 237, 0.03) 0, transparent 40%);
  opacity: 0.85;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;          /* Squarespace-style "10% opacity" background film. Tune 0.08–0.22. */
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1) contrast(1.05); /* keep the monochrome theme intact */
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, var(--bg) 92%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
  transform-style: preserve-3d;
}
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.24rem, 6vw, 5.28rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  color: var(--ink);
}
.hero__title .line { display: block; text-wrap: balance; }
.hero__sub {
  font-size: clamp(0.85rem, 1.05vw, 1rem);
  color: var(--ink-soft);
  max-width: 90ch;
  margin: 0 auto 2.5rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--mute);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroIn 1.2s var(--ease-out) 2.4s forwards;
}

/* ── Cinematic hero intro — staggered reveal on page open ──── */
.hero__eyebrow,
.hero__title .line,
.hero__sub,
.hero__cta,
.nav {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1.05s var(--ease-out) forwards;
  will-change: opacity, transform;
}
.nav                            { transform: translateY(-14px); animation-delay: 1.20s; animation-duration: 0.8s; }
.hero__eyebrow                  { animation-delay: 1.10s; }
.hero__title .line:nth-child(1) { animation-delay: 1.28s; }
.hero__title .line:nth-child(2) { animation-delay: 1.52s; }
.hero__sub                      { animation-delay: 1.88s; }
.hero__cta                      { animation-delay: 2.10s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title .line, .hero__sub, .hero__cta,
  .hero__scroll, .nav {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollPulse 2.4s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0%   { top: -50%; }
  100% { top: 110%; }
}

/* ── marquee ────────────────────────────────────────── */

.marquee {
  border-top: 1px solid rgba(245, 241, 232, 0.06);
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
  padding: 1.8rem 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.marquee__set {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--mute);
}
.marquee__set span:nth-child(even) { color: var(--ink-soft); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ── films ──────────────────────────────────────────── */

.films { background: var(--bg); position: relative; }
.films::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(242, 241, 237, 0.03), transparent 50%);
  pointer-events: none;
}
.film-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  perspective: 1400px;
}
.film-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2);
  will-change: transform;
  transform-style: preserve-3d;
  background: var(--surface);
}
.film-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, #2a2a2a 0%, #0e0e0e 100%),
    var(--surface);
  overflow: hidden;
  transform: translateZ(0);
}
.film-card__media::before {
  /* subtle layered light suggesting a scene - monochrome */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(242, 241, 237, 0.12), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 0, 0, 0.55), transparent 60%);
  mix-blend-mode: screen;
}
.film-card__media::after {
  /* film grain on each tile */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
}
.film-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(245, 241, 232, 0.08) 50%, transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-2);
}
.film-card:hover .film-card__shine { opacity: 1; }
.film-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(245, 241, 232, 0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform var(--dur-1), background var(--dur-1), border-color var(--dur-1);
  backdrop-filter: blur(4px);
}
.film-card:hover .film-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.film-card__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  font-weight: 500;
}
.film-card__meta {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.film-card__couple {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
}
.film-card__location {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.film-card:hover {
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--gold-soft);
}

/* ── about ──────────────────────────────────────────── */

.about { background: var(--bg-2); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
}
.about__visual {
  position: relative;
  perspective: 1600px;
  transform: scale(0.9);
  transform-origin: center;
}
.about__frame {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(2deg);
  box-shadow: none;
}
.about__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.about__frame-inner {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(232, 230, 223, 0.28);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 35%);
}
.about__frame-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.about__frame::after {
  /* grain */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}
.about__frame--accent {
  display: none;
}

.about__copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  max-width: 56ch;
}
.stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ── packages teaser ────────────────────────────────── */

.packages { background: var(--bg); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  perspective: 1600px;
}
.pkg-card {
  background: var(--surface);
  border: 1px solid rgba(245, 241, 232, 0.06);
  border-radius: 10px;
  padding: 2.4rem 2rem;
  position: relative;
  transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2), box-shadow var(--dur-2);
  will-change: transform;
}
.pkg-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}
.pkg-card--featured {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: var(--gold-soft);
  transform: translateY(-12px);
}
.pkg-card--featured:hover { transform: translateY(-18px); }
.pkg-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.pkg-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.pkg-card__name span { display: block; color: var(--ink-soft); font-style: italic; }
.pkg-card__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  margin: 1.5rem 0;
  letter-spacing: -0.02em;
}
.pkg-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(245, 241, 232, 0.06);
  padding-top: 1.5rem;
}
.pkg-card__list li {
  padding: 0.55rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 1.2rem;
}
.pkg-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 6px; height: 1px;
  background: var(--gold);
}

/* ── faq ────────────────────────────────────────────── */

.faq { background: var(--bg-2); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.faq__head { position: sticky; top: 6rem; }
.faq__head p { color: var(--ink-soft); }
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  padding: 1.6rem 0;
  transition: padding var(--dur-1);
}
.faq__item:last-child { border-bottom: 1px solid rgba(245, 241, 232, 0.08); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--dur-1) var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body {
  padding-top: 1rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.faq__body p { margin: 0 0 0.85rem; }
.faq__body p:last-child { margin-bottom: 0; }

/* ── contact ────────────────────────────────────────── */

.contact { background: var(--bg); }
.contact__wrap {
  max-width: 720px;
  margin: 0 auto;
}
.contact__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.contact__head .eyebrow { display: inline-block; }
.contact__head .display { margin-bottom: 1.5rem; }
.contact__intro {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 78ch;
  margin: 0 auto;
}
.contact__intro a {
  color: var(--ink);
  border-bottom: 1px solid rgba(242, 241, 237, 0.35);
  transition: border-color var(--dur-1), color var(--dur-1);
}
.contact__intro a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field textarea {
  font: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(242, 241, 237, 0.14);
  border-radius: 0;
  padding: 0.75rem 0;
  color: var(--ink);
  transition: border-color var(--dur-1), background var(--dur-1);
}
.field textarea {
  resize: vertical;
  min-height: 6rem;
  font-family: var(--font-sans);
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(242, 241, 237, 0.32);
}
.field input:focus, .field textarea:focus,
.field__select:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: transparent;
}

/* Select (dark theme, underline style) */
.field__select {
  font: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(242, 241, 237, 0.14);
  border-radius: 0;
  padding: 0.75rem 1.6rem 0.75rem 0;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23c8c6c1' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  transition: border-color var(--dur-1);
}
.field__select option {
  background: var(--bg);
  color: var(--ink);
}

/* Fieldset groups (checkbox / radio) */
.field--group { border: 0; padding: 0; margin: 0; }
.field--group .field__label { display: block; margin-bottom: 1rem; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}
.checkbox--wide { grid-column: 1 / -1; }

.checkbox, .radio {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color var(--dur-1);
}
.checkbox:hover, .radio:hover { color: var(--ink); }

.checkbox input, .radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.checkbox span, .radio span {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  padding-left: 1.7rem;
}
.checkbox span::before, .radio span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid rgba(242, 241, 237, 0.28);
  transition: border-color var(--dur-1), background var(--dur-1);
}
.checkbox span::before { border-radius: 3px; }
.radio span::before    { border-radius: 50%; }

.checkbox span::after, .radio span::after {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform var(--dur-1) var(--ease-out);
}
.checkbox span::after {
  /* checkmark */
  left: 4px;
  width: 11px; height: 6px;
  border-left: 1.5px solid var(--bg);
  border-bottom: 1.5px solid var(--bg);
  transform-origin: center;
  transform: translateY(-65%) rotate(-45deg) scale(0);
}
.radio span::after {
  left: 5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.checkbox input:checked + span::before {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox input:checked + span::after {
  transform: translateY(-65%) rotate(-45deg) scale(1);
}
.radio input:checked + span::before {
  border-color: var(--accent);
}
.radio input:checked + span::after {
  transform: translateY(-50%) scale(1);
}

.checkbox input:focus-visible + span::before,
.radio    input:focus-visible + span::before {
  box-shadow: 0 0 0 3px rgba(232, 230, 223, 0.18);
}

/* Radio row (horizontal) */
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
}

/* Conditional reveal (Pre-Events count) */
.field--conditional {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(242, 241, 237, 0.10);
  padding-left: 1.2rem;
  transition: max-height var(--dur-2) var(--ease-out),
              opacity var(--dur-2) var(--ease-out),
              margin var(--dur-2) var(--ease-out);
}
.field--conditional.is-open {
  max-height: 260px;
  opacity: 1;
  margin: -0.25rem 0 0.25rem;
}

.field__req {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.8em;
  color: var(--ink-soft);
  opacity: 0.55;
  margin-left: 0.4em;
}

/* Date input — pull the calendar indicator into the dark theme */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85) opacity(0.7);
  cursor: pointer;
}

.contact__form .btn--primary {
  margin-top: 1.5rem;
  align-self: center;
  min-width: 240px;
}
.contact__form-note {
  font-size: 0.78rem;
  color: var(--mute);
  text-align: center;
  margin: 0.4rem 0 0;
}

/* ── footer ─────────────────────────────────────────── */

.footer {
  background: var(--bg-2);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(245, 241, 232, 0.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
}
.footer__brand { max-width: 360px; }
.footer__logo { height: 30px; margin-bottom: 1rem; }
.footer__tagline { color: var(--mute); font-size: 0.95rem; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__heading {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer__col a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color var(--dur-1);
}
.footer__col a:hover { color: var(--ink); }
.footer__base {
  grid-column: 1 / -1;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--mute);
  letter-spacing: 0.06em;
}

/* ── investment page ────────────────────────────────── */

.inv-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.inv-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(232, 230, 223, 0.06), transparent 60%),
    var(--bg);
}
.inv-hero__content { position: relative; max-width: 760px; text-align: center; margin: 0 auto; }
.inv-hero__title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5.8rem); margin: 0 0 1.5rem; line-height: 1; }
.inv-hero__sub { font-size: 1.1rem; color: var(--ink-soft); max-width: 56ch; margin: 0 auto; }

.inv-packages { padding: 4rem 0 6rem; }
.inv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.inv-card {
  background: var(--surface);
  border: 1px solid rgba(245, 241, 232, 0.07);
  border-radius: 12px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  transition: border-color var(--dur-2), transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2);
}
.inv-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}
.inv-card__name { font-family: var(--font-display); font-size: 2rem; margin: 0 0 0.4rem; line-height: 1.1; }
.inv-card__name em { font-family: var(--font-display); font-style: italic; color: var(--gold); }
.inv-card__sub {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.5rem;
}
.inv-card__price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.inv-card__list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 2rem; }
.inv-card__list li {
  padding: 0.5rem 0 0.5rem 1.2rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
  break-inside: avoid;
}
.inv-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem;
  width: 6px; height: 1px;
  background: var(--gold);
}
.inv-card__list li.featured { color: var(--ink); font-weight: 500; }

.inv-addons {
  background: var(--bg-2);
  padding: 6rem 0;
  border-top: 1px solid rgba(245, 241, 232, 0.06);
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
}
.inv-addons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 3rem;
  max-width: 880px;
  margin: 0 auto;
}
.inv-addon {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(245, 241, 232, 0.1);
}
.inv-addon__label { font-size: 0.95rem; color: var(--ink-soft); }
.inv-addon__price { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; }

.inv-extra-hours {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.3rem;
}
.inv-extra-hours strong { color: var(--gold); font-style: normal; }

.inv-cta {
  text-align: center;
  padding: 6rem 0;
}

/* ── responsive ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .about__grid, .faq__grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq__head { position: static; }
  .pkg-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pkg-card--featured { transform: none; }
  .pkg-card--featured:hover { transform: translateY(-6px); }
  .inv-card { grid-template-columns: 1fr; gap: 2rem; padding: 2.4rem; }
  .inv-card__list { columns: 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .film-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer__base { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .inv-addons__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .checkbox--wide { grid-column: 1; }
}

/* ── reduced motion ─────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, [data-reveal] { opacity: 1; transform: none; }
}
