:root {
  /* base luxury palette */
  --bg: #0e0c0b;
  --bg-2: #17120e;
  --beige: #d9c8b4;
  --gold: #c8a96a;
  --fg: #ede6dc;
  --muted: #9a8d7b;
  --line: rgba(217, 200, 180, 0.12);
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;

  /* «раскрытие аромата»: warmth driven by scroll progress (0 → 1).
     JS updates --warm; these channels interpolate via calc. */
  --warm: 0;
  /* background grows from cold matte black to warm amber-tinted near-black */
  --bg-live: rgb(
    calc(14 + 24 * var(--warm)),
    calc(12 + 14 * var(--warm)),
    calc(11 + 6 * var(--warm))
  );
  --accent: var(--gold);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-live);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.6s linear;
}

img, canvas, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.005em;
}
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: 1.5rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--gold); color: #1a130a; padding: 10px 18px; border-radius: 2px;
  font-family: var(--sans); letter-spacing: 0.08em; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 1.5px solid var(--gold); outline-offset: 4px; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.accent { color: var(--gold); font-style: italic; }

.section-head { max-width: 760px; margin: 0 auto clamp(3rem, 7vw, 5rem); text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; border-radius: 1px; font-family: var(--sans);
  font-weight: 400; font-size: 0.84rem; letter-spacing: 0.16em; text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s, border-color 0.4s;
  will-change: transform; cursor: pointer; min-height: 48px;
}
.btn--solid { background: var(--gold); color: #17120e; border: 1px solid var(--gold); }
.btn--solid:hover { transform: translateY(-2px); background: #d8bd83; }
.btn--ghost { border: 1px solid var(--line); color: var(--fg); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- progress: «раскрытие аромата» ---------- */
.sillage-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 120;
  background: rgba(217, 200, 180, 0.06); pointer-events: none;
}
.sillage-progress__bar {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--beige), var(--gold));
  transform-origin: left;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem clamp(1.1rem, 5vw, 3rem);
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(14, 12, 11, 0.8), rgba(14, 12, 11, 0));
}
.nav__brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--serif); font-weight: 500; font-size: 1.1rem; letter-spacing: 0.28em;
}
.nav__mark {
  width: 16px; height: 20px; flex: none; position: relative;
}
.nav__mark::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  clip-path: path("M8 0 C8 6 2 7 2 13 a6 6 0 0 0 12 0 C14 7 8 6 8 0 z");
  -webkit-clip-path: path("M8 0 C8 6 2 7 2 13 a6 6 0 0 0 12 0 C14 7 8 6 8 0 z");
}
.nav__links { display: flex; align-items: center; gap: clamp(0.9rem, 2.4vw, 2.2rem); }
.nav__links a { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; transition: color 0.25s; }
.nav__links a:hover { color: var(--fg); }
.nav__cta { color: var(--gold) !important; border: 1px solid var(--line); padding: 0.6rem 1.2rem; border-radius: 1px; }
.nav__cta:hover { border-color: var(--gold); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center; text-align: center; overflow: hidden;
  padding: 7rem 1.3rem 3rem;
}
.hero__beam {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 80% at 50% -10%, rgba(217, 200, 180, 0.16), transparent 58%),
    radial-gradient(30% 50% at 50% 100%, rgba(200, 169, 106, 0.1), transparent 60%);
}
.hero__beam::after {
  content: ""; position: absolute; top: -10%; left: 50%; width: 38vmax; height: 120%;
  transform: translateX(-50%) rotate(8deg);
  background: linear-gradient(to bottom, rgba(237, 230, 220, 0.12), transparent 62%);
  filter: blur(8px);
  animation: beamBreathe 9s var(--ease) infinite;
}
@keyframes beamBreathe { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.95; } }

.hero__stage {
  position: absolute; z-index: 1; bottom: 8%; left: 50%;
  transform: translateX(-50%); width: clamp(150px, 26vmin, 240px); pointer-events: none;
}
.flacon {
  width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
  animation: flaconFloat 8s ease-in-out infinite;
}
@keyframes flaconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero__plinth {
  position: absolute; bottom: -6%; left: 50%; transform: translateX(-50%);
  width: 150%; height: 36px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(200, 169, 106, 0.22), transparent 75%);
  filter: blur(6px);
}
.hero__drop {
  position: absolute; top: 30%; left: 56%; width: 6px; height: 9px;
  border-radius: 60% 60% 60% 60% / 70% 70% 40% 40%;
  background: linear-gradient(180deg, #f3e7cf, #c8a96a);
  box-shadow: 0 0 8px rgba(237, 230, 220, 0.6);
  animation: dropSlide 6s ease-in 1.5s infinite;
  opacity: 0;
}
@keyframes dropSlide {
  0% { opacity: 0; transform: translateY(0) scale(0.7); }
  12% { opacity: 1; }
  80% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(120px) scale(1); }
}

