/*
  CLIENT: Jen Creates — Jenna Ramsey, Central Texas Wedding Cinematographer
  ART DIRECTION: Cinematic editorial. Black canvas, warm taupe accent, film-grain cream.
                 Like a darkroom at golden hour. Editorial New headlines, Inter Tight body.
  PALETTE: Cinema black bg · warm taupe/champagne accent · film-grain cream text
*/

/* ======== TOKENS ======== */
:root {
  --color-bg:           oklch(0.06 0.005 60);
  --color-bg-deeper:    oklch(0.04 0.004 60);
  --color-surface:      oklch(0.09 0.006 60);
  --color-surface-2:    oklch(0.13 0.006 60);
  --color-line:         oklch(0.20 0.008 65);

  --color-text:         oklch(0.94 0.015 78);
  --color-text-muted:   oklch(0.68 0.012 75);
  --color-text-soft:    oklch(0.46 0.009 70);

  --color-accent:       oklch(0.80 0.055 72);
  --color-accent-hover: oklch(0.87 0.055 75);
  --color-accent-deep:  oklch(0.62 0.045 68);
  --color-cream:        oklch(0.96 0.018 82);

  --font-display: "Editorial New", Georgia, serif;
  --font-body:    "Inter Tight", -apple-system, system-ui, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.45);
  --shadow-md: 0 8px 24px rgba(0,0,0,.55);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.65);

  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --container: 1400px;
}

/* ======== RESET ======== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input,textarea,select { font-family: inherit; }
::selection { background: var(--color-accent); color: var(--color-bg-deeper); }

/* ======== TYPOGRAPHY ======== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-text);
}
.h-display {
  font-size: clamp(52px, 10vw, 164px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.h-section {
  font-size: clamp(38px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.h-sub {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
}
p { color: var(--color-text-muted); }
.lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* ======== LAYOUT ======== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 60px);
  padding-right: clamp(20px, 4vw, 60px);
}
.section       { padding: clamp(80px, 10vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(60px, 7vw, 120px) 0; }

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg-deeper);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px oklch(0.80 0.055 72 / .28);
}
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-line);
}
.btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn--lg { padding: 22px 40px; font-size: 14px; }
.btn .icon { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }

/* ======== NAV ======== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s var(--ease);
}
.nav.scrolled {
  background: oklch(0.06 0.005 60 / .82);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--color-line);
  padding: 14px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 36px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 30px; height: 30px;
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  font-family: var(--font-body);
  letter-spacing: 0;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  transition: color .3s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--color-text); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
  transform-origin: left;
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--color-accent); }
.nav__cta { display: flex; align-items: center; gap: var(--space-4); }
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-bg-deeper);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.025em;
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  filter: brightness(.62) saturate(0.9);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.04 0.004 60 / .18) 0%, transparent 28%, oklch(0.04 0.004 60 / .88) 78%),
    radial-gradient(ellipse at 70% 20%, oklch(0.80 0.055 72 / .07) 0%, transparent 50%);
  z-index: -1;
}
.hero__content {
  padding: clamp(110px, 13vw, 150px) 0 clamp(60px, 8vw, 100px);
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero__title.h-display {
  font-size: clamp(48px, 8vw, 130px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.04em !important;
  padding-bottom: 0.12em !important;
  overflow: visible !important;
  color: oklch(0.96 0.018 82);
}
.hero__title .word { display: inline-block; overflow: hidden; padding-bottom: 0.12em; }
.hero__title .word > span { display: inline-block; }
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: oklch(0.90 0.015 78 / .85);
  max-width: 52ch;
  line-height: 1.55;
  margin-top: var(--space-5);
  margin-bottom: var(--space-7);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-6);
  margin-bottom: var(--space-7);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.90 0.015 78 / .72);
}
.hero__meta span { display: inline-flex; align-items: center; gap: var(--space-2); }
.hero__meta svg { width: 13px; height: 13px; color: var(--color-accent); }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero__scroll {
  position: absolute;
  bottom: 32px; right: clamp(20px, 4vw, 60px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(0.90 0.015 78 / .6);
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--color-accent));
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: -30px; left: 0; right: 0; height: 30px;
  background: var(--color-accent);
  animation: scrollDot 2.4s var(--ease-out) infinite;
}
@keyframes scrollDot { 0%{transform:translateY(0)} 100%{transform:translateY(90px)} }

/* ======== FILM RIBBON (replaces postcard ribbon) ======== */
.film-ribbon {
  background: var(--color-bg-deeper);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: clamp(40px, 5vw, 72px) 0;
  position: relative;
  overflow: hidden;
}
.film-ribbon::before, .film-ribbon::after {
  content: '';
  position: absolute;
  top: 50%; width: 25%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent) 50%, transparent);
  opacity: .18;
}
.film-ribbon::before { left: 0; }
.film-ribbon::after  { right: 0; }
.film-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  flex-wrap: wrap;
}
.film-ribbon__quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 30px);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 60ch;
}
.film-ribbon__quote em { color: var(--color-accent); font-style: italic; }
.film-ribbon__sig {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin-top: 10px;
  display: block;
  font-style: italic;
}
.film-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.film-frame__holes {
  display: flex; gap: 5px;
}
.film-frame__hole {
  width: 8px; height: 10px;
  border: 1px solid oklch(0.80 0.055 72 / .35);
  border-radius: 1px;
}
.film-frame__img {
  width: 80px; height: 56px;
  border: 1px solid oklch(0.80 0.055 72 / .3);
  background: var(--color-surface);
  overflow: hidden;
}
.film-frame__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) brightness(0.8); }

