/* =========================================================
   Luchtkunstenaar — Ultra luxury cinematic system
   ========================================================= */

:root {
  --bg: #03050a;
  --bg-elevated: rgba(12, 16, 24, 0.72);
  --bg-card: rgba(14, 18, 28, 0.55);
  --text: #f4f0e8;
  --text-muted: rgba(244, 240, 232, 0.62);
  --text-dim: rgba(244, 240, 232, 0.36);
  --gold: #d4af74;
  --gold-bright: #f0d7a8;
  --gold-soft: rgba(212, 175, 116, 0.16);
  --gold-line: rgba(212, 175, 116, 0.38);
  --line: rgba(244, 240, 232, 0.08);
  --line-strong: rgba(244, 240, 232, 0.14);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-deep: 0 40px 100px rgba(0, 0, 0, 0.55);
  --shadow-lift: 0 24px 60px rgba(0, 0, 0, 0.4);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 5rem;
  --max: 74rem;
  --gutter: clamp(1.25rem, 4.5vw, 3.5rem);
  --radius: 1.1rem;
  --radius-sm: 0.75rem;
}

*,
*::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-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body.is-loaded {
  cursor: none;
}

@media (pointer: coarse) {
  body,
  body.is-loaded {
    cursor: auto;
  }
  .cursor-glow,
  .cursor-dot {
    display: none !important;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  z-index: 10000;
  background: var(--gold);
  color: var(--bg);
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  left: 0.5rem;
}

/* ---- Atmosphere / 3D depth field ---- */
.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 10%, rgba(212, 175, 116, 0.09), transparent 55%),
    radial-gradient(ellipse 40% 50% at 85% 20%, rgba(80, 110, 180, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(212, 175, 116, 0.05), transparent 50%);
  animation: meshDrift 28s ease-in-out infinite alternate;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  mix-blend-mode: screen;
  will-change: transform;
}

.orb-a {
  width: min(50vw, 520px);
  height: min(50vw, 520px);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(212, 175, 116, 0.35), transparent 70%);
  animation: orbFloat 18s ease-in-out infinite;
}

.orb-b {
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  bottom: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(90, 130, 200, 0.22), transparent 70%);
  animation: orbFloat 22s ease-in-out infinite reverse;
}

.orb-c {
  width: min(30vw, 300px);
  height: min(30vw, 300px);
  top: 45%;
  left: 40%;
  background: radial-gradient(circle, rgba(255, 220, 170, 0.12), transparent 70%);
  animation: orbFloat 16s ease-in-out infinite 2s;
}

@keyframes meshDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, 2%, 0) scale(1.05); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(4%, -6%, 0); }
}

.grain {
  position: absolute;
  inset: 0;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 2;
}

/* Custom cursor */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 42vw;
  height: 42vw;
  max-width: 480px;
  max-height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 116, 0.12) 0%, transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

.cursor-dot {
  pointer-events: none;
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 20px rgba(212, 175, 116, 0.7);
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, width 0.25s var(--ease), height 0.25s var(--ease);
}

body:hover .cursor-glow,
body:hover .cursor-dot {
  opacity: 1;
}

body.is-hovering-interactive .cursor-dot {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 116, 0.35);
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright));
  box-shadow: 0 0 16px rgba(212, 175, 116, 0.55);
  transform-origin: left;
}

/* Fairytale intro */
.intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #02040a;
  overflow: hidden;
  transition: opacity 1s var(--ease), visibility 1s, transform 1.2s var(--ease);
}

.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.04);
}

.intro-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-stars {
  position: absolute;
  inset: 0;
}

.intro-star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff8e8;
  box-shadow: 0 0 6px rgba(255, 240, 200, 0.9);
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.35;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 0.95; transform: scale(1.4); }
}