.hero__inner { position: relative; z-index: 3; max-width: 820px; }
.hero__title { font-size: clamp(2.8rem, 9vw, 6rem); font-weight: 500; letter-spacing: 0.01em; margin-bottom: 1.8rem; }
.hero__lead { color: var(--beige); font-weight: 300; font-size: clamp(1rem, 2.1vw, 1.2rem); max-width: 540px; margin: 0 auto 2.6rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4;
  width: 24px; height: 40px; border: 1px solid var(--line); border-radius: 100px;
}
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 4px; background: var(--gold); animation: scrolldot 1.9s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- generic section ---------- */
section { padding: clamp(5rem, 12vw, 9rem) clamp(1.1rem, 5vw, 3rem); }

/* ---------- collection / fragrance ---------- */
.collection { padding-top: clamp(5rem, 12vw, 9rem); }
.collection > .section-head { padding: 0 clamp(1.1rem, 5vw, 3rem); }

.fragrance {
  position: relative; min-height: 100svh; display: grid; align-items: center;
  scroll-snap-align: start; overflow: hidden; isolation: isolate;
  --frag: var(--gold);
}
/* per-fragrance mood wash driven by its accent */
.fragrance::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(70% 60% at 80% 30%, color-mix(in srgb, var(--frag) 22%, transparent), transparent 60%),
    radial-gradient(60% 70% at 10% 80%, color-mix(in srgb, var(--frag) 12%, transparent), transparent 65%);
  opacity: 0; transition: opacity 1s var(--ease);
}
.fragrance.is-active::before { opacity: 1; }
.fragrance__inner {
  position: relative; z-index: 1; max-width: var(--maxw); width: 100%;
  margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.fragrance__idx {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--frag); letter-spacing: 0.1em;
}
.fragrance__intro h3 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0.6rem 0 0.8rem; }
.fragrance__tag {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.6rem;
}
.fragrance__desc { color: var(--beige); font-size: 1.08rem; max-width: 44ch; }

/* note pyramid */
.pyramid { display: grid; gap: 0.9rem; align-content: center; }
.pyramid__tier {
  position: relative; border: 1px solid var(--line); border-radius: 2px;
  padding: 1.3rem 1.6rem; background: rgba(217, 200, 180, 0.03);
  display: flex; flex-direction: column; gap: 0.3rem;
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), border-color 0.7s;
}
.pyramid__tier--top { margin: 0 clamp(0px, 6vw, 64px); }
.pyramid__tier--heart { margin: 0 clamp(0px, 3vw, 32px); }
.fragrance.is-active .pyramid__tier { opacity: 1; transform: none; border-color: color-mix(in srgb, var(--frag) 35%, var(--line)); }
.fragrance.is-active .pyramid__tier--top { transition-delay: 0.05s; }
.fragrance.is-active .pyramid__tier--heart { transition-delay: 0.22s; }
.fragrance.is-active .pyramid__tier--base { transition-delay: 0.4s; }
.pyramid__label {
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--frag);
}
.pyramid__notes { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--fg); }

/* ---------- journey (horizontal scroll) ---------- */
.journey { max-width: 100%; overflow: hidden; }
.journey__head { max-width: var(--maxw); margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; padding: 0 clamp(1.1rem, 5vw, 3rem); }
.journey__hint { color: var(--muted); font-size: 0.9rem; letter-spacing: 0.06em; margin-top: 0.8rem; }
.journey__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(78vw, 420px);
  gap: clamp(1rem, 3vw, 2rem); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.6rem clamp(1.1rem, 5vw, 3rem) 2rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.journey__track::-webkit-scrollbar { height: 6px; }
