/* ═══════════════════════════════════════════════════════════
   AURA PIXELS STUDIO — design tokens
   ═══════════════════════════════════════════════════════════ */
:root {
  --ink: #0B0B0B;
  --ink-2: #121210;
  --ink-3: #1A1915;
  --paper: #F7F7F7;
  --gold: #C9A227;
  --champagne: #E8D5A3;
  --muted: rgba(247, 247, 247, 0.6);
  --faint: rgba(247, 247, 247, 0.35);
  --line: rgba(247, 247, 247, 0.12);
  --glass: rgba(11, 11, 11, 0.72);

  --font-display: 'Italiana', serif;
  --font-accent: 'Cormorant', serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 7rem;

  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
/* Lenis drives the scroll when active — native smooth scrolling must be off
   or the two animate against each other */
html.lenis { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--paper);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

/* Focus states */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 3000;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ═══ Layout primitives ═══ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container-narrow { max-width: 880px; }

.section { padding-block: clamp(5rem, 12vh, 9rem); position: relative; }

/* ═══ Typography ═══ */
.kicker {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.9rem;
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-4);
}
.section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--champagne);
}

.section-sub {
  max-width: 46ch;
  color: var(--muted);
  margin-top: calc(var(--space-4) * -0.6);
  margin-bottom: var(--space-4);
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
  will-change: transform;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--champagne); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 0.8rem 1.7rem; font-size: 0.72rem; }
.btn-block { width: 100%; text-align: center; }

/* Liquid-glass button — CSS port of the shadcn LiquidButton */
.btn-liquid {
  position: relative;
  isolation: isolate;
  background: transparent;
  color: var(--paper);
  border: 0;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), color 0.3s;
}
.btn-liquid:hover { transform: scale(1.05); color: #fff; }
.btn-liquid::before {
  /* glass rim: layered inset highlights (dark-theme variant) */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow:
    0 0 8px rgba(0, 0, 0, 0.03),
    0 2px 6px rgba(0, 0, 0, 0.08),
    inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.09),
    inset -3px -3px 0.5px -3.5px rgba(255, 255, 255, 0.85),
    inset 1px 1px 1px -0.5px rgba(255, 255, 255, 0.6),
    inset -1px -1px 1px -0.5px rgba(255, 255, 255, 0.6),
    inset 0 0 6px 6px rgba(255, 255, 255, 0.12),
    inset 0 0 2px 2px rgba(255, 255, 255, 0.06),
    0 0 12px rgba(0, 0, 0, 0.15);
}
.btn-liquid::after {
  /* refraction layer: SVG displacement where supported, blur elsewhere */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  overflow: hidden;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
@supports (backdrop-filter: url("#container-glass")) {
  .btn-liquid::after { backdrop-filter: url("#container-glass"); }
}
.glass-filter-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ═══ Preloader ═══ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path 0.9s var(--ease);
  clip-path: inset(0 0 0 0);
}
.preloader.is-done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  letter-spacing: 0.35em;
  margin-right: -0.35em;
  color: var(--paper);
}
.preloader-logo {
  display: block;
  width: clamp(220px, 40vw, 380px);
  height: auto;
  margin: 0 auto;
}
.preloader-counter {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.preloader-hint {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 1.5rem;
}

/* ═══ Custom cursor ═══ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 3500;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}
@media (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}

/* ═══ Scroll progress ═══ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 2100;
}

/* ═══ Navigation ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  transition: transform 0.5s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.nav-logo em {
  font-style: normal;
  color: var(--gold);
}
.nav-logo-img {
  height: 52px;
  width: auto;
}
.nav-logo-mark {
  width: 9px; height: 9px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.nav-logo-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--gold);
  border-radius: 50%;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--paper);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1900;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-x);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  text-decoration: none;
  color: var(--paper);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.mobile-menu ul a:hover { color: var(--gold); padding-left: 0.6rem; }
.mobile-menu-cta { color: var(--gold) !important; }
.mobile-menu-foot {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-menu-foot a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

/* ═══ Hero ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroKenBurns 18s var(--ease) forwards;
}
@keyframes heroKenBurns {
  to { transform: scale(1); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.15) 40%, rgba(11,11,11,0.88) 100%),
    radial-gradient(ellipse at 30% 80%, rgba(11,11,11,0.5), transparent 60%);
}

/* Viewfinder HUD */
.hero-hud {
  position: absolute;
  inset: clamp(4.5rem, 8vh, 6rem) clamp(1.25rem, 4vw, 3.5rem) clamp(1.5rem, 4vh, 3rem);
  pointer-events: none;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(247, 247, 247, 0.55);
}
.hud-corner {
  position: absolute;
  width: 34px; height: 34px;
  border: 1px solid rgba(247, 247, 247, 0.35);
}
.hud-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hud-label { position: absolute; }
.hud-rec {
  top: 1.4rem; left: 1.6rem;
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--paper);
}
.hud-rec i {
  width: 8px; height: 8px;
  background: #E5484D;
  border-radius: 50%;
  animation: recBlink 1.6s steps(1) infinite;
}
@keyframes recBlink { 50% { opacity: 0.15; } }
.hud-iso { top: 1.4rem; right: 1.6rem; }
.hud-lens { bottom: 1.4rem; right: 1.6rem; }
.hud-frame { bottom: 1.4rem; left: 1.6rem; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(6rem, 14vh, 9rem);
}
.hero-kicker { margin-bottom: var(--space-3); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 11vw, 9.5rem);
  line-height: 0.98;
  letter-spacing: 0.015em;
  margin-bottom: var(--space-3);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > * { display: inline; }
