/* ═══════════════════════════════════════════════════════════
   REALM OF STEEZ — Luxury CSS
   Palette: Obsidian (#080808) · Charcoal (#111) · Gold (#C9A84C)
   Typography: Cormorant Garamond (serif) · Montserrat (sans)
   ═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ──────────────────────────────────── */
:root {
  --black:      #080808;
  --charcoal:   #111111;
  --dark:       #161616;
  --mid:        #1e1e1e;
  --border:     rgba(201,168,76,0.18);
  --border-lg:  rgba(201,168,76,0.35);
  --gold:       #C9A84C;
  --gold-light: #D4B96A;
  --gold-dim:   rgba(201,168,76,0.45);
  --white:      #F5F0E8;
  --white-dim:  rgba(245,240,232,0.55);
  --white-xdim: rgba(245,240,232,0.2);

  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Montserrat', Helvetica, Arial, sans-serif;

  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-in:     cubic-bezier(0.4,  0,   1,   1);
  --ease-out:    cubic-bezier(0,    0,   0.2, 1);

  --section-pad: clamp(80px, 10vw, 160px);
  --container:   min(90vw, 1400px);
  --gutter:      clamp(24px, 5vw, 80px);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

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

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ─── Utility ────────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--white);
}

.section-sub {
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.section-header {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: clamp(48px, 6vw, 96px);
}

/* ─── Reveal animation ───────────────────────────────────── */
.reveal, .reveal-text {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible, .reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter);
  transition: background 0.5s var(--ease-luxury), padding 0.4s var(--ease-luxury),
              backdrop-filter 0.5s;
}

.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav__logo-text:hover { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.nav__link {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-luxury);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: transform 0.35s var(--ease-luxury), opacity 0.25s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video background — poster attr on <video> handles initial load state */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
  display: block;
}

/* Multi-layer overlay — cinematic vignette */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 10%, rgba(8,8,8,0.45) 65%, rgba(8,8,8,0.88) 100%),
    linear-gradient(to bottom, rgba(8,8,8,0.25) 0%, transparent 25%, transparent 65%, rgba(8,8,8,0.75) 100%);
}

/* Film grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
  animation: grain 0.8s steps(1) infinite;
}

@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10%      { transform: translate(-1%,-1%); }
  20%      { transform: translate(1%,0); }
  30%      { transform: translate(0,1%); }
  40%      { transform: translate(-1%,0); }
  50%      { transform: translate(1%,-1%); }
  60%      { transform: translate(0,0); }
  70%      { transform: translate(-1%,1%); }
  80%      { transform: translate(1%,1%); }
  90%      { transform: translate(0,-1%); }
}

/* Hero content — anchored to bottom so the image fills the frame */
.hero__content {
  position: absolute;
  z-index: 2;
  bottom: clamp(64px, 10vh, 120px);
  left: 0; right: 0;
  text-align: center;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Emblem */
.hero__emblem {
  width: clamp(80px, 12vw, 130px);
  height: clamp(80px, 12vw, 130px);
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 0.5s forwards;
}
.hero__emblem svg {
  width: 100%; height: 100%;
  animation: rotate 60s linear infinite;
}

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

/* Title */
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 0.95;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.9s forwards;
}

.hero__title-line--1 { display: block; }
.hero__title-line--2 { display: block; font-weight: 300; }

.hero__title-divider {
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  color: var(--gold);
  letter-spacing: 0.5em;
  display: block;
  margin: 4px 0;
  opacity: 0.8;
}

/* Tagline */
.hero__tagline {
  font-family: var(--sans);
  font-size: clamp(0.6rem, 1.2vw, 0.8rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 1.3s forwards;
}

/* Availability indicator */
.hero__availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid var(--border-lg);
  padding: 10px 20px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 1.4s forwards;
}

.hero__availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: availPulse 2.4s ease-in-out infinite;
}