.intro-moon {
  position: absolute;
  top: 12%;
  right: 14%;
  width: min(18vw, 110px);
  height: min(18vw, 110px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff6e0, #e8c88a 45%, #b8924f 100%);
  box-shadow:
    0 0 60px rgba(232, 200, 138, 0.45),
    0 0 120px rgba(212, 175, 116, 0.25),
    inset -12px -8px 24px rgba(80, 50, 20, 0.25);
  animation: moonGlow 6s ease-in-out infinite;
}

@keyframes moonGlow {
  0%, 100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.12); transform: scale(1.03); }
}

.intro-mist {
  position: absolute;
  left: -10%;
  right: -10%;
  height: 45%;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(180, 200, 230, 0.12), transparent 70%);
  filter: blur(20px);
}

.intro-mist-a { animation: mistDrift 12s ease-in-out infinite; }
.intro-mist-b {
  bottom: 8%;
  opacity: 0.6;
  animation: mistDrift 16s ease-in-out infinite reverse;
}

@keyframes mistDrift {
  0%, 100% { transform: translateX(-3%) scaleY(1); }
  50% { transform: translateX(3%) scaleY(1.08); }
}

.intro-glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(90vw, 560px);
  height: min(90vw, 560px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 116, 0.14), transparent 65%);
  animation: introPulse 5s ease-in-out infinite;
}

@keyframes introPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.intro-stage {
  position: relative;
  z-index: 6;
  text-align: center;
  padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem);
  max-width: 36rem;
  width: 100%;
}

.intro-line {
  font-family: var(--font-display);
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), color 0.6s;
}

.intro.is-ready .intro-line.is-show,
.intro.is-ready .intro-brand.is-show,
.intro.is-ready .intro-enter.is-show {
  opacity: 1;
  transform: translateY(0);
}

.intro.is-ready .intro-collage.is-show {
  opacity: 1;
}

.intro.is-ready .intro-collage.is-show .intro-frame {
  opacity: 1;
  transform: var(--end-transform);
}

/* Image combi collage */
.intro-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
  perspective: 1400px;
  transform-style: preserve-3d;
}

.intro-collage-veil {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    radial-gradient(ellipse 55% 50% at 50% 48%, rgba(2, 4, 10, 0.15) 0%, rgba(2, 4, 10, 0.72) 70%, rgba(2, 4, 10, 0.92) 100%),
    linear-gradient(180deg, rgba(2, 4, 10, 0.55) 0%, transparent 28%, transparent 62%, rgba(2, 4, 10, 0.75) 100%);
}

.intro-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 0.65rem;
  border: 1px solid rgba(212, 175, 116, 0.28);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.35s var(--ease-out);
  will-change: transform, opacity;
}

.intro-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05) brightness(0.92);
}

.intro-frame--a {
  width: min(28vw, 220px);
  height: min(38vw, 300px);
  top: 8%;
  left: 6%;
  --end-transform: rotate(-8deg) translate3d(0, 0, 40px);
  transform: rotate(-14deg) translate3d(-30px, 20px, 0) scale(0.9);
  transition-delay: 0.05s;
  z-index: 2;
}

.intro-frame--b {
  width: min(34vw, 280px);
  height: min(22vw, 170px);
  top: 10%;
  right: 8%;
  --end-transform: rotate(6deg) translate3d(0, 0, 20px);
  transform: rotate(12deg) translate3d(30px, -10px, 0) scale(0.9);
  transition-delay: 0.18s;
  z-index: 1;
}

.intro-frame--c {
  width: min(22vw, 170px);
  height: min(30vw, 230px);
  top: 42%;
  left: 3%;
  --end-transform: rotate(5deg) translate3d(0, 0, 60px);
  transform: rotate(10deg) translate3d(-40px, 10px, 0) scale(0.88);
  transition-delay: 0.28s;
  z-index: 3;
}

.intro-frame--d {
  width: min(24vw, 190px);
  height: min(32vw, 250px);
  top: 38%;
  right: 5%;
  --end-transform: rotate(-5deg) translate3d(0, 0, 50px);
  transform: rotate(-11deg) translate3d(35px, 15px, 0) scale(0.88);
  transition-delay: 0.35s;
  z-index: 2;
}

