/* =================================================================
   KAYLA STORM — STYLE.CSS
   Monochrome editorial · white / black / chrome
   ================================================================= */

:root {
  /* Palette — monochrome editorial */
  --ink:        #050505;
  --black:      #0a0a0a;
  --black-2:    #141414;
  --char:       #1c1c1c;
  --smoke:      #2a2a2a;
  --paper:      #f4f1ec;   /* warm off-white */
  --paper-2:    #ebe7e0;   /* slightly deeper for layered whites */
  --paper-3:    #dad5cc;
  --bone:       #f8f6f2;   /* lightest – page text on dark */
  --bone-dim:   #c4beb5;
  --ash:        #7a7570;
  --chrome:     #b8b8b8;
  --chrome-2:   #d4d4d4;   /* lighter chrome */
  --chrome-3:   #8a8a8a;   /* deeper chrome */
  --chrome-dim: #5a5a5a;
  --silver:     #c0c0c0;

  /* Type */
  --serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --display: 'Italiana', 'Cormorant Garamond', serif;
  --sans:    'Inter Tight', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease:      cubic-bezier(.2, .8, .2, 1);
  --ease-in:   cubic-bezier(.7, 0, .3, 1);

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --max:    1480px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--bone);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--paper); color: var(--ink); }

/* Light section base */
.section--light {
  background: var(--paper);
  color: var(--ink);
}
.section--light ::selection { background: var(--ink); color: var(--paper); }

/* ============ TYPE BASE ============ */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.05; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.section-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -.01em;
  line-height: 1;
}
.section-title em { display: inline-block; transform: translateY(.05em); color: var(--chrome-3); }
.section--light .section-title em { color: var(--chrome-dim); }

/* ============ GRAIN OVERLAY ============ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  animation: grain 8s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10%  { transform: translate(-5%,-5%); }
  30%  { transform: translate(5%,-10%); }
  50%  { transform: translate(-10%,5%); }
  70%  { transform: translate(10%,-3%); }
  90%  { transform: translate(-3%,10%); }
}

/* ============ CURSOR GLOW ============ */
.cursor-glow {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(220,220,220,.2) 0%, rgba(160,160,160,.06) 35%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity .4s var(--ease);
  mix-blend-mode: screen;
  opacity: 0;
}
@media (hover: hover) {
  body:hover .cursor-glow { opacity: 1; }
}

/* ============ INTRO ============ */
.intro {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 1.4s var(--ease), visibility 1.4s;
}
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.6rem;
  animation: introFade 1.6s var(--ease) .2s both;
}
.intro__logo {
  width: clamp(280px, 50vw, 560px);
  filter: drop-shadow(0 0 30px rgba(255,255,255,.15));
}
.intro__rule {
  width: 280px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome-2), transparent);
  animation: ruleGrow 1.8s var(--ease) .4s both;
}
.intro__tag {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: .4em;
  font-size: .82rem;
  color: var(--chrome-2);
  animation: introFade 1.4s var(--ease) 1s both;
}
.intro__noise {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}
@keyframes introFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ruleGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(248,246,242,.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: .8rem var(--gutter);
  border-bottom-color: rgba(0,0,0,.08);
}
.nav.is-scrolled .nav__menu a { color: var(--ink); }
.nav.is-scrolled .nav__menu a::after { background: var(--ink); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav.is-scrolled .nav__brand img { filter: invert(1) drop-shadow(0 2px 10px rgba(0,0,0,.15)); }

.nav__brand img {
  height: 32px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.5));
  transition: transform .4s var(--ease), filter .5s var(--ease);
}
.nav__brand:hover img { transform: scale(1.05); }

.nav__menu {
  display: flex; gap: 2.4rem;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav__menu a {
  position: relative;
  padding: .4rem 0;
  color: var(--bone-dim);
  transition: color .3s var(--ease);
}
.nav__menu a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease), background .3s var(--ease);
}
.nav__menu a:hover { color: var(--bone); }
.nav.is-scrolled .nav__menu a:hover { color: var(--ink); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 6px;
}
.nav__burger span {
  display: block; width: 22px; height: 1px;
  background: var(--bone);
  transition: transform .4s var(--ease), width .4s var(--ease), background .3s var(--ease);
}
.nav__burger span:last-child { width: 14px; }
.nav__burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); width: 22px; }
.nav__burger.is-open span:last-child  { transform: translateY(-3.5px) rotate(-45deg); width: 22px; }