@keyframes availPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* CTA button */
.hero__cta-wrap {
  margin-top: 8px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 1.6s forwards;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border-lg);
  padding: 16px 36px;
  transition: border-color 0.4s, color 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
}
.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-luxury);
  z-index: -1;
}
.hero__cta:hover { color: var(--black); border-color: var(--gold); }
.hero__cta:hover::before { transform: scaleX(1); }

.hero__cta-arrow {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}
.hero__cta:hover .hero__cta-arrow { transform: translateX(4px); }

/* Scroll indicator */
.hero__scroll {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 2.2s forwards;
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}
.hero__scroll-text {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* Keyframes shared */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  pointer-events: none;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee__track span {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  flex-shrink: 0;
}
.marquee__dot {
  color: var(--gold) !important;
  font-size: 0.5rem !important;
  letter-spacing: 0 !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   SHOWREEL
   ════════════════════════════════════════════════════════════ */
.reel {
  background: var(--black);
  padding: clamp(64px, 8vw, 100px) 0 0;
}

.reel__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.reel__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.reel__title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  flex: 1;
}

.reel__link {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
  flex-shrink: 0;
}
.reel__link:hover { color: var(--white); }

.reel__player {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9 / 16;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  margin: 0 auto;
}

.reel__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(8,8,8,0.4);
  transition: opacity 0.4s;
}
.reel__play.hidden { opacity: 0; pointer-events: none; }

.reel__play-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(245,240,232,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: border-color 0.3s, transform 0.3s;
}
.reel__play-icon svg { width: 22px; height: 22px; margin-left: 4px; }
.reel__player:hover .reel__play-icon { border-color: var(--gold); transform: scale(1.08); }

.reel__play-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.reel__mute {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245,240,232,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white-dim);
  transition: border-color 0.3s, color 0.3s;
}
.reel__mute:hover { border-color: var(--gold); color: var(--white); }
.reel__mute svg { width: 14px; height: 14px; }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO
   ════════════════════════════════════════════════════════════ */
.portfolio {
  padding: var(--section-pad) 0;
  background: var(--black);
}

/* Filters */
.portfolio__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 56px;
  padding: 0 var(--gutter);
}
.portfolio__filter {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 10px 24px;
  border: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  background: none;
}
.portfolio__filter--active,
.portfolio__filter:hover {
  color: var(--gold);
  border-color: var(--border);
}

/* Grid — single portrait item, centred */
.portfolio__grid {
  display: flex;
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 80px);
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.5s var(--ease-luxury);
}
.portfolio__item--wide {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9 / 16;
}

/* Media area */
.portfolio__media {
  position: absolute;
  inset: 0;
}
.portfolio__placeholder {
  width: 100%; height: 100%;
  position: relative;
  transition: transform 0.7s var(--ease-luxury);
}
.portfolio__item:hover .portfolio__placeholder { transform: scale(1.04); }

/* Real images */
.portfolio__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-luxury);
}
.portfolio__item:hover .portfolio__img { transform: scale(1.04); }

/* Play button */
.portfolio__play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(44px, 6vw, 72px);
  height: clamp(44px, 6vw, 72px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury);
}
.portfolio__item:hover .portfolio__play-btn { opacity: 1; }
.portfolio__play-btn svg { width: 100%; height: 100%; }

/* Info overlay */
.portfolio__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 36px);
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.45s var(--ease-luxury), transform 0.45s var(--ease-luxury);
}
.portfolio__item:hover .portfolio__info { opacity: 1; transform: translateY(0); }

.portfolio__cat {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.portfolio__title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}
.portfolio__brand-logo {
  display: block;
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 4px;
}
.portfolio__desc {
  font-size: 0.72rem;
  color: var(--white-dim);
  line-height: 1.6;
  max-width: 480px;
  display: none;
}
.portfolio__item--featured .portfolio__desc { display: block; }

.portfolio__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  transition: gap 0.3s;
}
.portfolio__link:hover { gap: 14px; }

/* Hidden items when filtered */
.portfolio__item.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 0.4s, transform 0.4s;
}

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
.about {
  position: relative;
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
}

