/* ============================================================
   ÉLIXIR — N°07 Nocturne · Hero
   Ultra-modern · No metallics · Bone on Ink with Rouge accent
   ============================================================ */

/* ---------- Custom local fonts ---------- */
@font-face {
  font-family: "Derose";
  src: url("Derose.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Romate Hood";
  src: url("Romate Hood OTF.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sinta Magenta";
  src: url("SintaMagentaDemoRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:        #0a0a0b;
  --ink-2:      #111113;
  --smoke:      #1a1a1c;
  --bone:       #f4f1ec;
  --bone-dim:   #c9c4bb;
  --paper:      #efebe4;
  --rouge:      #ff3c2a;
  --rouge-2:    #ff6a55;
  --rouge-deep: #8a0d12;
  --line:       rgba(244, 241, 236, .14);
  --line-soft:  rgba(244, 241, 236, .07);

  --f-display:  "Bricolage Grotesque", system-ui, sans-serif;
  --f-headline: "Newsreader", "Noto Serif JP", "Times New Roman", serif;
  --f-body:     "Instrument Sans", system-ui, sans-serif;
  --f-mono:     "JetBrains Mono", ui-monospace, monospace;

  --gutter: clamp(20px, 3vw, 48px);

  --ease:    cubic-bezier(.6, .01, .15, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

/* ============================================================
   PRELOADER
   ============================================================ */

@property --iris {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

.preloader {
  position: fixed; inset: 0;
  z-index: 500;
  background: var(--ink);
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
  /* iris hole grows from center out — transparent area = page revealed */
  --iris: 0%;
  -webkit-mask-image: radial-gradient(circle at 50% 50%,
    transparent calc(var(--iris) - 1%),
    #000        var(--iris));
  mask-image: radial-gradient(circle at 50% 50%,
    transparent calc(var(--iris) - 1%),
    #000        var(--iris));
  transition: --iris 1.2s cubic-bezier(.76, 0, .24, 1);
}
.preloader__inner {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.preloader__brand {
  color: var(--bone-dim);
  font-size: 9.5px;
  opacity: 0;
  animation: preFadeIn .6s ease .15s forwards;
}
.preloader__num {
  font-family: var(--f-headline);
  font-size: clamp(96px, 14vw, 180px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.025em;
  text-transform: none;
  font-variation-settings: "opsz" 96;
  margin: 4px 0;
  color: var(--bone);
  opacity: 0;
  animation: preFadeIn .6s ease .25s forwards;
}
.preloader__num [data-pre-num] .d-ones { color: var(--rouge); }
.preloader__line {
  position: relative;
  width: 220px;
  height: 1px;
  background: rgba(244, 241, 236, .14);
  overflow: hidden;
}
.preloader__line i {
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform-origin: left;
  transform: scaleX(0);
  animation: preLineFill 1.6s cubic-bezier(.6, 0, .2, 1) .35s forwards;
}
.preloader__edition {
  color: var(--bone-dim);
  font-size: 9px;
  opacity: 0;
  animation: preFadeIn .6s ease .55s forwards;
}
@keyframes preFadeIn {
  to { opacity: 1; }
}
@keyframes preLineFill {
  to { transform: scaleX(1); }
}

/* exit — counter holds on 07, then iris hole expands from center out */
.preloader.is-exiting .preloader__inner {
  opacity: 0;
  transition: opacity .4s ease;
}
.preloader.is-exiting {
  --iris: 110%;
}

.preloader.is-done {
  display: none;
}

/* lock body scroll while loading */
body.is-loading { overflow: hidden; }

html, body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip (not hidden) so position: sticky works on the nav. hidden on
     html/body creates a scroll container that breaks sticky descendants */
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, #15090a 0%, transparent 55%),
    radial-gradient(80% 60% at 90% 100%, #1a0809 0%, transparent 60%),
    var(--ink);
}

/* page transition — invisible by default; activated only on outbound nav.
   No cold-load fade-in: that previously gated FCP because the overlay
   started fully opaque and Lighthouse couldn't see content under it. */
.page-fade {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--ink);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease-in;
}
.page-fade.is-cleared { opacity: 0; }
.page-fade.is-leaving {
  opacity: 1;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .page-fade { display: none; }
}

/* cart-add feedback — header bag count flashes when item added */
.btn-bag em {
  display: inline-block;
  transition: transform .35s var(--ease-out), color .35s ease;
}
.btn-bag.is-flashing em {
  animation: bag-flash .8s var(--ease-out);
}
@keyframes bag-flash {
  0%   { transform: scale(1);    color: var(--bone); }
  35%  { transform: scale(1.45); color: var(--rouge); }
  100% { transform: scale(1);    color: var(--bone); }
}

a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
ul { list-style: none; }
em { font-style: italic; }

/* ============================================================
   ATMOSPHERE LAYERS
   ============================================================ */

.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none;
  opacity: .14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

.scanlines {
  position: fixed; inset: 0; z-index: 99; pointer-events: none;
  opacity: .06;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0 2px,
    rgba(255,255,255,.6) 2px 3px
  );
}

/* ============================================================
   UTILITY BAR
   ============================================================ */

.util {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--gutter);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.util__brand { display: flex; align-items: center; gap: 10px; }
.util__mark { width: 12px; height: 12px; color: var(--bone); }
.util__ticker { display: flex; align-items: center; justify-content: center; gap: 14px; }
.util__sep { opacity: .3; }
.util__hot { color: var(--rouge); }
.dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--rouge);
  box-shadow: 0 0 0 0 rgba(255,60,42,.55);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,60,42,.55); }
  100% { box-shadow: 0 0 0 8px rgba(255,60,42,0); }
}
/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* fixed padding keeps nav height constant — toggling .is-scrolled then
     only flips visual properties (background, blur), so the scroll handler
     does not trigger layout reflow on every scroll event. */
  padding: 23px var(--gutter);
  background: transparent;
  transition:
    transform .45s var(--ease-out),
    background .35s ease,
    backdrop-filter .35s ease,
    -webkit-backdrop-filter .35s ease;
  contain: layout style;
}
/* once scrolled past the very top, dim + blur so the type reads cleanly
   over hero content. */
.nav.is-scrolled {
  background: linear-gradient(to bottom,
    rgba(8, 6, 7, .88) 0%,
    rgba(8, 6, 7, .55) 70%,
    rgba(8, 6, 7, 0) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.logo {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  font-variation-settings: "wdth" 90, "opsz" 32;
  letter-spacing: -.01em;
  color: var(--bone);
}
.logo__num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .15em;
  color: var(--rouge);
  position: relative;
  top: -10px;
}

.nav__cta { display: flex; gap: 8px; align-items: center; }

/* Menu trigger — two stacked hairlines + word */
.btn-menu {
  background: transparent;
  cursor: pointer;
}
.btn-menu__lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 14px;
}
.btn-menu__lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease), width .35s var(--ease);
}
.btn-menu__lines i:nth-child(2) { width: 70%; align-self: flex-end; }
.btn-menu:hover .btn-menu__lines i:nth-child(2) { width: 100%; }
.btn-menu__label { letter-spacing: .14em; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  transition: border-color .3s, background .3s, color .3s;
}
.btn-ghost svg { width: 14px; height: 14px; }
.btn-ghost:hover { border-color: var(--bone); background: var(--bone); color: var(--ink); }
.btn-bag em { font-style: normal; color: var(--rouge); margin-left: 4px; }

/* ============================================================
   HERO LAYOUT
   ============================================================ */

.hero {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: var(--gutter);
  padding: 0 var(--gutter);
  min-height: calc(100vh - 180px);
  align-items: stretch;
}

/* ============================================================
   LEFT META COLUMN
   ============================================================ */

.hero__meta {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px 0 32px;
  gap: 32px;
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.meta-block__kicker {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 14px;
}
.meta-block__num {
  display: flex; align-items: baseline;
  font-family: var(--f-display);
  font-weight: 200;
  font-variation-settings: "wdth" 75, "opsz" 96;
  font-size: clamp(72px, 8vw, 120px);
  line-height: .85;
  letter-spacing: -.04em;
  color: var(--bone);
}
.meta-block__num span { display: inline-block; }
.meta-block__num span:nth-child(2) {
  color: var(--rouge);
  font-style: italic;
  font-variation-settings: "wdth" 125, "opsz" 96;
}
.meta-block__sub {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 10px;
}
.meta-block__notes {
  display: flex; flex-direction: column; gap: 10px;
}
.meta-block__notes li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  font-size: 12.5px;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
}
.meta-block__notes li:last-child { border-bottom: 1px solid var(--line-soft); }
.meta-block__notes i {
  font-family: var(--f-mono); font-style: normal;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--rouge); padding-top: 2px;
}
.meta-block__notes span { color: var(--bone); line-height: 1.35; }

/* progress bar */
.meta-block--bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.bar__label, .bar__pct {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bone-dim);
}
.bar__pct { justify-self: end; color: var(--rouge); }
.bar {
  grid-column: 1 / -1;
  height: 2px;
  background: var(--line-soft);
  position: relative;
  overflow: hidden;
}
.bar__fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--rouge-2), var(--rouge));
  transition: width 1.2s var(--ease);
}
.meta-block--bar { display: flex; flex-direction: column; gap: 8px; }
.meta-block--bar .bar__label { order: 1; }
.meta-block--bar .bar { order: 2; margin: 4px 0; }
.meta-block--bar .bar__pct { order: 3; align-self: flex-end; }

/* ============================================================
   STAGE — bottle
   ============================================================ */

.stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(540px, 72vh, 700px);
  color: var(--bone);
}
.stage::before { display: none; }
@keyframes stageGlow {
  0%, 100% { opacity: .85; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

.coord {
  position: absolute;
  font-family: var(--f-mono);
  font-size: clamp(8px, 1vw, 10px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  line-height: 1.5;
}
.coord b { color: var(--bone); font-weight: 500; letter-spacing: .12em; }
/* coord labels inset from the stage edges so they don't kiss the frame's
   corner brackets — clamp() so the gap scales fluidly across breakpoints */
.coord--tl { top: clamp(28px, 3.5vw, 40px); left:  clamp(14px, 1.6vw, 20px); }
.coord--tr { top: clamp(28px, 3.5vw, 40px); right: clamp(14px, 1.6vw, 20px); text-align: right; }
.coord--bl { bottom: clamp(28px, 3.5vw, 40px); left:  clamp(14px, 1.6vw, 20px); }
.coord--br { bottom: clamp(28px, 3.5vw, 40px); right: clamp(14px, 1.6vw, 20px); text-align: right; }

.frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  color: var(--bone);
  opacity: .8;
  pointer-events: none;
}

.particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.particles span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--bone);
  opacity: 0;
  transform: scale(var(--s, 1));
  animation: float 9s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  filter: blur(.3px);
}
@keyframes float {
  0%, 100% { opacity: 0; transform: translate3d(0,0,0) scale(var(--s, 1)); }
  10%      { opacity: .9; }
  50%      { transform: translate3d(8px, -22px, 0) scale(var(--s, 1)); }
  90%      { opacity: .8; }
}

