/* ============================================================
   CARA PARIS — Design System
   ============================================================ */

/* ── LOCAL FONTS (file:// compatible) ── */
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 200; font-display: swap; src: url('fonts/Outfit.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/Outfit.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/Outfit.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/Outfit.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/Outfit.woff2') format('woff2'); }
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/CormorantGaramond.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/CormorantGaramond-italic.woff2') format('woff2');
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; }

/* ── VARIABLES ── */
:root {
  --c-white:      #FFFFFF;
  --c-offwhite:   #FAF9F7;
  --c-bone:       #F4F2EE;
  --c-black:      #0A0A0A;
  --c-ink:        #1A1A1A;
  --c-muted:      #8A8680;
  --c-hairline:   #E8E4DE;
  --c-gold:       #c69856;
  --c-gold-light: #d4a96a;
  --c-gold-pale:  #F5EDD8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', sans-serif;

  --text-xs:   10px;
  --text-sm:   12px;
  --text-base: 15px;
  --text-lg:   18px;
  --text-xl:   clamp(20px, 2.5vw, 30px);
  --text-2xl:  clamp(30px, 4vw, 52px);
  --text-3xl:  clamp(23px, 3.2vw, 42px);
  --text-hero: clamp(23px, 3.2vw, 42px);

  --ls-tight:   -0.02em;
  --ls-wide:    0.08em;
  --ls-wider:   0.15em;
  --ls-widest:  0.25em;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  120px;
  --space-2xl: 200px;

  --container:        1280px;
  --container-narrow: 640px;
  --nav-h:            74px;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --dur:       0.45s;
  --dur-fast:  0.25s;
}

/* ── BASE ── */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--c-ink);
  background: var(--c-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

.section        { padding: var(--space-2xl) 0; }
.section--sm    { padding: var(--space-xl) 0; }
.section--museum { padding: 160px 0; }
.section--light { background: var(--c-offwhite); }
.section--bone  { background: var(--c-bone); }
.section--paper {
  background-color: #F7F0E8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
}
.section--dark  { background: var(--c-black); color: var(--c-white); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow--gold { color: var(--c-gold); }
.eyebrow--white { color: var(--c-gold); }

.eyebrow-rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-sans);
  font-size: var(--text-3xl);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.section-title--white { color: var(--c-white); }
.section-title em { font-style: italic; font-weight: 200; color: inherit; }

.hero-title {
  font-family: var(--font-sans);
  font-size: var(--text-hero);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--c-white);
}
.hero-title em { font-style: italic; font-weight: 200; color: inherit; }
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 460px;
  margin-top: 28px;
}

.body-text {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  max-width: 480px;
}
.body-text--white { color: rgba(255,255,255,0.6); max-width: none; }
.body-text + .body-text { margin-top: 16px; }

.caption {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  color: var(--c-muted);
}

.quote {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-ink);
}

.gold-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin-bottom: 24px;
}

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}
.collections-grid--peek { grid-template-columns: repeat(4, 1fr); }
.collections-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 64px;
}
/* Sketches section (atelier) */
.sketches-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 72px;
}
.sketches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

/* ── IMAGES ── */
.img-fill { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-frame { position: relative; overflow: hidden; }
.img-frame--portrait   { aspect-ratio: 3/4; }
.img-frame--landscape  { aspect-ratio: 16/9; }
.img-frame--square     { aspect-ratio: 1; }
.img-frame--tall       { aspect-ratio: 2/3; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--c-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav--scrolled {
  background: var(--c-white);
  border-bottom-color: var(--c-hairline);
}
.nav--dark {
  background: #111110;
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav--dark .nav-link,
.nav--dark .nav-logo { color: rgba(255,255,255,0.75); }
.nav--dark .nav-link:hover { color: var(--c-white); }
.nav--dark .nav-cta {
  border-color: rgba(184,146,42,0.5);
  color: var(--c-gold);
}
.nav--dark .nav-burger span { background: rgba(255,255,255,0.75); }
.nav--dark .nav-dropdown {
  background: #1A1A18;
  border-color: rgba(255,255,255,0.06);
}
.nav--dark .nav-dropdown a { color: rgba(255,255,255,0.6); }
.nav--dark .nav-dropdown a:hover { color: var(--c-gold); }

.nav-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 72px);
  max-width: 1280px;
  margin: 0 auto;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  align-self: stretch;
}
.nav-right { justify-content: flex-end; }

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(26,25,22,0.80);
  transition: color var(--dur-fast) ease;
  position: relative;
}
.nav-link:hover { color: var(--c-gold); }

