/* ===== FONTS (PP Neue Montreal — same family as the reference site) =====
   Hotlinked from Webflow CDN. PP Neue Montreal is a PAID font (Pangram Pangram);
   purchase a license + self-host before production. */
@font-face {
  font-family: "PP Neue Montreal"; font-display: swap; font-weight: 700;
  src: url("../assets/fonts/PPNeueMontreal-Bold.otf") format("opentype");
}
@font-face {
  font-family: "PP Neue Montreal"; font-display: swap; font-weight: 500;
  src: url("../assets/fonts/PPNeueMontreal-Medium.otf") format("opentype");
}
@font-face {
  font-family: "PP Neue Montreal"; font-display: swap; font-weight: 400;
  src: url("../assets/fonts/PPNeueMontreal-Book.otf") format("opentype");
}
/* Inconsolata — monospace for small technical UI (clocks, scroll %, labels) */
@font-face {
  font-family: "Inconsolata"; font-display: swap; font-weight: 400;
  src: url("../assets/fonts/Inconsolata.woff2") format("woff2");
}

/* ===== TOKENS ===== */
:root {
  --bg: #000000;
  --ink: #f2efe9;            /* soft white body */
  --muted: #8d877b;
  --gold: #e7c766;           /* solid gold accent */
  --gold-soft: #c9a227;
  --gold-grad: linear-gradient(180deg, #f7ecbf 0%, #e7c766 32%, #c9a227 62%, #9a7b22 100%);
  --line: rgba(231, 199, 102, 0.22);
  --font: "PP Neue Montreal", Arial, sans-serif;
  --font-serif: "Bodoni Moda", "Times New Roman", Georgia, serif; /* editorial / fashion display */
  --font-logo: "Cinzel", "Times New Roman", serif; /* brand wordmark — matches the logo */
  --font-mono: "Inconsolata", ui-monospace, "SFMono-Regular", monospace;
  --pad: clamp(1.1rem, 4vw, 3.5rem);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* metallic gold text helper */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===== NAV ===== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: grid; grid-template-columns: auto auto 1fr auto; align-items: start;
  gap: clamp(1rem, 4vw, 4rem);
  padding: 1.4rem var(--pad);
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}
.nav__brand { display: flex; flex-direction: column; line-height: 1.05; }
.nav__name { font-family: var(--font-logo); font-weight: 600; font-size: 1.1rem; letter-spacing: 0.12em; }
.nav__role { font-family: var(--font-mono); font-weight: 400; font-size: 0.64rem; letter-spacing: 0.16em; opacity: 0.8; margin-top: 0.3rem; }
.nav__clocks { font-family: var(--font-mono); display: flex; flex-direction: column; gap: 0.25rem; font-weight: 400; white-space: nowrap; }
.nav__clocks .dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: #fff; vertical-align: middle; margin: 0 0.15rem; }
.nav__clocks time { font-variant-numeric: tabular-nums; }
.nav__links { display: flex; flex-wrap: wrap; gap: 0.1rem 1.4rem; max-width: 16rem; font-weight: 500; }
.nav__links a { opacity: 0.85; transition: opacity 0.25s; }
.nav__links a:hover { opacity: 1; }
.nav__reserve { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 500; }
.nav__reserve span { border: 1px solid currentColor; padding: 0.55rem 1rem; }
.nav__arrow { border: 1px solid currentColor; padding: 0.45rem 0.6rem; font-style: normal; }
.nav__toggle { display: none; } /* hamburger — mobile only (see media query) */

/* ===== STAGE (sticky figure + scrolling panels) ===== */
.stage { position: relative; overflow-x: clip; }
.bigname {
  position: absolute; top: 27vh; left: 0; width: 100%; z-index: 0;
  text-align: center; font-family: var(--font-logo); font-weight: 600; line-height: 0.95;
  font-size: 14vw; letter-spacing: 0.01em; white-space: nowrap;
  color: #ffffff;                 /* default white; turns gold on hover (.is-gold) */
  -webkit-text-fill-color: #ffffff;
  pointer-events: none;
}
/* wrapper carries the scroll transform (rise + zoom, set by GSAP) + sticky.
   the inner <img> carries the subtle "breathing" — two layers, no conflict. */
.figure-wrap {
  position: sticky; top: 0; z-index: 1;
  height: 100svh; width: 100%;
  margin-bottom: -100svh;          /* let panels scroll over the sticky figure */
  pointer-events: none;
  transform-origin: center center;
  transform: translate3d(0, 16%, 0) scale(1.8);   /* starts zoomed on the bust */
  will-change: transform;
}
/* two stacked layers in the wrapper: rotation frames (.figure) + a real
   breathing+blink loop (.figure-idle). At rest the idle loop shows; on scroll
   they cross-fade to the rotation. Both are alpha cutouts → both occlude title. */
.figure {
  position: absolute; inset: 0; height: 100%; width: 100%;
  object-fit: contain; object-position: center;
  filter: contrast(1.03) brightness(1.0) saturate(1.04);
  opacity: 0; transition: opacity 0.12s linear; will-change: opacity;  /* opacity driven by scroll (JS) */
  /* degradê — lower body dissolves into the dark (no hard leg cut over the statement) */
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 88%);
  mask-image: linear-gradient(to bottom, #000 55%, transparent 88%);
}
.idle-wrap {                                          /* idle container — opacity driven by scroll (JS) */
  position: absolute; inset: 0;
  transform: scale(1.45); transform-origin: center center;            /* matched to the rotation frame-80 size */
  opacity: 1; transition: opacity 0.12s linear; will-change: opacity;
}
.figure-idle, .figure-idle2 {                         /* two layers that A↔B crossfade per gesture */
  position: absolute; inset: 0; height: 100%; width: 100%;
  object-fit: contain; object-position: center;
  filter: contrast(1.03) brightness(1.0) saturate(1.04);
  transition: opacity 0.45s ease-in-out; will-change: opacity;
}
.figure-idle { opacity: 1; }                          /* layer A: holds the rest pose */
.figure-idle2 { opacity: 0; }                         /* layer B: plays the gesture */
.panel { position: relative; z-index: 2; min-height: 100svh; padding: 0 var(--pad); }

/* hero panel — corner content */
.hero { display: block; }
.tagline {
  position: absolute; top: 11vh; right: var(--pad); max-width: 22ch; text-align: right;
  font-weight: 500; text-transform: uppercase; font-size: clamp(0.72rem, 1vw, 0.9rem);
  letter-spacing: 0.04em; line-height: 1.5; color: #ffffff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.95), 0 0 4px rgba(0, 0, 0, 0.9);
}
.where {
  position: absolute; bottom: 7vh; left: var(--pad);
  font-family: var(--font-serif); font-weight: 500; font-style: italic;
  font-size: clamp(2.3rem, 6.4vw, 6rem); line-height: 1; letter-spacing: 0;
  color: #ffffff;
  /* layered shadow → readable over the bright/busy model (tight edge + soft halo) */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 3px 30px rgba(0, 0, 0, 0.75);
}
.scroll-ind {
  position: fixed; bottom: clamp(1rem, 3vh, 2rem); right: var(--pad); z-index: 60;
  font-family: var(--font-mono);
  font-weight: 400; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; color: var(--muted);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.9);
  pointer-events: none;
}
.scroll-ind span { color: var(--gold); font-variant-numeric: tabular-nums; }