.intro-frame--e {
  width: min(30vw, 240px);
  height: min(18vw, 140px);
  bottom: 14%;
  left: 10%;
  --end-transform: rotate(3deg) translate3d(0, 0, 30px);
  transform: rotate(8deg) translate3d(-20px, 25px, 0) scale(0.9);
  transition-delay: 0.42s;
  z-index: 1;
}

.intro-frame--f {
  width: min(20vw, 160px);
  height: min(28vw, 210px);
  bottom: 12%;
  right: 12%;
  --end-transform: rotate(-7deg) translate3d(0, 0, 45px);
  transform: rotate(-12deg) translate3d(25px, 20px, 0) scale(0.9);
  transition-delay: 0.5s;
  z-index: 2;
}

.intro-frame--g {
  width: min(18vw, 140px);
  height: min(24vw, 185px);
  top: 22%;
  left: 28%;
  --end-transform: rotate(9deg) translate3d(0, 0, 70px);
  transform: rotate(14deg) translate3d(0, -15px, 0) scale(0.85);
  transition-delay: 0.22s;
  z-index: 4;
}

.intro-frame--h {
  width: min(16vw, 130px);
  height: min(22vw, 175px);
  top: 28%;
  right: 26%;
  --end-transform: rotate(-10deg) translate3d(0, 0, 55px);
  transform: rotate(-16deg) translate3d(0, 20px, 0) scale(0.85);
  transition-delay: 0.32s;
  z-index: 3;
}

/* gentle float once visible */
.intro.is-ready .intro-collage.is-show .intro-frame--a { animation: frameFloat 8s ease-in-out 1.4s infinite; }
.intro.is-ready .intro-collage.is-show .intro-frame--b { animation: frameFloat 9s ease-in-out 1.6s infinite reverse; }
.intro.is-ready .intro-collage.is-show .intro-frame--c { animation: frameFloat 7.5s ease-in-out 1.8s infinite; }
.intro.is-ready .intro-collage.is-show .intro-frame--d { animation: frameFloat 8.5s ease-in-out 1.5s infinite reverse; }
.intro.is-ready .intro-collage.is-show .intro-frame--e { animation: frameFloat 9.5s ease-in-out 1.7s infinite; }
.intro.is-ready .intro-collage.is-show .intro-frame--f { animation: frameFloat 7.8s ease-in-out 1.9s infinite reverse; }
.intro.is-ready .intro-collage.is-show .intro-frame--g { animation: frameFloat 8.2s ease-in-out 1.55s infinite; }
.intro.is-ready .intro-collage.is-show .intro-frame--h { animation: frameFloat 8.8s ease-in-out 1.65s infinite reverse; }

@keyframes frameFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.intro-line-1 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  color: var(--gold-bright);
}

.intro-line-2 {
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  letter-spacing: 0.08em;
  margin-bottom: 1.75rem;
}

.intro-brand {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
  margin-bottom: 1.75rem;
}

.intro-logo {
  width: clamp(4.2rem, 16vw, 5.5rem);
  height: clamp(4.2rem, 16vw, 5.5rem);
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow:
    0 0 0 1px rgba(212, 175, 116, 0.35),
    0 0 50px rgba(212, 175, 116, 0.35);
  animation: logoBreathe 3.5s ease-in-out infinite;
}

@keyframes logoBreathe {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.05); filter: brightness(1.08); }
}

.intro-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.intro-tag {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.intro-line-4 {
  font-size: clamp(1.15rem, 3.8vw, 1.55rem);
  line-height: 1.45;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.intro-line-4 em {
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.08em;
}

.intro-enter {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.3s, box-shadow 0.3s;
  min-height: 3rem;
  padding-inline: 1.8rem;
}

.intro-skip {
  display: block;
  margin: 1.25rem auto 0;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  transition: color 0.25s;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  color: var(--gold);
  outline: none;
}

body.intro-lock {
  overflow: hidden;
  height: 100%;
}

/* Mobile dock */
.mobile-dock {
  display: none;
}

/* Glass system */
.glass-card {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.055) 0%,
    rgba(255, 255, 255, 0.015) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
  will-change: transform;
}

.glass-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, border-color 0.5s, box-shadow 0.5s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(3, 5, 10, 0.72);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 2;
}