/* Dropdown */
.nav-item { position: relative; display: flex; align-items: center; align-self: stretch; }
.nav-item > .nav-link::after {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.6;
  transition: transform var(--dur-fast) ease;
}
.nav-item:hover > .nav-link::after { transform: rotate(225deg) translateY(-2px); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-4px);
  background: var(--c-white);
  border: 1px solid var(--c-hairline);
  padding: 8px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease, visibility var(--dur-fast) ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--dur-fast) ease;
}
.nav-dropdown a:hover { color: var(--c-gold); }
.nav-dropdown .nav-soon { opacity: 0.38; pointer-events: none; cursor: default; }
.nav-dropdown .nav-soon em { font-style: italic; text-transform: none; letter-spacing: 0.04em; font-size: 11px; }
.nav-dropdown hr {
  border: none;
  border-top: 1px solid rgba(26,25,22,0.04);
  margin: 6px 0;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 8px 20px;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.nav-cta:hover { background: var(--c-gold); color: var(--c-white); }

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--c-gold);
  transition: color var(--dur-fast) ease;
}
.nav-icon-btn:hover { color: var(--c-gold); }
.nav--dark .nav-icon-btn { color: rgba(255,255,255,0.75); }
.nav--dark .nav-icon-btn:hover { color: var(--c-white); }
.nav-dropdown--right { left: auto; right: 0; min-width: 0; width: 200px; }
.nav-dropdown a svg { flex-shrink: 0; }

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  color: var(--c-ink);
  outline: none;
  border: none;
  background: none;
}
.nav-burger span { width: 22px; }
.nav-burger span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  z-index: 190;
  background: var(--c-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 18px 0;
  border-bottom: 1px solid var(--c-hairline);
  width: 100%;
  text-align: center;
  transition: color var(--dur-fast) ease;
}
.mobile-menu a:first-child { border-top: 1px solid var(--c-hairline); }
.mobile-menu a:hover { color: var(--c-gold); }
.mobile-soon { opacity: 0.3; pointer-events: none; cursor: default; }
.mobile-soon em { font-style: italic; text-transform: none; letter-spacing: 0.04em; font-size: 9px; }
.mobile-menu hr {
  border: none;
  width: 100%;
  margin: 6px 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.45) 50%, rgba(10,10,10,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 80px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Hero page intérieure (collection) */
.hero--page {
  height: 75svh;
  min-height: 520px;
  align-items: flex-end;
  padding-bottom: 0;
}
.hero--page .hero-bg::after {
  background:
    linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.12) 100%),
    linear-gradient(to right, rgba(10,10,10,0.65) 0%, transparent 55%);
}
.hero--page .hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 56px;
}

.coll-hero__vline { display: none; }

.coll-hero__left { max-width: 640px; }

.coll-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 9px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.coll-hero__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--c-gold); }

.coll-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.5vw, 68px); font-weight: 300;
  color: #fff; letter-spacing: -0.03em; line-height: 0.9;
  margin: 0 0 32px;
}