.rings {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.rings .ring__text {
  animation: rotate 110s linear infinite;
  transform-origin: 300px 300px;
  opacity: .7;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.flacon-wrap {
  --heat: 0;
  position: relative; z-index: 2;
  width: clamp(200px, 22vw, 300px);
  margin-top: 36px;
  filter:
    drop-shadow(0 32px 64px rgba(0, 0, 0, .7));
  transform: translateY(0);
  will-change: transform, filter;
}
.flacon-wrap::before { display: none; }
@keyframes halo {
  0%, 100% { opacity: .85; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ============================================================
   PHOTO COMPOSITE BOTTLE
   ============================================================ */

.bottle {
  position: relative;
  width: 100%;
  animation: bob 6s ease-in-out infinite 5.5s;
}

.bottle__base {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  /* Start at opacity:1 so the LCP element paints immediately. Entry
     animation now drives scale + translate + blur only — keeps the
     "settling" feel without gating LCP on opacity ramp-up. */
  transform: translateY(28px) scale(.92);
  animation: bottleEntry 1s cubic-bezier(.16, 1, .3, 1) .1s forwards;
}
@keyframes bottleEntry {
  0%   { transform: translateY(28px) scale(.92); filter: blur(4px); }
  100% { transform: translateY(0)    scale(1);   filter: blur(0); }
}

.bottle__lid {
  /* lid native size 497×203, base 635×820 → lid is 78.3% of base width.
     Tune --lid-top if it sits too high or too low. Raised to -22% so the
     lid rests above the chrome neck like in the Full bottle reference. */
  --lid-top: -22%;
  display: block;
  position: absolute;
  top: var(--lid-top);
  left: 50%;
  width: 78.3%;
  height: auto;
  /* identity translateY + rotate are listed explicitly so the transform
     list matches the .is-open target (3 functions). Browsers can only
     interpolate transforms cleanly when the function lists align — without
     these, the first lift "snapped" instead of easing */
  transform: translateX(-50%) translateY(0) rotate(0);
  transform-origin: 50% 100%;
  /* smooth ease for hover lift — no bounce */
  transition: transform .65s cubic-bezier(.22, .61, .36, 1);
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .55));
}
/* entry sequence — continuous deceleration all the way to contact */
.flacon-wrap:not(.has-entered) .bottle__lid {
  opacity: 0;
  animation: lidDrop 1.6s cubic-bezier(.215, .61, .355, 1) .35s forwards;
}
@keyframes lidDrop {
  0%   {
    opacity: 0;
    transform: translateX(-50%) translateY(-110px) rotate(-3.5deg);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35)) blur(1.5px);
  }
  12%  { opacity: 1; filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .45)) blur(.4px); }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(0);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .55)) blur(0);
  }
}
.flacon-wrap.is-open .bottle__lid {
  transform: translateX(-50%) translateY(-64px) rotate(-5deg);
}
@media (max-width: 600px) {
  .flacon-wrap.is-open .bottle__lid {
    transform: translateX(-50%) translateY(-44px) rotate(-5deg);
  }
}

/* effect overlays — between the base and the lid. Held invisible until
   the bottle has visibly entered, otherwise the shimmer + neck glow play
   on empty space during the entry animation. */
.bottle__fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  animation: fxFadeIn .6s ease-out 1.1s forwards;
}
@keyframes fxFadeIn {
  to { opacity: 1; }
}

.liquid-glow { display: none; }
@keyframes liquidGlow {
  0%, 100% { opacity: .35; transform: translate(-2%,  1%) scale(1); }
  35%      { opacity: .65; transform: translate( 3%, -2%) scale(1.06); }
  70%      { opacity: .5;  transform: translate(-1%,  2%) scale(.96); }
}

/* surface highlight — subtle shimmer at the liquid waterline */
.surface-shimmer {
  position: absolute;
  left: 22%;
  right: 22%;
  top: 30%;          /* approx waterline in the photo — tune if needed */
  height: 4px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 210, 190, .55),
    rgba(255, 255, 255, .35),
    rgba(255, 210, 190, .55),
    transparent);
  filter: blur(2.5px);
  opacity: .6;
  animation: shimmerPulse 5s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes shimmerPulse {
  0%, 100% { opacity: .35; transform: translateX(-3%); }
  50%      { opacity: .9;  transform: translateX(3%); }
}

/* bubbles — rise from the bottom of the liquid to the surface */
.bubble {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255, 220, 200, .85);
  filter: blur(.5px);
  bottom: 12%;
  opacity: 0;
  mix-blend-mode: screen;
}
.bubble-1 { left: 38%; width: 5px; height: 5px; animation: bubbleRise 7s ease-in-out infinite; }
.bubble-2 { left: 54%; width: 4px; height: 4px; animation: bubbleRise 9s ease-in-out 1.5s infinite; }
.bubble-3 { left: 62%; width: 3px; height: 3px; animation: bubbleRise 8s ease-in-out 3s infinite; }
.bubble-4 { left: 44%; width: 3px; height: 3px; animation: bubbleRise 10s ease-in-out 4.5s infinite; }
@keyframes bubbleRise {
  0%   { bottom: 12%; opacity: 0; }
  15%  { opacity: .85; }
  85%  { opacity: .65; }
  100% { bottom: 70%; opacity: 0; }
}

/* slow specular sweep across the glass */
.spec-sweep {
  position: absolute;
  top: 18%;
  bottom: 6%;
  width: 18%;
  left: -25%;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255, 255, 255, .2) 50%,
    transparent 70%);
  filter: blur(6px);
  animation: sweepRight 6s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes sweepRight {
  0%        { left: -25%; opacity: 0; }
  8%        { opacity: 1; }
  55%       { left: 105%; opacity: .6; }
  55.1%, 100% { left: 105%; opacity: 0; }
}

/* hit area — covers the entire bottle (incl. lifted lid above) */
.cap-hit {
  position: absolute;
  inset: -15% 0 0 0;
  z-index: 5;
}

/* breathing halo on the lid — visible by default, hides while lid is open */
.cap-glow {
  position: absolute;
  left: 50%;
  top: 6%;
  width: 38%;
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  background:
    radial-gradient(closest-side,
      rgba(255, 130, 95, .55) 0%,
      rgba(255, 100, 70, .42) 28%,
      rgba(255, 80, 55, .18) 55%,
      rgba(255, 80, 55, 0) 75%);
  filter: blur(3px);
  mix-blend-mode: screen;
  animation: capGlowBreathe 2.8s ease-in-out infinite;
  transition: opacity .5s ease;
}
.cap-glow.ready { opacity: 1; }
.flacon-wrap.is-open .cap-glow { opacity: 0; }

/* scent particles — emit upward when lid lifts */
.scent {
  position: absolute;
  left: 50%;
  top: -8%;
  width: 60%;
  height: 40%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
}
.scent__p {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 220, 200, .9)  0%,
    rgba(255, 180, 150, .55) 40%,
    rgba(255, 140, 110, 0)   75%);
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(calc(-50% + var(--x, 0px)), 0) scale(.3);
}
.flacon-wrap.is-open .scent__p {
  animation: scentRise 1.6s cubic-bezier(.2, .7, .3, 1) var(--d, 0ms) forwards;
}
@keyframes scentRise {
  0% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x, 0px)), 0) scale(.3);
    filter: blur(2px);
  }
  18% {
    opacity: .85;
    transform: translate(calc(-50% + var(--x, 0px) * 1.4), -28%) scale(calc(.9 * var(--s, 1)));
    filter: blur(2.5px);
  }
  60% {
    opacity: .55;
    transform: translate(calc(-50% + var(--x, 0px) * 2.2), -78%) scale(calc(1.4 * var(--s, 1)));
    filter: blur(4px);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x, 0px) * 3), -130%) scale(calc(2.2 * var(--s, 1)));
    filter: blur(8px);
  }
}
@keyframes capGlowBreathe {
  0%, 100% { transform: translateX(-50%) scale(1);    filter: blur(3px); }
  50%      { transform: translateX(-50%) scale(1.12); filter: blur(6px); }
}
@keyframes capGlowSpin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   RIGHT — TITLE COLUMN
   ============================================================ */

.hero__head {
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px 0;
  gap: 32px;
}

.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bone);
  align-self: flex-start;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.hero__kicker-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--rouge);
  box-shadow: 0 0 8px var(--rouge);
}

.hero__title {
  font-family: "Derose", var(--f-headline);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: .96;
  letter-spacing: -.015em;
  color: var(--bone);
}
.hero__title .line { display: block; padding-bottom: .18em; }
.hero__title .word {
  display: inline-flex;
  vertical-align: top;
}
.hero__title .char {
  display: inline-block;
  overflow: hidden;
  padding-bottom: .18em;
  margin-bottom: -.18em;
  line-height: inherit;
}
.hero__title .char__inner {
  display: inline-block;
  transform: translateY(115%) rotate(14deg) skewY(6deg);
  opacity: 0;
  filter: blur(6px);
  transition:
    transform 1.2s cubic-bezier(.18, .9, .25, 1),
    opacity   1.2s cubic-bezier(.18, .9, .25, 1),
    filter    1.2s cubic-bezier(.18, .9, .25, 1);
}
.hero__title .word.in .char__inner {
  transform: translateY(0) rotate(0) skewY(0);
  opacity: 1;
  filter: blur(0);
}
.hero__title .line--indent { padding-left: 0; }
.hero__title .line--shift { padding-left: 0; }

.hero__title .word--thin {
  font-weight: 400;
  font-style: normal;
  color: var(--bone-dim);
}
.hero__title .word--accent {
  font-family: "Romate Hood", var(--f-headline);
  font-weight: 400;
  font-style: normal;
  color: var(--rouge);
}
/* image-driven word — inline SVG with feFlood+feComposite recolors the
   nightfall.png glyphs to the exact --rouge value (no mask-image / filter
   approximation). reveals as a whole via .in */
.hero__title .word--img {
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
}
.hero__title .word__img {
  display: block;
  height: 1.7em;
  width: calc(1.7em * 315 / 108);
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(40%);
  transition:
    opacity 1.2s cubic-bezier(.18, .9, .25, 1),
    transform 1.2s cubic-bezier(.18, .9, .25, 1);
}
.hero__title .word--img.in .word__img {
  opacity: 1;
  transform: translateY(0);
}
.hero__lede {
  max-width: 38ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--bone-dim);
}
.hero__lede em { color: var(--bone); font-style: italic; }