.brand-mark {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 55%);
  box-shadow:
    0 0 0 1px var(--gold-line),
    0 0 28px rgba(212, 175, 116, 0.25);
}

.brand-logo {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s ease;
  position: relative;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.nav a:not(.nav-cta):hover::after,
.nav a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  color: var(--bg) !important;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 50%, #b8924f);
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  letter-spacing: 0.12em !important;
  box-shadow:
    0 10px 30px rgba(212, 175, 116, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.3s var(--ease), filter 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(212, 175, 116, 0.35);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  height: 1px;
  width: 1.45rem;
  background: var(--text);
  margin-left: auto;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.25rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.25rem) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 4.5rem;
  overflow: hidden;
  perspective: 1200px;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-style: preserve-3d;
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  overflow: hidden;
}

.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.92) contrast(1.08) brightness(0.9);
}

.hero-video {
  position: absolute;
  inset: 0;
  transform: scale(1.08);
  animation: heroDrift 30s ease-in-out infinite alternate;
}

.hero-img {
  animation: heroDrift 28s ease-in-out infinite alternate;
}

.hero-img-fallback {
  opacity: 0;
  pointer-events: none;
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.8%, -1.2%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 10, 0.55) 0%, rgba(3, 5, 10, 0.12) 32%, rgba(3, 5, 10, 0.55) 62%, rgba(3, 5, 10, 0.97) 100%),
    linear-gradient(90deg, rgba(3, 5, 10, 0.55) 0%, transparent 48%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 140px 50px rgba(3, 5, 10, 0.65);
}

.hero-depth-ring {
  position: absolute;
  inset: 8% 10%;
  border: 1px solid rgba(212, 175, 116, 0.12);
  border-radius: 2rem;
  box-shadow:
    inset 0 0 60px rgba(212, 175, 116, 0.04),
    0 0 80px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transform: translateZ(40px);
  animation: ringPulse 8s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.01); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  transform-style: preserve-3d;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.35rem;
  font-weight: 400;
}

.eyebrow-line {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.hero-title .line {
  display: block;
}

.hero-title .italic,
.italic {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 45%, #a67c3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(212, 175, 116, 0.25));
}

.hero-promise {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0 0 1.15rem;
  max-width: 30rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-lead {
  max-width: 30rem;
  color: var(--text-muted);
  font-size: 1.06rem;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 4.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 3.75rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.65); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.hero-meta {
  position: absolute;
  left: var(--gutter);
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.65rem 1rem;
  border-radius: 999px;
}

.hero-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  box-shadow: 0 0 8px var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s, color 0.3s, filter 0.3s;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 48%, #b8924f);
  color: var(--bg);
  box-shadow:
    0 14px 40px rgba(212, 175, 116, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 18px 50px rgba(212, 175, 116, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(244, 240, 232, 0.18);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.9), rgba(6, 8, 12, 0.95));
  overflow: hidden;
  padding: 1.15rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  white-space: nowrap;
}

.mq-dot {
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 9.5rem) var(--gutter);
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-head--row {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-head--row > div {
  max-width: 36rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 5.8vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 32rem;
  font-weight: 300;
}

/* Reels */
.instagram {
  background: transparent;
}

.reels-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  perspective: 1400px;
}

.reel-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease);
}