.coll-hero__cta {
  font-family: var(--font-sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  display: inline-flex; align-items: center; gap: 14px;
}
.coll-hero__cta::after { content: ''; width: 32px; height: 1px; background: rgba(255,255,255,0.6); transition: width 0.3s; }
.coll-hero__cta:hover::after { width: 52px; }

.coll-hero__specs {
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-end; flex-shrink: 0; padding-bottom: 6px;
}
.coll-hero__spec { text-align: right; }
.coll-hero__spec-val {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 300;
  color: var(--c-gold); display: block; margin-bottom: 4px; letter-spacing: 0.04em;
}
.coll-hero__spec-label {
  font-family: var(--font-sans); font-size: 9px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .coll-hero__vline { display: none; }
  .hero--page .hero-content { flex-direction: column; align-items: flex-start; padding-bottom: 40px; gap: 28px; }
  .coll-hero__specs { flex-direction: row; align-items: flex-start; gap: 28px; }
  .coll-hero__spec { text-align: left; }
  .coll-hero__title { font-size: clamp(40px, 10vw, 72px); }
}
@media (max-width: 480px) {
  .coll-hero__specs { display: none; }
  .hero--page .hero-content { padding-bottom: 32px; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: 14px 36px;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, border-color var(--dur-fast) ease;
  white-space: nowrap;
}

/* Text-only link button — museum style */
.btn--text {
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  padding-bottom: 2px;
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.btn--text:hover { color: var(--c-gold); border-color: var(--c-gold); }
.btn--text--white { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }
.btn--text--white:hover { color: var(--c-white); border-color: var(--c-white); }

.btn--ghost {
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  background: transparent;
}
.btn--ghost:hover { background: var(--c-gold); color: var(--c-white); }

.btn--ghost-white {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--c-white);
  background: transparent;
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn--solid {
  background: var(--c-gold);
  color: var(--c-white);
  border: 1px solid var(--c-gold);
}
.btn--solid:hover { background: var(--c-gold-light); border-color: var(--c-gold-light); }

.btn--dark {
  background: var(--c-black);
  color: var(--c-white);
  border: 1px solid var(--c-black);
}
.btn--dark:hover { background: var(--c-ink); border-color: var(--c-ink); }

/* ── COLLECTION CARDS ── */
.card-collection {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 25/36;
}
.card-img-wrap {
  position: absolute;
  inset: 0;
}
.card-collection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.card-collection:hover img { transform: scale(1.05); }

.card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 23px 20px;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.08) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-caption__label {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.card-caption__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--c-white);
  line-height: 1;
  text-shadow: 0 1px 20px rgba(0,0,0,0.45);
}
.card-caption__link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* ── CARD COLLECTION — Coming Soon ── */
.card-collection--soon { cursor: default; }
.card-collection--soon img { filter: brightness(0.45); }
.card-collection--soon:hover img { transform: scale(1.04); }

/* ── PILLAR (dark band) ── */
.pillar-band { padding: 120px 0; }
.pillar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 80px;
}
.pillar-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 64px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: 0 56px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}
.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar__rule {
  width: 32px;
  height: 1px;
  background: var(--c-gold);
  margin-bottom: 28px;
}
.pillar__title {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 14px;
}
.pillar__text {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

/* ── EXCLUSIVE TEASER ── */
.excl-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  text-decoration: none;
}
.excl-teaser__image {
  position: relative; overflow: hidden;
}
.excl-teaser__image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 0.8s ease;
}
.excl-teaser__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, #0A0A0A 100%);
}
.excl-teaser:hover .excl-teaser__image img { transform: scale(1.03); }
.excl-teaser__content {
  background: #0A0A0A;
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 80px 72px 56px;
}
.excl-teaser__big {
  font-family: var(--font-sans);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.excl-teaser__big em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 200;
  color: rgba(255,255,255,0.6);
  display: inline;
}
@media (max-width: 900px) {
  .excl-teaser { grid-template-columns: 1fr; }
  .excl-teaser__image { height: 320px; }
  .excl-teaser__image::after { display: none; }
  .excl-teaser__content { padding: 48px 24px; }
}

/* ── MANIFESTE / 2-COL TEXT-IMAGE ── */
.manifeste {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}
.manifeste--reverse { grid-template-columns: 45fr 55fr; }
.manifeste--reverse .manifeste__image { order: -1; }

.manifeste__image .img-frame { height: 600px; }

/* ── ATELIER MOSAIC ── */
.atelier-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.atelier-mosaic__img img {
  width: 100%;
  aspect-ratio: 25 / 36;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.atelier-mosaic__img:hover img { transform: scale(1.03); }

/* ── ATELIER STRIP ── */
.atelier-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.atelier-strip .img-frame { aspect-ratio: 1; }
.atelier-strip .img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.atelier-strip .img-frame:hover img { transform: scale(1.03); }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  gap: 3px;
}
.product-grid--2 { grid-template-columns: repeat(2, 1fr); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid .img-frame { aspect-ratio: 4/5; }
.product-grid .img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.product-grid .img-frame:hover img { transform: scale(1.03); }

/* Mosaic Exclusive */
.mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.mosaic__main { grid-row: 1 / 3; }
.mosaic__main .img-frame { height: 100%; min-height: 500px; }
.mosaic__secondary .img-frame { aspect-ratio: 4/3; }

/* ── PROCESS STEPS ── */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--c-hairline);
}
.process-step:first-child { border-top: 1px solid var(--c-hairline); }
.process-step__num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--c-gold);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}
.process-step__title {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.process-step__text {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.8;
}

/* ── MATERIALS LIST ── */
.materials-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 80px;
  max-width: 800px;
  margin: 0 auto;
}
.materials-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.material-item {
  background: var(--c-black);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.material-item__rule {
  width: 20px;
  height: 1px;
  background: var(--c-gold);
  margin: 0 auto 24px;
  display: block;
}
.material-item__name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
}
.material-item__origin {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  flex-shrink: 0;
}

