/* =============================================================
   GEMLUX BOUTIQUE — blush editorial
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 50%; }

:root {
  /* palette — pearl blush + champagne + deep plum ink */
  --bg:        #faf3f1;
  --bg-2:      #f5e6e4;
  --bg-3:      #efd9da;
  --paper:     #ffffff;

  --rose:      #e8b6bc;
  --rose-soft: #f7dfe1;
  --rose-deep: #c9848f;

  --gold:      #c0a06a;
  --gold-soft: #e2cda4;
  --gold-dark: #9a7c48;

  --ink:       #2a1d22;
  --ink-soft:  #4b3840;
  --ink-mute:  #8c737b;
  --line:      rgba(42, 29, 34, .13);
  --line-2:    rgba(42, 29, 34, .07);

  /* type */
  --display: "Italiana", "Didot", Georgia, serif;
  --serif:   "Cormorant Garamond", Georgia, serif;
  --sans:    "Jost", ui-sans-serif, system-ui, "Segoe UI", sans-serif;

  /* rhythm */
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --sec-y:  clamp(4.5rem, 9.5vh, 8rem);
  --maxw:   1440px;

  /* easings */
  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --ease-in:     cubic-bezier(.7, 0, .84, 0);
  --ease-soft:   cubic-bezier(.25, .46, .45, .94);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);

  --shadow-soft: 0 30px 60px -30px rgba(122, 74, 86, .38);
  --shadow-lift: 0 44px 90px -34px rgba(122, 74, 86, .5);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
input, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; letter-spacing: -.01em; font-weight: 400; color: var(--ink); }
::selection { background: var(--rose); color: var(--ink); }

:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  border-radius: 999px; font-size: .8rem; letter-spacing: .08em;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Typography scale
   ============================================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: clamp(.62rem, .8vw, .72rem);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.eyebrow .dot { color: var(--gold); margin: 0 .35em; }

.h2 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: .005em;
}
.h2 em, .hero-title em, .keep-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--rose-deep);
}

.lead {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  max-width: 54ch;
  color: var(--ink-soft);
}

.section-head { padding: 0 var(--gutter); margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head-center { text-align: center; }
.section-head-center .h2 { margin-inline: auto; }

/* =============================================================
   4. Components — buttons, fields, frames
   ============================================================= */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--bg);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1.05em 2.1em;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out),
              background-color .5s var(--ease-out), color .5s var(--ease-out),
              border-color .5s var(--ease-out);
  will-change: transform;
}
.btn-solid {
  background: var(--ink); color: var(--bg);
  box-shadow: 0 14px 30px -16px rgba(42, 29, 34, .8);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 26px 44px -20px rgba(42, 29, 34, .78); }

.btn-line { border: 1px solid var(--line); color: var(--ink); }
.btn-line:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-3px); }

.btn-ghost {
  border: 1px solid var(--line); color: var(--ink);
  padding: .8em 1.5em; font-size: .68rem; backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-block { width: 100%; }

/* fields — floating labels */
.field { position: relative; display: block; }
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  padding: 1.5rem 0 .7rem;
  font-size: 1rem; font-weight: 300;
  transition: border-color .45s var(--ease-out);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field-label {
  position: absolute; left: 0; top: 1.35rem;
  font-size: .95rem; color: var(--ink-mute);
  pointer-events: none;
  transition: transform .45s var(--ease-out), font-size .45s var(--ease-out), color .45s var(--ease-out);
  transform-origin: left top;
}
.field input:focus + .field-label,
.field input:not(:placeholder-shown) + .field-label,
.field textarea:focus + .field-label,
.field textarea:not(:placeholder-shown) + .field-label {
  transform: translateY(-1.35rem) scale(.72);
  color: var(--gold-dark);
  letter-spacing: .12em; text-transform: uppercase;
}
.field-lg input { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.3rem); padding-top: 1.9rem; }
.field-lg .field-label { top: 1.9rem; }