/* ======== MARQUEE ======== */
.marquee {
  background: var(--color-bg-deeper);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  gap: var(--space-9);
  animation: marquee 50s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
}
.marquee__item .dot { color: var(--color-accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ======== STATS ======== */
.stats {
  padding: clamp(64px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--color-line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
}
.stat {
  border-left: 1px solid var(--color-line);
  padding-left: var(--space-5);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  font-style: italic;
}
.stat__num .accent { color: var(--color-accent); }
.stat__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ======== ABOUT ======== */
.about { position: relative; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, oklch(0.04 0.004 60 / .5) 100%);
}
.about__visual-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  padding: 10px 16px;
  background: oklch(0.04 0.004 60 / .82);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid oklch(0.80 0.055 72 / .4);
  z-index: 2;
}
.about__content .h-section { margin-bottom: var(--space-6); }
.about__content p {
  margin-bottom: var(--space-5);
  font-size: 17px;
  line-height: 1.68;
}
.about__content p:first-of-type {
  font-size: 19px;
  color: var(--color-text);
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: -0.005em;
  line-height: 1.45;
}
.about__sig {
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}

/* ======== GALLERY / FILMS ======== */
.work__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.work__head .h-section { max-width: 16ch; }
.work__head p { max-width: 42ch; font-size: 16px; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-5) 0;
}
.filter {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  transition: all .3s var(--ease);
}
.filter:hover { color: var(--color-text); }
.filter.active { color: var(--color-bg-deeper); background: var(--color-accent); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: var(--space-3);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--color-surface);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(0.04 0.004 60 / .85) 100%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 2;
  opacity: 0; transform: translateY(10px);
  transition: all .4s var(--ease);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }
.gallery__caption-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: oklch(0.96 0.018 82);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.gallery__caption-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.g-1 { grid-column: span 7; grid-row: span 5; }
.g-2 { grid-column: span 5; grid-row: span 5; }
.g-3 { grid-column: span 4; grid-row: span 4; }
.g-4 { grid-column: span 4; grid-row: span 4; }
.g-5 { grid-column: span 4; grid-row: span 4; }
.g-6 { grid-column: span 6; grid-row: span 5; }
.g-7 { grid-column: span 6; grid-row: span 5; }
.g-8 { grid-column: span 5; grid-row: span 4; }
.g-9 { grid-column: span 7; grid-row: span 4; }