/* ── VIDEO ── */
.video-section {
  position: relative;
  background: var(--c-black);
  overflow: hidden;
}
.video-section video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  background: rgba(10,10,10,0.25);
}

/* ── CERTIFICATE MANIFESTE ── */
.cert-manifeste {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 72px;
  align-items: center;
}
.cert-manifeste__divider-line {
  background: rgba(184,146,42,0.2);
  align-self: stretch;
  min-height: 300px;
}
.cert-manifeste__photo-wrap {}
.cert-manifeste__photo-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.cert-manifeste__museum-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  color: var(--c-black);
  margin-top: 14px;
}
.cert-manifeste__museum-meta {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bbb;
  margin-top: 5px;
}
.cert-manifeste__left { display: flex; flex-direction: column; gap: 20px; }
.cert-manifeste__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--c-black);
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.cert-manifeste__title em { font-style: italic; font-weight: 200; }
.cert-manifeste__body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: #777;
  line-height: 1.8;
  max-width: 380px;
}
.cert-manifeste__divider { width: 40px; height: 1px; background: rgba(0,0,0,0.1); }
.cert-manifeste__meta { display: flex; flex-direction: column; gap: 16px; }
.cert-manifeste__meta-row { display: flex; flex-direction: column; gap: 6px; }
.cert-manifeste__meta-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
}
.cert-manifeste__meta-val {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--c-black);
}
.cert-manifeste__sig { display: flex; flex-direction: column; gap: 6px; }
.cert-manifeste__sig-line { width: 100px; height: 1px; background: rgba(0,0,0,0.15); }
.cert-manifeste__sig-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
}
@media (max-width: 768px) {
  .cert-manifeste { grid-template-columns: 1fr; gap: 48px; }
  .cert-manifeste__divider-line { display: none; }
}

/* ── CONTACT SPLIT 50/50 ── */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}
.contact-page__left {
  background: var(--c-offwhite);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--c-hairline);
}
.contact-page__right {
  background: var(--c-white);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-page__right h2 {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.contact-page__right h2 em { font-style: italic; font-weight: 200; color: var(--c-muted); }
.contact-infos { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  padding: 20px 0;
  border-top: 1px solid var(--c-hairline);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-info-item:last-child { border-bottom: 1px solid var(--c-hairline); }
.contact-info-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-gold);
}
.contact-info-value {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--c-ink);
}
.contact-cta-bespoke {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--c-hairline);
}
.contact-cta-bespoke p {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--c-muted);
  margin-bottom: 10px;
}
.contact-cta-bespoke a {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 1px solid rgba(184,146,42,0.4);
  padding-bottom: 2px;
}

/* ── BESPOKE SPLIT ── */
.bespoke-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}
.bespoke-split__left {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100svh;
  align-self: start;
  overflow: hidden;
  background: #0A0A0A;
}
.bespoke-split__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bespoke-split__left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 55%, rgba(10,10,10,0.08) 100%);
  pointer-events: none;
}
.bespoke-split__photo {
  position: relative;
  overflow: hidden;
  flex: 0 0 52svh;
}
.bespoke-split__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bespoke-split__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.bespoke-split__caption {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 2;
}
.bespoke-split__caption-rule {
  width: 36px;
  height: 1px;
  background: var(--c-gold);
  margin-bottom: 16px;
}
.bespoke-split__caption-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.bespoke-split__caption-title em { font-style: italic; color: rgba(255,255,255,0.75); }
.bespoke-split__process {
  background: transparent;
  padding: 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.bespoke-split__process-card {
  background: transparent;
  border: none;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
}
.bespoke-split__process-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 28px;
}
.bespoke-split__process-text {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.60);
  line-height: 1.8;
  max-width: 400px;
}
.bespoke-split__timeline {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.bespoke-split__timeline strong { color: var(--c-gold); font-weight: 400; }
.bespoke-split__form {
  background: var(--c-white);
  padding: 60px 64px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--c-hairline);
}
.bespoke-split__form .form { gap: 20px; }
.bespoke-split__form .form-field { gap: 6px; }
.bespoke-split__form .form-row { gap: 20px; }
.bespoke-split__form .form-input,
.bespoke-split__form .form-select { padding: 9px 40px 9px 16px; font-size: 14px; }
.bespoke-split__form .form-textarea { padding: 9px 16px; font-size: 14px; }
.bespoke-split__form .form-textarea { min-height: 72px; }
.bespoke-split__form .budget-pills,
.bespoke-split__form .pref-row { margin-top: 6px; }