/* side panels (about / mindset) — text to the left of the figure */
.side { display: flex; flex-direction: column; justify-content: center; }
/* left-anchored dark scrim so the text reads over the figure's bright highlights,
   fading to transparent before center so the mannequin stays clear */
/* scrim removed — it darkened the figure behind the side panels and made a hard
   brightness step vs the hero. Uniform brightness now; legibility via text-shadow. */
.side > * { position: relative; z-index: 1; }
.label { font-family: var(--font-mono); font-weight: 400; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; color: var(--gold); margin-bottom: 1.5rem; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85); }
.side__text { font-weight: 500; font-size: clamp(1.05rem, 2vw, 1.6rem); line-height: 1.4; max-width: 34ch; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 2px 26px rgba(0, 0, 0, 0.9); }
.side .card { position: absolute; top: 16vh; right: var(--pad); margin: 0; z-index: 2; }

/* styling card */
.card {
  width: min(440px, 100%); align-self: flex-end; margin-bottom: 8vh;
  border: 1px solid var(--line); padding: 1.6rem; background: rgba(231, 199, 102, 0.03); backdrop-filter: blur(2px);
}
.card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.card__kicker { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--gold); font-weight: 400; }
.card__dot { color: var(--gold); }
.card__body { color: #cfc8b8; font-size: 0.92rem; }

/* ===== BIG STATEMENT ===== */
.statement { padding: clamp(6rem, 18vh, 14rem) var(--pad); text-align: center; }
.statement__text { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.8rem, 9vw, 8rem); line-height: 1; letter-spacing: 0; color: #ffffff; }
.statement__sub { margin-top: 1.8rem; color: var(--muted); max-width: 42ch; margin-inline: auto; font-size: 1rem; }

/* ===== HISTÓRIAS (editorial) ===== */
.stories { padding: clamp(5rem, 16vh, 12rem) var(--pad); overflow-x: clip; }
.stories__head { max-width: 52rem; margin: 0 auto clamp(3rem, 9vh, 7rem); text-align: center; }
.stories__kicker { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--gold); }
.stories__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.4rem, 7vw, 5.5rem); letter-spacing: 0; line-height: 1; margin: 1rem 0 1.4rem; color: #fff; }
.stories__lead { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.6; max-width: 46ch; margin-inline: auto; }

