/* ═══════════════════════════════════════════════════════════════
   ÉCLAT — Haute Joaillerie
   Cinematic scroll experience · dark luxury
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0b;
  --bg-2: #0e0e10;
  --ivory: #f4efe6;
  --ivory-dim: #d8d2c4;
  --ink: #131312;
  --gold: #c9a35c;
  --gold-bright: #dcb96f;
  --text: #e9e5da;
  --text-dim: rgba(233, 229, 218, 0.62);
  --line: rgba(244, 239, 230, 0.14);
  --line-soft: rgba(244, 239, 230, 0.08);
  --line-ink: rgba(19, 19, 18, 0.14);
  --serif: "Cormorant Garamond", "Didot", "Playfair Display", Georgia, serif;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", sans-serif;
  --ease-lux: cubic-bezier(0.19, 0.7, 0.22, 1);
  --vh100: 100vh;
  --chapter-vh: 420;
}
@supports (height: 100svh) {
  :root { --vh100: 100svh; }
}

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

html { scroll-behavior: smooth; }
html, body { background: var(--bg); }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
body.menu-open { overflow: hidden; }

::selection { background: rgba(201, 163, 92, 0.35); color: var(--ivory); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #060607; }
::-webkit-scrollbar-thumb { background: #26241f; border-radius: 5px; border: 2px solid #060607; }
::-webkit-scrollbar-thumb:hover { background: #3a362c; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

/* ── shared type ────────────────────────────────────────────── */

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
}
.eyebrow--gold { color: var(--gold); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.04;
  color: var(--ivory);
}

.btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 34px;
  transition: background 0.5s var(--ease-lux), color 0.5s var(--ease-lux),
    border-color 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.btn--gold {
  color: var(--gold-bright);
  border: 1px solid rgba(201, 163, 92, 0.55);
  background: transparent;
}
.btn--gold:hover { background: var(--gold); border-color: var(--gold); color: #16130c; }
.btn--ink {
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
  white-space: nowrap;
}
.btn--ink:hover { background: transparent; color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════════════════════════ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.1s var(--ease-lux), visibility 1.1s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__mark {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.28em;
  margin-right: -0.28em;
  animation: loaderBreath 2.6s ease-in-out infinite;
}
@keyframes loaderBreath {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}
.loader__sub {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.loader__bar {
  width: min(320px, 60vw);
  height: 1px;
  background: rgba(244, 239, 230, 0.12);
  margin: 44px auto 0;
  overflow: hidden;
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.35s ease;
}
.loader__pct {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 clamp(20px, 4vw, 56px);
  height: 76px;
  background: transparent;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  color: var(--ivory);
  transition: color 0.5s var(--ease-lux);
}
.nav.on-ivory .nav__brand { color: var(--ink); }
.nav.on-ivory .nav__burger span { background: var(--ink); }
.nav__links {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  margin-left: auto;
}
.nav__links a {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 0;
  position: relative;
  transition: color 0.4s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ease-lux);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 26px; }
.nav__cta {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 163, 92, 0.4);
  padding: 11px 22px;
  transition: background 0.5s var(--ease-lux), color 0.5s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold); color: #16130c; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 6px 2px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.5s var(--ease-lux), opacity 0.4s;
}
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ── fullscreen menu ── */
.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 8, 9, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(24px, 8vw, 120px) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease-lux), visibility 0.7s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; gap: 6px; }
.menu__links a {
  font-family: var(--serif);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 300;
  color: var(--ivory-dim);
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  gap: 22px;
  transform: translateY(30px);
  opacity: 0;
  transition: color 0.4s, transform 0.8s var(--ease-lux), opacity 0.8s;
}
body.menu-open .menu__links a { transform: translateY(0); opacity: 1; }
body.menu-open .menu__links a:nth-child(2) { transition-delay: 0.06s; }
body.menu-open .menu__links a:nth-child(3) { transition-delay: 0.12s; }
body.menu-open .menu__links a:nth-child(4) { transition-delay: 0.18s; }
.menu__links a:hover { color: var(--gold-bright); }
.menu__links a em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.menu__foot {
  position: absolute;
  bottom: 34px;
  left: clamp(24px, 8vw, 120px);
  right: clamp(24px, 8vw, 120px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════
   CINEMA — the scroll-driven film
   ═══════════════════════════════════════════════════════════════ */

.cinema__track { height: calc(var(--chapter-vh) * 3vh); position: relative; }

.cinema__stage {
  position: sticky;
  top: 0;
  height: var(--vh100);
  overflow: hidden;
  background: #000;
}

.cinema__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.cinema__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 42%, transparent 55%, rgba(0, 0, 0, 0.42) 100%);
}
.cinema__topfade {
  position: absolute;
  inset: 0 0 auto 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.55), transparent);
}
.cinema__grain {
  position: absolute;
  inset: -50%;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  animation: grainShift 1.4s steps(3) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 3%); }
  66% { transform: translate(3%, -2%); }
  100% { transform: translate(0, 0); }
}
/* ── hero overlay ── */
.hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px 11vh;
  will-change: opacity, transform;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5.5vw, 77px);
  line-height: 1.04;
  color: var(--ivory);
  text-shadow: 0 2px 60px rgba(0, 0, 0, 0.55);
}
.hero__title em { font-style: italic; color: #fdf9ef; }
.hero__sub {
  margin-top: 18px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  font-weight: 300;
}
.hero__cta { margin-top: 30px; }

/* ── product reveal ── */
.product {
  position: absolute;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}
.product.is-open { visibility: visible; }
/* panel position is scroll-driven from script.js — locked to the
   film's zoom so it lands exactly as the close-up settles */
.product__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(600px, 46vw);
  background: var(--ivory);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  padding: calc(64px + 3.2vh) clamp(28px, 3vw, 52px) clamp(22px, 3.4vh, 40px);
  transform: translateX(-103%);
  will-change: transform;
  pointer-events: auto;
  box-shadow: 30px 0 80px rgba(0, 0, 0, 0.35);
}