/* ── STEPPER ── */
.stepper {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
.stepper__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stepper__lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,25,22,0.38);
  transition: color 0.3s;
  white-space: nowrap;
}
.stepper__col.is-active .stepper__lbl { color: var(--c-gold); font-weight: 600; }
.stepper__col.is-done .stepper__lbl { color: rgba(198,152,86,0.40); }
.stepper__bar {
  height: 4px;
  border-radius: 1px;
  background: rgba(26,25,22,0.08);
  transition: background 0.3s;
}
.stepper__col.is-done .stepper__bar { background: rgba(198,152,86,0.48); }
.stepper__col.is-active .stepper__bar { background: var(--c-gold); }
.step-panel { display: none; }
.step-panel.is-active { display: block; }

.step-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-hairline);
}
.step-nav__back {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0;
  transition: color 0.2s;
}
.step-nav__back:hover { color: var(--c-ink); }
.step-nav__back[disabled] { opacity: 0; pointer-events: none; }
.step-nav__next {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-ink);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 12px 28px;
  transition: background 0.2s;
}
.step-nav__next:hover { background: #222; }

/* ── UPLOAD ZONE ── */
.upload-zone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px dashed var(--c-hairline);
  padding: 32px 24px; cursor: pointer; text-align: center;
  transition: border-color 0.2s, background 0.2s;
  min-height: 140px;
}
.upload-zone:hover { border-color: var(--c-gold); background: rgba(198,152,86,0.03); }
.upload-zone.is-dragover { border-color: var(--c-gold); background: rgba(198,152,86,0.06); }
.upload-zone__icon { color: var(--c-hairline); margin-bottom: 12px; transition: color 0.2s; }
.upload-zone:hover .upload-zone__icon { color: var(--c-gold); }
.upload-zone__text {
  font-family: var(--font-sans); font-size: 12px; font-weight: 400;
  color: var(--c-muted); margin: 0 0 4px;
}
.upload-zone__text span { color: var(--c-gold); text-decoration: underline; text-underline-offset: 2px; }
.upload-zone__hint {
  font-family: var(--font-sans); font-size: 10px; font-weight: 300;
  color: var(--c-hairline); letter-spacing: 0.04em; margin: 0;
}
.upload-zone__files {
  font-family: var(--font-sans); font-size: 10px; font-weight: 400;
  color: var(--c-gold); margin: 8px 0 0; line-height: 1.6;
}

/* ── FORM EXTRAS ── */
.budget-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pill {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  border: 1px solid var(--c-hairline);
  padding: 8px 16px;
  cursor: pointer;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all var(--dur-fast) ease;
  user-select: none;
}
.pill:hover, .pill.active { border-color: var(--c-gold); color: var(--c-gold); }

.pref-row { display: flex; gap: 12px; margin-top: 8px; }
.pref-btn {
  flex: 1;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--c-hairline);
  color: var(--c-muted);
  cursor: pointer;
  transition: all var(--dur-fast) ease;
  user-select: none;
}
.pref-btn:hover, .pref-btn.active { border-color: var(--c-gold); color: var(--c-gold); }

.steps { display: flex; gap: 8px; align-items: center; margin-bottom: 32px; }
.step-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-hairline); transition: all var(--dur-fast) ease; }
.step-dot.active { background: var(--c-gold); width: 20px; border-radius: 3px; }
.step-label { font-family: var(--font-sans); font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-muted); margin-left: 4px; }

.btn-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--c-ink);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 32px;
  transition: background var(--dur-fast) ease;
}
.btn-submit:hover { background: var(--c-gold); }
.privacy-note {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--c-muted);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.03em;
}