.stories__list { list-style: none; }
.story { position: relative; display: grid; grid-template-columns: minmax(0, 360px) 1fr;
  gap: clamp(2rem, 6vw, 6rem); align-items: center;
  padding: clamp(4rem, 11vh, 9rem) 0; border-top: 1px solid var(--line); }
.story:last-child { border-bottom: 1px solid var(--line); }
.story--reverse { direction: rtl; }
.story--reverse > * { direction: ltr; }

.story__film { position: relative; aspect-ratio: 9 / 16; max-width: 360px; overflow: hidden;
  border: 1px solid var(--line); background: #050505; border-radius: 2px; }
.story__film video { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.story__film:hover video { transform: scale(1.05); }
.story__cap { position: absolute; inset: auto 0 0 0; padding: 1.6rem 1.1rem 0.9rem;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem;
  color: #e9dcb4; background: linear-gradient(to top, rgba(0,0,0,0.82), transparent); }

.story__body { position: relative; max-width: 40ch; }
.story--reverse .story__body { margin-left: auto; }
.story__num { position: absolute; top: -0.5em; right: 0; z-index: 0; pointer-events: none;
  font-family: var(--font-serif); font-weight: 600; font-size: clamp(7rem, 15vw, 14rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(231, 199, 102, 0.22); }
.story__body > :not(.story__num) { position: relative; z-index: 1; }
.story__tag { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--gold); }
.story__title { font-family: var(--font-serif); font-weight: 500; font-style: italic; font-size: clamp(1.9rem, 4.4vw, 3.4rem); line-height: 1.05; letter-spacing: 0; margin: 0.7rem 0 1.3rem; color: #fff; }
.story__desc { color: #cfc8b8; font-size: clamp(1.02rem, 1.5vw, 1.22rem); line-height: 1.6; }
.story__meta { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.6rem; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--muted); }
.story__meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }
.story__link { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 2rem; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem; color: var(--gold); }
.story__link span { padding-bottom: 0.25rem; background: linear-gradient(var(--gold), var(--gold)) no-repeat 0 100% / 0% 1px;
  transition: background-size 0.5s cubic-bezier(.2,.8,.2,1); }
.story__link:hover span { background-size: 100% 1px; }
.story__link i { font-style: normal; transition: transform 0.4s cubic-bezier(.2,.8,.2,1); }
.story__link:hover i { transform: translateX(6px); }

/* ===== LOOKBOOK ===== */
.lookbook { padding: clamp(3rem, 10vh, 8rem) var(--pad); }
.lookbook__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.2rem; flex-wrap: wrap; gap: 1rem; }
.lookbook__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: 0; color: #fff; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold); border-bottom: 1px solid var(--line); padding-bottom: 0.3rem; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 0.6rem; }
.gallery__item { aspect-ratio: 3 / 4; overflow: hidden; background-size: cover; background-position: center;
  border: 1px solid rgba(231,199,102,0.12); transition: transform 0.5s cubic-bezier(.2,.8,.2,1); }
.gallery__item:hover { transform: translateY(-6px); }
.gallery__item canvas { width: 100%; height: 100%; }
.gallery__item { cursor: zoom-in; }

/* lightbox — gallery "ver mais" */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.92); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 0.35s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: 90vw; max-height: 88vh; object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  transform: scale(0.96); transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: clamp(1rem, 3vh, 2rem); right: clamp(1rem, 4vw, 3rem);
  background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1;
  cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }

/* ===== MISSION (line-mask wipe) ===== */
.mission { padding: clamp(5rem, 14vh, 11rem) var(--pad); }
.mission__line { height: 1px; background: var(--line); margin-bottom: 2.5rem; }
.split-lines { font-weight: 500; font-size: clamp(1.3rem, 3.4vw, 2.8rem); line-height: 1.3; max-width: 22ch; letter-spacing: -0.01em; }
.split-lines .line { position: relative; overflow: hidden; }
.line-mask { position: absolute; inset: 0; background: var(--bg); width: 100%; }

/* ===== CTA ===== */
.cta { position: relative; height: 88svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.cta__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #050505; }
.cta__overlay { position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 50%, rgba(0,0,0,0.45), rgba(0,0,0,0.82)); }
.cta__content { position: relative; }
.cta__kicker { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.76rem; color: var(--gold); margin-bottom: 1.4rem; }
.cta__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.8rem, 8vw, 7rem); line-height: 1; letter-spacing: 0; color: #ffffff; }
.btn { display: inline-block; margin-top: 2rem; border: 1px solid var(--gold); color: var(--gold); padding: 0.85rem 2.2rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; font-size: 0.85rem; transition: background 0.3s, color 0.3s; }
.btn:hover { background: var(--gold); color: #000; }

/* ===== FOOTER ===== */
.footer { padding: clamp(3rem, 8vh, 6rem) var(--pad) 2.5rem; border-top: 1px solid var(--line); }
.footer__top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.footer__brand { font-family: var(--font-logo); font-weight: 600; font-size: clamp(2.2rem, 8vw, 5.5rem); letter-spacing: 0.08em; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.footer__cta { margin-top: 0; white-space: nowrap; }
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid var(--line); padding-top: 2.5rem; }
.footer__group { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__label { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.4rem; }
.footer__group a { color: #cfc8b8; font-size: 0.95rem; transition: color 0.25s; }
.footer__group a:hover { color: var(--gold); }
.footer__bottom { margin-top: clamp(2.5rem, 6vh, 4rem); color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.cta__alt { margin-top: 1.2rem; font-size: 0.85rem; color: var(--muted); }
.cta__alt a { color: var(--gold); border-bottom: 1px solid var(--line); }
.cta__alt a:hover { color: #fff; }

/* reveal initial state (JS reveals after split) */
[words-blur-in], [text-split] { opacity: 0; }
.bigname[words-blur-in] { opacity: 0; }

/* SplitType moves glyphs into .word children, which breaks background-clip:text
   on the parent. Re-apply the gold gradient to each split word. */
.where .word, .statement__text .word, .cta__title .word {
  color: #fff; -webkit-text-fill-color: #fff; background: none;
}
/* hero name: white by default, with a soft circular "flashlight" of gold that
   follows the cursor. The text fill is a radial gradient (gold core → white
   falloff) whose centre (--wx/--wy, per word) is updated on mousemove by JS.
   Cursor far from a word → its glyphs sit in the white zone → white. */
.bigname .word {
  background: radial-gradient(circle 340px at var(--wx, -1000px) var(--wy, -1000px),
    #f6e7a6 0%, #e3c25e 17%, #ffffff 46%);   /* small gold flashlight → pure WHITE (no grey cream) */
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* hover over the name → it rises IN FRONT of the model (reveal over her) */
.bigname.is-front { z-index: 2; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .nav__clocks { display: none; }
  .nav__links { max-width: none; justify-content: flex-end; }
}
@media (max-width: 768px) {
  .nav { grid-template-columns: 1fr auto; align-items: center; }
  .nav__reserve { display: none; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 38px; height: 30px; padding: 4px 2px; background: none; border: 0; cursor: pointer;
    z-index: 110; justify-self: end;
  }
  .nav__toggle span { display: block; height: 2px; width: 100%; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__links {
    display: flex; position: fixed; inset: 0; z-index: 100; max-width: none;
    flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
    background: rgba(8, 8, 8, 0.98); backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
    font-family: var(--font-serif); font-size: 2rem; text-transform: none; letter-spacing: 0;
  }
  .nav.open .nav__links { transform: translateX(0); }
  .nav__links a { opacity: 0.9; }
  .bigname { font-size: 16.5vw; top: 30vh; }
  .tagline { top: 9vh; max-width: 18ch; font-size: 0.7rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .card { align-self: stretch; }
  .story, .story--reverse { grid-template-columns: 1fr; direction: ltr; }
  .story__film { max-width: 320px; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer__top { align-items: flex-start; }
}