.reel-card:hover {
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--gold-line),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.reel-media {
  position: relative;
  aspect-ratio: 9 / 14;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.reel-card:hover .reel-media video {
  transform: scale(1.04);
}

.reel-shine {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 48%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.reel-card:hover .reel-shine {
  opacity: 1;
}

.reel-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(3, 5, 10, 0.45);
  border: 1px solid rgba(212, 175, 116, 0.25);
  backdrop-filter: blur(8px);
}

.reel-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(3, 5, 10, 0.4);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background 0.3s, opacity 0.3s, box-shadow 0.3s;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.reel-play:hover {
  transform: scale(1.08);
  background: rgba(212, 175, 116, 0.35);
  box-shadow: 0 0 40px rgba(212, 175, 116, 0.3);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent var(--text);
  margin-left: 0.2rem;
  transition: all 0.25s;
}

.reel-card.is-playing .reel-play {
  opacity: 0;
  pointer-events: none;
}

.reel-card.is-playing:hover .reel-play {
  opacity: 1;
  pointer-events: auto;
}

.reel-card.is-playing .play-icon {
  border: none;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0;
  background: linear-gradient(90deg, var(--text) 40%, transparent 40%, transparent 60%, var(--text) 60%);
  border-radius: 1px;
}

.reel-meta {
  padding: 1.05rem 1.1rem 1.2rem;
  transform: translateZ(24px);
}

.reel-meta h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  margin: 0.25rem 0 0.5rem;
  line-height: 1.2;
}

.reel-link {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s;
}

.reel-link:hover {
  color: var(--gold);
}

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
  max-width: var(--max);
  margin: 0 auto;
  perspective: 1400px;
}

.work-card {
  position: relative;
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  isolation: isolate;
  min-height: 18rem;
}

.work-card--lg {
  grid-column: span 8;
  min-height: 28rem;
}

.work-card--wide {
  grid-column: span 8;
  min-height: 22rem;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s var(--ease), filter 0.6s ease;
  filter: saturate(0.9) contrast(1.05);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 5, 10, 0.9) 0%, transparent 50%),
    linear-gradient(135deg, rgba(212, 175, 116, 0.08), transparent 45%);
  opacity: 0.85;
  transition: opacity 0.4s;
  pointer-events: none;
}

.work-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.08);
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3.5rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateY(0.35rem) translateZ(30px);
  opacity: 0.9;
  transition: opacity 0.35s, transform 0.45s var(--ease);
  z-index: 2;
}

.work-card:hover figcaption {
  opacity: 1;
  transform: translateY(0) translateZ(30px);
}

.work-label {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

/* About */
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  perspective: 1400px;
}

.about-stack {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 28rem;
  transform-style: preserve-3d;
}

.about-frame {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-deep);
  position: relative;
  z-index: 1;
}

.about-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%);
  pointer-events: none;
}

.about-img {
  border-radius: 1rem;
  object-fit: cover;
}

.about-img.main {
  width: 100%;
  height: 100%;
}

.about-img.float {
  position: absolute;
  width: 48%;
  bottom: -8%;
  right: -10%;
  border: 1px solid var(--gold-line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}

.about-glow {
  position: absolute;
  inset: 10% -10% -10% 10%;
  background: radial-gradient(circle, rgba(212, 175, 116, 0.2), transparent 65%);
  filter: blur(30px);
  z-index: 0;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.about-kicker {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-style: italic;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.about-text em {
  color: var(--text);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.12em;
}

.about-text strong {
  color: var(--text);
  font-weight: 500;
}

.about-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 0;
  border: none;
}

.about-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0.9rem;
  border-radius: var(--radius-sm);
}

.about-stats strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.about-stats span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Services */
.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  perspective: 1400px;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(1.85rem, 3vw, 2.6rem);
  min-height: 15rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.35s;
}

.service-card:hover {
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px var(--gold-line);
}

.service-card--featured {
  border-color: var(--gold-line);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212, 175, 116, 0.16), transparent 55%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.2));
}

.service-card--featured h3 {
  color: var(--gold-bright);
}

.service-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  right: -40px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(212, 175, 116, 0.2), transparent 70%);
  pointer-events: none;
}

.service-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  transform: translateZ(20px);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  transform: translateZ(12px);
}

/* Book */
.book {
  padding-top: 2rem;
}

.book-panel {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

.book-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 0%, rgba(212, 175, 116, 0.12), transparent 50%);
  pointer-events: none;
}

.book-visual {
  max-width: 18rem;
  margin: 0 auto;
  perspective: 1000px;
}

.book-3d {
  position: relative;
  transform-style: preserve-3d;
}