/* image frames */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(150deg, var(--bg-2), var(--bg-3));
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.frame::after {
  content: ""; position: absolute; inset: 10px; z-index: 3;
  border: 1px solid rgba(255, 255, 255, .35);
  pointer-events: none;
}
.frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.06);
  transition: transform 1.4s var(--ease-out), filter 1.4s var(--ease-out);
}
.frame-portrait { aspect-ratio: 3 / 4; }
.frame-square { aspect-ratio: 1 / 1; }
.frame-tag {
  position: absolute; z-index: 4; left: 1.1rem; bottom: 1.1rem;
  font-size: .6rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--bg); background: rgba(42, 29, 34, .58);
  backdrop-filter: blur(8px);
  padding: .5rem .95rem; border-radius: 999px;
}
.frame-tag span { color: var(--gold-soft); }

/* grain */
.grain {
  position: fixed; inset: -50%; z-index: 9000; pointer-events: none;
  opacity: .3; mix-blend-mode: multiply;
  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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  animation: grainShift 7s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -3%); }
  60%  { transform: translate(-2%, -2%); }
  80%  { transform: translate(3%, 1%); }
  100% { transform: translate(0, 0); }
}

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease-out), clip-path 1.1s var(--ease-out);
  animation: splashSafety .01s 4.5s forwards;
}
.splash-inner { display: grid; justify-items: center; gap: 1rem; }
.splash-word {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  letter-spacing: .3em; text-indent: .3em;
  color: var(--ink);
  animation: splashIn 1.2s var(--ease-out) both;
}
.splash-line {
  display: block; height: 1px; width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: splashLine 1.9s var(--ease-out) .25s forwards;
}
.splash-sub {
  font-size: .62rem; letter-spacing: .48em; text-indent: .48em;
  text-transform: uppercase; color: var(--ink-mute);
  animation: splashIn 1.2s var(--ease-out) .35s both;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
@keyframes splashIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes splashLine { to { width: min(320px, 60vw); } }

/* =============================================================
   6. Cursor
   ============================================================= */
.cursor { position: fixed; inset: 0; z-index: 9500; pointer-events: none; opacity: 0; transition: opacity .35s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
}
.cursor-dot { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; background: var(--ink); }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1px solid var(--gold);
  transition: width .4s var(--ease-out), height .4s var(--ease-out), margin .4s var(--ease-out),
              background-color .4s var(--ease-out), border-color .4s var(--ease-out);
}
.cursor.is-hover .cursor-ring {
  width: 62px; height: 62px; margin: -31px 0 0 -31px;
  background: rgba(192, 160, 106, .12); border-color: var(--gold-dark);
}
.cursor.is-hover .cursor-dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* =============================================================
   7. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background-color .6s var(--ease-out), box-shadow .6s var(--ease-out),
              backdrop-filter .6s var(--ease-out), padding .6s var(--ease-out);
  padding: clamp(1rem, 2.4vw, 1.9rem) 0;
}
.nav.is-stuck {
  background: rgba(250, 243, 241, .82);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-2);
  padding: .75rem 0;
}
.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-brand { display: grid; line-height: 1; }
.nav-brand-mark { font-family: var(--display); font-size: 1.5rem; letter-spacing: .24em; color: var(--ink); }
.nav-brand-sub { font-size: .5rem; letter-spacing: .46em; color: var(--ink-mute); margin-top: .35rem; }

.nav-links { display: none; gap: clamp(1.4rem, 2.6vw, 2.8rem); }
.nav-links a {
  position: relative; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-soft); padding: .3rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold); transition: right .5s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta { display: none; }