.about__bg {
  position: absolute;
  inset: 0;
  background:
    url('assets/about-bg.jpg') center / cover no-repeat,
    var(--charcoal);
  opacity: 0.08;
  filter: grayscale(1);
}

.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.about__text-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.about__lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.about__body {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--white-dim);
  font-weight: 300;
}

/* Stats row */
.about__stats {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  padding-top: 40px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.about__stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* Right column imagery */
.about__right {
  position: relative;
}
.about__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
}
.about__img-placeholder {
  width: 100%; height: 100%;
  background: var(--mid);
  overflow: hidden;
}
.about__img-inner {
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, #0d0a04 0%, #1e1a08 40%, #0d0a04 100%);
}
/* Gold accent border */
.about__img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 75%; height: 75%;
  border: 1px solid var(--border);
  z-index: -1;
}

/* Quote card */
.about__quote {
  position: absolute;
  bottom: -32px; left: -32px;
  background: rgba(8,8,8,0.92);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  max-width: 320px;
  backdrop-filter: blur(12px);
}
.about__quote p {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 10px;
}
.about__quote cite {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services {
  padding: var(--section-pad) var(--gutter);
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid var(--border);
}

.services__card {
  background: var(--charcoal);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 52px);
  transition: background 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.services__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-luxury);
}
.services__card:hover::before { transform: scaleX(1); }
.services__card:hover { background: var(--dark); }
.services__card--accent { background: var(--dark); }
.services__card--accent::before { transform: scaleX(1); opacity: 0.5; }

.services__icon {
  width: 48px; height: 48px;
  margin-bottom: 28px;
}
.services__icon svg { width: 100%; height: 100%; }

.services__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 16px;
}

.services__desc {
  font-size: 0.78rem;
  line-height: 1.85;
  color: var(--white-dim);
  margin-bottom: 28px;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.services__list li {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-xdim);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.services__list li::before {
  content: '';
  display: inline-block;
  width: 14px; height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
  transition: width 0.35s var(--ease-luxury), background 0.3s;
}
.services__card:hover .services__list li { color: var(--white-dim); }
.services__card:hover .services__list li::before { width: 20px; background: var(--gold); }

/* Level label on each card */
.services__level {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* "Includes X, plus:" line */
.services__includes {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: -4px;
  margin-bottom: 8px;
}

/* "Delivered as a clean visual master." */
.services__delivered {
  font-size: 0.68rem;
  line-height: 1.75;
  color: var(--white-dim);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* "No soundtrack. No sound design…" */
.services__exclusions {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--white-xdim);
  margin-top: 8px;
}

/* Closing italic tagline on each card */
.services__tagline {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--gold-dim);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ── Manifesto block ── */
.services__manifesto {
  max-width: 720px;
  margin: 0 auto clamp(56px, 8vw, 96px);
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services__manifesto-lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 36px;
}
.services__manifesto-body {
  font-size: 0.8rem;
  line-height: 1.9;
  letter-spacing: 0.07em;
  color: var(--white-dim);
  margin-bottom: 16px;
}
.services__manifesto-note {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-xdim);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ── Formats block ── */
.services__formats {
  max-width: 720px;
  margin: 0 auto clamp(56px, 8vw, 96px);
  text-align: center;
}
.services__formats-heading {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 32px;
}
.services__formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.services__format-item {
  background: var(--charcoal);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.services__format-name {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
}
.services__format-duration {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.services__formats-note {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-xdim);
  font-style: italic;
}

/* ── Production Access header ── */
.services__access-header {
  max-width: var(--container);
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}
.services__access-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}
.services__access-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ── Closing block ── */
.services__closing {
  max-width: 720px;
  margin: clamp(56px, 8vw, 96px) auto 0;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--border);
}
.services__closing-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
}
.services__closing-body {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1.8;
  color: var(--white-dim);
}

/* ════════════════════════════════════════════════════════════
   PHILOSOPHY BREAK
   ════════════════════════════════════════════════════════════ */
.philosophy {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  text-align: center;
  overflow: hidden;
}