.hero__cta { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

/* hero CTA — editorial sealed line, hairline frame, slow rouge sweep on hover */
.btn-primary {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  min-width: 280px;
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  overflow: hidden;
  isolation: isolate;
  transition: color .55s var(--ease-out), letter-spacing .55s var(--ease-out);
}
.btn-primary::before {
  content: "—";
  font-family: var(--f-headline);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  color: rgba(255, 110, 80, .9);
  transition: color .55s var(--ease-out), transform .55s var(--ease-out);
}
.btn-primary__bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(138, 13, 18, .9) 0%, rgba(255, 60, 42, .85) 100%);
  transform: translateX(-101%);
  transition: transform .7s var(--ease-out);
}
.btn-primary:hover {
  color: #fff;
  letter-spacing: .34em;
}
.btn-primary:hover::before { color: #fff; transform: translateX(-4px); }
.btn-primary:hover .btn-primary__bg { transform: translateX(0); }
.btn-primary__label { text-align: left; }
.btn-primary__icon {
  display: inline-flex;
  width: 22px; height: 12px;
  transition: transform .55s var(--ease-out);
}
.btn-primary:hover .btn-primary__icon { transform: translateX(6px); }
.btn-primary__icon svg { width: 100%; height: 100%; }

.hero__credits {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.credit { display: flex; flex-direction: column; gap: 4px; }
.credit span {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bone-dim);
}
.credit strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  font-variation-settings: "wdth" 100, "opsz" 24;
  color: var(--bone);
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}
.menu-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}
.menu-overlay__bg {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 7, .9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.menu-overlay.is-open .menu-overlay__bg { opacity: 1; }

.menu-overlay__panel {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gutter);
}
.menu-overlay__close {
  position: absolute;
  top: 28px;
  right: var(--gutter);
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone);
  background: rgba(244, 241, 236, .03);
  transition: border-color .3s, background .3s, color .3s, transform .4s;
}
.menu-overlay__close:hover {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
  transform: rotate(90deg);
}
.menu-overlay__close svg { width: 14px; height: 14px; }

.menu-overlay__inner {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .65s var(--ease-out), opacity .65s var(--ease-out);
}
.menu-overlay.is-open .menu-overlay__inner {
  transform: translateY(0);
  opacity: 1;
  transition-delay: .15s;
}

.menu-overlay__kicker {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 28px;
}

/* primary nav — editorial italic list */
.menu-overlay__nav { padding-top: 6px; }
.menu-overlay__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-overlay__links a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 72;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.015em;
  color: var(--bone);
  text-decoration: none;
  transition: color .35s, padding-left .45s var(--ease-out);
}
.menu-overlay__links a em {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--bone-dim);
  min-width: 24px;
  transition: color .35s;
}
.menu-overlay__links a:hover {
  color: var(--rouge-2);
  padding-left: 14px;
}
.menu-overlay__links a:hover em { color: var(--rouge); }

/* search column */
.menu-overlay__field { position: relative; }
.menu-overlay__field input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  font-variation-settings: "wdth" 90, "opsz" 48;
  letter-spacing: -.025em;
  color: var(--bone);
  padding: 16px 0;
  caret-color: var(--rouge);
}
.menu-overlay__field input::placeholder { color: var(--bone-dim); }
.menu-overlay__field-line {
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.menu-overlay__field-line::after {
  content: "";
  position: absolute; inset: 0 auto 0 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, var(--rouge), transparent);
  transform: translateX(-100%);
  animation: scanLine 2.6s ease-in-out infinite;
}
@keyframes scanLine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(360%); }
  100% { transform: translateX(360%); }
}

.menu-overlay__suggest { margin-top: 28px; }
.menu-overlay__suggest-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 14px;
}
.menu-overlay__suggest ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.menu-overlay__suggest a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 12.5px;
  color: var(--bone);
  text-decoration: none;
  transition: border-color .3s, background .3s, color .3s;
}
.menu-overlay__suggest a:hover {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
}

/* mobile — stack the two columns */
@media (max-width: 760px) {
  .menu-overlay__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .menu-overlay__links a { font-size: clamp(32px, 9vw, 44px); }
}

/* ============================================================
   BAG DRAWER
   ============================================================ */

.bag-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}
.bag-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.bag-drawer__bg {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 7, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.bag-drawer.is-open .bag-drawer__bg { opacity: 1; }

.bag-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100%);
  background: linear-gradient(180deg, #141214 0%, #0d0c0d 100%);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .55s var(--ease-out);
  box-shadow: -40px 0 80px rgba(0, 0, 0, .5);
}
.bag-drawer.is-open .bag-drawer__panel { transform: translateX(0); }

.bag-drawer__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.bag-drawer__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  font-variation-settings: "wdth" 95, "opsz" 32;
  color: var(--bone);
  flex: 1;
}
.bag-drawer__count {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--rouge);
}
.bag-drawer__close {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone);
  transition: border-color .3s, background .3s, color .3s, transform .4s;
}
.bag-drawer__close:hover {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
  transform: rotate(90deg);
}
.bag-drawer__close svg { width: 12px; height: 12px; }

.bag-drawer__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px var(--gutter);
  overflow-y: auto;
}
/* empty state shows by default; hidden when bag has items */
.bag-drawer.has-items .bag-empty { display: none; }
.bag-filled { display: none; width: 100%; align-self: stretch; }
.bag-drawer.has-items .bag-filled { display: block; }
.bag-drawer.has-items .bag-drawer__body {
  align-items: flex-start;
  padding: 24px var(--gutter) 32px;
}

.bag-empty {
  text-align: center;
  max-width: 320px;
}
.bag-empty__mark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 56px;
  color: var(--rouge);
  line-height: 0;
  margin-bottom: 28px;
  letter-spacing: -.05em;
}
.bag-empty__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 26px;
  font-variation-settings: "wdth" 95, "opsz" 32;
  color: var(--bone);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.bag-empty__sub {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.55;
  margin-bottom: 30px;
}
.bag-empty__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--bone);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 13.5px;
  color: var(--bone);
  transition: background .3s, color .3s;
}
.bag-empty__cta em {
  font-style: normal;
  transition: transform .3s var(--ease-out);
}
.bag-empty__cta:hover { background: var(--bone); color: var(--ink); }
.bag-empty__cta:hover em { transform: translateX(4px); }

/* ---- filled bag ---------------------------------------------------- */
.bag-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bag-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.bag-item:first-child { padding-top: 8px; }
.bag-item__visual {
  width: 130px;
  height: 170px;
  background: rgba(244, 241, 236, .03);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bag-item__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .5));
}
.bag-item__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.bag-item__edition {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--bone);
  line-height: 1.2;
}
.bag-item__spec {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
}
/* bottom row: quantity stepper + remove sit side-by-side */
.bag-item__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.bag-item__qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
}
.bag-item__step {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 14px;
  line-height: 1;
  color: var(--bone);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.bag-item__step:hover { background: var(--bone); color: var(--ink); }
.bag-item__qty-num {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  color: var(--bone);
  display: grid;
  place-items: center;
  min-width: 36px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.bag-item__remove {
  padding: 0;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .42);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.bag-item__remove:hover { color: var(--rouge-2); border-color: var(--rouge-2); }
.bag-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  white-space: nowrap;
}
.bag-item__price-total {
  font-family: var(--f-headline);
  font-style: italic;
  font-size: 18px;
  color: var(--bone);
  line-height: 1;
}
.bag-item__price-multi {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .5);
}

.bag-totals {
  margin: 24px 0 0;
  padding-top: 4px;
}
.bag-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
}
.bag-totals__row dt {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
}
.bag-totals__row dd {
  margin: 0;
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(244, 241, 236, .8);
}
.bag-totals__row--total {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.bag-totals__row--total dt { color: var(--bone); }
.bag-totals__row--total dd {
  font-family: var(--f-headline);
  font-style: italic;
  font-size: 24px;
  color: var(--bone);
}

/* order-now CTA — sealed-letter style, matches the Acquire CTA */
.bag-order {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 28px;
  padding: 20px 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--bone);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .55s var(--ease-out), letter-spacing .55s var(--ease-out);
}
.bag-order::before {
  content: "—";
  font-family: var(--f-headline);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  color: rgba(255, 110, 80, .9);
  transition: color .55s var(--ease-out), transform .55s var(--ease-out);
}
.bag-order::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(138, 13, 18, .9) 0%, rgba(255, 60, 42, .85) 100%);
  transform: translateX(-101%);
  transition: transform .7s var(--ease-out);
}
.bag-order:hover {
  color: #fff;
  letter-spacing: .36em;
}
.bag-order:hover::before {
  color: #fff;
  transform: translateX(-4px);
}
.bag-order:hover::after { transform: translateX(0); }
.bag-order__label { text-align: left; }
.bag-order__icon {
  display: inline-flex;
  transition: transform .55s var(--ease-out);
}
.bag-order:hover .bag-order__icon { transform: translateX(6px); }
.bag-order__icon svg { width: 22px; height: auto; }

.bag-filled__note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--f-mono);
  font-size: 8.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .42);
  line-height: 1.7;
  text-align: center;
}

.bag-drawer__footer {
  padding: 18px var(--gutter);
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-align: center;
}

/* prevent background scroll while overlays are open */
body.no-scroll { overflow: hidden; }