/* ======== FEATURED WEDDINGS (series) ======== */
.series {
  background: var(--color-bg-deeper);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.series__head { text-align: center; margin-bottom: var(--space-9); }
.series__head .eyebrow { justify-content: center; margin-bottom: var(--space-4); }
.series__head .eyebrow::before,
.series__head .eyebrow::after { content:''; width:28px; height:1px; background:var(--color-accent); }
.series__list { display: grid; gap: clamp(80px, 10vw, 140px); }
.series__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.series__item:nth-child(even) .series__visual { order: 2; }
.series__visual { aspect-ratio: 4/5; position: relative; overflow: hidden; border-radius: var(--radius-md); }
.series__visual img { width:100%; height:100%; object-fit:cover; transition: transform 1.4s var(--ease-out); }
.series__visual:hover img { transform: scale(1.04); }
.series__num {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 110px);
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-5);
  font-weight: 400;
  font-style: italic;
}
.series__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
  color: var(--color-text);
}
.series__location {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  display: inline-flex; align-items: center; gap: var(--space-3);
}
.series__location svg { width: 13px; height: 13px; }
.series__desc { font-size: 17px; line-height: 1.65; margin-bottom: var(--space-6); max-width: 50ch; }
.series__tags { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.series__tag {
  padding: 6px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ======== VENUES GRID (replaces brands) ======== */
.venues { background: var(--color-bg-deeper); border-top: 1px solid var(--color-line); }
.venues__head { text-align: center; margin-bottom: var(--space-7); }
.venues__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.venue-card {
  padding: var(--space-7) var(--space-5);
  background: var(--color-bg);
  display: grid;
  place-items: center;
  text-align: center;
  transition: all .35s var(--ease);
}
.venue-card:hover { background: var(--color-surface); }
.venue-card__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
  transition: color .35s var(--ease);
}
.venue-card:hover .venue-card__name { color: var(--color-accent); }
.venue-card__sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--color-text-soft);
  font-weight: 600;
}

/* ======== PROCESS (4 steps) ======== */
.process {
  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: 'FILM';
  position: absolute;
  top: -20px; right: -2vw;
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 280px);
  font-weight: 400;
  font-style: italic;
  color: var(--color-surface);
  z-index: 0;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.process__inner { position: relative; z-index: 1; }
.process__head { margin-bottom: clamp(50px, 7vw, 80px); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.process__step {
  background: var(--color-bg);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: background .35s var(--ease);
}
.process__step:hover { background: var(--color-surface); }
.process__num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.03em;
  font-style: italic;
}
.process__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.015em;
  color: var(--color-text);
  line-height: 1.1;
}
.process__desc { font-size: 15px; line-height: 1.6; color: var(--color-text-muted); }

/* ======== PACKAGES (services) ======== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-7);
}
.service {
  background: var(--color-bg);
  padding: clamp(32px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, oklch(0.80 0.055 72 / .04));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service:hover { background: var(--color-surface); }
.service:hover::before { opacity: 1; }
.service__num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-style: italic;
}
.service__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.05;
}
.service__desc { font-size: 15px; line-height: 1.62; color: var(--color-text-muted); }
.service__list {
  list-style: none;
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-top: var(--space-3);
}
.service__list li {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: 14px; color: var(--color-text-muted);
}
.service__list svg { width: 13px; height: 13px; color: var(--color-accent); flex-shrink: 0; }
.service__cta {
  margin-top: auto; padding-top: var(--space-5);
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-accent);
  transition: gap .3s var(--ease);
}
.service:hover .service__cta { gap: var(--space-4); }
.service__cta svg { width: 13px; height: 13px; }

/* ======== TESTIMONIALS ======== */
.testimonials { position: relative; overflow: hidden; }
.testimonials__bg { position: absolute; inset: 0; z-index: -1; opacity: .10; }
.testimonials__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.t-card {
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: var(--space-5);
  transition: all .4s var(--ease);
}
.t-card:hover { border-color: var(--color-accent); transform: translateY(-4px); }
.t-card__quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-style: italic;
}
.t-card__quote::before {
  content: '"';
  font-size: 44px; line-height: 0;
  color: var(--color-accent);
  margin-right: 4px;
  vertical-align: -10px;
}
.t-card__author {
  display: flex; align-items: center; gap: var(--space-4);
  margin-top: auto; padding-top: var(--space-4);
  border-top: 1px solid var(--color-line);
}
.t-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-deep));
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
  color: var(--color-bg-deeper);
}
.t-card__name { font-weight: 600; font-size: 14px; color: var(--color-text); }
.t-card__role { font-size: 11px; letter-spacing: 0.06em; color: var(--color-text-muted); }