.hero-title em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--champagne);
}
.hero-sub {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-4);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scrollcue {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(5rem, 10vh, 7rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--faint);
  writing-mode: vertical-rl;
}
.hero-scrollcue-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--gold), transparent);
  animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══ Marquee ═══ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 1.4rem 0;
  overflow: hidden;
  background: var(--ink-2);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--faint);
}
.marquee-track i {
  font-style: normal;
  color: var(--gold);
  font-size: 0.8rem;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ═══ About ═══ */
.about-statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  line-height: 1.18;
  max-width: 22ch;
  margin-bottom: var(--space-5);
}
.about-statement em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--champagne);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about-copy p { color: var(--muted); max-width: 52ch; }
.about-copy p + p { margin-top: var(--space-3); }

.stats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.stat-plus {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-left: 0.15rem;
}
.stat-label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ═══ Services ═══ */
.service-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1.2fr) minmax(0, 1fr) 3rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.3rem, 2.6vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left 0.45s var(--ease), background 0.45s;
}
.service-row:hover { padding-left: 1.2rem; }
.service-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}
.service-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  letter-spacing: 0.02em;
  transition: color 0.35s;
}
.service-row:hover .service-name { color: var(--champagne); }
.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
}
.service-arrow {
  font-size: 1.3rem;
  color: var(--faint);
  justify-self: end;
  transition: transform 0.4s var(--ease), color 0.35s;
}
.service-row:hover .service-arrow {
  transform: translateX(6px) rotate(-45deg);
  color: var(--gold);
}

.service-preview {
  position: fixed;
  z-index: 1500;
  width: 300px;
  height: 210px;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.service-preview.is-visible { opacity: 1; transform: scale(1); }
.service-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ═══ Portfolio ═══ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-4);
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.filter-btn:hover { color: var(--paper); border-color: var(--faint); }
.filter-btn.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.masonry {
  columns: 3;
  column-gap: 1.2rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.masonry-item.is-hidden { display: none; }
.masonry-item img {
  width: 100%;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: grayscale(18%) contrast(1.02);
}
.masonry-item:hover img {
  transform: scale(1.045);
  filter: grayscale(0%) contrast(1.05);
}
.masonry-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.1rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(11, 11, 11, 0.85));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.masonry-item:hover figcaption { opacity: 1; transform: translateY(0); }
.masonry-item figcaption span {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
  margin-right: 0.6rem;
}

/* ═══ Films ═══ */
.films { background: var(--ink-2); }
.film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.film-card { position: relative; }
.film-poster {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
}
.film-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.film-card:hover .film-poster img { transform: scale(1.05); }
.film-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--ink);
  background: rgba(247, 247, 247, 0.92);
  border-radius: 50%;
  transition: background 0.35s, transform 0.35s var(--ease);
}
.film-card:hover .film-play {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.12);
}
.film-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 1rem;
}
.film-meta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}
.film-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.films-note {
  margin-top: var(--space-4);
  color: var(--muted);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
}
.films-note a { color: var(--gold); text-underline-offset: 4px; }

/* ═══ Process ═══ */
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  counter-reset: step;
}
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.process-step:hover {
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-4px);
}
.process-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.6rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ═══ Drones ═══ */
.drones { background: var(--ink-2); }
.drone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}
.drone-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--ink);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.drone-card:hover { transform: translateY(-5px); border-color: rgba(201, 162, 39, 0.45); }
.drone-card-featured { border-color: rgba(201, 162, 39, 0.55); position: relative; }
.drone-tag {
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.4rem;
}
.drone-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 1.1rem;
}
.drone-card ul {
  list-style: none;
  margin-bottom: 1.8rem;
  flex: 1;
}
.drone-card li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.drone-card li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.5rem;
  vertical-align: middle;
  margin-right: 0.7rem;
}