/* ============ DRAWER (MOBILE) ============ */
.drawer {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3rem;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__menu {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.4rem;
  font-family: var(--display);
  font-size: 2.4rem;
}
.drawer__menu a { position: relative; transition: color .3s var(--ease); }
.drawer__menu a:hover { color: var(--chrome-2); }
.drawer__tag {
  font-family: var(--serif); font-style: italic;
  color: var(--chrome-2); font-size: .9rem;
  letter-spacing: .3em;
}

/* ============ AUDIO TOGGLE ============ */
.audio-toggle {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  padding: .7rem 1rem;
  display: flex; align-items: center; gap: .7rem;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--bone-dim);
  transition: all .4s var(--ease);
}
.audio-toggle:hover { border-color: var(--chrome-2); color: var(--bone); }
.audio-toggle__bars { display: flex; align-items: end; gap: 2px; height: 12px; }
.audio-toggle__bars span { display: block; width: 2px; background: var(--chrome-2); height: 30%; }
.audio-toggle.is-playing .audio-toggle__bars span { animation: bar 1s ease-in-out infinite; }
.audio-toggle.is-playing .audio-toggle__bars span:nth-child(2) { animation-delay: .15s; }
.audio-toggle.is-playing .audio-toggle__bars span:nth-child(3) { animation-delay: .3s; }
.audio-toggle.is-playing .audio-toggle__bars span:nth-child(4) { animation-delay: .45s; }
@keyframes bar { 0%,100% { height: 25%; } 50% { height: 100%; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.05rem 2rem;
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; stroke-width: 1.5; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--bone); color: var(--ink); }
.btn--primary:hover {
  background: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(255,255,255,.25);
}

.btn--ghost {
  border-color: rgba(248,246,242,.3);
  color: var(--bone);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--bone);
  color: var(--bone);
  background: rgba(248,246,242,.06);
}

.section--light .btn--ghost {
  border-color: rgba(0,0,0,.2);
  color: var(--ink);
}
.section--light .btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(0,0,0,.04);
}

.btn--chrome {
  background: linear-gradient(135deg,
    var(--chrome-2) 0%,
    #ffffff 30%,
    var(--chrome) 55%,
    var(--chrome-3) 80%,
    var(--chrome-2) 100%);
  color: var(--ink);
  font-weight: 600;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.6),
    0 20px 40px -15px rgba(0,0,0,.5);
}
.btn--chrome:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.7),
    0 30px 60px -15px rgba(0,0,0,.6);
}
.btn--chrome::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.7) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s var(--ease);
}
.btn--chrome:hover::before { transform: translateX(100%); }

.btn--full { width: 100%; justify-content: center; }

/* ============ SECTION LABEL ============ */
.section-label {
  display: flex; align-items: center; gap: 1.2rem;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--chrome-2);
  margin-bottom: 3rem;
}
.section-label__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: var(--bone);
}
.section--light .section-label { color: var(--chrome-dim); }
.section--light .section-label__num { color: var(--ink); }
.section-label--light .section-label__name,
.section-label--light .section-label__num { color: var(--bone); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0;
  transition: opacity 1.8s var(--ease), transform 8s var(--ease);
  transform: scale(1.08);
  filter: grayscale(15%) contrast(1.05);
}
.hero__img.is-active { opacity: .6; transform: scale(1); }
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(5,5,5,.4) 60%, var(--ink) 100%),
    linear-gradient(180deg, rgba(5,5,5,.6) 0%, transparent 25%, transparent 70%, rgba(5,5,5,.9) 100%);
  z-index: 1;
}

.hero__content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 2rem;
  animation: rise 1.2s var(--ease) 2.5s both;
}
.dot {
  width: 6px; height: 6px;
  background: var(--bone);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--bone);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero__title {
  font-family: var(--display);
  font-size: clamp(4.5rem, 14vw, 13rem);
  line-height: .82;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero__title-line { display: block; animation: rise 1.4s var(--ease) 2.7s both; }
.hero__title-line--italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--chrome-2);
  text-indent: clamp(2rem, 8vw, 6rem);
  animation-delay: 2.9s;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--bone-dim);
  margin-bottom: 2.5rem;
  letter-spacing: .04em;
  animation: rise 1.2s var(--ease) 3.1s both;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; animation: rise 1.2s var(--ease) 3.3s both; }