.journey__track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }
.journey__card {
  scroll-snap-align: center; position: relative; min-height: 56vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.2rem; border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden; isolation: isolate;
}
.journey__card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(14, 12, 11, 0.94), rgba(14, 12, 11, 0.3));
}
.journey__card::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  transform: scale(1.05); transition: transform 1.2s var(--ease);
}
.journey__card:hover::before { transform: scale(1.12); }
.journey__card--grasse::before { background: radial-gradient(70% 80% at 30% 20%, #b8a0c0, transparent 60%), linear-gradient(160deg, #5a6e4e, #2b2a1c); }
.journey__card--spice::before { background: radial-gradient(70% 80% at 70% 20%, #d59455, transparent 60%), linear-gradient(160deg, #7a3a22, #2a1a12); }
.journey__card--wood::before { background: radial-gradient(70% 80% at 40% 30%, #9c7a4e, transparent 60%), linear-gradient(160deg, #4a3420, #1c140d); }
.journey__card--sea::before { background: radial-gradient(70% 80% at 60% 20%, #7fa6c0, transparent 60%), linear-gradient(160deg, #2c4658, #11181d); }
.journey__num { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--gold); margin-bottom: auto; }
.journey__card h3 { margin: 1rem 0 0.7rem; font-size: 1.9rem; }
.journey__card p { color: var(--beige); font-size: 0.98rem; }

/* ---------- philosophy ---------- */
.philosophy { max-width: var(--maxw); margin: 0 auto; }
.philosophy__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.portrait { position: relative; }
.portrait__svg { width: 100%; border-radius: 3px; border: 1px solid var(--line); }
.portrait figcaption {
  margin-top: 1rem; font-family: var(--sans); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.philosophy__lead { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--beige); margin: 1.2rem 0 1.4rem; line-height: 1.4; }
.philosophy__text p { color: var(--beige); }
.philosophy__quote {
  margin-top: 2rem; padding-left: 1.4rem; border-left: 2px solid var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--fg);
}

/* ---------- samples ---------- */
.samples { max-width: var(--maxw); margin: 0 auto; }
.samples__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 3.5rem); border: 1px solid var(--line); border-radius: 4px;
  background: linear-gradient(160deg, rgba(217, 200, 180, 0.05), transparent);
}
.samples__copy p { color: var(--beige); }
.samples__copy h2 { margin-bottom: 1rem; }
.samples__form { display: grid; gap: 1.2rem; align-content: start; }
.samples__set { border: 0; display: grid; gap: 0.7rem; }
.samples__set legend { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.chk { display: flex; align-items: center; gap: 0.7rem; cursor: pointer; font-size: 0.98rem; min-height: 44px; }
.chk input { width: 18px; height: 18px; accent-color: var(--gold); }
.field { display: grid; gap: 0.4rem; }
.field span { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.field input, .footer__news input {
  background: rgba(14, 12, 11, 0.6); border: 1px solid var(--line); border-radius: 2px;
  color: var(--fg); padding: 0.85rem 1rem; font-family: var(--sans); font-size: 1rem;
  min-height: 48px; transition: border-color 0.25s;
}
.field input:focus, .footer__news input:focus { border-color: var(--gold); outline: none; }
.samples__status { font-size: 0.92rem; color: var(--gold); min-height: 1.2em; }

/* ---------- boutique ---------- */
.boutique { max-width: var(--maxw); margin: 0 auto; }
.boutique__grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.vial {
  position: relative; padding: 2rem 1.6rem 1.6rem; border: 1px solid var(--line);
  border-radius: 3px; background: linear-gradient(180deg, rgba(217, 200, 180, 0.04), transparent);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s; overflow: hidden;
}
.vial:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--v) 50%, var(--line)); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5); }
.vial__art { height: 170px; display: grid; place-items: center; margin-bottom: 1.4rem; }
.vial__glass {
  width: 58px; height: 110px; border-radius: 6px 6px 10px 10px; position: relative;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.06), color-mix(in srgb, var(--v) 40%, #221a12) 55%, rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(237, 230, 220, 0.12);
  box-shadow: inset 0 0 24px color-mix(in srgb, var(--v) 30%, transparent);
}
.vial__glass::before {
  content: ""; position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 18px; border-radius: 2px;
  background: linear-gradient(180deg, var(--gold), #8c6f3e);
}
.vial__glass::after {
  content: ""; position: absolute; top: 12px; left: 9px; width: 7px; height: 70px;
  border-radius: 6px; background: rgba(251, 243, 226, 0.4);
}
.vial h3 { font-size: 1.35rem; }
.vial__notes { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0.5rem 0 1.1rem; }
.vial__row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.vial__vol { font-size: 0.78rem; color: var(--muted); }
.vial__price { font-family: var(--serif); font-size: 1.25rem; color: var(--gold); }

/* ---------- footer ---------- */
.footer {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.1rem, 5vw, 3rem) 3rem;
  display: grid; grid-template-columns: 1.2fr 1.3fr 1fr 1.2fr; gap: 2.4rem;
  border-top: 1px solid var(--line);
}
.footer__brand { display: flex; align-items: center; gap: 0.8rem; font-family: var(--serif); letter-spacing: 0.2em; font-size: 1.1rem; }
.footer__brand small { font-family: var(--sans); font-weight: 300; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; font-size: 0.66rem; }
.footer h3 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 500; }
.footer__note { color: var(--beige); font-size: 0.92rem; margin-bottom: 1rem; }
.footer__list { list-style: none; color: var(--beige); font-size: 0.92rem; display: grid; gap: 0.6rem; }
.footer__list a:hover { color: var(--gold); }
.footer__news { display: grid; gap: 0.7rem; }
.footer__news input { width: 100%; }
.footer__news-status { font-size: 0.86rem; color: var(--gold); min-height: 1em; }
.footer__rights { grid-column: 1 / -1; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.78rem; letter-spacing: 0.04em; }

/* ---------- real photography layers (CSS art kept beneath as fallback) ---------- */
/* Hero: covering photo behind the light beam + flacon stage; heavily scrimmed so the
   gold heading stays readable. Sits at z-index 0 (beam=0, stage=1, inner=3 on top). */
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.62) saturate(0.9);
}
.hero__photo + .hero__beam { z-index: 1; }
/* dark vignette/scrim over the hero photo to protect the heading */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(14, 12, 11, 0.2), rgba(14, 12, 11, 0.78) 78%),
    linear-gradient(to bottom, rgba(14, 12, 11, 0.55), rgba(14, 12, 11, 0.3) 40%, rgba(14, 12, 11, 0.92));
}