/* ── FORM ── */
.form { display: flex; flex-direction: column; gap: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--c-bone);
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 2px 2px 0 0;
  padding: 11px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--c-ink);
  outline: none;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease;
  width: 100%;
}
.form-input:hover, .form-select:hover, .form-textarea:hover { background: #EDE9E3; }
.form-input:focus, .form-select:focus, .form-textarea:focus { background: var(--c-gold-pale); border-bottom-color: var(--c-gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--c-muted); opacity: 0.45; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%238A8680' stroke-width='1.1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }
.form-select:disabled { opacity: 0.35; cursor: not-allowed; }
.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error { background: rgba(139,26,26,0.04); border-bottom-color: rgba(139,26,26,0.5); }
.field-error-msg {
  display: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(139,26,26,0.75);
  align-items: center;
  gap: 7px;
  margin-top: 4px;
}
.field-error-msg.is-visible { display: flex; }
.field-error-msg::before { content: ''; display: inline-block; width: 10px; height: 1px; background: rgba(139,26,26,0.6); flex-shrink: 0; }

/* ── CTA BESPOKE ── */
.cta-bespoke {
  background: var(--c-white);
  padding: 120px 0;
  border-top: 1px solid var(--c-hairline);
}
.cta-bespoke__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 80px;
}
.cta-bespoke__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--c-hairline);
}
.cta-bespoke__eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.cta-bespoke__title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--c-ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.cta-bespoke__title em { font-style: italic; font-weight: 200; color: var(--c-muted); }
.cta-bespoke__text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}
.cta-bespoke__btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--c-gold);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  transition: background var(--dur-fast) ease;
}
.cta-bespoke__btn:hover { background: var(--c-gold-light); }
.cta-bespoke__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-hairline);
}
.cta-bespoke__stat {
  background: var(--c-white);
  padding: 40px 0;
  text-align: center;
}
.cta-bespoke__stat-val {
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 300;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.cta-bespoke__stat-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ── FOOTER ── */
.footer .btn--ghost {
  border-color: rgba(255,255,255,0.35);
  color: var(--c-white);
}
.footer .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--c-white);
}
.footer {
  background: var(--c-black);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-tagline {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 220px;
  margin-bottom: 24px;
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast) ease;
}
.footer-links a:hover { color: var(--c-white); }

.newsletter-input-row { display: flex; gap: 0; margin-top: 4px; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--c-white);
  outline: none;
  transition: border-color var(--dur-fast) ease;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-btn {
  background: var(--c-white);
  color: var(--c-black);
  border: 1px solid var(--c-white);
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
  white-space: nowrap;
}
.newsletter-btn:hover { background: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.18);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.2);
  transition: color var(--dur-fast) ease;
}
.footer-legal a:hover { color: var(--c-white); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--left  { transform: translateX(-24px); }
.reveal--right { transform: translateX(24px); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: none; }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* ── SCROLL INDICATOR ── */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  z-index: 2;
}
.scroll-cue__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
.scroll-cue__label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ── TEXT-CENTER UTILITY ── */
.text-center { text-align: center; }
.text-center .body-text { margin-left: auto; margin-right: auto; }
.text-center .eyebrow { justify-content: center; }

/* ── PAGE HEADER (simple, intérieur) ── */
.page-header {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--c-hairline);
  margin-bottom: 0;
}

/* ── SEPARATOR ── */
.sep {
  width: 40px;
  height: 1px;
  background: var(--c-hairline);
  margin: 40px 0;
}
.sep--gold { background: var(--c-gold); }

/* ── MUSEUM GALLERY FRAME ── */
/* Images presented like gallery pieces — isolated on white with breathing room */
.gallery-frame {
  position: relative;
}
.gallery-frame img { width: 100%; display: block; }
.gallery-frame::before {
  content: attr(data-index);
  position: absolute;
  top: -18px;
  left: -10px;
  font-family: var(--font-sans);
  font-size: 88px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-hairline);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}