/* scroll cue — bottom of hero, telemetry-style */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 6;
  text-decoration: none;
  color: var(--bone-dim);
  transition: color .3s;
  opacity: .55;
}
.scroll-cue:hover { color: var(--bone); opacity: 1; }
.scroll-cue__line {
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom,
    rgba(244, 241, 236, .3) 0%,
    rgba(244, 241, 236, 0) 100%);
}
.scroll-cue__arrow {
  width: 8px;
  height: 12px;
  color: rgba(244, 241, 236, .45);
  animation: scrollCueDrift 2.6s ease-in-out infinite;
}
@keyframes scrollCueDrift {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50%      { transform: translateY(4px); opacity: 1; }
}
@media (max-width: 1100px) {
  .scroll-cue { bottom: 56px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero__meta {
    grid-column: 1 / -1;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .hero__meta .meta-block { flex: 1; }
}
@media (max-width: 760px) {
  .util {
    grid-template-columns: 1fr;
    padding: 12px var(--gutter);
    font-size: 10px;
    letter-spacing: .08em;
  }
  .util__ticker { display: none; }
  .util__brand { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav {
    padding: 20px var(--gutter);
  }
  .nav__cta { gap: 6px; }
  .btn-menu__label { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 40px; }
  .hero__meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero__meta .meta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .stage { min-height: 540px; }
  .hero__title { font-size: clamp(80px, 17vw, 132px); }
  .hero__title .word__img {
    height: 1.25em;
    width: calc(1.25em * 315 / 108);
  }
  .hero__lede { font-size: 17px; }
  .coord {
    font-size: 7px;
    letter-spacing: .12em;
    line-height: 1.4;
    padding: 8px 10px;
  }
  .coord b { letter-spacing: .08em; }
  /* on mobile the .frame SVG aspect-fits and pushes its corner brackets
     inward, so render brackets directly on .coord instead — they sit
     exactly where the text sits */
  .stage > .frame { display: none; }
  .coord::before {
    content: "";
    position: absolute;
    width: 14px; height: 14px;
    border: 1px solid var(--bone);
    opacity: .8;
    pointer-events: none;
  }
  .coord--tr::before { top: 0; right: 0; border-left: 0; border-bottom: 0; }
  .coord--tl::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
  .coord--br::before { bottom: 0; right: 0; border-left: 0; border-top: 0; }
  .coord--bl::before { bottom: 0; left: 0; border-right: 0; border-top: 0; }
}

/* touch devices only — restore OS cursor, hide custom one */
@media (pointer: coarse) {
  *, *::before, *::after { cursor: auto !important; }
  button, a { cursor: pointer !important; }
}

/* respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  /* hold these decorative layers in their resting state instead of mid-flight */
  .rings .ring__text,
  .particles span,
  .bubble,
  .liquid-glow,
  .surface-shimmer,
  .spec-sweep,
  .cap-glow,
  .cap-glow::after,
  .stage::before,
  .flacon-wrap::before,
  .bottle,
  .flacon,
  .dot {
    animation: none !important;
  }
  .scroll-cue { animation: none !important; }
  /* skip the entry sequence — start in resting state */
  .bottle__base, .bottle__lid,
  .flacon-wrap:not(.has-entered) .bottle__lid {
    animation: none !important;
    opacity: 1 !important;
  }
  .bottle__base { transform: none !important; }
  .bottle__lid { transform: translateX(-50%) !important; }
}

/* ============================================================
   SECTION II — THE COMPOSITION
   Vertical score · alternating ingredient marks
   ============================================================ */

.comp {
  position: relative;
  padding: clamp(96px, 11vw, 160px) var(--gutter) clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(70% 40% at 50% 0%, rgba(255, 60, 42, .045) 0%, transparent 65%),
    radial-gradient(60% 50% at 50% 100%, rgba(255, 110, 80, .03) 0%, transparent 65%),
    var(--ink);
  color: var(--bone);
  overflow: hidden;
}

/* atmospheric bottle plate — ghost-blurred isolated bottle, adds vertical
   warmth without reading literally as "a bottle" */
.comp__plate {
  position: absolute;
  left: 50%;
  top: 42%;
  width: clamp(340px, 42vw, 540px);
  aspect-ratio: 635 / 820;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(45% 50% at 50% 45%, rgba(255, 80, 55, .12), transparent 70%),
    url("bottle_base.webp") center / contain no-repeat;
  filter: blur(80px) saturate(.55) brightness(1.05);
  opacity: .28;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  animation: plateDrift 14s ease-in-out infinite;
}
@keyframes plateDrift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -52%) scale(1.04); }
}

/* drifting particles — same pattern as hero stage */
.comp__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.comp__atmos span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--bone);
  opacity: 0;
  transform: scale(var(--s, 1));
  animation: float 9s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  filter: blur(.4px);
}

/* ============================================================
   COMPACT HEADER
   ============================================================ */
.comp__head {
  position: relative;
  max-width: 1240px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  text-align: left;
  z-index: 1;
}
.comp__head-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.comp__head-corner--tl { top: -16px; left: 0;  border-top: 1px solid var(--bone); border-left:  1px solid var(--bone); }
.comp__head-corner--tr { top: -16px; right: 0; border-top: 1px solid var(--bone); border-right: 1px solid var(--bone); }

.comp__chapter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.comp__chapter-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--line);
  font-family: var(--f-headline);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--rouge);
  text-transform: none;
}

.comp__title {
  font-family: var(--f-headline);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--bone);
}
.comp__title-tick { color: var(--rouge); font-style: italic; padding: 0 .02em; }
.comp__title-em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: .42em;
  letter-spacing: 0;
  color: var(--bone-dim);
  margin-top: 14px;
  font-variation-settings: "opsz" 72;
}

/* ============================================================
   FORMULA SHEET — three movements as parallel columns
   ============================================================ */
.formula {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 36px);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 6vw, 88px) clamp(20px, 2vw, 32px) clamp(80px, 8vw, 110px);
  z-index: 1;
}

/* coordinate corners — echo hero stage */
.formula__coord {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .45);
  line-height: 1.5;
  pointer-events: none;
  z-index: 4;
}
.formula__coord b {
  color: var(--bone);
  font-weight: 400;
  letter-spacing: .25em;
}
.formula__coord--tl { top: 18px; left: 18px;  text-align: left;  }
.formula__coord--tr { top: 18px; right: 18px; text-align: right; }
.formula__coord--bl { bottom: 18px; left: 18px;  text-align: left;  }
.formula__coord--br { bottom: 18px; right: 18px; text-align: right; }

/* crosshair frame — corner ticks */
.formula__frame {
  position: absolute;
  inset: 8px 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  color: var(--bone);
  opacity: .42;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   MOVEMENT — column
   ============================================================ */
.movement {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2vw, 32px);
  z-index: 3;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: calc(var(--col, 0) * 120ms);
  --accent: var(--rouge);
  --accent-soft: rgba(255, 130, 95, .22);
}
.movement.is-in-view { opacity: 1; transform: translateY(0); }
.movement--heart { --accent: var(--bone); --accent-soft: rgba(244, 241, 236, .14); }
.movement--base  { --accent: rgba(255, 190, 150, .95); --accent-soft: rgba(255, 190, 150, .18); }

/* movement header — Roman numeral with rotating seal halo */
.movement__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: clamp(14px, 1.5vw, 22px) 0 clamp(20px, 2vw, 32px);
  width: 100%;
}

.movement__halo {
  position: absolute;
  top: clamp(30px, 3.2vw, 48px); left: 50%;
  width: 220px; height: 220px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.5);
  opacity: 0;
  background: radial-gradient(closest-side,
    var(--accent-soft) 0%,
    transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  mix-blend-mode: screen;
  transition: transform 1.4s var(--ease-out) 200ms, opacity 1.4s var(--ease-out) 200ms;
}
.movement.is-in-view .movement__halo { transform: translate(-50%, -50%) scale(1); opacity: 1; }

/* rotating ring text seal behind Roman numeral — pinned to the Roman's
   vertical centre (not the whole header's), so name + time pill can sit
   cleanly below the rotating text instead of overlapping it */
.movement__seal {
  position: absolute;
  top: clamp(30px, 3.2vw, 48px); left: 50%;
  width: clamp(140px, 13vw, 180px);
  height: clamp(140px, 13vw, 180px);
  transform: translate(-50%, -50%);
  color: var(--accent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out) 400ms;
}
.movement.is-in-view .movement__seal { opacity: 1; }
.movement__seal text {
  animation: rotate 90s linear infinite;
  transform-origin: 70px 70px;
}
.movement--heart .movement__seal text { animation-direction: reverse; animation-duration: 110s; }

.movement__roman {
  position: relative;
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(54px, 6vw, 84px);
  line-height: .85;
  letter-spacing: -.01em;
  color: var(--accent);
  z-index: 1;
  text-shadow: 0 0 30px var(--accent-soft);
}
.movement__name {
  position: relative;
  font-family: var(--f-headline);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: -.005em;
  color: var(--bone);
  z-index: 1;
  /* clear the rotating seal — name + time pill sit just below the ring */
  margin-top: clamp(58px, 5.5vw, 72px);
}
.movement__time {
  position: relative;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
  background: var(--ink);
  padding: 3px 10px;
  border: 1px solid var(--line);
  z-index: 1;
}

/* ============================================================
   NOTE — compact ingredient row
   ============================================================ */
.notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 360px;
}
.note {
  position: relative;
  display: grid;
  grid-template-columns: 18px 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  background: rgba(244, 241, 236, .015);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .7s var(--ease-out),
    transform .7s var(--ease-out),
    border-color .35s ease,
    background .35s ease;
  transition-delay: calc(var(--col, 0) * 120ms + var(--i, 1) * 80ms + 200ms);
  overflow: hidden;
}
.movement.is-in-view .note { opacity: 1; transform: translateY(0); }

/* sweeping highlight on hover — like spec-sweep on the bottle */
.note::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    var(--accent-soft) 50%,
    transparent 70%);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity .4s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}
.note:hover {
  border-color: var(--accent);
  background: rgba(244, 241, 236, .04);
}
.note:hover::before {
  opacity: 1;
  animation: noteSweep 1.2s var(--ease-out);
}
@keyframes noteSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.note__num {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 18;
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(244, 241, 236, .42);
  text-align: right;
}
.note__icon {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(closest-side, rgba(244, 241, 236, .055), rgba(244, 241, 236, .015) 70%),
    rgba(244, 241, 236, .02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform .45s var(--ease-out), border-color .35s ease, background .35s ease;
  overflow: hidden;
  flex-shrink: 0;
}
/* paper-grain texture — same SVG-noise trick as the global .grain layer
   but scoped to the icon disc so each one reads like a specimen card stamp */
.note__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='80' height='80' filter='url(%23n)'/></svg>");
  opacity: .22;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.note__icon::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 78%, var(--accent) 92%, transparent 100%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}
.note:hover .note__icon { transform: scale(1.08); border-color: var(--accent); }
.note:hover .note__icon::before { opacity: .6; animation: iconSpin 4s linear infinite; }
@keyframes iconSpin { to { transform: rotate(360deg); } }
.note__icon svg {
  width: 64%; height: 64%;
  position: relative;
  z-index: 1;
}

.note__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.note__name {
  font-family: var(--f-headline);
  font-weight: 400;
  font-variation-settings: "opsz" 24;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.15;
  letter-spacing: -.005em;
  color: var(--bone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .25s ease;
}
.note:hover .note__name { color: var(--accent); }
.note__meta {
  font-family: var(--f-mono);
  font-size: 8.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.note__int {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 56px;
}
.note__bar {
  position: relative;
  display: block;
  width: 56px;
  height: 1px;
  background: rgba(244, 241, 236, .1);
  overflow: hidden;
}
.note__bar > span {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--accent);
  transition: inset 1.2s var(--ease-out);
  transition-delay: calc(var(--col, 0) * 120ms + var(--i, 1) * 80ms + 600ms);
  box-shadow: 0 0 6px var(--accent-soft);
}
.movement.is-in-view .note .note__bar > span {
  inset: 0 calc(100% - var(--pct, 0%)) 0 0;
}
.note__int b {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--bone);
}

/* ============================================================
   FORMULA RESPONSIVE — collapse to stack
   ============================================================ */