/* ═══ Testimonials ═══ */
.quote-slider { max-width: 880px; }
.quote-track { position: relative; }
.quote {
  display: none;
}
.quote.is-active { display: block; animation: quoteIn 0.6s var(--ease); }
@keyframes quoteIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.quote p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.4;
  color: var(--paper);
  margin-bottom: var(--space-3);
}
.quote footer {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: var(--space-4);
}
.quote-btn {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.quote-btn:hover { border-color: var(--gold); color: var(--gold); }
.quote-dots { display: flex; gap: 0.5rem; }
.quote-dots i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--faint);
  transition: background 0.3s, transform 0.3s;
}
.quote-dots i.is-active { background: var(--gold); transform: scale(1.35); }

/* ═══ FAQ ═══ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  letter-spacing: 0.02em;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary { color: var(--champagne); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--muted);
  max-width: 62ch;
  padding-bottom: 1.6rem;
  font-size: 0.95rem;
}

/* ═══ Booking ═══ */
.book {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.book-shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}
.book-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, var(--ink-2) 0%, rgba(18, 18, 16, 0.35) 30%,
                    rgba(18, 18, 16, 0.35) 70%, var(--ink-2) 100%);
}
.book .container { position: relative; z-index: 1; }
.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.book-intro > p { color: var(--muted); max-width: 40ch; }
.book-contacts {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.book-contacts a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--paper);
  transition: color 0.3s;
}
.book-contacts a:hover { color: var(--gold); }

.book-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  background: var(--ink);
}
.field { margin-bottom: 1.4rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field label,
.contact-pref legend {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.field label span { color: var(--gold); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.7rem 0.1rem;
  transition: border-color 0.3s;
  min-height: 44px;
}
.field textarea { resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A227' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.3rem center;
  cursor: pointer;
}
.field select option { background: var(--ink-2); color: var(--paper); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.field.has-error input,
.field.has-error select { border-bottom-color: #E5484D; }
.field-error {
  display: block;
  font-size: 0.75rem;
  color: #FF8A8E;
  margin-top: 0.4rem;
  min-height: 1em;
}
.contact-pref {
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  align-items: center;
}
.contact-pref legend { margin-bottom: 0.8rem; }
.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  min-height: 44px;
}
.radio input {
  accent-color: var(--gold);
  width: 16px; height: 16px;
}
.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--faint);
  text-align: center;
}

/* ═══ Footer ═══ */
.footer {
  border-top: 1px solid var(--line);
  padding: var(--space-5) 0 var(--space-3);
  overflow: hidden;
}
.footer-word {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 13vw, 12rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 247, 247, 0.16);
  margin-bottom: var(--space-5);
  user-select: none;
  white-space: nowrap;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 720px;
  margin-bottom: var(--space-5);
}
.footer-grid h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 0.3rem 0; }
.footer-grid a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-grid a:hover { color: var(--paper); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--faint);
}

/* ═══ Floating elements ═══ */
.fab-whatsapp {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1800;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s var(--ease);
}
.fab-whatsapp:hover { transform: translateY(-4px) scale(1.05); }

.back-top {
  position: fixed;
  right: 1.6rem;
  bottom: 5.6rem;
  z-index: 1800;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--paper);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s var(--ease), visibility 0.4s, border-color 0.3s;
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { border-color: var(--gold); color: var(--gold); }

/* ═══ Lightbox ═══ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-stage {
  max-width: min(1100px, 86vw);
  max-height: 84vh;
  text-align: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: var(--radius);
}
.lightbox-stage figcaption {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.lightbox-close {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
.lightbox-arrow {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.lightbox-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ═══ Reveal defaults (GSAP enhances; visible without JS) ═══ */
.reveal { opacity: 1; }

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .masonry { columns: 2; }
  .film-grid { grid-template-columns: 1fr 1fr; }
  .film-grid .film-card:last-child { grid-column: span 2; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .drone-grid { grid-template-columns: 1fr; max-width: 560px; }
  .service-row {
    grid-template-columns: 3rem minmax(0, 1fr) 2rem;
  }
  .service-desc { display: none; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .book-grid { grid-template-columns: 1fr; }
  .hero-scrollcue { display: none; }
}

@media (max-width: 640px) {
  .masonry { columns: 1; }
  .film-grid { grid-template-columns: 1fr; }
  .film-grid .film-card:last-child { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hud-iso, .hud-lens { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fab-whatsapp { right: 1rem; bottom: 1rem; }
  .back-top { right: 1.1rem; bottom: 5rem; }
}

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-media img { transform: none; animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
}