/* ======== INSTAGRAM FEED ======== */
.feed__head {
  display: flex; flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}
.feed__head a {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-size: 13px; font-weight: 600;
  color: var(--color-accent); letter-spacing: 0.06em;
}
.feed__head a:hover { text-decoration: underline; }
.feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}
.feed__item {
  aspect-ratio: 1/1; overflow: hidden;
  position: relative; border-radius: var(--radius-sm);
}
.feed__item img { width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease-out); }
.feed__item:hover img { transform: scale(1.08); }
.feed__item::after {
  content: '';
  position: absolute; inset: 0;
  background: oklch(0.80 0.055 72 / 0);
  transition: background .4s var(--ease);
}
.feed__item:hover::after { background: oklch(0.80 0.055 72 / .12); }

/* ======== CTA BLOCK ======== */
.cta-block {
  position: relative;
  padding: clamp(80px, 12vw, 200px) 0;
  overflow: hidden;
}
.cta-block__bg { position: absolute; inset: 0; z-index: -1; }
.cta-block__bg img { width:100%; height:100%; object-fit:cover; filter: brightness(.35) saturate(0.7); }
.cta-block__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at center, transparent 0%, oklch(0.04 0.004 60 / .72) 70%);
}
.cta-block__content { text-align: center; max-width: 820px; margin: 0 auto; }
.cta-block__title {
  font-size: clamp(38px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  color: oklch(0.96 0.018 82);
}
.cta-block__title em { font-style: italic; color: var(--color-accent); font-weight: 400; }
.cta-block__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: oklch(0.90 0.015 78 / .82);
  margin-bottom: var(--space-7);
  max-width: 54ch;
  margin-left: auto; margin-right: auto;
}

/* ======== CONTACT ======== */
.contact {
  background: var(--color-bg-deeper);
  border-top: 1px solid var(--color-line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.contact__info p {
  font-size: 16px; line-height: 1.65;
  margin-bottom: var(--space-6);
}
.contact__detail {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text);
}
.contact__detail-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  display: grid; place-items: center;
  color: var(--color-accent); flex-shrink: 0;
}
.contact__detail-icon svg { width: 15px; height: 15px; }
.contact__detail-label {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 2px;
}
.contact__detail-value { font-size: 14px; color: var(--color-text); font-weight: 500; }
.contact__note {
  font-size: 12px;
  color: var(--color-text-soft);
  letter-spacing: 0.04em;
  margin-top: var(--space-3);
  font-style: italic;
}

.form {
  display: grid; gap: var(--space-5);
  grid-auto-rows: min-content; align-content: start;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form__field { display: flex; flex-direction: column; gap: var(--space-2); }
.form__label {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted); font-weight: 600;
}
.form__input, .form__textarea, .form__select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-4) 0;
  font-size: 15px; color: var(--color-text);
  transition: border-color .3s var(--ease);
  outline: none;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  border-color: var(--color-accent);
}
.form__textarea { resize: vertical; min-height: 100px; }
.form__select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ccb89a'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .5rem center; background-size: 16px;
  padding-right: 28px;
}
.form__select option { background: var(--color-bg); color: var(--color-text); }
.form__submit { margin-top: var(--space-3); justify-self: start; }

/* ======== FOOTER ======== */
.footer {
  background: var(--color-bg-deeper);
  border-top: 1px solid var(--color-line);
  padding: clamp(60px, 8vw, 100px) 0 var(--space-6);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-9);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--color-line);
}
.footer__brand .nav__logo { margin-bottom: var(--space-4); }
.footer__brand p {
  font-size: 14px; line-height: 1.6;
  max-width: 30ch; margin-bottom: var(--space-5);
}
.footer__col-title {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-text-muted);
  margin-bottom: var(--space-5); font-weight: 700;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col a { font-size: 14px; color: var(--color-text); transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--color-accent); }