.hero__marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(5,5,5,.6);
  backdrop-filter: blur(8px);
}
.marquee-track {
  display: flex; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .3em;
  color: var(--bone-dim);
}
.marquee-track span:nth-child(even) { color: var(--chrome-2); }
@keyframes marquee { to { transform: translateX(-50%); } }

.scroll-indicator {
  position: absolute; right: var(--gutter); bottom: 5rem;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .65rem; letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--bone-dim);
  animation: rise 1.2s var(--ease) 3.6s both;
}
.scroll-indicator__line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--bone), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-indicator__line::after {
  content: '';
  position: absolute; top: -30px; left: 0;
  width: 100%; height: 30px;
  background: linear-gradient(to bottom, transparent, var(--bone));
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot { to { top: 100%; } }

/* ============ ABOUT (LIGHT SECTION) ============ */
.about {
  padding: clamp(6rem, 12vh, 10rem) var(--gutter);
  position: relative;
}
.about__inner { max-width: var(--max); margin: 0 auto; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.about__img-wrap { position: relative; overflow: hidden; }
.about__img-wrap--main { aspect-ratio: 3/4; }
.about__img-wrap--main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}
.about__img-wrap--main:hover img { transform: scale(1.04); filter: grayscale(0%) contrast(1); }
.about__img-wrap--sm {
  position: absolute;
  width: 38%;
  aspect-ratio: 3/4;
  bottom: -2rem;
  right: -2rem;
  border: 1px solid var(--chrome-3);
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.25);
  background: var(--ink);
}
.about__img-wrap--sm img { width: 100%; height: 100%; object-fit: cover; }

.frame-corners span {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--ink);
  pointer-events: none;
  z-index: 3;
}
.frame-corners span:nth-child(1) { top: 12px; left: 12px;    border-right: 0; border-bottom: 0; }
.frame-corners span:nth-child(2) { top: 12px; right: 12px;   border-left:  0; border-bottom: 0; }
.frame-corners span:nth-child(3) { bottom: 12px; left: 12px; border-right: 0; border-top:    0; }
.frame-corners span:nth-child(4) { bottom: 12px; right: 12px;border-left:  0; border-top:    0; }

.about__caption {
  position: absolute;
  bottom: -3.5rem; left: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--chrome-dim);
}

.about__text { display: flex; flex-direction: column; gap: 1.8rem; }
.about__quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.3;
  color: var(--ink);
  padding-left: 2rem;
  border-left: 1px solid var(--ink);
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  color: var(--chrome-dim);
  font-size: 1.4em;
  vertical-align: -.15em;
  margin-right: .1em;
}
.quote-mark--end { margin-left: .1em; margin-right: 0; }

.about__body { display: flex; flex-direction: column; gap: 1.1rem; color: var(--ash); font-size: 1rem; max-width: 50ch; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.15);
}
.stat { display: flex; flex-direction: column; }
.stat__num, .stat__plus {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  line-height: 1;
}
.stat__plus { display: inline; }
.stat__label {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  margin-top: .5rem;
}

/* ============ PORTFOLIO ============ */
.portfolio {
  padding: clamp(6rem, 12vh, 10rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.portfolio__head {
  display: flex; flex-direction: column; gap: 2rem;
  margin-bottom: 4rem;
}
.portfolio__filters { display: flex; flex-wrap: wrap; gap: .6rem; }
.filter {
  padding: .65rem 1.4rem;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid rgba(248,246,242,.2);
  border-radius: 100px;
  transition: all .4s var(--ease);
}
.filter:hover { border-color: var(--bone); color: var(--bone); }
.filter.is-active {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ink);
}

/* UNIFORM-TILE GALLERY — every tile is a 3:4 portrait */
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.m-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--char);
  aspect-ratio: 3 / 4;
  transition: opacity .5s var(--ease), filter .5s var(--ease);
}
.m-item.is-hidden { display: none; }

.m-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease), filter .8s var(--ease);
  filter: grayscale(20%) brightness(.92) contrast(1.05);
}
.m-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1) contrast(1);
}