.philosophy__bg {
  position: absolute;
  inset: 0;
  background:
    url('assets/philosophy-bg.jpg') center / cover no-repeat,
    var(--black);
  opacity: 0.12;
  filter: grayscale(1);
}

.philosophy__content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.philosophy__text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.philosophy__line {
  width: 60px; height: 1px;
  background: var(--gold-dim);
}

.philosophy__attr {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) var(--gutter);
  background: var(--black);
  border-top: 1px solid var(--border);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 8vw, 120px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.contact__sub {
  font-size: 0.8rem;
  line-height: 1.85;
  color: var(--white-dim);
  margin-top: 20px;
  max-width: 380px;
}

.contact__sub--note {
  font-size: 0.7rem;
  color: var(--white-xdim);
  margin-top: 12px;
}

.contact__avail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid var(--border);
  padding: 10px 20px;
}

.contact__avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: availPulse 2.4s ease-in-out infinite;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.contact__detail {}
.contact__detail-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 6px;
}
.contact__detail-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white);
  transition: color 0.3s;
}
.contact__detail-value:hover { color: var(--gold); }

.contact__social {
  display: flex;
  gap: 20px;
}
.contact__social-link {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white);
  position: relative;
  transition: color 0.3s;
}
.contact__social-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-luxury);
}
.contact__social-link:hover { color: var(--gold); }
.contact__social-link:hover::after { width: 100%; }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.form__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form__input::placeholder { color: var(--white-xdim); }
.form__input:focus { border-bottom-color: var(--gold); }

.form__select {
  cursor: pointer;
  color: var(--white-dim);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 18px;
  padding-right: 24px;
}
.form__select option {
  background: var(--charcoal);
  color: var(--white);
}

.form__textarea { resize: none; line-height: 1.7; }

.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 18px 42px;
  margin-top: 8px;
  transition: background 0.35s var(--ease-luxury), color 0.35s;
  align-self: flex-start;
}
.form__submit:hover {
  background: var(--gold-light);
}
.form__submit svg { width: 18px; height: 18px; transition: transform 0.3s; }
.form__submit:hover svg { transform: translateX(4px); }

.form__success {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 56px var(--gutter) 40px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  max-width: var(--container);
  margin: 0 auto;
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.footer__nav {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
  align-items: center;
}
.footer__link {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}
.footer__link:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer__copy,
.footer__legal {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--white-xdim);
}

/* ════════════════════════════════════════════════════════════
   PROJECT GALLERY OVERLAY
   ════════════════════════════════════════════════════════════ */
.project-gallery {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: var(--black);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.project-gallery:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}
.project-gallery[hidden] { display: none; }

/* Header */
.project-gallery__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(36px, 6vw, 80px) clamp(24px, 6vw, 80px) clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  z-index: 10;
}
.project-gallery__cat {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.project-gallery__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.project-gallery__desc {
  font-size: 0.78rem;
  color: var(--white-dim);
  max-width: 480px;
  line-height: 1.8;
}
.project-gallery__close {
  font-size: 2rem;
  color: var(--white-dim);
  line-height: 1;
  padding: 8px;
  flex-shrink: 0;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 24px;
}
.project-gallery__close:hover { color: var(--gold); }

/* Product sections */
.project-gallery__grid {
  padding: 3px;
  flex: 1;
}
.product-section {
  margin-bottom: 40px;
}
.product-section__header {
  padding: 20px 6px 14px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
  margin-bottom: 3px;
}
.product-section__label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.project-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: zoom-in;
  background: var(--dark);
}
.project-gallery__item img,
.project-gallery__item video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-luxury), opacity 0.3s;
  pointer-events: none;
}
.project-gallery__item:hover img,
.project-gallery__item:hover video { transform: scale(1.05); }
.project-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-gallery__item:hover .project-gallery__item-overlay {
  background: rgba(8,8,8,0.25);
}
.project-gallery__zoom {
  opacity: 0;
  color: var(--gold);
  font-size: 1.5rem;
  transition: opacity 0.3s;
}
.project-gallery__item:hover .project-gallery__zoom { opacity: 1; }