.nav-burger { width: 34px; height: 34px; display: grid; align-content: center; gap: 7px; }
.nav-burger span { display: block; height: 1px; background: var(--ink); transition: transform .5s var(--ease-out), opacity .35s; }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 890;
  background: var(--bg);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease-out);
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu-links { display: grid; gap: 1.6rem; text-align: center; }
.menu-links a { font-family: var(--display); font-size: clamp(2rem, 9vw, 3.2rem); color: var(--ink); }
.menu-links .menu-cta { font-family: var(--sans); font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-dark); margin-top: 1rem; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(6rem, 11vh, 8rem) 0 clamp(3.5rem, 7vh, 5.5rem);
  overflow: hidden; isolation: isolate;
}
.hero-silk {
  position: absolute; inset: -18%; z-index: -2;
  background:
    radial-gradient(52% 44% at var(--mesh-x) var(--mesh-y), rgba(232, 182, 188, .62), transparent 62%),
    radial-gradient(46% 40% at 78% 26%, rgba(226, 205, 164, .46), transparent 64%),
    conic-gradient(from var(--mesh-angle), rgba(247, 223, 225, .7), rgba(239, 217, 218, .35), rgba(226, 205, 164, .3), rgba(247, 223, 225, .7));
  filter: blur(72px) saturate(118%);
  opacity: .95;
  animation: meshShift 26s linear infinite;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 32%; --mesh-y: 38%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 64%; --mesh-y: 58%; }
  100% { --mesh-angle: 360deg; --mesh-x: 32%; --mesh-y: 38%; }
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(250, 243, 241, .55) 0%, rgba(250, 243, 241, 0) 32%, rgba(250, 243, 241, .72) 100%);
}

.hero-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid; gap: clamp(3rem, 6vw, 5rem);
}
.hero-copy > * + * { margin-top: clamp(1.1rem, 2vw, 1.7rem); }
.hero-title {
  font-family: var(--display);
  font-size: clamp(2.9rem, 8.2vw, 7.2rem);
  line-height: .98;
  letter-spacing: .002em;
}
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.16rem); max-width: 44ch; color: var(--ink-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem; list-style: none; padding: 0;
  padding-top: 1.4rem; border-top: 1px solid var(--line-2);
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute);
}
.hero-meta li { position: relative; padding-left: 1.1rem; }
.hero-meta li::before { content: "\2726"; position: absolute; left: 0; color: var(--gold); font-size: .6rem; }

.hero-art { position: relative; }
.hero-figure-main { width: min(100%, 460px); margin-inline: auto; }
.hero-figure-detail {
  width: clamp(120px, 30%, 190px);
  position: absolute; right: 2%; bottom: -6%;
  border-radius: 50%;
  box-shadow: var(--shadow-lift);
}
.hero-figure-detail::after { border-radius: 50%; inset: 8px; }

.hero-seal {
  position: absolute; left: 1%; top: -4%;
  width: clamp(84px, 12vw, 122px); aspect-ratio: 1;
  display: grid; place-items: center;
  color: var(--ink-mute);
}
.hero-seal svg { width: 100%; height: 100%; animation: sealSpin 34s linear infinite; }
.hero-seal text { font-family: var(--sans); font-size: 8.4px; letter-spacing: .14em; fill: var(--ink-mute); }
.hero-seal-core { position: absolute; color: var(--gold); font-size: 1rem; }
@keyframes sealSpin { to { transform: rotate(360deg); } }

.hero-scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: grid; justify-items: center; gap: .6rem;
  font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-mute);
}
.hero-scroll span { display: block; width: 1px; height: 46px; background: linear-gradient(180deg, var(--gold), transparent); }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee {
  overflow: hidden; position: relative;
  display: flex; align-items: center; flex-wrap: nowrap;
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  padding: clamp(.9rem, 1.8vw, 1.35rem) 0;
  background: var(--paper);
}
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: clamp(50px, 10vw, 140px); z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--paper), transparent); }
.marquee-track {
  display: inline-flex; align-items: center; flex: 0 0 auto;
  gap: clamp(1.4rem, 3vw, 3rem); padding-right: clamp(1.4rem, 3vw, 3rem);
  white-space: nowrap; will-change: transform;
  font-family: var(--display); font-size: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink);
}
.marquee-track .sep { color: var(--gold); font-size: .7em; }

/* =============================================================
   10. The House
   ============================================================= */