@media (max-width: 980px) {
  .formula { grid-template-columns: 1fr; gap: clamp(36px, 6vw, 56px); }
  .formula__rail { display: none; }
  .formula__coord { font-size: 8.5px; }
  .notes { max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   CREDIT BAND
   ============================================================ */
.credit {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  max-width: 1100px;
  margin: clamp(72px, 8vw, 120px) auto 0;
  padding: clamp(32px, 3.5vw, 56px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.credit.is-in-view { opacity: 1; }

.credit__seal {
  position: relative;
  width: 120px;
  aspect-ratio: 1 / 1;
}
.credit__seal .seal__ring { width: 100%; height: 100%; display: block; }
.credit__seal .seal__ring text {
  animation: rotate 90s linear infinite;
  transform-origin: 100px 100px;
}
.credit__seal .seal__core {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.credit__seal .seal__mono {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--bone);
}

.credit__perfumer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.credit__label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .45);
}
.credit__name {
  font-family: var(--f-headline);
  font-weight: 400;
  font-variation-settings: "opsz" 48;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--bone);
}
.credit__perfumer .sig {
  display: block;
  align-self: flex-start;          /* stop flex-column from stretching the img */
  margin-top: 6px;
  height: clamp(46px, 3.8vw, 64px);
  width: auto;
  max-width: 360px;
  /* PNG ships in dark ink; brightness(0) flattens to black, invert(1)
     flips to white. Then drop opacity slightly so it sits like ink, not paint. */
  filter: brightness(0) invert(1);
  opacity: .9;
  /* writing-on reveal — left-to-right clip mimics a pen tracing the name */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.4s cubic-bezier(.16, 1, .3, 1);
}
.credit.is-in-view .sig {
  clip-path: inset(0 0% 0 0);
}

.credit__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.credit__meta > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.credit__meta dt { color: rgba(244, 241, 236, .45); min-width: 70px; }
.credit__meta dd { color: var(--bone); margin: 0; }

/* ============================================================
   FOOT — single-line disclosure
   ============================================================ */
.comp__foot {
  max-width: 1100px;
  margin: clamp(20px, 2vw, 32px) auto 0;
  font-family: var(--f-body);
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(244, 241, 236, .42);
  text-align: left;
  position: relative;
  z-index: 1;
}
.comp__foot span {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
  margin-right: 10px;
}
.comp__foot a {
  color: var(--bone);
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  transition: color .25s;
}
.comp__foot a:hover { color: var(--rouge-2); }

/* ============================================================
   SECTION III — THE INTERLUDE (cinematic full-bleed)
   Botanical macro footage on the left, type on the right.
   The video does the atmosphere; the overlay holds type contrast.
   ============================================================ */
.cinema {
  position: relative;
  min-height: 100vh;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: #050505;
  color: var(--bone);
  border-top: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  isolation: isolate;
}

/* the film — full-bleed, sits behind everything */
.cinema__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center; /* keep botanical visible as window scales */
  z-index: 0;
  pointer-events: none;
}

/* darkening overlay — gradient pulls black across the right half so type
   reads cleanly against the natural negative space in the footage; top
   and bottom fade to black so the video melts into the surrounding dark
   sections rather than slamming in with a hard edge */
.cinema__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right,
      transparent 0%,
      transparent 38%,
      rgba(0, 0, 0, .55) 60%,
      rgba(0, 0, 0, .78) 100%),
    /* deep top fade — eases the join with the composition section above */
    linear-gradient(to bottom,
      #050505 0%,
      rgba(0, 0, 0, .85) 6%,
      rgba(0, 0, 0, .35) 14%,
      transparent 28%,
      transparent 72%,
      rgba(0, 0, 0, .35) 86%,
      rgba(0, 0, 0, .85) 94%,
      #050505 100%);
}

/* content column — sits in the right half of the section, stacked */
.cinema__content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: min(560px, 50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  text-align: right;
  gap: clamp(40px, 6vw, 80px);
}

/* hairline rules + chapter marker ------------------------------------- */
.cinema__head,
.cinema__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
}
.cinema__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(244, 241, 236, .3) 50%,
    transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s var(--ease-out);
}
.cinema__rule--short { flex: 0 0 60px; }
/* the right-side rule of each row draws from the right inward, mirrored */
.cinema__head .cinema__rule:last-child,
.cinema__foot .cinema__rule:last-child {
  transform-origin: right center;
}
.cinema__head.is-in-view .cinema__rule,
.cinema__foot.is-in-view .cinema__rule {
  transform: scaleX(1);
}

.cinema__chapter {
  display: flex;
  align-items: baseline;
  gap: 14px;
  white-space: nowrap;
}
.cinema__chapter-kicker {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .6);
}
.cinema__chapter-num {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 60;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--bone);
  line-height: 1;
}

/* the editorial line — three rows reveal sequentially on scroll ------- */
.cinema__line {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 72;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--bone);
  text-align: right;
  text-shadow: 0 0 60px rgba(0, 0, 0, .9);
}
.cinema__line-row {
  display: block;
}
.cinema__line-row--accent {
  color: rgba(255, 110, 80, .96);
  text-shadow: 0 0 50px rgba(255, 60, 42, .35);
}

/* bottom signature ---------------------------------------------------- */
.cinema__sig {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
  white-space: nowrap;
}

/* ============================================================
   SECTION IV — ACQUIRE
   The closing chapter. Centred, restrained, sealed.
   ============================================================ */
.acquire {
  position: relative;
  padding: clamp(96px, 11vw, 160px) var(--gutter) clamp(80px, 9vw, 120px);
  background: #050505;
  color: var(--bone);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* warm radial pulse focuses attention on the seal */
.acquire__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.acquire__atmos-warmth {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(420px, 56vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(closest-side,
    rgba(255, 60, 42, .12) 0%,
    rgba(255, 60, 42, .04) 40%,
    transparent 75%);
  filter: blur(40px);
  mix-blend-mode: screen;
  animation: acquireWarm 10s ease-in-out infinite;
}
@keyframes acquireWarm {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: .85; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1;   }
}

/* chapter marker --------------------------------------------------- */
.acquire__chapter {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.acquire__chapter-kicker {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .6);
}
.acquire__chapter-num {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  color: rgba(255, 110, 80, .9);
  line-height: 1;
}

/* editorial closing title ----------------------------------------- */
.acquire__title {
  position: relative;
  z-index: 2;
  margin: 0 0 clamp(48px, 6vw, 80px);
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 72;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.06;
  letter-spacing: -.02em;
  max-width: min(900px, 92%);
  text-shadow: 0 0 60px rgba(0, 0, 0, .9);
}
.acquire__title-row {
  display: block;
}
.acquire__title-row--accent {
  color: rgba(255, 110, 80, .96);
  text-shadow: 0 0 40px rgba(255, 60, 42, .25);
}

/* the wax seal ----------------------------------------------------- */
.acquire__seal {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(48px, 6vw, 76px);
  opacity: 0;
  transform: translateY(20px) scale(.97);
  transition:
    opacity 1.4s var(--ease-out) .35s,
    transform 1.4s var(--ease-out) .35s;
}
.acquire__seal.is-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.acquire__seal-svg {
  width: clamp(180px, 18vw, 240px);
  height: auto;
  color: var(--bone);
  filter: drop-shadow(0 8px 24px rgba(255, 60, 42, .25));
}
.acquire__seal-ring {
  animation: acquireRingRot 80s linear infinite;
  transform-origin: 120px 120px;
}
@keyframes acquireRingRot {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
.acquire__seal-foot {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .5);
}

/* the document — spec, price, CTA, delivery ----------------------- */
.acquire__doc {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 36px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-out) .55s, transform 1.2s var(--ease-out) .55s;
}
.acquire__doc.is-in-view { opacity: 1; transform: translateY(0); }

/* spec line — single mono line of metadata; rules draw across on reveal */
.acquire__spec {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .65);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  width: 100%;
  justify-content: center;
  background-image:
    linear-gradient(to right, var(--line), var(--line)),
    linear-gradient(to right, var(--line), var(--line));
  background-size: 0% 1px, 0% 1px;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 1.1s var(--ease-out) .1s;
}
.acquire__doc.is-in-view .acquire__spec {
  background-size: 100% 1px, 100% 1px;
}
.acquire__spec i {
  font-style: normal;
  color: rgba(255, 110, 80, .75);
}

/* price block — ceremonial, framed, layered */
.acquire__price {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 8px 0 12px;
}
.acquire__price-kicker {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
}

/* the number sits between two hairline brackets so it reads as a sealed
   line in a document, not a floating price tag */
.acquire__price-amount {
  position: relative;
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 72;
  font-size: clamp(64px, 7.2vw, 96px);
  line-height: 1;
  color: var(--bone);
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 0 clamp(36px, 5vw, 72px);
  text-shadow: 0 0 60px rgba(255, 60, 42, .25);
}
.acquire__price-amount::before,
.acquire__price-amount::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(28px, 4vw, 56px);
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(244, 241, 236, .55) 50%,
    rgba(244, 241, 236, .15) 100%);
  transition: transform 1s var(--ease-out) .25s;
}
.acquire__price-amount::before {
  right: 100%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
}
.acquire__price-amount::after {
  left: 100%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}
.acquire__doc.is-in-view .acquire__price-amount::before {
  transform: translateY(-50%) scaleX(1);
}
.acquire__doc.is-in-view .acquire__price-amount::after {
  /* mirror so the gradient fades outward away from the number */
  transform: translateY(-50%) scaleX(-1);
}
.acquire__price-amount em {
  font-style: italic;
  font-weight: 300;
  font-size: .5em;
  color: rgba(255, 110, 80, .85);
  align-self: center;
}

/* subtle warm halo behind the number — pulls focus, ceremonial */
.acquire__price::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 26vw, 340px);
  aspect-ratio: 1;
  background: radial-gradient(closest-side,
    rgba(255, 60, 42, .12) 0%,
    rgba(255, 60, 42, .04) 45%,
    transparent 75%);
  filter: blur(20px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

/* the spelled-out line — like the legal line on a cheque */
.acquire__price-words {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .5);
}
.acquire__price-words em {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: -.005em;
  text-transform: none;
  color: rgba(244, 241, 236, .85);
  margin-right: 4px;
}

/* the CTA — sealed letter, not a button. Full-width hairline bar that
   echoes the spec line above; hover fills with a slow rouge sweep */
.acquire__cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  background-image:
    linear-gradient(to right, var(--bone), var(--bone)),
    linear-gradient(to right, var(--bone), var(--bone));
  background-size: 0% 1px, 0% 1px;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
  transition:
    color .55s var(--ease-out),
    letter-spacing .55s var(--ease-out),
    background-size 1.1s var(--ease-out) .35s;
  cursor: pointer;
}
.acquire__doc.is-in-view .acquire__cta {
  background-size: 100% 1px, 100% 1px;
}
/* leading mark — small italic serif "→" so the bar reads like a sealed line */
.acquire__cta::before {
  content: "—";
  font-family: var(--f-headline);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  color: rgba(255, 110, 80, .9);
  transition: color .55s var(--ease-out), transform .55s var(--ease-out);
}
.acquire__cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(138, 13, 18, .9) 0%, rgba(255, 60, 42, .85) 100%);
  z-index: -1;
  transform: translateX(-101%);
  transition: transform .7s var(--ease-out);
}
.acquire__cta:hover {
  color: #fff;
  letter-spacing: .36em;
}
.acquire__cta:hover::before {
  color: #fff;
  transform: translateX(-4px);
}
.acquire__cta:hover .acquire__cta-bg { transform: translateX(0); }
.acquire__cta-label { position: relative; z-index: 1; text-align: left; }
.acquire__cta-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  transition: transform .55s var(--ease-out);
}
.acquire__cta:hover .acquire__cta-icon { transform: translateX(6px); }
.acquire__cta-icon svg { width: 22px; height: auto; }