.socials { display: flex; gap: var(--space-3); }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%; border: 1px solid var(--color-line);
  display: grid; place-items: center;
  transition: all .3s var(--ease); color: var(--color-text-muted);
}
.socials a:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-3px); }
.socials svg { width: 15px; height: 15px; }
.footer__bigname {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 160px);
  line-height: 1; letter-spacing: -0.05em;
  color: var(--color-text); text-align: center;
  white-space: nowrap;
  margin: var(--space-7) 0;
  font-weight: 400; font-style: italic;
  width: 100%; display: block;
  background: linear-gradient(180deg, var(--color-text) 30%, transparent 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}
.footer__bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: var(--space-4);
  font-size: 11px; color: var(--color-text-soft); letter-spacing: 0.06em;
}
.footer__credit a { color: var(--color-accent); }
.footer__credit a:hover { text-decoration: underline; }

/* ======== PAGE HERO (inner pages) ======== */
.page-hero {
  position: relative; min-height: 65vh; min-height: 65dvh;
  display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; padding-top: 80px;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero__bg img { width:100%; height:100%; object-fit:cover; transform:scale(1.04); filter:brightness(.55) saturate(.8); }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, oklch(0.06 0.005 60 / .3) 0%, transparent 30%, oklch(0.04 0.004 60 / .92) 100%);
}
.page-hero__content { padding: 60px 0 clamp(40px, 6vw, 80px); position: relative; z-index: 2; }
.page-hero__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: oklch(0.90 0.015 78 / .88);
  max-width: 58ch; margin-top: var(--space-6); line-height: 1.55;
}

/* ======== FILM GRAIN OVERLAY ======== */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { .grain { display: none; } }

/* ======== REVEAL MASKS ======== */
.reveal-mask { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s var(--ease-out); }
.reveal-mask.is-revealed { clip-path: inset(0 0% 0 0); }
.fade-up { will-change: opacity, transform; }
.fade-up.is-hidden { opacity: 0; transform: translateY(28px); }

/* ======== VIEW CURSOR ======== */
.view-cursor {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg-deeper);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  opacity: 0;
}
.view-cursor.is-active { transform: translate(-50%, -50%) scale(1); opacity: 1; }

/* ======== LOAD CURTAIN ======== */
.curtain {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--color-bg-deeper);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.curtain.is-gone { opacity: 0; visibility: hidden; }
.curtain__mark {
  display: flex; gap: 0.04em;
  font-family: var(--font-display);
  font-size: clamp(48px, 14vw, 140px);
  font-weight: 400; font-style: italic;
  color: var(--color-text);
  letter-spacing: -0.04em;
}
.curtain__mark span {
  animation: curtainChar .6s var(--ease-out) both;
}
.curtain__mark span:nth-child(1) { animation-delay: .05s; }
.curtain__mark span:nth-child(2) { animation-delay: .12s; }
.curtain__mark span:nth-child(3) { animation-delay: .19s; }
@keyframes curtainChar {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1100px) { .nav__cta .btn { display: none; } }
@media (max-width: 920px) { .nav__links { display: none; } .menu-toggle { display: inline-flex; } }

@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 520px; aspect-ratio: 4/5; }
  .series__item { grid-template-columns: 1fr; }
  .series__item:nth-child(even) .series__visual { order: 0; }
  .venues__grid { grid-template-columns: repeat(3, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .feed__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--color-line); padding-left: 0; padding-top: var(--space-5); }
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 70px; }
  .g-1 { grid-column: span 6; grid-row: span 4; }
  .g-2 { grid-column: span 6; grid-row: span 4; }
  .g-3 { grid-column: span 3; grid-row: span 3; }
  .g-4 { grid-column: span 3; grid-row: span 3; }
  .g-5 { grid-column: span 6; grid-row: span 3; }
  .g-6 { grid-column: span 6; grid-row: span 4; }
  .g-7 { grid-column: span 6; grid-row: span 4; }
  .g-8 { grid-column: span 3; grid-row: span 3; }
  .g-9 { grid-column: span 3; grid-row: span 3; }
  .venues__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .process__grid { grid-template-columns: 1fr; }
  .feed__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { width: 100%; justify-content: center; }
  .hero .container { padding-left: 24px; padding-right: 24px; }
  .hero__scroll { display: none; }
  .filters { overflow-x: auto; flex-wrap: nowrap; padding: var(--space-4) 0; }
  .film-ribbon__inner { gap: 24px; }
  .film-frame { display: none; }
}