/* Video items — always show play icon */
.project-gallery__item--video .project-gallery__item-overlay {
  background: rgba(8,8,8,0.25);
}
.project-gallery__play {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  padding-left: 4px;
  opacity: 0.9;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.project-gallery__item:hover .project-gallery__play {
  transform: scale(1.12);
  opacity: 1;
  background: rgba(201,168,76,0.15);
}

/* Full-size viewer */
.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(0,0,0,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-viewer[hidden] { display: none; }

.gallery-viewer__img {
  max-width: min(92vw, 1400px);
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
.gallery-viewer__img[hidden] { display: none; }
.gallery-viewer__video {
  max-width: min(92vw, 1400px);
  max-height: 90vh;
  object-fit: contain;
  display: block;
  outline: none;
  background: #000;
}
.gallery-viewer__video[hidden] { display: none; }
.gallery-viewer__close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  color: var(--white-dim);
  transition: color 0.3s;
  background: none; border: none; cursor: pointer;
}
.gallery-viewer__close:hover { color: var(--gold); }

.gallery-viewer__prev,
.gallery-viewer__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--white-dim);
  background: rgba(8,8,8,0.5);
  border: 1px solid var(--border);
  padding: 16px 20px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.gallery-viewer__prev { left: 24px; }
.gallery-viewer__next { right: 24px; }
.gallery-viewer__prev:hover,
.gallery-viewer__next:hover { color: var(--gold); border-color: var(--gold-dim); }

.gallery-viewer__count {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--white-dim);
}

/* Mobile */
@media (max-width: 768px) {
  .product-section__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-viewer__prev { left: 8px; padding: 12px 14px; }
  .gallery-viewer__next { right: 8px; padding: 12px 14px; }
}

/* ════════════════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }

.lightbox__close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 2rem;
  color: var(--white-dim);
  transition: color 0.3s;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.lightbox__close:hover { color: var(--gold); }

.lightbox__content {
  max-width: min(90vw, 1200px);
  max-height: 85vh;
  width: 100%;
}
.lightbox__content video,
.lightbox__content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ════════════════════════════════════════════════════════════
   FOCUS STYLES (accessibility)
   ════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Screen-reader only — visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

/* ─── Tablet (≤ 1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__right { display: none; }
  .about__stats { gap: 36px; }

  .services__grid { grid-template-columns: 1fr; }
  .services__card--accent::before { opacity: 0; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__sub { max-width: 100%; }
  .form__row { grid-template-columns: 1fr; }
}

/* ─── Mobile (≤ 768px) ───────────────────────────────────── */
@media (max-width: 768px) {
  :root { --gutter: 20px; }

  /* Nav */
  .nav { padding: 20px var(--gutter); }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw; height: 100vh;
    background: rgba(8,8,8,0.97);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 36px;
    transition: right 0.45s var(--ease-luxury);
    backdrop-filter: blur(20px);
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 1rem; letter-spacing: 0.15em; }

  /* Portfolio — full width on mobile */
  .portfolio__item--wide { max-width: 100%; }
  .portfolio__info { opacity: 1; transform: translateY(0); }
  .portfolio__play-btn { opacity: 0.6; }
  .portfolio__desc { display: none !important; }

  /* About stats */
  .about__stats { flex-wrap: wrap; gap: 24px; }

  /* Services */
  .services__grid { gap: 0; border: none; background: none; }
  .services__card {
    border-bottom: 1px solid var(--border);
    padding: 40px var(--gutter);
  }

  /* Contact */
  .contact__social { flex-wrap: wrap; gap: 16px; }

  /* About quote — prevent overflow when visible */
  .about__quote { position: static; margin-top: 24px; left: auto; bottom: auto; }

  /* Reel header — stack on very narrow screens */
  .reel__header { flex-wrap: wrap; gap: 12px; }

  /* Footer */
  .footer__top { flex-direction: column; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ─── Small mobile (≤ 480px) ─────────────────────────────── */
@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.8rem, 16vw, 5rem); }
  .form__submit { width: 100%; justify-content: center; }
}

/* ─── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