/* delivery footnote */
.acquire__delivery {
  font-family: var(--f-mono);
  font-size: 8.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .42);
  line-height: 1.8;
  margin: 0;
  max-width: 460px;
}

/* ============================================================
   ACQUIRE — WAX SEAL BREAK + RADIAL REVEAL
   The chapter loads with a clickable wax seal centred over its
   content. The seal pulses on entry; clicking it (or waiting
   ~1.5s after scroll-in) breaks it open, and the chapter content
   beneath irises out from the centre into full view.
   ============================================================ */

/* the break-line — horizontal hairline running across the section's
   vertical centre. The seal sits on top of it. On break, the line
   snaps in two and each half retracts toward its outer edge. */
.acquire__breakline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 4;
}
.acquire__breakline::before,
.acquire__breakline::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  box-shadow: 0 0 8px rgba(255, 110, 80, .4);
  transition: transform .55s cubic-bezier(.45, 0, .15, 1),
              opacity .9s var(--ease-out);
  will-change: transform, opacity;
}
.acquire__breakline::before {
  left: 0;
  transform-origin: left center;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(244, 241, 236, .25) 30%,
    rgba(244, 241, 236, .55) 70%,
    rgba(255, 110, 80, .8) 100%);
}
.acquire__breakline::after {
  right: 0;
  transform-origin: right center;
  background: linear-gradient(to left,
    transparent 0%,
    rgba(244, 241, 236, .25) 30%,
    rgba(244, 241, 236, .55) 70%,
    rgba(255, 110, 80, .8) 100%);
}
/* on break: each half collapses toward its outer edge — the line "snaps" */
.acquire.is-broken .acquire__breakline::before,
.acquire.is-broken .acquire__breakline::after {
  transform: scaleX(0);
  opacity: 0;
}

/* the seal cover — sits over the section centre, on top of content */
.acquire__breakseal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition:
    opacity .9s cubic-bezier(.45, 0, .15, 1),
    transform .9s cubic-bezier(.45, 0, .15, 1),
    filter .9s cubic-bezier(.45, 0, .15, 1);
  will-change: opacity, transform, filter;
}
.acquire__breakseal-img {
  display: block;
  width: clamp(140px, 14vw, 190px);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(138, 13, 18, .55));
  pointer-events: none;
}

/* breathing halo behind the seal — pulses with it */
.acquire__breakseal-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  aspect-ratio: 1;
  background: radial-gradient(closest-side,
    rgba(255, 60, 42, .35) 0%,
    rgba(255, 60, 42, .12) 35%,
    transparent 70%);
  filter: blur(20px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

/* hint caption beneath the seal — static, always visible */
.acquire__breakseal-hint {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .6);
  white-space: nowrap;
}

/* state: section in view → only the seal img pulses (so the hint
   beneath it stays still) and the halo behind breathes with it */
.acquire.is-pulsing .acquire__breakseal-img {
  animation: breakseal-pulse 1.6s ease-in-out infinite;
}
.acquire.is-pulsing .acquire__breakseal-halo {
  animation: breakseal-halo 1.6s ease-in-out infinite;
}
@keyframes breakseal-pulse {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.04); }
}
@keyframes breakseal-halo {
  0%, 100% { opacity: .8; transform: translate(-50%, -50%) scale(1);    }
  50%      { opacity: 1;  transform: translate(-50%, -50%) scale(1.12); }
}
/* state: seal broken → fade + blur, no scale, just dissolves */
.acquire.is-broken .acquire__breakseal {
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
}
.acquire.is-broken .acquire__breakseal-img,
.acquire.is-broken .acquire__breakseal-halo {
  animation: none !important;
}

/* the chapter content — clipped to a point at centre, irises out */
.acquire__reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1.4s cubic-bezier(.45, 0, .15, 1);
  will-change: clip-path;
}
.acquire.is-revealed .acquire__reveal {
  clip-path: circle(140% at 50% 50%);
}

/* respect reduced motion — show content immediately, skip the show */
@media (prefers-reduced-motion: reduce) {
  .acquire__breakseal,
  .acquire__breakline { display: none !important; }
  .acquire__reveal { clip-path: none !important; transition: none !important; }
}

/* ============================================================
   FOOTER — editorial colophon
   ============================================================ */
.footer {
  position: relative;
  background: #050505;
  color: var(--bone);
  border-top: 1px solid var(--line);
  padding: clamp(64px, 7vw, 96px) var(--gutter) clamp(28px, 3vw, 40px);
  isolation: isolate;
  overflow: hidden;
}

/* very subtle warmth at the bottom — final glow */
.footer__atmos {
  position: absolute;
  inset: auto 0 -40% 0;
  height: 80%;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(255, 60, 42, .06) 0%,
    transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* colophon grid -------------------------------------------------- */
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr 1.4fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

/* maison wordmark */
.footer__mark { display: flex; flex-direction: column; gap: 6px; }
.footer__mark-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 40px);
  font-variation-settings: "wdth" 90, "opsz" 32;
  letter-spacing: -.015em;
  color: var(--bone);
  line-height: 1;
}
.footer__mark-line {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--bone);
  margin-top: 4px;
}
.footer__mark-est {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  /* opacity .72 ≈ #b1aea9 on #050505 footer bg → ~9:1 contrast (AA pass) */
  color: rgba(244, 241, 236, .72);
  margin-top: 6px;
}

/* generic column */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(244, 241, 236, .75);
}
.footer__col-kicker {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
  margin-bottom: 4px;
}
.footer__col p { margin: 0; }
.footer__col a {
  color: var(--bone);
  text-decoration: none;
  transition: color .3s;
}
.footer__col a:hover { color: var(--rouge-2); }

/* email link — slightly larger, italic */
.footer__email {
  font-family: var(--f-headline);
  font-style: italic;
  font-size: 16px;
  letter-spacing: -.005em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  align-self: flex-start;
}
.footer__hours {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  /* opacity .72 ≈ #b1aea9 on #050505 footer bg → ~9:1 contrast (AA pass) */
  color: rgba(244, 241, 236, .72);
  margin: 0;
}

/* maison links list */
.footer__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-family: var(--f-headline);
  font-style: italic;
  font-size: 16px;
  letter-spacing: -.005em;
  position: relative;
}
.footer__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .45s var(--ease-out);
}
.footer__links a:hover::after { transform: scaleX(1); transform-origin: left center; }

/* subscribe form */
.footer__form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.footer__form input {
  background: transparent;
  border: 0;
  outline: none;
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--bone);
  padding: 6px 0;
  caret-color: var(--rouge);
}
.footer__form input::placeholder { color: rgba(244, 241, 236, .35); }
.footer__form button {
  background: transparent;
  border: 0;
  color: var(--bone);
  cursor: pointer;
  display: inline-flex;
  width: 24px;
  transition: transform .35s var(--ease-out), color .35s;
}
.footer__form button svg { width: 100%; height: auto; }
.footer__form:hover button { transform: translateX(4px); color: var(--rouge-2); }
.footer__form-line {
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.footer__form-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .55s var(--ease-out);
}
.footer__form:focus-within .footer__form-line::after,
.footer__form:hover .footer__form-line::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.footer__form-note {
  display: block;
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .42);
}

/* bottom strip --------------------------------------------------- */
.footer__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: clamp(20px, 2vw, 32px);
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .45);
}
.footer__credo { color: rgba(244, 241, 236, .35); font-style: normal; }
.footer__legal {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 20px;
}
.footer__legal a {
  color: rgba(244, 241, 236, .55);
  text-decoration: none;
  transition: color .3s;
}
.footer__legal a:hover { color: var(--bone); }

/* ============================================================
   ARCHIVE PAGE — vertical numbered ledger of all editions
   ============================================================ */
.archive {
  position: relative;
  padding: clamp(80px, 9vw, 140px) var(--gutter) clamp(72px, 8vw, 120px);
  background: var(--ink);
  color: var(--bone);
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

/* atmospheric drifting motes — same vocabulary as the comp section */
.archive__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.archive__atmos span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(255, 110, 80, .55);
  filter: blur(.5px);
  opacity: 0;
  transform: scale(var(--s, 1));
  animation: float 9s ease-in-out var(--d, 0s) infinite;
}

/* chapter intro — centred header with corner brackets */
.archive__head {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding-top: 24px;
  text-align: center;
}
.archive__head-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.archive__head-corner--tl { top: 0; left: 0;  border-top: 1px solid var(--bone); border-left:  1px solid var(--bone); }
.archive__head-corner--tr { top: 0; right: 0; border-top: 1px solid var(--bone); border-right: 1px solid var(--bone); }

.archive__head-kicker {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
}
.archive__head-title {
  font-family: var(--f-headline);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--bone);
  margin: 0 0 24px;
}
.archive__head-title em {
  display: block;
  font-style: italic;
  color: var(--rouge);
  font-size: .82em;
  letter-spacing: -.015em;
}
.archive__head-intro {
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244, 241, 236, .65);
}

/* ledger -------------------------------------------------------- */
.archive__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1180px;
  border-top: 1px solid var(--line);
}

/* page header — fades up + clears blur */
.archive__head {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 1.2s var(--ease-out),
    transform 1.2s var(--ease-out),
    filter 1.2s var(--ease-out);
}
.archive__head.is-in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* each ledger entry: slides in from the left with subtle blur clearing.
   The entry number trails slightly so it feels written into place rather
   than dropped in */
.archive__entry {
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(-32px);
  filter: blur(3px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out),
    filter 1.1s var(--ease-out);
}
.archive__entry.is-in-view {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.archive__entry-num {
  display: inline-block;
  transform: translateX(-14px);
  opacity: 0;
  transition:
    opacity 1.3s var(--ease-out) .15s,
    transform 1.3s var(--ease-out) .15s;
}
.archive__entry.is-in-view .archive__entry-num {
  transform: translateX(0);
  opacity: 1;
}

/* closing forthcoming note */
.archive__foot {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out);
}
.archive__foot.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.archive__entry-link {
  display: grid;
  grid-template-columns: 110px minmax(180px, 1fr) 180px minmax(0, 1.3fr) 110px 22px;
  align-items: baseline;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(22px, 3vw, 36px) clamp(8px, 1.5vw, 20px);
  text-decoration: none;
  color: var(--bone);
  position: relative;
  transition: color .35s, padding-left .55s var(--ease-out), background .45s;
}
.archive__entry-link::before {
  /* a faint warm wash that fills from left on hover */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(255, 60, 42, .08) 0%,
    rgba(255, 60, 42, 0) 60%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
  z-index: -1;
}
.archive__entry-link:hover {
  padding-left: clamp(20px, 2.5vw, 36px);
}
.archive__entry-link:hover::before { opacity: 1; }