.book-3d img {
  border-radius: 0.45rem;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    12px 12px 0 -2px rgba(40, 30, 20, 0.8),
    18px 18px 0 -4px rgba(20, 15, 10, 0.5);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}

.book-shadow {
  position: absolute;
  left: 10%;
  right: 0;
  bottom: -18%;
  height: 30%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.book-copy {
  position: relative;
  z-index: 1;
}

.book-copy .section-title {
  margin-bottom: 1rem;
}

.book-copy p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 28rem;
}

/* Social CTA */
.contact {
  background: transparent;
}

.social-cta {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.social-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 116, 0.1), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.social-cta .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: min(100%, 17rem);
  padding: 1.2rem 1.55rem;
  border-radius: 1.15rem;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s, background 0.3s;
  text-align: left;
}

.social-btn:hover {
  transform: translateY(-5px);
  border-color: var(--gold-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.social-btn-icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.85rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.social-btn--ig:hover .social-btn-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);
}

.social-btn--tt:hover .social-btn-icon {
  background: #010101;
  color: #fff;
  box-shadow: 3px 0 0 #25f4ee, -3px 0 0 #fe2c55;
}

.social-btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.social-btn-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.social-btn-handle {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 2.75rem var(--gutter) 2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-social {
  display: flex;
  gap: 1.35rem;
}

.footer-social a {
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: color 0.25s;
}

.footer-social a:hover {
  color: var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(2, 3, 6, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(16px);
  animation: fadeIn 0.35s var(--ease);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(212, 175, 116, 0.12);
  animation: zoomIn 0.45s var(--ease);
}

.lightbox-frame img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .work-card,
  .work-card--lg,
  .work-card--wide {
    grid-column: span 6;
    min-height: 16rem;
  }

  .work-card--lg {
    min-height: 20rem;
  }

  .about-grid,
  .book-panel {
    grid-template-columns: 1fr;
  }

  .about-stack {
    max-width: 22rem;
    margin: 0 auto 1.25rem;
  }

  .about-img.float {
    right: -4%;
    width: 44%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .hero-depth-ring {
    display: none;
  }

  .section-head--row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile-first luxury */
@media (max-width: 768px) {
  :root {
    --header-h: 4.1rem;
    --gutter: clamp(1rem, 4.5vw, 1.5rem);
  }

  body {
    cursor: auto;
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  }

  .menu-toggle {
    display: flex;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    align-items: center;
    justify-content: center;
  }

  .menu-toggle span {
    margin-left: 0;
    width: 1.15rem;
  }

  .nav {
    position: fixed;
    inset: 0;
    padding:
      calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1rem)
      var(--gutter)
      calc(2rem + env(safe-area-inset-bottom, 0px));
    background: rgba(3, 5, 10, 0.97);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0.35rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-size: 1.15rem;
    letter-spacing: 0.16em;
    padding: 1rem 1.1rem;
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    border: 1px solid transparent;
  }

  .nav a:not(.nav-cta):hover,
  .nav a:not(.nav-cta):active {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
    text-align: center;
  }

  .brand-text {
    display: flex;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .section {
    padding: clamp(3.5rem, 12vw, 5.5rem) var(--gutter);
  }

  .section.contact {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }

  .section-title {
    font-size: clamp(2.25rem, 9vw, 3.2rem);
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.25rem)
      var(--gutter)
      calc(5.5rem + env(safe-area-inset-bottom, 0px));
    align-items: flex-end;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
    margin-bottom: 0.9rem;
  }

  .hero-promise {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-bottom: 0.9rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 3.15rem;
    justify-content: center;
  }

  .hero-meta {
    left: var(--gutter);
    right: var(--gutter);
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    justify-content: center;
    text-align: center;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 0.55rem 0.75rem;
    gap: 0.5rem;
  }

  /* Horizontal luxury reel rail on mobile */
  .reels-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.9rem;
    padding-bottom: 0.75rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: none;
  }

  .reels-grid::-webkit-scrollbar {
    display: none;
  }

  .reel-card {
    flex: 0 0 min(72vw, 16.5rem);
    scroll-snap-align: start;
  }

  .reel-media {
    aspect-ratio: 9 / 13;
  }

  .reel-play {
    width: 3.25rem;
    height: 3.25rem;
  }

  .work-card,
  .work-card--lg,
  .work-card--wide {
    grid-column: span 12;
    min-height: 15rem;
  }

  .work-card--lg,
  .work-card--wide {
    min-height: 18rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .about-stats li {
    padding: 1rem 1.1rem;
  }

  .service-card {
    min-height: 0;
    padding: 1.5rem 1.35rem;
  }

  .service-card h3 {
    font-size: 1.65rem;
  }

  .book-panel {
    padding: 1.5rem 1.25rem 1.75rem;
    border-radius: 1.15rem;
  }

  .book-visual {
    max-width: 12.5rem;
  }

  .social-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .social-btn {
    min-width: 0;
    min-height: 4.25rem;
  }

  .btn {
    min-height: 3rem;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }

  /* Sticky social dock */
  .mobile-dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    position: fixed;
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    z-index: 90;
    padding: 0.45rem;
    border-radius: 999px;
    background: rgba(3, 5, 10, 0.78);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  .mobile-dock-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #bc1888);
    color: #fff;
  }

  .mobile-dock-btn--tt {
    background: linear-gradient(135deg, #25f4ee 0%, #111 40%, #fe2c55 100%);
  }

  .intro-moon {
    top: 8%;
    right: 8%;
    width: 72px;
    height: 72px;
  }

  .intro-stage {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }

  /* Tighter image combi on mobile — edges only, text stays clear */
  .intro-frame--a {
    width: 28vw;
    height: 36vw;
    top: 6%;
    left: 2%;
  }

  .intro-frame--b {
    width: 36vw;
    height: 22vw;
    top: 7%;
    right: 2%;
  }

  .intro-frame--c {
    width: 24vw;
    height: 32vw;
    top: auto;
    bottom: 18%;
    left: 2%;
  }

  .intro-frame--d {
    width: 26vw;
    height: 34vw;
    top: auto;
    bottom: 16%;
    right: 2%;
  }

  .intro-frame--e,
  .intro-frame--f {
    width: 30vw;
    height: 18vw;
  }

  .intro-frame--e {
    bottom: 8%;
    left: 18%;
  }

  .intro-frame--f {
    bottom: 7%;
    right: 16%;
  }

  .intro-frame--g,
  .intro-frame--h {
    display: none;
  }

  .intro-collage-veil {
    background:
      radial-gradient(ellipse 70% 55% at 50% 50%, rgba(2, 4, 10, 0.35) 0%, rgba(2, 4, 10, 0.82) 68%, rgba(2, 4, 10, 0.94) 100%);
  }

  .lightbox {
    padding: 1rem;
    padding-top: max(1rem, env(safe-area-inset-top, 0px));
  }

  .lightbox-close {
    top: max(0.75rem, env(safe-area-inset-top, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    width: 2.85rem;
    height: 2.85rem;
  }
}

@media (max-width: 420px) {
  .brand-tag {
    display: none;
  }

  .hero-meta .dot:nth-of-type(2),
  .hero-meta span:nth-child(5) {
    display: none;
  }

  .marquee-track {
    font-size: 1.15rem;
  }
}

/* Hide dock when menu open */
body.nav-open .mobile-dock {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 0.3s, transform 0.35s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img,
  .hero-video,
  .marquee-track,
  .about-img.float,
  .scroll-line,
  .orb,
  .mesh,
  .hero-depth-ring,
  .intro-logo,
  .intro-moon,
  .intro-mist,
  .intro-glow,
  .intro-star {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .tilt,
  [data-tilt] {
    transform: none !important;
  }
  .intro-line,
  .intro-brand,
  .intro-enter {
    opacity: 1 !important;
    transform: none !important;
  }

  .intro-collage {
    opacity: 1 !important;
  }

  .intro-frame {
    opacity: 0.85 !important;
    transform: var(--end-transform) !important;
    animation: none !important;
  }
}