/* Fragrance: dim covering mood photo (z -2) under a readability scrim (z -1); the
   per-section accent wash (::before, z 0) and note pyramid (inner, z 1) stay above and
   readable. .fragrance isolates so these negative layers stay within the section. */
.fragrance__photo {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(0.85);
  opacity: 0.55; transition: opacity 1s var(--ease);
}
.fragrance.is-active .fragrance__photo { opacity: 0.8; }
/* readability scrim between the photo and the content */
.fragrance::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(105deg, rgba(14, 12, 11, 0.9) 16%, rgba(14, 12, 11, 0.5) 55%, rgba(14, 12, 11, 0.78)),
    radial-gradient(90% 90% at 50% 50%, transparent 38%, rgba(14, 12, 11, 0.6));
}

/* Journey card: photo sits above the CSS-art ::before fallback, below the ::after scrim
   and the card text. */
.journey__photo {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78) saturate(0.95);
  transform: scale(1.05); transition: transform 1.2s var(--ease);
}
.journey__card:hover .journey__photo { transform: scale(1.12); }

/* Philosophy portrait: real photo covers the SVG placeholder (kept as fallback).
   Matches the SVG's 240:300 box exactly so it doesn't overlap the caption below. */
.portrait__photo {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1;
  width: 100%; height: auto; aspect-ratio: 240 / 300; object-fit: cover;
  border-radius: 3px; border: 1px solid var(--line);
  filter: brightness(0.92) saturate(0.95);
}

/* Boutique bottle: real bottle photo fills the art well, above the CSS glass fallback. */
.vial__art { position: relative; }
.vial__photo {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .fragrance__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .pyramid__tier--top, .pyramid__tier--heart { margin: 0; }
  .philosophy__grid { grid-template-columns: 1fr; }
  .portrait { max-width: 320px; }
  .samples__card { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer { grid-template-columns: 1fr; }
  .hero__stage { opacity: 0.5; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { transition: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__scroll span,
  .hero__beam::after,
  .flacon,
  .hero__drop { animation: none; }
  .hero__drop { display: none; }
  .pyramid__tier { opacity: 1 !important; transform: none !important; transition: none; }
  .fragrance::before { opacity: 1; }
  .journey__card::before { transition: none; }
  .fragrance__photo { opacity: 0.8 !important; transition: none; }
  .journey__photo { transform: none !important; transition: none; }
  .journey__card:hover .journey__photo { transform: none; }
}