/* Label beneath image — architectural style */
.museum-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0 0;
  margin-top: 18px;
}
.museum-label__title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--c-ink);
  letter-spacing: 0.01em;
}
.museum-label__meta {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* ── FULL-BLEED IMAGE (edge-to-edge on mobile) ── */
.full-bleed { margin: 0 calc(-1 * 48px); }
@media (max-width: 1024px) { .full-bleed { margin: 0 calc(-1 * 32px); } }
@media (max-width: 480px)  { .full-bleed { margin: 0 calc(-1 * 20px); } }

/* ── OVERSIZED QUOTE ── */
.quote--display {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}

/* ── STAT / COUNTER ── */
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.stat-block__num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--c-gold);
  line-height: 1;
}
.stat-block__label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ── FRENCH FLAG DIVIDER ── */
.french-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 28px 0;
}
.french-flag::before,
.french-flag::after {
  content: '';
  display: block;
  height: 2px;
  width: 56px;
}
.french-flag::before { background: #002395; }
.french-flag::after  { background: #ED2939; }

/* ── HORIZONTAL RULE ── */
.h-rule {
  border: none;
  border-top: 1px solid var(--c-hairline);
  margin: 0;
}
.h-rule--gold { border-color: var(--c-gold); opacity: 0.4; }

/* ── UNIVERSE SECTION ── */
.universe-section { padding: 0; }
.universe-frame {
  position: relative;
  overflow: hidden;
}
.universe-frame img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.universe-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.38) 55%, transparent 100%);
  pointer-events: none;
}
.universe-overlay {
  position: absolute; top: 0; left: 0; bottom: 0;
  z-index: 2;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 0 72px;
  max-width: 520px;
}
.universe-badge {
  position: absolute; bottom: 28px; right: 36px; z-index: 2;
  text-align: right;
}
.universe-badge__title {
  font-family: var(--font-sans); font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.45); letter-spacing: 0.03em; display: block;
}
.universe-badge__meta {
  font-family: var(--font-sans); font-size: 8px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold);
  display: block; margin-top: 5px;
}
.h-rule--white { border-color: rgba(255,255,255,0.18); }

/* ── CTA BAND — Gold glow ── */
.cta-band--glow {
  background: #FDFCFA;
  background-image: radial-gradient(ellipse at center, rgba(198,152,86,0.04) 0%, transparent 70%);
}