.product__head { text-align: center; }
.product__eyebrow {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(19, 19, 18, 0.55);
}
.product__eyebrow i { color: var(--gold); font-style: normal; }
.product__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: 1;
  margin: 12px 0 8px;
  color: var(--ink);
}
.product__kind {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(19, 19, 18, 0.6);
}
.product__fig {
  flex: 1;
  min-height: 0;
  margin: clamp(14px, 2.4vh, 26px) 0;
  background: #050506;
  position: relative;
  overflow: hidden;
}
.product__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease 0.35s, transform 1.6s var(--ease-lux) 0.35s;
}
.product.is-open .product__fig img { opacity: 1; transform: scale(1); }
.product__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(19, 19, 18, 0.72);
  font-weight: 300;
  max-width: 52ch;
}
.product__specs {
  margin-top: clamp(10px, 1.8vh, 18px);
  border-top: 1px solid var(--line-ink);
}
.product__specs > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-ink);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.product__specs dt {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: rgba(19, 19, 18, 0.5);
  padding-top: 1px;
}
.product__specs dd { color: rgba(19, 19, 18, 0.85); text-align: right; }
.product__buy {
  margin-top: clamp(14px, 2.4vh, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.product__price {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ink);
  white-space: nowrap;
}
.product__caption {
  position: absolute;
  right: clamp(20px, 3vw, 48px);
  bottom: 26px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease 0.5s, transform 0.9s var(--ease-lux) 0.5s;
}
.product.is-open .product__caption { opacity: 1; transform: translateY(0); }

/* stagger panel content */
.product__head, .product__desc, .product__specs, .product__buy {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.9s var(--ease-lux);
}
.product.is-open .product__head { opacity: 1; transform: none; transition-delay: 0.25s; }
.product.is-open .product__desc { opacity: 1; transform: none; transition-delay: 0.4s; }
.product.is-open .product__specs { opacity: 1; transform: none; transition-delay: 0.5s; }
.product.is-open .product__buy { opacity: 1; transform: none; transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════════
   COLLECTION
   ═══════════════════════════════════════════════════════════════ */

.collection {
  position: relative;
  background: var(--bg);
  padding: clamp(110px, 14vh, 180px) clamp(20px, 4vw, 56px) clamp(90px, 12vh, 150px);
}
.collection__head { text-align: center; max-width: 900px; margin: 0 auto; }
.collection__head .display { margin-top: 18px; }
.collection__lede {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.collection__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
  margin: clamp(40px, 6vh, 64px) 0 clamp(34px, 5vh, 54px);
}
.collection__filters button {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 2px;
  position: relative;
  transition: color 0.4s;
}
.collection__filters button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-lux);
}
.collection__filters button:hover { color: var(--ivory); }
.collection__filters button.is-active { color: var(--gold-bright); }
.collection__filters button.is-active::after { transform: scaleX(1); }

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
  max-width: 1560px;
  margin: 0 auto;
}