.m-item figcaption {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  padding: 1.2rem;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone);
  display: flex; align-items: baseline; gap: .8rem;
  background: linear-gradient(to top, rgba(5,5,5,.92), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: all .5s var(--ease);
}
.m-item figcaption span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--chrome-2);
}
.m-item:hover figcaption { transform: translateY(0); opacity: 1; }

.m-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color .4s var(--ease);
  pointer-events: none;
}
.m-item:hover::after { border-color: rgba(255,255,255,.4); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(5,5,5,.96);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage {
  max-width: min(900px, 92vw);
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.8);
}
.lightbox__cap {
  font-family: var(--serif); font-style: italic;
  color: var(--chrome-2);
  letter-spacing: .1em;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  border: 1px solid rgba(248,246,242,.2);
  border-radius: 50%;
  color: var(--bone);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  background: rgba(10,10,10,.6);
}
.lightbox__close:hover, .lightbox__nav:hover {
  border-color: var(--bone);
  color: var(--bone);
  background: rgba(10,10,10,.9);
}
.lightbox__close { top: 2rem; right: 2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2rem; line-height: 1; }
.lightbox__nav--prev { left: 2rem; }
.lightbox__nav--next { right: 2rem; }

/* ============ EXCLUSIVE ============ */
.exclusive {
  position: relative;
  padding: clamp(7rem, 16vh, 12rem) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.exclusive__bg { position: absolute; inset: 0; z-index: -2; }
.exclusive__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(.45) contrast(1.15);
}
.exclusive__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(180,180,180,.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5,5,5,.65) 0%, rgba(5,5,5,.5) 50%, rgba(5,5,5,.88) 100%);
}
.exclusive__content { max-width: 680px; position: relative; }
.exclusive__eyebrow {
  font-family: var(--serif); font-style: italic;
  color: var(--chrome-2);
  letter-spacing: .2em;
  font-size: .9rem;
  margin-bottom: 1rem;
}
.exclusive__title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--bone);
}
.exclusive__title em { color: var(--chrome-2); }
.exclusive__sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--bone-dim);
  max-width: 48ch;
  margin-bottom: 2.5rem;
}
.exclusive__perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-bottom: 3rem;
  font-size: .95rem;
}
.exclusive__perks li { color: var(--bone); display: flex; align-items: center; gap: .8rem; }
.exclusive__perks span { color: var(--chrome-2); font-size: .8rem; }
.exclusive__small {
  margin-top: 1.5rem;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ============ SOCIAL (LIGHT SECTION) ============ */
.social {
  padding: clamp(6rem, 12vh, 10rem) var(--gutter);
  text-align: center;
}
.social__inner { max-width: var(--max); margin: 0 auto; }
.social__title { margin-bottom: 1rem; }
.social__sub {
  font-family: var(--serif); font-style: italic;
  color: var(--chrome-dim);
  margin-bottom: 4rem;
  font-size: 1.2rem;
}

.social__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  text-align: left;
}
.social-card {
  position: relative;
  padding: 2.2rem 1.8rem;
  background: var(--paper-2);
  border: 1px solid rgba(0,0,0,.1);
  overflow: hidden;
  transition: transform .6s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  display: flex; flex-direction: column; gap: .8rem;
  color: var(--ink);
}
.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  background: #ffffff;
}
.social-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.social-card:hover::before { transform: scaleX(1); }