.archive__entry-num {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 60;
  font-size: clamp(28px, 2.6vw, 38px);
  color: rgba(244, 241, 236, .55);
  line-height: 1;
  transition: color .35s;
}
.archive__entry-name {
  font-family: var(--f-headline);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: -.015em;
  line-height: 1;
  color: var(--bone);
  transition: color .35s;
}
.archive__entry-season {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
}
.archive__entry-notes {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: .005em;
  color: rgba(244, 241, 236, .55);
  font-style: italic;
}
.archive__entry-status {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .42);
  text-align: right;
}
.archive__entry-arrow {
  width: 22px;
  height: auto;
  color: rgba(244, 241, 236, .35);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s, transform .45s var(--ease-out), color .35s;
}
.archive__entry-link:hover .archive__entry-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--bone);
}

/* sold-out variant — desaturated, dimmed */
.archive__entry--sold .archive__entry-name {
  color: rgba(244, 241, 236, .82);
}
.archive__entry--sold .archive__entry-link:hover .archive__entry-num,
.archive__entry--sold .archive__entry-link:hover .archive__entry-name {
  color: var(--bone);
}

/* current-edition variant — rouge accent + bold status */
.archive__entry--current .archive__entry-num {
  color: var(--rouge);
}
.archive__entry--current .archive__entry-name {
  color: var(--bone);
}
.archive__entry--current .archive__entry-status {
  color: var(--rouge);
  position: relative;
}
.archive__entry--current .archive__entry-status::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rouge);
  margin-right: 8px;
  vertical-align: middle;
  animation: archive-livedot 1.8s ease-in-out infinite;
  opacity: .9;
}

/* closing forthcoming note */
.archive__foot {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: clamp(56px, 6vw, 88px) auto 0;
  text-align: center;
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line-soft);
}
.archive__foot-kicker {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 14px;
}
.archive__foot-text {
  font-family: var(--f-headline);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--bone);
  margin: 0;
}
.archive__foot-text em {
  font-style: italic;
  color: var(--rouge);
  margin-left: 6px;
}

@keyframes archive-livedot {
  0%, 100% { opacity: .5; transform: scale(.85); }
  50%      { opacity: 1;  transform: scale(1.15); }
}

/* responsive — collapse the ledger grid on tablets and phones */
@media (max-width: 900px) {
  .archive__entry-link {
    grid-template-columns: 80px 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 18px;
    padding: 22px 8px;
  }
  .archive__entry-num    { grid-column: 1; grid-row: 1 / span 2; align-self: center; font-size: 30px; }
  .archive__entry-name   { grid-column: 2; grid-row: 1; font-size: 24px; }
  .archive__entry-status { grid-column: 3; grid-row: 1; }
  .archive__entry-season { grid-column: 2; grid-row: 2; }
  .archive__entry-notes  { grid-column: 2 / span 2; grid-row: 3; padding-top: 8px; font-size: 12.5px; }
  .archive__entry-link {
    grid-template-rows: auto auto auto;
  }
  .archive__entry-arrow { display: none; }
}
@media (max-width: 600px) {
  .archive { padding: 64px 18px 56px; }
  .archive__head-title { font-size: clamp(34px, 9vw, 48px); }
  .archive__entry-link { padding: 18px 4px; }
  .archive__entry-num  { font-size: 24px; }
  .archive__entry-name { font-size: 20px; }
  .archive__entry-season,
  .archive__entry-status { font-size: 9px; letter-spacing: .2em; }
  .archive__entry-notes  { font-size: 11.5px; }
}

/* ============================================================
   LEGAL PAGES — privacy, terms (single-column reading layout)
   ============================================================ */
.legal {
  position: relative;
  padding: clamp(80px, 9vw, 140px) var(--gutter) clamp(72px, 8vw, 120px);
  color: var(--bone);
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.legal__head {
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(28px, 3vw, 40px);
}
.legal__head-kicker {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
}
.legal__head-title {
  font-family: var(--f-headline);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--bone);
  margin: 0 0 14px;
}
.legal__head-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .45);
  margin: 0;
}

.legal__body {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(244, 241, 236, .8);
}
.legal__intro {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--bone);
  margin: 0 0 clamp(32px, 4vw, 48px);
}
.legal__body section {
  margin-bottom: clamp(36px, 4vw, 56px);
}
.legal__body section:last-child { margin-bottom: 0; }

.legal__section-kicker {
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 8px;
}
.legal__section-title {
  font-family: var(--f-headline);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -.01em;
  color: var(--bone);
  margin: 0 0 18px;
}
.legal__body p {
  margin: 0 0 16px;
}
.legal__body p:last-child { margin-bottom: 0; }
.legal__body ul {
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
}
.legal__body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.legal__body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rouge);
  font-family: var(--f-headline);
  font-style: italic;
}
.legal__body a {
  color: var(--bone);
  border-bottom: 1px solid rgba(244, 241, 236, .25);
  text-decoration: none;
  transition: color .25s, border-color .25s;
}
.legal__body a:hover {
  color: var(--rouge-2);
  border-color: var(--rouge-2);
}

.legal__address {
  font-style: normal;
  font-family: var(--f-body);
  margin: 16px 0 0;
  padding: 18px 22px;
  border-left: 1px solid var(--line);
  color: rgba(244, 241, 236, .85);
}
.legal__address a {
  display: inline-block;
  margin-top: 6px;
}

.legal__foot {
  max-width: 720px;
  margin: clamp(48px, 5vw, 72px) auto 0;
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line-soft);
  font-family: var(--f-body);
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(244, 241, 236, .5);
}
.legal__foot em {
  font-family: var(--f-headline);
  font-style: italic;
}

@media (max-width: 600px) {
  .legal { padding: 56px 18px 56px; }
  .legal__head-title { font-size: clamp(32px, 9vw, 44px); }
  .legal__body { font-size: 14px; }
}

/* ============================================================
   ATELIER PAGE — magazine-style spread about the maison
   ============================================================ */
.atelier {
  position: relative;
  padding: clamp(80px, 9vw, 140px) var(--gutter) clamp(72px, 8vw, 120px);
  color: var(--bone);
  border-top: 1px solid var(--line);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.atelier__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.atelier__atmos span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(255, 110, 80, .55);
  filter: blur(.5px);
  opacity: 0;
  transform: scale(var(--s, 1));
  animation: float 9s ease-in-out var(--d, 0s) infinite;
}

/* chapter intro */
.atelier__head {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  padding-top: 24px;
  text-align: center;
}
.atelier__head-corner {
  position: absolute;
  width: 16px; height: 16px;
  pointer-events: none;
}
.atelier__head-corner--tl { top: 0; left: 0;  border-top: 1px solid var(--bone); border-left:  1px solid var(--bone); }
.atelier__head-corner--tr { top: 0; right: 0; border-top: 1px solid var(--bone); border-right: 1px solid var(--bone); }
.atelier__head-kicker {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
}
.atelier__head-title {
  font-family: var(--f-headline);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--bone);
  margin: 0 0 24px;
}
.atelier__head-title em {
  display: block;
  font-style: italic;
  color: var(--rouge);
  font-size: .82em;
  letter-spacing: -.015em;
}
.atelier__head-lede {
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: rgba(244, 241, 236, .85);
}

/* page header reveal */
.atelier__head {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 1.2s var(--ease-out),
    transform 1.2s var(--ease-out),
    filter 1.2s var(--ease-out);
}
.atelier__head.is-in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* sections — magazine-spread, 2-column on desktop */
.atelier__section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(40px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
  /* reveal: section as a whole eases up */
  opacity: 0;
  transform: translateY(32px);
  filter: blur(3px);
  transition:
    opacity 1.3s var(--ease-out),
    transform 1.3s var(--ease-out),
    filter 1.3s var(--ease-out);
}
.atelier__section.is-in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* the Roman numeral arrives with a subtle scale-up */
.atelier__section-num {
  transform: scale(.9);
  opacity: 0;
  transition:
    opacity 1.4s var(--ease-out) .15s,
    transform 1.4s var(--ease-out) .15s;
}
.atelier__section.is-in-view .atelier__section-num {
  transform: scale(1);
  opacity: 1;
}
/* body trails the meta */
.atelier__section-body {
  transform: translateY(16px);
  opacity: 0;
  transition:
    opacity 1.2s var(--ease-out) .3s,
    transform 1.2s var(--ease-out) .3s;
}
.atelier__section.is-in-view .atelier__section-body {
  transform: translateY(0);
  opacity: 1;
}
.atelier__section:last-child { padding-bottom: 0; }

.atelier__section-meta {
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.atelier__section-num {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 60;
  font-size: clamp(60px, 6vw, 88px);
  line-height: 1;
  color: var(--rouge);
}
.atelier__section-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.atelier__section-body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(244, 241, 236, .8);
  max-width: 640px;
}
.atelier__section-body p { margin: 0 0 16px; }
.atelier__section-body p:last-child { margin-bottom: 0; }
.atelier__section-body a {
  color: var(--bone);
  border-bottom: 1px solid rgba(244, 241, 236, .25);
  text-decoration: none;
  transition: color .25s, border-color .25s;
}
.atelier__section-body a:hover { color: var(--rouge-2); border-color: var(--rouge-2); }
.atelier__lede {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.5;
  color: var(--bone);
  margin: 0 0 24px !important;
}
.atelier__lede em {
  font-style: italic;
  color: var(--rouge);
}

/* signature block on the perfumer section */
.atelier__signature {
  margin: 36px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.atelier__sig-img {
  width: 220px;
  max-width: 70%;
  height: auto;
  filter: invert(1) brightness(1.15);
  align-self: flex-start;
}
.atelier__sig-cap {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.atelier__sig-cap span { color: var(--bone); }
.atelier__sig-cap em { font-style: normal; }

/* process list */
.atelier__process {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.atelier__process li {
  display: grid;
  grid-template-columns: 48px 140px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
}
.atelier__process li:first-child { border-top: 0; padding-top: 0; }
.atelier__process-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--rouge);
}
.atelier__process-name {
  font-family: var(--f-headline);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--bone);
}
.atelier__process-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(244, 241, 236, .65);
}

/* address + cta on visit section */
.atelier__address {
  font-style: normal;
  margin: 16px 0 32px;
  padding: 18px 22px;
  border-left: 1px solid var(--line);
  font-family: var(--f-body);
  color: rgba(244, 241, 236, .85);
  line-height: 1.7;
}
.atelier__cta {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  transition: letter-spacing .55s var(--ease-out), color .55s;
}
.atelier__cta:hover { letter-spacing: .34em; color: var(--rouge-2); }
.atelier__cta-icon { display: inline-flex; }
.atelier__cta-icon svg { width: 22px; height: auto; transition: transform .55s var(--ease-out); }
.atelier__cta:hover .atelier__cta-icon svg { transform: translateX(6px); }