.card {
  position: relative;
  cursor: pointer;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.card.is-hidden { display: none; }
.card.is-fading { opacity: 0; transform: scale(0.98); }
.card__img {
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #060607;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 1.4s var(--ease-lux), filter 1.4s ease;
}
.card:hover .card__img img { transform: scale(1.07); filter: brightness(1.08); }
.card__info { padding: 18px 2px 6px; }
.card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.card__row h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  color: var(--ivory);
}
.card__price {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  white-space: nowrap;
}
.card__meta {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.card__view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(6, 6, 7, 0.36);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.card:hover .card__view { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   MAISON BAND
   ═══════════════════════════════════════════════════════════════ */

.maison {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px;
}
.maison__bg { position: absolute; inset: -12% 0; }
.maison__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  will-change: transform;
}
.maison::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 22%, transparent 78%, var(--bg) 100%),
    radial-gradient(90% 70% at 50% 50%, transparent 30%, rgba(10, 10, 11, 0.72) 100%);
}
.maison__content { position: relative; z-index: 2; max-width: 880px; }
.maison__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.12;
  color: var(--ivory);
  margin: 26px 0 24px;
}
.maison__quote em { font-style: italic; color: var(--gold-bright); }
.maison__sub {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */

.services {
  background: var(--bg);
  padding: clamp(30px, 6vh, 70px) clamp(20px, 4vw, 56px) clamp(90px, 12vh, 140px);
}
.services__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft);
}
.services__grid article {
  padding: clamp(34px, 5vh, 56px) clamp(24px, 3vw, 48px) 10px;
  border-right: 1px solid var(--line-soft);
}
.services__grid article:last-child { border-right: 0; }
.services__num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.services__grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--ivory);
  margin-bottom: 14px;
}
.services__grid p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 34ch;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  position: relative;
  background: #070708;
  border-top: 1px solid var(--line-soft);
  padding: clamp(70px, 10vh, 110px) clamp(20px, 4vw, 56px) 0;
  overflow: hidden;
}
.footer__newsletter {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: clamp(50px, 8vh, 80px);
  border-bottom: 1px solid var(--line-soft);
}
.footer__newsletter h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.15;
  color: var(--ivory);
  margin-top: 16px;
}
.footer__newsletter h2 em { font-style: italic; color: var(--gold-bright); }
.footer__form { display: flex; gap: 0; min-width: min(440px, 100%); }
.footer__form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line);
  border-right: 0;
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 17px 22px;
  outline: none;
  transition: border-color 0.4s;
}
.footer__form input::placeholder { color: rgba(233, 229, 218, 0.35); }
.footer__form input:focus { border-color: rgba(201, 163, 92, 0.6); }
.footer__form .btn { flex-shrink: 0; }
.footer__thanks {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-bright);
  padding: 14px 0;
}

.footer__cols {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding: clamp(50px, 7vh, 70px) 0 clamp(40px, 6vh, 60px);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.3em;
  color: var(--ivory);
  margin-bottom: 24px;
}
.footer__col address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-dim);
}
.footer__col address a { transition: color 0.3s; }
.footer__col address a:hover { color: var(--gold-bright); }
.footer__col h4 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__col a {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  padding: 5px 0;
  transition: color 0.3s, transform 0.4s var(--ease-lux);
}
.footer__col a:hover { color: var(--ivory); transform: translateX(4px); }

.footer__mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(90px, 17vw, 280px);
  letter-spacing: 0.22em;
  text-align: center;
  line-height: 0.86;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 239, 230, 0.07);
  user-select: none;
  pointer-events: none;
  margin-top: 10px;
  transform: translateY(8%);
}

.footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 0 30px;
  border-top: 1px solid var(--line-soft);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(233, 229, 218, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ON SCROLL
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s ease, transform 1.2s var(--ease-lux);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

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

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .br-desk { display: none; }

  .product__panel {
    width: 100%;
    padding: calc(58px + 2vh) clamp(20px, 6vw, 40px) 20px;
    box-shadow: none;
  }
  .product__caption { display: none; }
  .product__desc { font-size: 12.5px; }

  .collection__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; border-top: 0; }
  .services__grid article {
    border-right: 0;
    border-top: 1px solid var(--line-soft);
    padding: 34px 4px 26px;
  }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__col--contact { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .collection__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card__row h3 { font-size: 18px; }
  .card__price { font-size: 10.5px; }
  .card__meta { font-size: 9.5px; letter-spacing: 0.1em; }
  .footer__form { min-width: 100%; flex-direction: column; }
  .footer__form input { border-right: 1px solid var(--line); }
  .footer__form .btn { width: 100%; text-align: center; }
  .hero__title { font-size: clamp(44px, 13vw, 60px); }
}

/* short viewports — keep the product panel airy */
@media (max-height: 780px) {
  .product__desc { display: none; }
  .product__panel { padding-top: calc(56px + 2vh); }
}
@media (max-height: 660px) {
  .product__specs { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cinema__grain, .loader__mark { animation: none; }
  .reveal, .product__panel, .product__fig img, .product__head,
  .product__desc, .product__specs, .product__buy, .product__caption,
  .menu__links a, .card__img img { transition: none; }
  .reveal { opacity: 1; transform: none; }
}