.house { padding: var(--sec-y) 0; }
.house-inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
}
.house-side .eyebrow { margin-bottom: 1.5rem; }
.house-num {
  display: block; font-family: var(--display);
  font-size: clamp(5rem, 14vw, 11rem); line-height: .82; color: var(--rose-deep);
}
.house-num-label { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-mute); margin-top: .8rem; }
.house-body > * + * { margin-top: clamp(1.2rem, 2.4vw, 1.9rem); }

.quote { margin-top: clamp(2rem, 4vw, 3rem); padding-left: clamp(1.2rem, 3vw, 2.2rem); border-left: 1px solid var(--gold); }
.quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2.8vw, 2.1rem); line-height: 1.28; color: var(--ink); }
.quote cite { display: block; margin-top: .5rem; font-style: normal; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }
.quote-name { color: var(--gold-dark); }

.stats {
  list-style: none; padding: 0;
  max-width: var(--maxw); margin: clamp(3.5rem, 7vw, 6rem) auto 0;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.6rem, 3vw, 2rem);
}
.stats li { display: grid; gap: .5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.stat-num { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; color: var(--ink); }
.stat-num-text { font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 4.4vw, 3rem); }
.stat-label { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-mute); }

/* =============================================================
   11. Collections
   ============================================================= */
.collections { padding: var(--sec-y) 0; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.collection-grid {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; gap: clamp(1rem, 1.6vw, 1.5rem);
}
.card {
  position: relative; overflow: hidden;
  border-radius: 3px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-out);
}
.card:hover { box-shadow: 0 46px 90px -34px rgba(160, 92, 106, .55); transition-duration: .18s, .55s; }
.card-media { position: relative; overflow: hidden; height: 100%; }
.card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42, 29, 34, 0) 34%, rgba(42, 29, 34, .58) 100%);
  transition: opacity .7s var(--ease-out);
}
.card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); transition: transform 1.5s var(--ease-out), filter 1.5s var(--ease-out); }
.card:hover img { transform: scale(1.07); filter: saturate(1.18) brightness(1.05); }

.card-meta {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  color: var(--bg);
  transform: translateZ(45px);
}
.card-index { font-size: .6rem; letter-spacing: .3em; color: var(--gold-soft); }
.card-title { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.5rem); color: #fff; margin-top: .4rem; }
.card-desc {
  font-size: .86rem; color: rgba(255, 255, 255, .82); max-width: 34ch; margin-top: .4rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.card-go {
  display: inline-flex; align-items: center; gap: .5em; margin-top: .9rem;
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft);
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s var(--ease-out) .06s, transform .6s var(--ease-out) .06s;
}
.card-go i { font-style: normal; transition: transform .5s var(--ease-out); }
.card:hover .card-desc, .card:hover .card-go { opacity: 1; transform: none; }
.card:hover .card-go i { transform: translateX(6px); }

.card-tall { aspect-ratio: 4 / 5; }
.card-wide { aspect-ratio: 16 / 10; }
.card-small { aspect-ratio: 1 / 1; }

/* =============================================================
   12. Signature room
   ============================================================= */