.social-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 50%;
  margin-bottom: .5rem;
  transition: border-color .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.social-card:hover .social-card__icon {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.social-card__icon svg { width: 22px; height: 22px; }

.social-card h3 { font-family: var(--display); font-size: 1.8rem; color: var(--ink); }
.social-card__handle { font-family: var(--serif); font-style: italic; color: var(--chrome-dim); font-size: .95rem; }
.social-card__count { font-size: .82rem; color: var(--ash); letter-spacing: .05em; }
.social-card__cta {
  margin-top: auto;
  padding-top: 1rem;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .3s var(--ease);
}

.social-card--feature {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.social-card--feature h3,
.social-card--feature .social-card__cta { color: var(--bone); }
.social-card--feature .social-card__handle { color: var(--chrome-2); }
.social-card--feature .social-card__count { color: var(--bone-dim); }
.social-card--feature .social-card__icon { border-color: rgba(255,255,255,.2); color: var(--bone); }
.social-card--feature::before { background: var(--chrome-2); }
.social-card--feature:hover { background: var(--ink); border-color: var(--chrome-2); }
.social-card--feature:hover .social-card__icon {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

/* ============ BRANDS ============ */
.brands {
  padding: clamp(6rem, 12vh, 10rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.brands__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.brands__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bone-dim);
  margin: 1.5rem 0 2.5rem;
  max-width: 50ch;
  line-height: 1.55;
}
.brands__logos {
  display: flex; flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .25em;
  color: var(--bone-dim);
}
.brands__logos span { transition: color .3s var(--ease); }
.brands__logos span:hover { color: var(--bone); }
.brands__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.brands__visual { position: relative; aspect-ratio: 1/1; }
.brands__img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
}
.brands__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.brands__img--1 { top: 0; left: 0; width: 60%; height: 60%; z-index: 1; }
.brands__img--2 {
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  z-index: 2;
  border: 1px solid var(--chrome-2);
}
.brands__img--3 { top: 25%; right: 5%; width: 30%; height: 30%; z-index: 3; }

/* ============ CONTACT (LIGHT SECTION) ============ */
.contact {
  padding: clamp(7rem, 16vh, 12rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.contact__content { max-width: var(--max); margin: 0 auto; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.contact__intro p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ash);
  max-width: 36ch;
  margin: 1.5rem 0 2.5rem;
}
.contact__meta { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.contact__meta li {
  display: flex; flex-direction: column; gap: .2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.contact__meta-label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--chrome-dim);
}
.contact__meta a,
.contact__meta li > span:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.contact__meta a:hover { color: var(--chrome-dim); }

.contact__form {
  display: flex; flex-direction: column;
  gap: 1.2rem;
  padding: 2.5rem;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.4);
}
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field--two > div { display: flex; flex-direction: column; gap: .5rem; }
.field label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--chrome-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--bone);
  font-family: var(--sans);
  font-size: .95rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  outline: none;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bone);
  background: rgba(255,255,255,.08);
}
.field textarea { resize: vertical; min-height: 110px; font-family: var(--serif); font-style: italic; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--chrome-2) 50%), linear-gradient(135deg, var(--chrome-2) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.field select option { background: var(--ink); color: var(--bone); }

.form-status {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--chrome-2);
  text-align: center;
  min-height: 1.4em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 4rem var(--gutter) 1.5rem;
}
.footer__top {
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 3rem;
}
.footer__logo {
  height: 60px;
  margin: 0 auto;
  filter: drop-shadow(0 2px 20px rgba(255,255,255,.1));
}
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--chrome-2);
  letter-spacing: .35em;
  font-size: .75rem;
  text-transform: uppercase;
  margin-top: 1rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.footer__cols h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--chrome-2);
  margin-bottom: 1rem;
  letter-spacing: .05em;
}
.footer__cols a {
  display: block;
  font-size: .9rem;
  color: var(--bone-dim);
  padding: .35rem 0;
  transition: color .3s var(--ease), padding .3s var(--ease);
}
.footer__cols a:hover { color: var(--bone); padding-left: .5rem; }

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem;
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--ash);
}

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .about__grid,
  .brands__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .brands__visual { aspect-ratio: 4/3; }
  .masonry { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .about__img-wrap--sm { width: 45%; bottom: -1rem; right: -1rem; }
}

@media (max-width: 640px) {
  .masonry { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .field--two { grid-template-columns: 1fr; }
  .exclusive__perks { grid-template-columns: 1fr; }
  .hero__marquee { padding: .9rem 0; font-size: .9rem; }
  .marquee-track { font-size: .85rem; gap: 1.5rem; }
  .scroll-indicator { right: 1rem; bottom: 6rem; }
  .audio-toggle { bottom: 1rem; right: 1rem; padding: .6rem .8rem; }
  .audio-toggle__label { display: none; }
  .footer__cols { grid-template-columns: 1fr; text-align: center; }
  .footer__cols a:hover { padding-left: 0; }
  .lightbox__close { top: 1rem; right: 1rem; }
  .lightbox__nav--prev { left: .5rem; }
  .lightbox__nav--next { right: .5rem; }
  .lightbox__nav { width: 40px; height: 40px; }
  .contact__form { padding: 1.6rem; }
  .about__quote { font-size: 1.25rem; padding-left: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .grain { display: none; }
}