/* responsive — collapse to single column */
@media (max-width: 900px) {
  .atelier__section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .atelier__section-meta {
    position: static;
    flex-direction: row;
    align-items: baseline;
    gap: 18px;
  }
  .atelier__section-num { font-size: 48px; }
  .atelier__process li { grid-template-columns: 36px 1fr; gap: 12px; }
  .atelier__process-text { grid-column: 1 / -1; padding-top: 4px; }
}
@media (max-width: 600px) {
  .atelier { padding: 64px 18px 56px; }
  .atelier__head-title { font-size: clamp(34px, 9vw, 48px); }
}

/* ============================================================
   CONTACT PAGE — addresses + letter form
   ============================================================ */
.contact {
  position: relative;
  padding: clamp(80px, 9vw, 140px) var(--gutter) clamp(72px, 8vw, 120px);
  color: var(--bone);
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.contact__head {
  max-width: 980px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  text-align: left;
}
.contact__head-kicker {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
}
.contact__head-title {
  font-family: var(--f-headline);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--bone);
  margin: 0 0 22px;
}
.contact__head-title em {
  font-style: italic;
  color: var(--rouge);
}
.contact__head-lede {
  max-width: 580px;
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  color: rgba(244, 241, 236, .8);
  margin: 0;
}

.contact__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

/* details column */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 3vw, 40px);
}
.contact__block { display: flex; flex-direction: column; gap: 8px; }
.contact__block-kicker {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
}
.contact__address {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--bone);
}
.contact__hours {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .45);
  line-height: 1.7;
}
.contact__email {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .3s, border-color .3s;
}
.contact__email:hover { color: var(--rouge-2); border-color: var(--rouge-2); }

/* form column */
.contact__form-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 3vw, 40px);
}
.contact__form-kicker {
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
  margin-bottom: 8px;
}
.contact__form-intro {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: rgba(244, 241, 236, .8);
  margin: 0 0 32px;
}
.contact__form { display: flex; flex-direction: column; gap: 28px; }
.contact__field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__field label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--bone);
  padding: 8px 0 12px;
  caret-color: var(--rouge);
  resize: none;
}
.contact__field textarea { font-family: var(--f-body); font-style: normal; font-size: 16px; line-height: 1.6; }
.contact__field input::placeholder,
.contact__field textarea::placeholder { color: rgba(244, 241, 236, .35); }
.contact__field select {
  appearance: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--f-headline);
  font-style: italic;
}
.contact__field select option { background: var(--ink); color: var(--bone); font-style: normal; }
.contact__field-line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.contact__field-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .55s var(--ease-out);
}
.contact__field input:focus ~ .contact__field-line::after,
.contact__field textarea:focus ~ .contact__field-line::after,
.contact__field select:focus ~ .contact__field-line::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.contact__submit {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--bone);
  border: 0;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  background: transparent;
  cursor: pointer;
  margin-top: 12px;
  transition: letter-spacing .55s var(--ease-out), color .55s;
}
.contact__submit:hover { letter-spacing: .36em; color: var(--rouge-2); }
.contact__submit-label { text-align: left; }
.contact__submit-icon { display: inline-flex; }
.contact__submit-icon svg { width: 22px; height: auto; transition: transform .55s var(--ease-out); }
.contact__submit:hover .contact__submit-icon svg { transform: translateX(6px); }

.contact__form-note {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .42);
  line-height: 1.7;
  margin-top: 14px;
}
.contact__form-note a {
  color: var(--bone);
  border-bottom: 1px solid rgba(244, 241, 236, .35);
  text-decoration: none;
  transition: color .25s;
}
.contact__form-note a:hover { color: var(--rouge-2); border-color: var(--rouge-2); }

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .contact { padding: 56px 18px 56px; }
  .contact__head-title { font-size: clamp(32px, 9vw, 44px); }
}

/* ============================================================
   404 — page not found
   ============================================================ */
.not-found {
  position: relative;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 9vw, 140px) var(--gutter);
  color: var(--bone);
  border-top: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}
.not-found__atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.not-found__atmos span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(255, 110, 80, .55);
  filter: blur(.5px);
  opacity: 0;
  transform: scale(var(--s, 1));
  animation: float 9s ease-in-out var(--d, 0s) infinite;
}
.not-found__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.not-found__num {
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 1;
  color: var(--rouge);
  margin: 0;
}
.not-found__kicker {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.not-found__title {
  font-family: var(--f-headline);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--bone);
  margin: 0;
}
.not-found__title em {
  display: block;
  font-style: italic;
  color: var(--rouge);
  font-size: .85em;
  letter-spacing: -.015em;
}
.not-found__lede {
  max-width: 540px;
  font-family: var(--f-headline);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(244, 241, 236, .8);
  margin: 0;
}
.not-found__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.not-found__cta {
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  min-width: 280px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .55s var(--ease-out), letter-spacing .55s var(--ease-out);
}
.not-found__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(138, 13, 18, .9) 0%, rgba(255, 60, 42, .85) 100%);
  transform: translateX(-101%);
  transition: transform .7s var(--ease-out);
}
.not-found__cta:hover { color: #fff; letter-spacing: .34em; }
.not-found__cta:hover::before { transform: translateX(0); }
.not-found__cta-mark {
  font-family: var(--f-headline);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  color: rgba(255, 110, 80, .9);
  transition: color .55s, transform .55s var(--ease-out);
}
.not-found__cta:hover .not-found__cta-mark { color: #fff; transform: translateX(-4px); }
.not-found__cta-label { text-align: left; }
.not-found__cta-icon { display: inline-flex; transition: transform .55s var(--ease-out); }
.not-found__cta-icon svg { width: 22px; height: auto; }
.not-found__cta:hover .not-found__cta-icon { transform: translateX(6px); }
.not-found__link {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .55);
  text-decoration: none;
  transition: color .3s;
}
.not-found__link:hover { color: var(--rouge-2); }

@media (max-width: 600px) {
  .not-found__num { font-size: 64px; }
  .not-found__title { font-size: clamp(30px, 8vw, 42px); }
}

/* responsive ----------------------------------------------------- */
@media (max-width: 1024px) {
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__col--wide { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer__legal { gap: 16px; }
}


/* ============================================================
   RESPONSIVE — composition section
   ============================================================ */
@media (max-width: 600px) {
  .formula { padding: clamp(48px, 8vw, 72px) 18px clamp(72px, 12vw, 96px); }
  .formula__coord { font-size: 8px; letter-spacing: .18em; }
  .movement__roman { font-size: 50px; }
  .movement__seal { width: 130px; height: 130px; top: 26px; }
  .movement__halo { top: 26px; }
  .movement__name { margin-top: 52px; }
  .note { grid-template-columns: 16px 38px 1fr auto; gap: 10px; padding: 10px 12px; }
  .note__icon { width: 38px; height: 38px; }
  .note__name { font-size: 14px; }

  .credit { grid-template-columns: 80px 1fr; gap: 20px; padding: 28px 0; }
  .credit__meta { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 12px 24px; padding-top: 4px; border-top: 1px solid var(--line-soft); }
  .credit__meta dt { min-width: auto; }
  .credit__seal { width: 80px; }
  .credit__perfumer .sig { width: 160px; }

  /* cinema — on mobile the split layout collapses. Video shows the
     botanical in the upper portion, text clusters at the bottom — so the
     two don't fight for the same space. Overlay clears the middle so the
     botanical breathes, then darkens the bottom band where the type lives. */
  .cinema {
    padding: 64px 18px;
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .cinema__overlay {
    background:
      linear-gradient(to bottom,
        #050505 0%,
        rgba(0, 0, 0, .65) 6%,
        rgba(0, 0, 0, .15) 20%,
        transparent 38%,
        transparent 52%,
        rgba(0, 0, 0, .55) 72%,
        rgba(0, 0, 0, .92) 94%,
        #050505 100%);
  }
  /* shift the crop so the botanical (left of the original frame) is visible */
  .cinema__video { object-position: 28% center; }
  .cinema__content {
    margin: 0 auto;
    width: 100%;
    max-width: none;
    text-align: center;
    min-height: auto;
    gap: clamp(22px, 5vw, 36px);
  }
  .cinema__line { text-align: center; font-size: clamp(26px, 7vw, 38px); }
  .cinema__sig { font-size: 8px; letter-spacing: .18em; white-space: normal; }
  .cinema__rule--short { flex: 0 0 18px; }
  .cinema__chapter-num { font-size: 18px; }
  .cinema__head, .cinema__foot { gap: 12px; }

  /* acquire — tighter padding, scaled-down type, tighter spec line */
  .acquire { padding: 72px 18px 72px; }
  .acquire__title { font-size: clamp(32px, 9vw, 44px); margin-bottom: 48px; }
  .acquire__seal-svg { width: 160px; }
  .acquire__breakseal-img { width: 110px; }
  .acquire__price-amount { font-size: 56px; }
  .acquire__cta { padding: 16px 28px; font-size: 10px; letter-spacing: .25em; }
  .acquire__spec { font-size: 9px; gap: 10px; letter-spacing: .22em; }
  .acquire__delivery { font-size: 8px; letter-spacing: .15em; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .comp__atmos span,
  .credit__seal .seal__ring text,
  .movement__seal text { animation: none !important; }
  .movement, .movement__halo, .movement__seal,
  .note, .note__bar > span,
  .credit, .sig {
    transition: none !important;
  }
  .movement { opacity: 1 !important; transform: none !important; }
  .movement__halo { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  .movement__seal { opacity: 1; }
  .note { opacity: 1 !important; transform: none !important; }
  .note__bar > span { inset: 0 calc(100% - var(--pct, 0%)) 0 0 !important; }
  .credit { opacity: 1 !important; }
  .sig { clip-path: inset(0 0% 0 0) !important; }

  /* cinema — reveal line immediately; the JS pauses the video element
     and falls back to the poster image */
  .cinema__line-row {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  /* acquire — kill drift animation on the warmth and ring text rotation;
     reveal title/seal/doc immediately */
  .acquire__atmos-warmth,
  .acquire__seal-ring { animation: none !important; }
  .acquire__title-row,
  .acquire__seal,
  .acquire__doc {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* drawing hairlines — show fully drawn, no animation */
  .cinema__rule { transform: scaleX(1) !important; transition: none !important; }
  .acquire__spec,
  .acquire__cta {
    background-size: 100% 1px, 100% 1px !important;
    transition: none !important;
  }
  .acquire__price-amount::before {
    transform: translateY(-50%) scaleX(1) !important;
  }
  .acquire__price-amount::after {
    transform: translateY(-50%) scaleX(-1) !important;
  }
}