.signature {
  position: relative; padding: var(--sec-y) 0;
  background: linear-gradient(170deg, var(--bg-2) 0%, var(--bg-3) 55%, var(--rose-soft) 100%);
  overflow: hidden; isolation: isolate;
}
.signature-glow {
  position: absolute; inset: -20% -10% auto; height: 70%; z-index: -1;
  background: radial-gradient(50% 60% at 50% 40%, rgba(226, 205, 164, .55), transparent 70%);
  filter: blur(60px);
}
.sig-stage {
  max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter);
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.sig-piece { position: relative; display: grid; justify-items: center; }
.sig-chain {
  display: block; width: 1px; height: clamp(40px, 8vw, 88px);
  background: linear-gradient(180deg, transparent, var(--gold));
  margin-bottom: -2px;
}
.sig-plate {
  width: min(100%, 520px);
  filter: drop-shadow(0 32px 46px rgba(140, 84, 96, .38));
  --m1: #f6d9d2; --m2: #e0a99e; --m3: #c98a86;
  transition: filter .8s var(--ease-out);
}
.sig-plate .m-1 { stop-color: var(--m1); }
.sig-plate .m-2 { stop-color: var(--m2); }
.sig-plate .m-3 { stop-color: var(--m3); }
.sig-hairline { stroke: rgba(255, 255, 255, .55); stroke-width: 1; }
.sig-engraved {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 74px; fill: rgba(66, 38, 42, .74);
  paint-order: stroke;
  stroke: rgba(255, 255, 255, .5); stroke-width: .8px;
  transition: opacity .35s var(--ease-out);
}
.sig-piece[data-metal="pearl"] .sig-plate { --m1: #ffffff; --m2: #f1e6e6; --m3: #d9c7c9; }
.sig-piece[data-metal="champagne"] .sig-plate { --m1: #f4e6c8; --m2: #ddc189; --m3: #b9975a; }
.sig-shine { animation: shineSweep 4.6s var(--ease-soft) infinite; }
@keyframes shineSweep {
  0%   { transform: translateX(0); }
  55%  { transform: translateX(820px); }
  100% { transform: translateX(820px); }
}
.sig-controls > * + * { margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.sig-metals { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .7rem; }
.sig-metals legend {
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: .9rem; padding: 0;
}
.metal {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .7em 1.2em; border-radius: 999px;
  border: 1px solid var(--line);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
  transition: border-color .45s var(--ease-out), color .45s var(--ease-out), background-color .45s var(--ease-out);
}
.metal span { width: 15px; height: 15px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6); }
.metal[data-metal="rose"] span { background: linear-gradient(140deg, #f6d9d2, #c98a86); }
.metal[data-metal="pearl"] span { background: linear-gradient(140deg, #fff, #d9c7c9); }
.metal[data-metal="champagne"] span { background: linear-gradient(140deg, #f4e6c8, #b9975a); }
.metal:hover { border-color: var(--gold); color: var(--ink); }
.metal.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.sig-note { font-size: .82rem; color: var(--ink-mute); max-width: 42ch; }

/* =============================================================
   13. Voices
   ============================================================= */
.voices { padding: var(--sec-y) 0; background: var(--paper); }
.voices-inner { max-width: 980px; margin-inline: auto; padding-inline: var(--gutter); text-align: center; }
.voices-stage { position: relative; margin-top: 2.2rem; min-height: 9.5rem; }
.voice {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  pointer-events: none;
}
.voice.is-active { opacity: 1; transform: none; pointer-events: auto; }
.voice p { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3.6vw, 2.5rem); line-height: 1.26; color: var(--ink); }
.voice cite { display: block; margin-top: 1.4rem; font-style: normal; font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-mute); }
.voices-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 1rem; }
.voices-dots button { width: 6px; height: 6px; border-radius: 50%; background: var(--line); transition: background-color .5s var(--ease-out), transform .5s var(--ease-out); }
.voices-dots button.is-active { background: var(--gold); transform: scale(1.5); }

/* =============================================================
   14. Atelier
   ============================================================= */
.atelier { padding: var(--sec-y) 0; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.atelier-inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; gap: clamp(2.8rem, 6vw, 5rem);
}
.atelier-copy > * + * { margin-top: clamp(1.2rem, 2.4vw, 1.9rem); }
.atelier-facts { display: grid; gap: 1rem; margin-top: clamp(2rem, 4vw, 3rem); }
.atelier-facts > div { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line-2); }
.atelier-facts dt { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); }
.atelier-facts dd { margin: 0; font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }

.atelier-form {
  background: var(--paper); border-radius: 3px;
  padding: clamp(1.6rem, 3.4vw, 3rem);
  box-shadow: var(--shadow-soft);
  display: grid; gap: 1.1rem;
  align-self: start;
}
.form-row { display: grid; gap: 1.1rem; }
.atelier-form .btn { margin-top: 1rem; }
.btn-spin {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid rgba(250, 243, 241, .35); border-top-color: var(--bg);
  display: none;
  animation: spin .8s linear infinite;
}
.btn.is-loading .btn-spin { display: block; }
.btn.is-loading { pointer-events: none; opacity: .78; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { font-size: .78rem; color: var(--gold-dark); min-height: 1.2em; text-align: center; }

/* =============================================================
   15. Keep in touch
   ============================================================= */
.keep { padding: var(--sec-y) 0; background: var(--bg-3); }
.keep-inner { max-width: 760px; margin-inline: auto; padding-inline: var(--gutter); text-align: center; }
.keep-title { font-family: var(--display); font-size: clamp(2.1rem, 5.6vw, 3.9rem); line-height: 1.04; }
.keep-form { display: grid; gap: 1rem; margin-top: clamp(1.8rem, 3.6vw, 2.6rem); }
.field-inline input { border-bottom-color: rgba(42, 29, 34, .22); text-align: center; }
.field-inline .field-label { left: 50%; transform: translateX(-50%); }
.field-inline input:focus + .field-label,
.field-inline input:not(:placeholder-shown) + .field-label { transform: translate(-50%, -1.35rem) scale(.72); }
.keep-note { margin-top: 1.2rem; font-size: .72rem; letter-spacing: .1em; color: var(--ink-mute); }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--ink); color: var(--bg-2); padding: clamp(3rem, 7vw, 5rem) 0 2rem; overflow: hidden; }
.footer-word {
  font-family: var(--display);
  font-size: clamp(3.4rem, 17vw, 15rem); line-height: .8;
  text-align: center; letter-spacing: .06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(226, 205, 164, .34);
  user-select: none;
}
.footer-inner {
  max-width: var(--maxw); margin: clamp(2rem, 4vw, 3rem) auto 0; padding-inline: var(--gutter);
  display: grid; gap: 1.4rem; justify-items: center; text-align: center;
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.footer-nav a { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(245, 230, 228, .72); transition: color .4s var(--ease-out); }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-legal { font-size: .68rem; letter-spacing: .12em; color: rgba(245, 230, 228, .45); }

/* =============================================================
   17. Reveal / split
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity .95s var(--ease-soft), transform .95s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

.split-line {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  padding-bottom: .14em; margin-bottom: -.14em;
}
.split-word { display: inline-block; transform: translateY(112%); transition: transform 1.05s var(--ease-out); }
.is-revealed .split-word, .split-ready .split-word { transform: none; }

/* =============================================================
   18. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .keep-form { grid-template-columns: 1fr auto; align-items: end; text-align: left; }
  .field-inline input { text-align: left; }
  .field-inline .field-label { left: 0; transform: none; }
  .field-inline input:focus + .field-label,
  .field-inline input:not(:placeholder-shown) + .field-label { transform: translateY(-1.35rem) scale(.72); }
}

@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 2; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }

  .hero-inner { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .hero-art { justify-self: end; width: min(100%, 520px); }
  .hero-figure-main { margin-inline: 0; }
  .hero-seal { left: -7%; top: -5%; }

  .house-inner { grid-template-columns: minmax(180px, .3fr) 1fr; }

  .collection-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1.06fr .94fr;
    height: clamp(620px, 62vw, 880px);
  }
  .card { aspect-ratio: auto; height: 100%; }
  .card-tall  { grid-column: 1 / 6;  grid-row: 1 / 3; }
  .card-wide  { grid-column: 6 / 13; grid-row: 1 / 2; }
  .card-small:nth-of-type(3) { grid-column: 6 / 10; grid-row: 2 / 3; }
  .card-small:nth-of-type(4) { grid-column: 10 / 13; grid-row: 2 / 3; }

  .sig-stage { grid-template-columns: 1.1fr .9fr; }
  .atelier-inner { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: clamp(4rem, 6.6vw, 7.4rem); }
}

/* =============================================================
   19. Reduced motion — only the intrusive stuff
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .hero-seal svg { animation: none; }
  .sig-shine { animation: none; opacity: 0; }
  html { scroll-behavior: auto; }
}