/* ── CTA BAND ── */
.cta-band { text-align: center; }
.cta-band .section-title { margin-bottom: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container, .container--narrow { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .manifeste { gap: 48px; }
  .pillar-inner { padding: 0 32px; }
  .pillar { padding: 0 40px; }
}

@media (max-width: 900px) {
  :root {
    --space-xl:  64px;
    --space-2xl: 100px;
  }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; gap: 3px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .manifeste { grid-template-columns: 1fr; gap: 40px; }
  .manifeste--reverse .manifeste__image { order: 0; }
  .manifeste__image .img-frame { height: 420px; }
  .atelier-strip { grid-template-columns: 1fr; }
  .atelier-mosaic { grid-template-columns: 1fr; }
  .atelier-top { flex-direction: column !important; gap: 32px !important; align-items: flex-start !important; }
  .atelier-top > div { align-items: flex-start !important; text-align: left !important; width: 100%; }
  .atelier-top > div p { text-align: left !important; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 40px 0; }
  .pillar:first-child { padding-left: 0; }
  .pillar:last-child { border-bottom: none; padding-right: 0; }
  .product-grid--3 { grid-template-columns: 1fr 1fr; }
  .materials-list { grid-template-columns: repeat(2, 1fr); }
  .materials-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic__main { grid-row: auto; }
  .mosaic__main .img-frame { min-height: auto; aspect-ratio: 4/3; }
  .bespoke-split { grid-template-columns: 1fr; }
  .bespoke-split__left { position: relative; height: auto; min-height: 65svh; }
  .bespoke-split__process { padding: 40px 32px; max-width: none; }
  .bespoke-split__form { padding: 60px 32px; }
  .cta-bespoke__top { grid-template-columns: 1fr; gap: 40px; }
  .cta-bespoke__inner { padding: 0 40px; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-page__left { padding: 60px 40px; border-right: none; border-bottom: 1px solid var(--c-hairline); }
  .contact-page__right { padding: 60px 40px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
  .collections-grid--peek { grid-template-columns: repeat(2, 1fr); }
  .collections-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .sketches-header { flex-direction: column; gap: 24px; }
  .sketches-header p { max-width: none !important; }
  .sketches-grid { grid-template-columns: 1fr; }
  .pillar-inner { padding: 0 40px; }
  .universe-overlay { padding: 0 40px; max-width: 420px; }
  .universe-badge { display: none; }
}

@media (max-width: 768px) {
  .nav-left,
  .nav-right { display: none; }
  .nav-inner {
    display: flex;
    align-items: center;
    position: relative;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-burger { display: flex; margin-left: auto; }

  .collections-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .collections-grid--peek { grid-template-columns: 1fr; }
  .universe-frame img { aspect-ratio: 3/4; }
  .universe-overlay { padding: 0 28px; max-width: 100%; }

  .hero-title { font-size: clamp(32px, 8.8vw, 58px); line-height: 1.15; }
  .section-title { line-height: 1.18; }
  .hero-bg img { object-position: 50% center; }
  .hero-bg::after { background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.45) 50%, rgba(10,10,10,0.1) 100%); }

  .grid-4 { grid-template-columns: 1fr; }
  .product-grid--2, .product-grid--3 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .bespoke-split { grid-template-columns: 1fr; min-height: auto; }
  .bespoke-split__left { position: relative; height: auto; min-height: 60svh; }
  .contact-page { grid-template-columns: 1fr; min-height: auto; }
  .contact-page__left { border-right: none; border-bottom: 1px solid var(--c-hairline); padding: 60px 32px; }
  .contact-page__right { padding: 60px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .video-section video { aspect-ratio: 9/16; }

  /* Phase 2 — Menu mobile */
  .mobile-menu a { font-size: 12px; padding: 18px 0; }

  /* Separator between Collections and Actions groups */
  .mobile-menu .mobile-soon + a { margin-top: 20px; }

  /* Hr separator — gold tinted, more breathing room */
  .mobile-menu hr { margin: 12px 0; border-top-color: rgba(198,152,86,0.18); }

  /* Portal links — secondary treatment with icons */
  .mobile-menu hr ~ a { font-size: 10px; color: rgba(26,25,22,0.4); padding: 16px 0; letter-spacing: 0.18em; display: flex; align-items: center; justify-content: center; gap: 8px; }
  .mobile-menu hr ~ a svg { width: 14px; height: 14px; flex-shrink: 0; }
  .mobile-menu hr ~ a span { min-width: 140px; }
}

@media (max-width: 480px) {
  :root {
    --space-xl:  48px;
    --space-2xl: 80px;
  }
  .container, .container--narrow { padding: 0 20px; }
  .pillar-inner { padding: 0 20px; }
  .sketches-grid { gap: 12px; }
  .nav-inner { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero--page .hero-actions { align-items: center; }
  .bespoke-split__process { padding: 32px 20px; }
  .bespoke-split__form { padding: 48px 20px; }
  .cta-bespoke__inner { padding: 0 20px; }
  .cta-bespoke__stats { grid-template-columns: 1fr; }
  .cta-bespoke__stat { padding: 28px 0; }
  .contact-page__left, .contact-page__right { padding: 48px 20px; }
  .pref-row { flex-wrap: wrap; }
  .engraving-row .pref-btn { flex: 1 1 auto; }
  .certificate-block { padding: 32px 24px; }
  .process-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .process-step__num { font-size: 36px; }
  .collections-grid { grid-template-columns: 1fr; padding: 0; }
  .atelier-mosaic { gap: 2px; }
  .universe-overlay { padding: 0 20px; }
  .universe-frame img { aspect-ratio: 1/1; }
  .stepper { gap: 6px; }
  .stepper__lbl { font-size: 8px; letter-spacing: 0.12em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .excl-teaser__content { padding: 40px 20px; }

  /* Phase 1 — Mobile responsive */
  .pillar { padding: 28px 0; }
  .pillar-band { padding: 64px 0; }
  .mobile-menu { padding: 0 24px; }
  .materials-list { grid-template-columns: 1fr; }
  .manifeste__image .img-frame { height: auto; }
  .bespoke-split__process-card { padding: 28px 20px; }
  .scroll-cue { display: none; }

  /* Phase 2 — Hero */
  .hero { min-height: auto; }
  .hero-content { padding-bottom: 48px; }
  .hero-subtitle { max-width: none; }

  /* Phase 2 — Content */
  .body-text { max-width: none; }
  .cta-bespoke { padding: 64px 0; }
  .cta-bespoke__stat-val { font-size: 40px; }
  .pillar-eyebrow { margin-bottom: 40px; }
  .collections-header { margin-bottom: 32px; }

  /* Phase 2 — Exclusive teaser */
  .excl-teaser__image { min-height: 280px; }
}
