@import url("celestial.css?v=20260724-3");

/* Pont minimal pour le rendu du prototype dans le template de blocs WordPress. */
.page-duchesse .wp-site-blocks,
.page-duchesse .wp-block-post-content,
.page-jacuzzi .wp-site-blocks,
.page-jacuzzi .wp-block-post-content,
.page-normandie .wp-site-blocks,
.page-normandie .wp-block-post-content,
.page-paris .wp-site-blocks,
.page-paris .wp-block-post-content {
  display: contents;
}

.page-duchesse .wp-block-post-content > *,
.page-jacuzzi .wp-block-post-content > *,
.page-normandie .wp-block-post-content > *,
.page-paris .wp-block-post-content > * {
  max-width: none;
  margin-block: 0;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-vf.woff2") format("woff2");
  font-weight: 100 900;
  font-display: optional;
}

@font-face {
  font-family: "Cormorant";
  src: url("../fonts/cormorant-vf.woff2") format("woff2");
  font-weight: 300 700;
  font-display: optional;
}

@font-face {
  font-family: "Cormorant";
  src: url("../fonts/cormorant-italic-vf.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: optional;
}

:root {
  color-scheme: dark;
  --night: #07080a;
  --night-soft: #101217;
  --night-raised: #17191e;
  --ink: #17181b;
  --ink-soft: #5d6067;
  --pearl: #f2eee7;
  --paper: #f2eee7;
  --brand: #b9bec7;
  --brand-dark: #777e88;
  --gold: #d8c8bb;
  --silver: #b9bec7;
  --steel: #777e88;
  --warm: #d8c8bb;
  --graphite: #101217;
  --line-light: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(14, 16, 20, 0.16);
  --white: #fff;
  --page-x: clamp(22px, 5vw, 84px);
  --section-y: clamp(88px, 11vw, 174px);
  --header-h: 82px;
  --serif: "Cormorant", Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  background: var(--night);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 10% 20%, #fff 0 0.55px, transparent 0.7px),
    radial-gradient(circle at 70% 60%, #fff 0 0.45px, transparent 0.7px);
  background-size: 7px 7px, 11px 11px;
  content: "";
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.reading-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brand);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: var(--header-h);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 10px var(--page-x);
  border-bottom: 1px solid transparent;
  transition:
    min-height 0.35s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  border-color: var(--line-light);
  background: rgba(9, 10, 12, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  width: 138px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-menu a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.desktop-menu a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-menu a:is(:hover, [aria-current="page"]) {
  color: var(--white);
}

.desktop-menu a:is(:hover, [aria-current="page"])::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.header-cta:hover {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-light);
  background: transparent;
}

.menu-toggle i {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--white);
}

.menu-toggle i:first-of-type {
  transform: translateY(-4px);
}

.menu-toggle i:last-of-type {
  transform: translateY(4px);
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background:
    radial-gradient(circle at 75% 15%, rgba(185, 190, 199, 0.12), transparent 36%),
    var(--night);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu-head img {
  width: 132px;
  filter: brightness(0) invert(1);
}

.mobile-menu-head button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.mobile-menu nav {
  display: grid;
  margin: auto 0;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu nav small {
  color: var(--brand);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.mobile-menu nav span {
  color: var(--white);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
}

.mobile-menu nav em {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu > .button {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-h) + 70px) var(--page-x) clamp(100px, 12vh, 150px);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home .hero-media img {
  object-position: 62% center;
}

.hero-product .hero-media img {
  object-position: 66% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.73) 42%, rgba(5, 6, 8, 0.15) 78%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.65), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(770px, 68vw);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-script {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 48px);
  font-style: italic;
  line-height: 1;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero-product h1 {
  font-size: clamp(62px, 7.4vw, 118px);
}

.hero-product h1 span {
  display: block;
  max-width: 800px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 420;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button-row.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--ease),
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-brand {
  color: var(--white);
  background: var(--brand);
}

.button-brand:hover {
  background: var(--brand-dark);
}

.button-ghost,
.button-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(10, 10, 10, 0.14);
}

.button-ghost:hover,
.button-outline:hover,
.button-light {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: var(--page-x);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 1px;
  height: 46px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero-scroll i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: var(--white);
  content: "";
  animation: scroll-line 2.1s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-120%); }
  60%, 100% { transform: translateY(240%); }
}

.hero-product-facts {
  position: absolute;
  z-index: 3;
  right: var(--page-x);
  bottom: 30px;
  display: grid;
  width: min(620px, 48vw);
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(5, 6, 8, 0.34);
  backdrop-filter: blur(10px);
}

.hero-product-facts span {
  padding: 17px 18px;
  border-right: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-product-facts span:last-child {
  border-right: 0;
}

.hero-product-facts strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 var(--page-x);
  color: var(--ink);
  background: var(--paper);
}

.trust-strip > div {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-right: 1px solid var(--line-dark);
  text-align: center;
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 500;
  line-height: 1;
}

.trust-strip strong small {
  font-size: 0.48em;
}

.trust-strip span {
  margin-top: 8px;
  color: #88817a;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: var(--section-y) var(--page-x);
}

.section h2,
.destination h2,
.gift-section h2,
.final-booking h2,
.moment-section h2,
.mid-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5.7vw, 86px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.section h2 em,
.destination h2 em,
.gift-section h2 em,
.final-booking h2 em,
.moment-section h2 em,
.mid-cta h2 em {
  color: var(--brand);
  font-weight: 350;
}

.section p,
.destination p,
.gift-section p,
.moment-section p,
.mid-cta p {
  max-width: 680px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p {
  margin-right: auto;
  margin-left: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    gap 0.25s var(--ease),
    color 0.25s ease;
}

.text-link:hover {
  gap: 19px;
  color: var(--brand);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.76);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.conviction,
.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(50px, 8vw, 132px);
  color: var(--ink);
  background: var(--pearl);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-media > span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(8, 9, 11, 0.78);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.split-copy p:not(.section-label) {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.85;
}

.conviction blockquote {
  grid-column: 1 / -1;
  margin: clamp(50px, 8vw, 110px) calc(var(--page-x) * -1) calc(var(--section-y) * -1);
  padding: clamp(70px, 9vw, 128px) var(--page-x);
  color: var(--white);
  background: var(--night-soft);
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 66px);
  font-weight: 350;
  line-height: 1.16;
  text-align: center;
}

.product-preview {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 42%, rgba(185, 190, 199, 0.055), transparent 28%),
    var(--night);
}

.product-preview h2 {
  color: var(--white);
}

.product-preview .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.preview-visual {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.preview-visual > img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.preview-facts {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(650px, 62%);
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 18px;
  background: rgba(9, 10, 12, 0.9);
  backdrop-filter: blur(16px);
  list-style: none;
}

.preview-facts li {
  padding: 13px 14px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.preview-facts li:nth-child(3n) {
  border-right: 0;
}

.preview-facts li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.comparison {
  color: var(--ink);
  background: var(--paper);
}

.comparison-intro {
  max-width: 900px;
}

.comparison-intro > p:not(.section-label) {
  color: var(--ink-soft);
  font-size: 18px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1160px;
  margin: clamp(50px, 7vw, 90px) auto 0;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.comparison-grid article {
  min-height: 360px;
  padding: clamp(34px, 5vw, 70px);
  background: var(--pearl);
}

.comparison-grid .comparison-highlight {
  color: var(--white);
  background: var(--night-soft);
}

.comparison-grid small {
  color: var(--brand);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-grid h3 {
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 450;
  line-height: 1.06;
}

.comparison-grid ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.comparison-grid li {
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid currentColor;
  opacity: 0.68;
}

.comparison-grid li::before {
  margin-left: -22px;
  margin-right: 10px;
  color: var(--brand);
  content: "—";
}

.comparison-quote {
  margin: clamp(50px, 7vw, 90px) auto 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 60px);
  font-style: italic;
  line-height: 1.15;
  text-align: center;
}

.options-overview,
.product-options {
  color: rgba(255, 255, 255, 0.72);
  background: var(--night-soft);
}

.options-overview h2,
.product-options h2 {
  color: var(--white);
}

.card-grid {
  display: grid;
  gap: 2px;
}

.card-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.image-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #121316;
}

.image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.08) 72%);
  content: "";
}

.image-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.image-card:hover > img {
  transform: scale(1.04);
}

.image-card .card-number {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
}

.image-card > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 28px;
  left: 24px;
}

.image-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 39px);
  font-weight: 450;
  line-height: 1.05;
}

.image-card p {
  margin: 9px 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.image-card strong {
  color: var(--brand);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-link {
  display: flex;
  width: fit-content;
  margin: 42px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.from-paris {
  color: var(--ink);
  background: var(--pearl);
}

.route-visual {
  display: grid;
  max-width: 980px;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin: 0 auto clamp(70px, 8vw, 115px);
  color: #7b746e;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-visual i {
  height: 1px;
  background: var(--line-dark);
}

.route-visual strong {
  color: var(--brand-dark);
}

.from-paris .section-heading {
  margin-bottom: 0;
}

.from-paris .section-heading > p:not(.section-label) {
  color: var(--ink-soft);
  font-size: 18px;
}

.destination {
  display: grid;
  min-height: 730px;
  grid-template-columns: 1.05fr 0.95fr;
  color: rgba(255, 255, 255, 0.78);
  background: var(--night);
}

.destination-media {
  position: relative;
  min-height: 620px;
}

.destination-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-media > span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  background: rgba(9, 10, 12, 0.82);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.destination-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-y) var(--page-x);
}

.destination-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
}

.destination .text-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
}

.occasions {
  color: var(--ink);
  background: var(--paper);
}

.occasions .section-heading > p:not(.section-label) {
  color: var(--ink-soft);
}

.editorial-links {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.editorial-links a {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line-dark);
  transition:
    padding 0.3s var(--ease),
    color 0.2s ease;
}

.editorial-links a:hover {
  padding-right: 16px;
  padding-left: 16px;
  color: var(--brand-dark);
}

.editorial-links small {
  color: var(--brand);
  font-family: var(--serif);
  font-size: 24px;
}

.editorial-links strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.editorial-links em {
  display: block;
  margin-top: 7px;
  color: #8a837c;
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-links b {
  font-size: 20px;
  font-weight: 400;
}

.reviews-summary {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 190, 199, 0.08), transparent 32%),
    var(--night-soft);
}

.reviews-mark {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.35em;
  text-align: center;
}

.reviews-summary .section-heading {
  margin-bottom: 0;
}

.reviews-summary .section-heading > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
}

.rating-line {
  display: flex;
  width: fit-content;
  align-items: baseline;
  gap: 15px;
  margin: 30px auto 0;
  padding: 15px 22px;
  border: 1px solid var(--line-light);
}

.rating-line strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.rating-line span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-summary .text-link {
  color: rgba(255, 255, 255, 0.72);
}

.gift-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--ink);
  background: var(--brand);
}

.gift-visual {
  min-height: 650px;
}

.gift-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-y) var(--page-x);
}

.gift-copy .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.gift-copy h2 {
  color: var(--white);
}

.gift-copy h2 em {
  color: var(--ink);
}

.gift-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.gift-copy .button {
  width: fit-content;
  margin-top: 24px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(500px, 1.25fr);
  gap: clamp(60px, 9vw, 150px);
  color: var(--ink);
  background: var(--pearl);
}

.faq-section .section-heading {
  margin-bottom: 0;
}

.faq-section .section-heading > p:not(.section-label) {
  color: var(--ink-soft);
}

.faq-list,
.product-faq {
  border-top: 1px solid var(--line-dark);
}

.faq-list details,
.product-faq details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary,
.product-faq summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 4px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  list-style: none;
}

.faq-list summary::-webkit-details-marker,
.product-faq summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after,
.product-faq summary::after {
  color: var(--brand);
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
}

.faq-list details[open] summary::after,
.product-faq details[open] summary::after {
  content: "−";
}

.faq-list details p,
.product-faq details p {
  margin: -4px 0 24px;
  padding-right: 50px;
  color: var(--ink-soft);
}

.final-booking {
  position: relative;
  display: flex;
  min-height: 880px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-y) var(--page-x);
  text-align: center;
}

.final-booking > img,
.final-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-booking > img {
  object-fit: cover;
}

.final-overlay {
  background:
    linear-gradient(0deg, rgba(6, 7, 9, 0.9), rgba(6, 7, 9, 0.5)),
    radial-gradient(circle, transparent, rgba(6, 7, 9, 0.5));
}

.final-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
}

.final-content > p:not(.section-label) {
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
}

.final-content > .product-care-note {
  width: fit-content;
  max-width: 720px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.035em;
  backdrop-filter: blur(8px);
  background: rgba(7, 9, 12, 0.34);
}

.product-care-note strong {
  color: #fff;
  font-weight: 600;
}

.availability-form {
  display: grid;
  max-width: 860px;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 1px;
  margin: 38px auto 0;
  padding: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.availability-form label {
  display: grid;
  gap: 7px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.52);
  background: rgba(9, 10, 12, 0.9);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}

.availability-form input {
  width: 100%;
  min-height: 30px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  color-scheme: dark;
  font-size: 14px;
}

.availability-form .button {
  min-height: 69px;
  border: 0;
}

.form-status {
  grid-column: 1 / -1;
  max-width: none !important;
  margin: 0 !important;
  padding: 0;
  color: var(--white) !important;
  background: rgba(9, 10, 12, 0.92);
  font-size: 12px !important;
}

.form-status:not(:empty) {
  padding: 13px 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  padding: 70px var(--page-x) 28px;
  border-top: 1px solid var(--line-light);
  background: #07080a;
}

.footer-brand img {
  width: 160px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--serif);
  font-size: 20px;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer nav a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-note {
  grid-column: 1 / -1;
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Page La Duchesse */
.page-duchesse {
  background: var(--night);
}

.product-story {
  background: var(--paper);
}

.moment-section {
  position: relative;
  display: flex;
  min-height: 920px;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: var(--section-y) var(--page-x);
}

.moment-section > img,
.moment-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.moment-section > img {
  object-fit: cover;
  object-position: center 48%;
}

.moment-shade {
  background: linear-gradient(90deg, rgba(7, 8, 10, 0.12), rgba(7, 8, 10, 0.9) 68%);
}

.moment-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 48vw);
  padding: clamp(30px, 5vw, 74px);
  background: rgba(7, 8, 10, 0.67);
  backdrop-filter: blur(12px);
}

.moment-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.signature-quote {
  padding: clamp(100px, 14vw, 210px) var(--page-x);
  background:
    radial-gradient(circle at 50% 50%, rgba(185, 190, 199, 0.065), transparent 42%),
    #060709;
}

.signature-quote blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 110px);
  font-weight: 350;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-align: center;
}

.morning {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  color: var(--ink);
  background: var(--paper);
}

.morning-copy p:not(.section-label) {
  color: var(--ink-soft);
  font-size: 17px;
}

.morning-media img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
}

.equipment-section {
  color: rgba(255, 255, 255, 0.72);
  background: var(--night-soft);
}

.equipment-section h2 {
  color: var(--white);
}

.product-gallery-note {
  margin: 0;
  padding: 0 0 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2px;
}

.product-gallery button {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: var(--night);
}

.product-gallery button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 7, 9, 0.82), transparent 55%);
  content: "";
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-gallery button:hover img {
  transform: scale(1.035);
}

.product-gallery span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2px;
  gap: 1px;
  background: var(--line-light);
}

.equipment-grid article {
  min-height: 220px;
  padding: 30px;
  background: var(--night);
}

.equipment-grid small {
  color: var(--brand);
  font-family: var(--serif);
  font-size: 22px;
}

.equipment-grid h3 {
  margin: 32px 0 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.equipment-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.equipment-local {
  max-width: none !important;
  margin: 0;
  padding: 22px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mid-cta {
  display: flex;
  min-height: 550px;
  align-items: center;
  justify-content: center;
  padding: var(--section-y) var(--page-x);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(185, 190, 199, 0.08), transparent 40%),
    #07080a;
}

.mid-cta p:not(.section-label) {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.58);
}

.mid-cta .button {
  margin-top: 25px;
}

.product-occasions {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  color: var(--ink);
  background: var(--pearl);
}

.compact-links {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.compact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compact-links a:hover {
  color: var(--brand-dark);
}

.product-reviews {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 8vw, 125px);
  color: var(--ink);
  background: var(--paper);
}

.review-photo {
  position: relative;
}

.review-photo > img {
  width: 100%;
  min-height: 660px;
  object-fit: cover;
}

.review-photo > div {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  min-width: 190px;
  padding: 24px;
  color: var(--white);
  background: rgba(9, 10, 12, 0.9);
}

.review-photo div span {
  color: var(--gold);
  letter-spacing: 0.15em;
}

.review-photo div strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.review-photo div small {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-copy > p:not(.section-label) {
  color: var(--ink-soft);
}

.review-copy blockquote {
  margin: 32px 0;
  padding: 28px 0 28px 28px;
  border-left: 2px solid var(--brand);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 37px);
  line-height: 1.2;
}

.review-copy cite {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-platforms {
  display: flex;
  gap: 1px;
  margin: 28px 0;
  background: var(--line-dark);
}

.review-platforms span {
  display: grid;
  min-width: 140px;
  padding: 14px 18px;
  color: var(--ink-soft);
  background: var(--pearl);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-platforms strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0;
}

.practical {
  color: var(--ink);
  background: var(--pearl);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.practical-grid article {
  min-height: 190px;
  padding: 30px;
  background: var(--paper);
}

.practical-grid small {
  color: var(--brand-dark);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practical-grid p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-faq {
  max-width: 980px;
  margin: clamp(60px, 8vw, 110px) auto 0;
}

.product-final {
  min-height: 900px;
}

.lightbox {
  width: min(1200px, calc(100vw - 40px));
  max-width: none;
  height: min(860px, calc(100vh - 40px));
  max-height: none;
  padding: 0;
  border: 0;
  background: #050608;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 10, 12, 0.82);
  font-size: 27px;
  line-height: 1;
}

@media (max-width: 1120px) {
  .card-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-card {
    min-height: 520px;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-product-facts {
    width: min(700px, calc(100% - var(--page-x) * 2));
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: flex;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: 920px;
    padding-bottom: 120px;
  }

  .hero-content {
    width: min(720px, 100%);
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.72) 60%, rgba(5, 6, 8, 0.25) 100%);
  }

  .hero-home .hero-media img,
  .hero-product .hero-media img {
    object-position: 64% center;
  }

  .hero-product {
    padding-bottom: 230px;
  }

  .hero-product-facts {
    right: var(--page-x);
    bottom: 34px;
    left: var(--page-x);
    width: auto;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip > div {
    min-height: 126px;
    border-bottom: 1px solid var(--line-dark);
  }

  .trust-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .trust-strip > div:last-child {
    grid-column: 1 / -1;
  }

  .conviction,
  .product-story,
  .product-occasions,
  .product-reviews,
  .morning {
    grid-template-columns: 1fr;
  }

  .conviction blockquote {
    margin-top: 10px;
  }

  .split-media img {
    aspect-ratio: 16 / 11;
  }

  .comparison-grid,
  .gift-section,
  .faq-section,
  .destination {
    grid-template-columns: 1fr;
  }

  .destination-media,
  .gift-visual {
    min-height: 520px;
  }

  .faq-section {
    gap: 60px;
  }

  .product-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .product-gallery button:first-child {
    grid-column: 1 / -1;
  }

  .product-gallery button {
    min-height: 400px;
  }

  .moment-section {
    min-height: 850px;
    justify-content: center;
    align-items: flex-end;
  }

  .moment-shade {
    background: linear-gradient(0deg, rgba(7, 8, 10, 0.95), rgba(7, 8, 10, 0.12));
  }

  .moment-copy {
    width: 100%;
  }

  .card-grid-three {
    grid-template-columns: 1fr;
  }

  .product-options .image-card {
    min-height: 560px;
  }

  .practical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --page-x: 20px;
    --section-y: 82px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand {
    width: 112px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 9px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 840px;
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .hero h1,
  .hero-product h1 {
    font-size: clamp(49px, 15vw, 71px);
  }

  .hero-script {
    font-size: 27px;
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.65;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .hero-product {
    min-height: 940px;
    padding-bottom: 300px;
  }

  .hero-product-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-product-facts span:nth-child(2) {
    border-right: 0;
  }

  .hero-product-facts span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .section h2,
  .destination h2,
  .gift-section h2,
  .final-booking h2,
  .moment-section h2,
  .mid-cta h2 {
    font-size: clamp(42px, 12vw, 61px);
  }

  .trust-strip {
    padding: 0;
  }

  .trust-strip > div {
    padding: 18px 8px;
  }

  .trust-strip strong {
    font-size: 29px;
  }

  .trust-strip span {
    max-width: 120px;
    font-size: 8px;
  }

  .conviction blockquote {
    padding: 74px 24px;
    font-size: 38px;
  }

  .preview-facts {
    position: relative;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-facts li:nth-child(3n) {
    border-right: 1px solid var(--line-light);
  }

  .preview-facts li:nth-child(2n) {
    border-right: 0;
  }

  .preview-facts li:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line-light);
  }

  .preview-facts li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid article {
    min-height: 0;
    padding: 36px 25px;
  }

  .card-grid-four,
  .card-grid-three {
    grid-template-columns: 1fr;
  }

  .image-card,
  .product-options .image-card {
    min-height: 470px;
  }

  .route-visual {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .route-visual i {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }

  .editorial-links a {
    grid-template-columns: 44px 1fr auto;
    gap: 10px;
  }

  .editorial-links strong {
    font-size: 27px;
  }

  .gift-visual,
  .destination-media {
    min-height: 410px;
  }

  .faq-list summary,
  .product-faq summary {
    font-size: 21px;
  }

  .faq-list details p,
  .product-faq details p {
    padding-right: 10px;
  }

  .final-booking {
    min-height: 900px;
  }

  .availability-form {
    grid-template-columns: 1fr;
  }

  .availability-form .button {
    min-height: 58px;
  }

  .form-status {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 54px;
  }

  .footer-note {
    grid-column: 1;
  }

  .moment-section {
    min-height: 840px;
    padding: 0;
  }

  .moment-copy {
    padding: 60px 22px;
    background: linear-gradient(0deg, rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 0.7));
    backdrop-filter: none;
  }

  .signature-quote blockquote {
    font-size: 48px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery button:first-child {
    grid-column: auto;
  }

  .product-gallery button {
    min-height: 380px;
  }

  .equipment-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .equipment-grid article,
  .practical-grid article {
    min-height: 0;
  }

  .morning-media img,
  .review-photo > img {
    min-height: 450px;
  }

  .review-platforms {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Bande de promesse transversale — le contenu reste propre à chaque page. */
.promise-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(24px, 6vw, 96px);
  border-top: 1px solid rgba(7, 8, 10, 0.14);
  border-bottom: 1px solid rgba(7, 8, 10, 0.14);
  background: #f2eee7;
  color: #07080a;
}

.promise-band article {
  position: relative;
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 26px clamp(18px, 3vw, 46px);
  border-right: 1px solid rgba(7, 8, 10, 0.14);
}

.promise-band article:first-child { border-left: 1px solid rgba(7, 8, 10, 0.14); }
.promise-band small { color: #777e88; font-size: 9px; letter-spacing: 0.16em; }
.promise-band strong { font-family: Cormorant, serif; font-size: clamp(21px, 1.8vw, 30px); font-weight: 400; line-height: 1.05; }

.page-duchesse .hero-product-facts { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 760px) {
  .promise-band { grid-template-columns: 1fr; padding: 0 18px; }
  .promise-band article { min-height: 78px; padding: 18px 12px; border-right: 0; border-bottom: 1px solid rgba(7, 8, 10, 0.14); }
  .promise-band article:first-child { border-left: 0; }
  .promise-band article:last-child { border-bottom: 0; }
  .promise-band strong { font-size: 22px; }
  .page-duchesse .hero-product-facts { grid-template-columns: 1fr; }
  .page-duchesse .hero-product-facts span { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .page-duchesse .hero-product-facts span:last-child { border-bottom: 0; }
}

@media (min-width: 761px) and (max-width: 820px) {
  .page-duchesse .hero-product-facts { grid-template-columns: repeat(3, 1fr); }
  .page-duchesse .hero-product-facts span:nth-child(n) { border-right: 1px solid var(--line-light); border-bottom: 0; }
  .page-duchesse .hero-product-facts span:last-child { border-right: 0; }
}

/* Relance de réservation au milieu des pages éditoriales. Le bandeau garde la
   preuve utile au premier plan et laisse le calendrier MotoPress porter le prix. */
.booking-prompt {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 6vw, 110px);
  padding: clamp(44px, 5.5vw, 82px) clamp(22px, 7vw, 132px);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  color: #f2eee7;
  background:
    radial-gradient(circle at 78% 18%, rgba(95, 130, 158, 0.18), transparent 25%),
    linear-gradient(112deg, #07080a 0%, #10151d 58%, #07080a 100%);
}

.booking-prompt::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.62;
  background-image:
    radial-gradient(circle at 8% 28%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.7px),
    radial-gradient(circle at 21% 76%, rgba(255, 255, 255, 0.55) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 44% 19%, rgba(255, 255, 255, 0.72) 0 0.9px, transparent 1.6px),
    radial-gradient(circle at 67% 68%, rgba(255, 255, 255, 0.62) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 91% 34%, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.7px);
}

.booking-prompt::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 27%;
  right: 12%;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0.42;
  transform: rotate(-18deg);
}

.booking-prompt-copy {
  display: grid;
  gap: 8px;
}

.booking-prompt-copy small {
  color: rgba(242, 238, 231, 0.58);
  font: 650 9px var(--font-ui, Jost, sans-serif);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-prompt-copy strong {
  font: 400 clamp(30px, 3.2vw, 50px)/1 var(--font-display, Cormorant, serif);
  letter-spacing: -0.035em;
}

.booking-prompt-copy span {
  color: rgba(242, 238, 231, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.booking-prompt-link {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 17px 24px;
  border: 1px solid #f2eee7;
  color: #090b0f;
  background: #f2eee7;
  font: 700 10px var(--font-ui, Jost, sans-serif);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.booking-prompt-link:hover,
.booking-prompt-link:focus-visible {
  color: #f2eee7;
  background: transparent;
  transform: translateY(-2px);
}

.opening-booking-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 1.5rem;
}

.opening-booking-actions > .button,
.opening-booking-actions > .text-link {
  margin-top: 0;
}

.opening-booking-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 18px;
  border: 1px solid rgba(242, 238, 231, 0.5);
  color: #f2eee7;
  font: 650 9px var(--font-ui, Jost, sans-serif);
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.22s ease, background-color 0.22s ease;
}

.opening-booking-link:hover,
.opening-booking-link:focus-visible {
  color: #090b0f;
  background: #f2eee7;
}

@media (max-width: 760px) {
  .booking-prompt {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 48px 20px;
  }

  .booking-prompt-copy strong {
    font-size: clamp(31px, 9vw, 42px);
  }

  .booking-prompt-copy span {
    max-width: 31rem;
    font-size: 12px;
  }

  .booking-prompt-link {
    width: 100%;
    min-height: 56px;
    white-space: normal;
    text-align: center;
  }

  .opening-booking-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .opening-booking-actions > .button,
  .opening-booking-actions > .text-link,
  .opening-booking-link {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    margin: 0;
  }
}

/* Conversion mobile des pages d'acquisition : la page produit reste propriétaire
   des disponibilités et des prix. */
.satellite-booking {
  display: none;
}

@media (max-width: 820px) {
  .satellite-booking {
    position: fixed;
    z-index: 110;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    min-height: 68px;
    padding: 11px 13px 11px 17px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 3px;
    background: rgba(5, 9, 12, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(calc(100% + 24px));
    transition: opacity 0.28s ease, transform 0.35s ease, visibility 0.35s;
    pointer-events: none;
  }

  .satellite-booking.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .satellite-booking span {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.05;
  }

  .satellite-booking small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.5);
    font: 600 7px var(--font-ui);
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .satellite-booking strong {
    display: flex;
    min-height: 42px;
    padding-inline: 17px;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    background: #f0ece4;
    color: #0b1119;
    font: 700 9px var(--font-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .satellite-booking i {
    color: #46748e;
    font-size: 14px;
    font-style: normal;
  }

  .site-footer {
    padding-bottom: 105px;
  }
}

@media (max-width: 820px) and (prefers-reduced-motion: reduce) {
  .satellite-booking {
    transition: none;
  }
}


/* ==========================================================================
   Contrat visuel V10
   La V10 prolonge strictement la V9/V9bis : nuit, perle, argent, angles francs,
   typographie Cormorant/Jost et mise en scène photographique.
   ========================================================================== */

.site-header {
  min-height: 78px;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: 34px;
  padding: 0 clamp(22px, 3.2vw, 58px);
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(7, 8, 10, 0.91);
}

.brand {
  width: 152px;
}

.brand img {
  filter: none;
}

.desktop-menu {
  gap: clamp(24px, 2.8vw, 46px);
}

.desktop-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.07em;
  text-transform: none;
}

.desktop-menu a::after {
  background: var(--white);
}

.header-cta {
  padding: 12px 16px;
  border-color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.07em;
}

.reading-progress span {
  background: var(--pearl);
}

.hero {
  min-height: max(760px, 100svh);
  display: grid;
  grid-template-columns: minmax(430px, 42%) minmax(0, 58%);
  align-items: stretch;
  padding: 0;
  background: var(--night);
}

.hero-media {
  position: relative;
  z-index: 0;
  grid-row: 1;
  grid-column: 2;
  inset: auto;
  min-width: 0;
  overflow: hidden;
  background: #030508;
}

.hero-media img,
.hero-home .hero-media img,
.hero-product .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  filter: brightness(0.82) saturate(0.9) contrast(1.05);
  animation: v10-hero-settle 2.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  grid-row: 1;
  grid-column: 2;
  inset: auto;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--night) 0%, rgba(7, 8, 10, 0.66) 9%, transparent 42%),
    linear-gradient(0deg, rgba(7, 8, 10, 0.72) 0%, transparent 32%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.35) 0%, transparent 22%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: auto;
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 50px) clamp(42px, 4.5vw, 86px) 120px var(--page-x);
}

.eyebrow,
.section-label {
  color: var(--steel, #777e88);
  font-size: 11px;
  font-weight: 570;
  letter-spacing: 0.19em;
}

.hero .eyebrow {
  max-width: 490px;
  margin-bottom: 28px;
  color: var(--silver, #b9bec7);
}

.hero-script {
  margin: 0 0 20px;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(43px, 4.2vw, 68px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.hero h1,
.hero-product h1 {
  max-width: 690px;
  color: var(--pearl);
  font-size: clamp(49px, 5.1vw, 82px);
  font-weight: 440;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-product h1 {
  font-size: clamp(58px, 5.6vw, 88px);
  font-style: italic;
}

.hero-product h1 span {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(242, 238, 231, 0.86);
  font-family: var(--sans);
  font-size: clamp(13px, 1.18vw, 18px);
  font-style: normal;
  font-weight: 570;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.hero-lede {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(242, 238, 231, 0.72);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.62;
}

.button {
  min-height: 56px;
  gap: 26px;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0.045em;
  text-transform: none;
}

.button-brand,
.button-light {
  border-color: var(--pearl);
  color: var(--night);
  background: var(--pearl);
}

.button-brand:hover,
.button-light:hover {
  border-color: var(--white);
  color: var(--night);
  background: var(--white);
}

.button-ghost,
.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--pearl);
  background: transparent;
}

.text-link:hover {
  color: var(--warm, #d8c8bb);
}

.hero-scroll {
  right: calc(58% + 30px);
}

.door {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: 50.1%;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(132, 138, 148, 0.08), transparent 34%),
    linear-gradient(135deg, #11141a 0%, #07090c 48%, #101219 100%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.025);
  will-change: transform;
}

.door-left {
  left: 0;
  animation: v10-door-left 1.75s 350ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.door-right {
  right: 0;
  animation: v10-door-right 1.75s 350ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.door::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(224, 227, 232, 0.42) 18%, rgba(224, 227, 232, 0.22) 82%, transparent);
  box-shadow: 0 0 16px rgba(224, 227, 232, 0.12);
  content: "";
}

.door-left::after {
  right: 0;
}

.door-right::after {
  left: 0;
}

.door-mark {
  position: absolute;
  top: 48%;
  width: clamp(118px, 11vw, 180px);
  aspect-ratio: 1.25 / 1;
  background: url("assets/images/logo-love-room-spa.png") no-repeat;
  background-size: 200% 100%;
  opacity: 0.76;
  filter: grayscale(1) brightness(1.55) drop-shadow(0 4px 18px rgba(0, 0, 0, 0.52));
  transform: translateY(-50%);
}

.door-left .door-mark {
  right: 0;
  background-position: left center;
}

.door-right .door-mark {
  left: 0;
  background-position: right center;
}

@keyframes v10-door-left {
  to { transform: translateX(-102%); }
}

@keyframes v10-door-right {
  to { transform: translateX(102%); }
}

@keyframes v10-hero-settle {
  from { transform: scale(1.035); filter: brightness(0.66) saturate(0.72) contrast(1.06); }
  to { transform: scale(1); filter: brightness(0.82) saturate(0.9) contrast(1.05); }
}

.hero-product-facts {
  z-index: 3;
  right: 24px;
  bottom: 24px;
  width: calc(58% - 48px);
  border-color: var(--line-light);
  background: rgba(7, 8, 10, 0.76);
}

.trust-strip {
  background: var(--pearl);
}

.trust-strip > div {
  min-height: 136px;
}

.trust-strip strong {
  font-size: clamp(27px, 2.6vw, 39px);
}

.section {
  padding-top: clamp(88px, 9vw, 150px);
  padding-bottom: clamp(88px, 9vw, 150px);
}

.section h2,
.destination h2,
.gift-section h2,
.final-booking h2,
.moment-section h2,
.mid-cta h2 {
  color: inherit;
  font-size: clamp(43px, 5vw, 76px);
  line-height: 0.98;
}

.section h2 em,
.destination h2 em,
.gift-section h2 em,
.final-booking h2 em,
.moment-section h2 em,
.mid-cta h2 em {
  color: var(--steel, #777e88);
}

.conviction,
.product-story,
.morning {
  background: var(--pearl);
}

.split-media img {
  filter: saturate(0.9) contrast(1.02);
}

.conviction blockquote,
.signature-quote {
  color: var(--pearl);
  background:
    radial-gradient(circle at 50% 50%, rgba(185, 190, 199, 0.065), transparent 42%),
    var(--night);
}

.product-preview,
.options-overview,
.product-options,
.equipment-section,
.mid-cta,
.reviews-summary {
  background:
    radial-gradient(circle at 12% 42%, rgba(185, 190, 199, 0.055), transparent 28%),
    var(--night);
}

.preview-facts {
  background: rgba(7, 8, 10, 0.92);
}

.comparison-grid small,
.comparison-grid li::before,
.image-card .card-number,
.equipment-grid small,
.practical-grid small {
  color: var(--silver, #b9bec7);
}

.comparison-grid article {
  background: var(--pearl);
}

.comparison-grid .comparison-highlight {
  color: var(--pearl);
  background: var(--graphite, #101217);
}

.image-card {
  min-height: 540px;
  background: var(--graphite, #101217);
}

.image-card .card-number {
  font-size: 22px;
}

.image-card strong {
  color: var(--warm, #d8c8bb);
}

.from-paris,
.occasions,
.faq-section,
.practical {
  background: var(--pearl);
}

.route-visual strong,
.editorial-links small {
  color: var(--steel, #777e88);
}

.editorial-links a:hover {
  color: var(--steel, #777e88);
}

.reviews-mark {
  color: var(--warm, #d8c8bb);
}

.gift-section {
  color: var(--pearl);
  background: var(--graphite, #101217);
}

.gift-copy .section-label {
  color: var(--silver, #b9bec7);
}

.gift-copy h2 em {
  color: var(--silver, #b9bec7);
}

.gift-copy p {
  color: rgba(242, 238, 231, 0.68);
}

.gift-copy .button-light {
  color: var(--night);
}

.faq-list summary::after,
.product-faq summary::after {
  color: var(--steel, #777e88);
}

.moment-copy {
  background: rgba(7, 8, 10, 0.76);
  backdrop-filter: none;
}

.equipment-grid article {
  background: #0b0c0f;
}

.mid-cta {
  min-height: 500px;
}

.final-booking {
  min-height: 820px;
}

.availability-form .button-brand {
  min-height: 68px;
}

.site-footer {
  background: var(--night);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: 1fr auto auto;
    padding: 0 18px;
    background: var(--night);
  }

  .brand {
    width: 118px;
  }

  .hero,
  .hero-product {
    min-height: auto;
    display: block;
    padding: 0;
  }

  .hero-media {
    position: absolute;
    inset: 68px 0 auto;
    width: 100%;
    height: min(58svh, 530px);
  }

  .hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 68px 0 auto;
    width: 100%;
    height: min(58svh, 530px);
    background:
      linear-gradient(0deg, var(--night) 0%, rgba(7, 8, 10, 0.02) 30%),
      linear-gradient(180deg, rgba(7, 8, 10, 0.12), transparent 32%);
  }

  .hero-media img,
  .hero-home .hero-media img,
  .hero-product .hero-media img {
    object-position: 54% 48%;
  }

  .hero-content {
    min-height: auto;
    display: block;
    padding: calc(min(58svh, 530px) + 100px) 22px 78px;
  }

  .hero .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .hero-script {
    margin-bottom: 18px;
    font-size: clamp(36px, 9.6vw, 52px);
  }

  .hero h1,
  .hero-product h1 {
    font-size: clamp(44px, 11vw, 62px);
  }

  .hero-product h1 span {
    margin-top: 18px;
    font-size: 13px;
  }

  .hero-lede {
    margin-top: 21px;
    font-size: 14px;
  }

  .hero .button-row {
    margin-top: 26px;
  }

  .door {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero-product-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 28px);
    margin: 0 14px 18px;
  }

  .trust-strip > div {
    min-height: 120px;
  }

  .destination-media,
  .gift-visual {
    min-height: 500px;
  }

  .moment-copy {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-header.is-scrolled {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand {
    width: 116px;
  }

  .header-cta {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 9px;
  }

  .hero-media,
  .hero-overlay {
    height: 370px;
  }

  .hero-content {
    padding: 438px 22px 72px;
  }

  .hero-home .hero-media img,
  .hero-product .hero-media img {
    object-position: 54% 48%;
  }

  .hero h1,
  .hero-product h1 {
    font-size: clamp(41px, 12vw, 54px);
  }

  .hero-script {
    font-size: clamp(34px, 10vw, 45px);
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .button-row {
    gap: 10px;
  }

  .section h2,
  .destination h2,
  .gift-section h2,
  .final-booking h2,
  .moment-section h2,
  .mid-cta h2 {
    font-size: clamp(38px, 10.5vw, 50px);
  }

  .trust-strip strong {
    font-size: 28px;
  }

  .image-card {
    min-height: 450px;
  }

  .signature-quote blockquote {
    font-size: clamp(40px, 12vw, 56px);
  }

  .final-booking {
    min-height: 760px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .door {
    display: none;
  }

  .hero-media img {
    animation: none;
  }
}

/* ==========================================================================
   Mise en scène V9bis — richesse visuelle de la homepage
   ========================================================================== */

.v10-sky {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.v10-sky::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background-image:
    radial-gradient(circle at 7% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.8px),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.62) 0 0.7px, transparent 1.6px),
    radial-gradient(circle at 31% 36%, rgba(216, 200, 187, 0.78) 0 0.8px, transparent 1.7px),
    radial-gradient(circle at 47% 84%, rgba(255, 255, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 61% 14%, rgba(185, 190, 199, 0.72) 0 0.8px, transparent 1.8px),
    radial-gradient(circle at 76% 58%, rgba(255, 255, 255, 0.72) 0 0.9px, transparent 1.8px),
    radial-gradient(circle at 91% 27%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px);
  background-size: 310px 330px, 370px 410px, 430px 390px, 490px 460px, 540px 510px, 590px 550px, 650px 610px;
  content: "";
  animation: v10-stars 5.8s ease-in-out infinite alternate;
}

.v10-sky::after {
  position: absolute;
  z-index: 1;
  top: 18%;
  left: -20%;
  width: 180px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  box-shadow: 0 0 11px rgba(255, 255, 255, 0.35);
  content: "";
  transform: rotate(-17deg);
  animation: v10-shooting-star 11s 2.4s ease-in-out infinite;
}

.v10-sky > * {
  position: relative;
  z-index: 2;
}

@keyframes v10-stars {
  from { opacity: 0.28; }
  to { opacity: 0.64; }
}

@keyframes v10-shooting-star {
  0%, 72% { left: -20%; opacity: 0; }
  75% { opacity: 0.75; }
  82% { left: 112%; opacity: 0; }
  100% { left: 112%; opacity: 0; }
}

.duchesse-showcase {
  position: relative;
  width: calc(100% + var(--page-x) * 2);
  max-width: none;
  min-height: min(78svh, 860px);
  margin-right: calc(var(--page-x) * -1);
  margin-left: calc(var(--page-x) * -1);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #040507;
}

.showcase-images {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.showcase-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 900ms ease,
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: brightness(0.78) saturate(0.92) contrast(1.06);
}

.showcase-frame:nth-child(2) img {
  object-position: center 56%;
}

.showcase-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.68), transparent 42%, rgba(7, 8, 10, 0.18)),
    linear-gradient(0deg, rgba(7, 8, 10, 0.94), transparent 44%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.4), transparent 30%);
}

.showcase-watermark {
  position: absolute;
  z-index: 2;
  top: clamp(26px, 4vw, 62px);
  right: clamp(24px, 5vw, 90px);
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(88px, 15vw, 240px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.showcase-caption {
  position: absolute;
  z-index: 3;
  bottom: 156px;
  left: var(--page-x);
  max-width: 620px;
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 66px);
  font-style: italic;
  font-weight: 350;
  line-height: 1;
}

.showcase-controls {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  display: grid;
  width: 64%;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 8, 10, 0.82);
  backdrop-filter: blur(14px);
}

.showcase-controls button {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 15px;
  padding: 22px clamp(16px, 2vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(242, 238, 231, 0.62);
  background: transparent;
  text-align: left;
  transition: color 250ms ease, background 250ms ease;
}

.showcase-controls button:last-child {
  border-right: 0;
}

.showcase-controls button:hover,
.showcase-controls button.is-active {
  color: var(--night);
  background: var(--pearl);
}

.showcase-controls small {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--silver);
  font-family: var(--serif);
  font-size: 21px;
}

.showcase-controls button:is(:hover, .is-active) small {
  color: var(--steel);
}

.showcase-controls span {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 29px);
  line-height: 1;
}

.showcase-controls i {
  margin-top: 7px;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.duchesse-showcase .preview-facts {
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 36%;
  min-height: 116px;
  grid-template-columns: repeat(3, 1fr);
  align-content: stretch;
  padding: 0;
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(14px);
}

.duchesse-showcase .preview-facts li {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.visual-occasions {
  overflow: hidden;
}

.visual-occasions .editorial-links {
  max-width: 1260px;
}

.visual-occasions .editorial-links a {
  grid-template-columns: 70px minmax(0, 1fr) clamp(130px, 16vw, 230px) auto;
}

.occasion-thumb {
  height: 104px;
  overflow: hidden;
  opacity: 0.44;
  filter: grayscale(0.65);
  transform: scale(0.92);
  transition:
    opacity 450ms ease,
    filter 450ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.occasion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-links a:hover .occasion-thumb,
.editorial-links a:focus-visible .occasion-thumb {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1);
}

.reviews-summary {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  align-items: stretch;
  padding: 0;
}

.home-reviews-visual {
  min-height: 760px;
  overflow: hidden;
}

.home-reviews-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-reviews-visual.is-visible > img {
  transform: scale(1.035);
}

.home-score-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  min-width: clamp(230px, 22vw, 340px);
  padding: clamp(28px, 4vw, 58px);
  color: var(--night);
  background: var(--pearl);
}

.home-score-card span {
  color: #6d6257;
  font-size: 14px;
  letter-spacing: 0.24em;
}

.home-score-card strong {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(70px, 8vw, 124px);
  font-weight: 430;
  line-height: 0.7;
  letter-spacing: -0.06em;
}

.home-score-card small {
  margin-top: 20px;
  color: var(--steel);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-reviews-copy {
  align-self: center;
  margin: 0;
  padding: clamp(70px, 8vw, 130px) var(--page-x);
}

.home-reviews-copy .reviews-mark {
  text-align: left;
}

.home-reviews-copy > p:not(.section-label) {
  color: rgba(242, 238, 231, 0.6);
}

.home-reviews-copy .rating-line {
  margin-right: 0;
  margin-left: 0;
}

.gift-visual {
  position: relative;
  overflow: hidden;
}

.gift-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 8, 10, 0.58), transparent 60%);
  content: "";
}

.gift-emblem {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 58px);
  width: clamp(140px, 16vw, 230px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--pearl);
  background: rgba(7, 8, 10, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
}

.gift-emblem small {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gift-emblem strong {
  margin: 6px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}

.gift-emblem i {
  color: var(--silver);
  font-family: var(--serif);
  font-size: 13px;
}

.final-booking.v10-sky::before,
.final-booking.v10-sky::after {
  z-index: 3;
}

.final-booking.v10-sky .final-content {
  z-index: 4;
}

.route-visual i {
  position: relative;
  overflow: hidden;
  background: rgba(14, 16, 20, 0.12);
}

.route-visual i::after {
  position: absolute;
  inset: 0;
  background: var(--steel);
  content: "";
  transform: translateX(-102%);
  transition: transform 1.2s 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.route-visual.is-visible i::after {
  transform: translateX(0);
}

@media (max-width: 900px) {
  .duchesse-showcase {
    min-height: 820px;
  }

  .showcase-images {
    bottom: 232px;
  }

  .showcase-caption {
    bottom: 272px;
    max-width: calc(100% - 44px);
  }

  .showcase-controls {
    width: 100%;
    bottom: 116px;
  }

  .duchesse-showcase .preview-facts {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .visual-occasions .editorial-links a {
    grid-template-columns: 56px minmax(0, 1fr) 150px auto;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .home-reviews-visual {
    min-height: 570px;
  }

  .home-reviews-copy {
    padding: 90px var(--page-x);
  }
}

@media (max-width: 640px) {
  .v10-sky::after {
    display: none;
  }

  .duchesse-showcase {
    width: calc(100% + var(--page-x) * 2);
    min-height: 824px;
  }

  .showcase-images {
    bottom: 318px;
  }

  .showcase-shade {
    background:
      linear-gradient(0deg, rgba(7, 8, 10, 0.88), transparent 48%),
      linear-gradient(180deg, rgba(7, 8, 10, 0.22), transparent 34%);
  }

  .showcase-watermark {
    top: 24px;
    right: 18px;
    font-size: 88px;
  }

  .showcase-caption {
    bottom: 342px;
    left: 22px;
    font-size: 36px;
  }

  .showcase-controls {
    bottom: 174px;
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .showcase-controls button {
    min-height: 58px;
    grid-template-columns: 38px 1fr auto;
    grid-template-rows: 1fr;
    padding: 10px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 0;
  }

  .showcase-controls small {
    grid-row: auto;
    font-size: 17px;
  }

  .showcase-controls span {
    font-size: 21px;
  }

  .showcase-controls i {
    margin-top: 0;
    font-size: 8px;
  }

  .duchesse-showcase .preview-facts {
    min-height: 174px;
    grid-template-columns: repeat(2, 1fr);
  }

  .duchesse-showcase .preview-facts li {
    min-height: 58px;
  }

  .visual-occasions .editorial-links a {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 20px 0;
  }

  .occasion-thumb {
    grid-column: 2 / -1;
    width: 100%;
    height: 150px;
    opacity: 0.82;
    filter: none;
    transform: none;
  }

  .visual-occasions .editorial-links b {
    grid-row: 1;
    grid-column: 3;
  }

  .home-reviews-visual {
    min-height: 520px;
  }

  .home-score-card {
    min-width: 190px;
    padding: 28px;
  }

  .home-score-card strong {
    font-size: 72px;
  }

  .home-reviews-copy {
    padding: 82px 22px;
  }

  .gift-emblem {
    width: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v10-sky::before,
  .v10-sky::after {
    animation: none;
  }

  .showcase-frame,
  .occasion-thumb,
  .home-reviews-visual > img,
  .route-visual i::after {
    transition: none;
  }
}

/* La Duchesse — direction photographique V10
   La home promet l'univers ; cette page révèle des angles qui lui sont propres. */
.page-duchesse .hero-product .hero-media img {
  object-position: 50% 54%;
  transform: scale(1.015);
}

.page-duchesse .product-story .split-media,
.page-duchesse .morning-media,
.page-duchesse .product-occasions .split-media,
.page-duchesse .review-photo {
  isolation: isolate;
}

.page-duchesse .product-story .split-media::before,
.page-duchesse .morning-media::before,
.page-duchesse .product-occasions .split-media::before,
.page-duchesse .review-photo::before {
  position: absolute;
  z-index: -1;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(16, 18, 23, 0.18);
  content: "";
}

.page-duchesse .product-story .split-media::after,
.page-duchesse .morning-media::after,
.page-duchesse .product-occasions .split-media::after {
  position: absolute;
  z-index: 2;
  right: -14px;
  bottom: 28px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(7, 8, 10, 0.88);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  content: "";
}

.page-duchesse .product-story .split-media::after {
  content: "01 · L’espace";
}

.page-duchesse .morning-media::after {
  content: "02 · La chambre";
}

.page-duchesse .product-occasions .split-media::after {
  content: "03 · À célébrer";
}

.page-duchesse .product-story .split-media img,
.page-duchesse .morning-media img,
.page-duchesse .product-occasions .split-media img,
.page-duchesse .review-photo > img {
  box-shadow: 0 28px 70px rgba(5, 6, 8, 0.16);
}

.page-duchesse .product-story .split-media img {
  aspect-ratio: 5 / 6;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 92% 100%, 0 100%);
}

.page-duchesse .morning-media img {
  aspect-ratio: 4 / 5;
  min-height: 0;
  object-position: 50% 48%;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 0 7%);
}

.page-duchesse .product-occasions .split-media img {
  clip-path: polygon(0 0, 94% 0, 100% 7%, 100% 100%, 0 100%);
}

.page-duchesse .moment-section {
  background:
    radial-gradient(circle at 17% 24%, rgba(185, 190, 199, 0.12) 0 1px, transparent 1.6px),
    radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1.5px),
    radial-gradient(circle at 38% 82%, rgba(185, 190, 199, 0.1) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 76% 64%, rgba(185, 190, 199, 0.07), transparent 32%),
    #050608;
  background-size: 141px 141px, 223px 223px, 179px 179px, auto;
}

.page-duchesse .moment-section::before {
  position: absolute;
  z-index: 1;
  top: 17%;
  left: 48%;
  width: min(23vw, 330px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  box-shadow: 0 0 14px rgba(185, 190, 199, 0.5);
  content: "";
  opacity: 0.58;
  transform: rotate(-28deg);
}

.page-duchesse .moment-section > img {
  top: 7%;
  right: auto;
  bottom: 7%;
  left: var(--page-x);
  width: min(58vw, 820px);
  height: 86%;
  object-position: center 52%;
  clip-path: polygon(0 0, 93% 0, 100% 7%, 100% 100%, 8% 100%, 0 92%);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
}

.page-duchesse .moment-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 40%, rgba(5, 6, 8, 0.3) 56%, #050608 84%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.36), transparent 45%);
}

.page-duchesse .moment-copy {
  width: min(650px, 48vw);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 6, 8, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.page-duchesse .equipment-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 20%, rgba(185, 190, 199, 0.07), transparent 29%),
    var(--night-soft);
}

.page-duchesse .product-gallery-note {
  padding-bottom: clamp(28px, 4vw, 52px);
}

.page-duchesse .product-gallery {
  position: relative;
  isolation: isolate;
  display: grid;
  max-width: 1380px;
  min-height: 900px;
  margin: 0 auto clamp(60px, 8vw, 112px);
  padding: clamp(18px, 3vw, 46px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.page-duchesse .product-gallery::before {
  position: absolute;
  z-index: -2;
  inset: 8% 3% 3% 8%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(120deg, transparent 0 49.9%, rgba(255, 255, 255, 0.045) 50%, transparent 50.1%),
    radial-gradient(circle at 73% 30%, rgba(185, 190, 199, 0.11), transparent 25%);
  content: "";
}

.gallery-constellation {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.gallery-constellation::before,
.gallery-constellation::after {
  position: absolute;
  width: 1px;
  height: 43%;
  background: linear-gradient(transparent, rgba(185, 190, 199, 0.3), transparent);
  content: "";
}

.gallery-constellation::before {
  top: 2%;
  left: 68%;
  transform: rotate(31deg);
}

.gallery-constellation::after {
  right: 23%;
  bottom: 0;
  transform: rotate(-51deg);
}

.gallery-constellation i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 12px rgba(185, 190, 199, 0.8);
}

.gallery-constellation i:nth-child(1) {
  top: 5%;
  left: 64%;
}

.gallery-constellation i:nth-child(2) {
  top: 23%;
  right: 5%;
  width: 2px;
  height: 2px;
}

.gallery-constellation i:nth-child(3) {
  right: 19%;
  bottom: 7%;
}

.gallery-constellation i:nth-child(4) {
  bottom: 18%;
  left: 3%;
  width: 2px;
  height: 2px;
}

.page-duchesse .product-gallery .gallery-panel {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: zoom-in;
  background: #08090b;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.page-duchesse .product-gallery .gallery-panel::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 6, 8, 0.9), transparent 58%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%);
  content: "";
}

.page-duchesse .product-gallery .gallery-panel-lead {
  grid-column: 1 / 8;
  grid-row: 1 / 9;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 94% 100%, 0 100%);
}

.page-duchesse .product-gallery .gallery-panel-portrait {
  grid-column: 9 / 13;
  grid-row: 2 / 11;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}

.page-duchesse .product-gallery .gallery-panel-detail {
  grid-column: 2 / 6;
  grid-row: 9 / 13;
}

.page-duchesse .product-gallery .gallery-panel-wide {
  z-index: 2;
  grid-column: 6 / 11;
  grid-row: 10 / 13;
}

.page-duchesse .product-gallery .gallery-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.8s var(--ease), transform 1.1s var(--ease);
}

.page-duchesse .product-gallery .gallery-panel-lead img {
  object-position: center;
}

.page-duchesse .product-gallery .gallery-panel-portrait img {
  object-position: 58% center;
}

.page-duchesse .product-gallery .gallery-panel-portrait::after {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.82), transparent 46%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%);
}

.page-duchesse .product-gallery .gallery-panel-portrait > span {
  top: clamp(18px, 2vw, 30px);
  bottom: auto;
}

.page-duchesse .product-gallery .gallery-panel-detail img {
  object-position: center 38%;
}

.page-duchesse .product-gallery .gallery-panel-wide img {
  object-position: center 52%;
  filter: saturate(1.08) sepia(0.18) hue-rotate(-8deg) brightness(0.92) contrast(1.04);
}

.page-duchesse .product-gallery .gallery-panel-wide::after {
  background:
    linear-gradient(0deg, rgba(30, 14, 9, 0.86), transparent 62%),
    linear-gradient(120deg, rgba(209, 150, 112, 0.18), transparent 48%);
}

.page-duchesse .product-gallery .gallery-panel:hover img,
.page-duchesse .product-gallery .gallery-panel:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.page-duchesse .product-gallery .gallery-panel-wide:hover img,
.page-duchesse .product-gallery .gallery-panel-wide:focus-visible img {
  filter: saturate(1.16) sepia(0.16) hue-rotate(-8deg) brightness(0.96) contrast(1.04);
}

.page-duchesse .product-gallery .gallery-panel > span {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  left: clamp(18px, 2vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 4px 18px;
  color: var(--white);
  text-align: left;
}

.page-duchesse .product-gallery .gallery-panel small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-duchesse .product-gallery .gallery-panel strong {
  max-width: 390px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 430;
  line-height: 1.05;
}

.page-duchesse .product-gallery .gallery-panel b {
  color: var(--silver);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
}

.product-option-grid {
  display: grid;
  max-width: 1380px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-option-card {
  position: relative;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 52%),
    #0a0b0e;
}

.product-option-card:last-child {
  border-right: 0;
}

.product-option-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 200, 187, 0.58), transparent);
  content: "";
  opacity: 0;
  transition: opacity 0.45s ease;
}

.product-option-card:hover::before,
.product-option-card:focus-visible::before {
  opacity: 1;
}

.option-number {
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--serif);
  font-size: 24px;
}

.option-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(17vw, 230px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(185, 190, 199, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 190, 199, 0.11), transparent 67%);
  transform: translate(-50%, -58%);
  transition: border-color 0.6s ease, transform 0.8s var(--ease);
}

.option-aura::before,
.option-aura::after,
.option-aura i {
  position: absolute;
  border: 1px solid rgba(185, 190, 199, 0.1);
  border-radius: 50%;
  content: "";
}

.option-aura::before {
  inset: 14%;
}

.option-aura::after {
  inset: 29%;
}

.option-aura i {
  inset: -18%;
  border-style: dashed;
}

.option-aura b {
  color: rgba(216, 200, 187, 0.74);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 350;
}

.product-option-card:hover .option-aura,
.product-option-card:focus-visible .option-aura {
  border-color: rgba(216, 200, 187, 0.32);
  transform: translate(-50%, -58%) scale(1.06) rotate(7deg);
}

.product-option-card > div {
  position: relative;
  z-index: 2;
}

.product-option-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 430;
  line-height: 1;
}

.product-option-card p {
  max-width: 330px;
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.product-option-card strong {
  color: var(--warm);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-option-card strong span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.35s ease;
}

.product-option-card:hover strong span,
.product-option-card:focus-visible strong span {
  transform: translateX(5px);
}

.page-duchesse .review-photo::after {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: -18px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(7, 8, 10, 0.88);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  content: "La signature du lieu";
}

.page-duchesse .review-photo > img {
  object-position: center 44%;
}

.page-duchesse .product-final > img {
  object-position: center 48%;
  filter: saturate(0.82) contrast(1.04);
}

@media (max-width: 900px) {
  .page-duchesse .moment-section {
    min-height: 980px;
    padding: 0 var(--page-x) 54px;
  }

  .page-duchesse .moment-section > img {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 72%;
    clip-path: none;
  }

  .page-duchesse .moment-shade {
    background: linear-gradient(0deg, #050608 18%, rgba(5, 6, 8, 0.28) 70%, rgba(5, 6, 8, 0.08));
  }

  .page-duchesse .moment-copy {
    width: 100%;
  }

  .page-duchesse .product-gallery {
    min-height: 1160px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1.35fr 0.9fr 0.85fr;
  }

  .page-duchesse .product-gallery .gallery-panel-lead {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .page-duchesse .product-gallery .gallery-panel-portrait {
    grid-column: 1;
    grid-row: 2 / 4;
  }

  .page-duchesse .product-gallery .gallery-panel-detail {
    grid-column: 2;
    grid-row: 2;
  }

  .page-duchesse .product-gallery .gallery-panel-wide {
    grid-column: 2;
    grid-row: 3;
  }

  .product-option-grid {
    grid-template-columns: 1fr;
  }

  .product-option-card {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .product-option-card:last-child {
    border-bottom: 0;
  }

  .option-aura {
    right: 9%;
    left: auto;
    width: min(34vw, 220px);
    transform: translateY(-50%);
  }

  .product-option-card:hover .option-aura,
  .product-option-card:focus-visible .option-aura {
    transform: translateY(-50%) scale(1.06) rotate(7deg);
  }
}

@media (max-width: 640px) {
  .page-duchesse .hero-product .hero-media img {
    object-position: 51% center;
  }

  .page-duchesse .product-story .split-media::before,
  .page-duchesse .morning-media::before,
  .page-duchesse .product-occasions .split-media::before,
  .page-duchesse .review-photo::before {
    inset: -9px 9px 9px -9px;
  }

  .page-duchesse .product-story .split-media::after,
  .page-duchesse .morning-media::after,
  .page-duchesse .product-occasions .split-media::after {
    right: -7px;
    bottom: 16px;
  }

  .page-duchesse .moment-section {
    min-height: 900px;
    padding: 0;
  }

  .page-duchesse .moment-section > img {
    height: 67%;
    object-position: center 46%;
  }

  .page-duchesse .moment-copy {
    padding: 54px 22px 60px;
    border-right: 0;
    border-left: 0;
  }

  .page-duchesse .product-gallery {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 18px;
    padding: 8px 0 20px;
  }

  .page-duchesse .product-gallery::before,
  .gallery-constellation {
    display: none;
  }

  .page-duchesse .product-gallery .gallery-panel {
    width: calc(100% - 28px);
    min-height: 380px;
    clip-path: none;
  }

  .page-duchesse .product-gallery .gallery-panel:nth-of-type(odd) {
    margin-right: 28px;
  }

  .page-duchesse .product-gallery .gallery-panel:nth-of-type(even) {
    margin-left: 28px;
  }

  .page-duchesse .product-gallery .gallery-panel-portrait,
  .page-duchesse .product-gallery .gallery-panel-detail {
    min-height: 520px;
  }

  .page-duchesse .product-gallery .gallery-panel > span {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .page-duchesse .product-gallery .gallery-panel-portrait > span {
    top: auto;
    bottom: 20px;
  }

  .page-duchesse .product-gallery .gallery-panel-portrait::after {
    background:
      linear-gradient(0deg, rgba(5, 6, 8, 0.9), transparent 58%),
      linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%);
  }

  .page-duchesse .product-gallery .gallery-panel strong {
    font-size: 26px;
  }

  .product-option-card {
    min-height: 440px;
    padding: 26px 22px;
  }

  .option-aura {
    top: 46%;
    right: 50%;
    width: 190px;
    transform: translate(50%, -50%);
  }

  .product-option-card:hover .option-aura,
  .product-option-card:focus-visible .option-aura {
    transform: translate(50%, -50%) scale(1.04) rotate(7deg);
  }

  .page-duchesse .review-photo::after {
    top: 22px;
    left: -7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-duchesse .hero-product .hero-media img {
    transform: none;
  }

  .page-duchesse .product-gallery .gallery-panel img,
  .option-aura,
  .product-option-card strong span {
    transition: none;
  }
}

/* La Duchesse — signature futuriste : portail, télémétrie et lumière réactive */
.page-duchesse .product-story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(56px, 7vw, 116px);
  padding-top: clamp(92px, 8vw, 132px);
  padding-bottom: clamp(92px, 8vw, 132px);
  background:
    linear-gradient(90deg, transparent 0 49.94%, rgba(16, 18, 23, 0.055) 50%, transparent 50.06%),
    radial-gradient(circle at var(--portal-page-x, 24%) 46%, rgba(119, 126, 136, 0.12), transparent 29%),
    var(--pearl);
}

.page-duchesse .product-story::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(16, 18, 23, 0.027) 90px),
    repeating-linear-gradient(0deg, transparent 0 89px, rgba(16, 18, 23, 0.022) 90px);
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 66%);
}

.experience-portal {
  --portal-rx: 0deg;
  --portal-ry: 0deg;
  --portal-x: 50%;
  --portal-y: 50%;
  position: relative;
  isolation: isolate;
  min-height: clamp(430px, 39vw, 570px);
  perspective: 1300px;
}

.page-duchesse .product-story .experience-portal::before {
  position: absolute;
  z-index: -1;
  inset: 6% 0 9% 5%;
  border: 1px solid rgba(16, 18, 23, 0.16);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.38), transparent 22%),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    24px 26px 0 -25px rgba(16, 18, 23, 0.3),
    48px 52px 0 -51px rgba(16, 18, 23, 0.18);
  clip-path: polygon(0 0, 95% 0, 100% 8%, 100% 100%, 7% 100%, 0 91%);
  content: "";
}

.page-duchesse .product-story .experience-portal::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 190px at var(--portal-x) var(--portal-y),
    rgba(255, 255, 255, 0.22),
    rgba(185, 190, 199, 0.06) 38%,
    transparent 72%
  );
  content: "";
  mix-blend-mode: screen;
  opacity: 0.72;
}

.portal-frame {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 94%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: #090a0d;
  box-shadow:
    0 36px 90px rgba(5, 6, 8, 0.26),
    0 0 0 7px rgba(242, 238, 231, 0.24),
    0 0 0 8px rgba(16, 18, 23, 0.14);
  clip-path: polygon(0 0, 94% 0, 100% 10%, 100% 100%, 8% 100%, 0 87%);
  transform:
    translateY(-50%)
    rotateX(var(--portal-rx))
    rotateY(var(--portal-ry));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out, box-shadow 500ms ease;
}

.experience-portal:hover .portal-frame {
  box-shadow:
    0 42px 110px rgba(5, 6, 8, 0.32),
    0 0 0 7px rgba(242, 238, 231, 0.3),
    0 0 0 8px rgba(16, 18, 23, 0.2);
}

.page-duchesse .product-story .experience-portal .portal-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 48%;
  clip-path: none;
  box-shadow: none;
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.025);
  transition: filter 700ms ease, transform 1.2s var(--ease);
}

.experience-portal:hover .portal-frame img {
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.055);
}

.portal-frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.5), transparent 43%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.66), transparent 44%);
  content: "";
}

.portal-scan {
  position: absolute;
  z-index: 2;
  top: -20%;
  bottom: -20%;
  left: -28%;
  width: 22%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(216, 226, 240, 0.24), transparent);
  filter: blur(3px);
  mix-blend-mode: screen;
  transform: skewX(-12deg);
  animation: portal-scan 7.5s ease-in-out infinite;
}

@keyframes portal-scan {
  0%, 14% { left: -28%; opacity: 0; }
  22% { opacity: 1; }
  48% { left: 112%; opacity: 0.7; }
  52%, 100% { left: 112%; opacity: 0; }
}

.portal-corners {
  position: absolute;
  z-index: 3;
  inset: 14px;
  pointer-events: none;
}

.portal-corners i {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(255, 255, 255, 0.72);
  border-style: solid;
}

.portal-corners i:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.portal-corners i:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.portal-corners i:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
}

.portal-corners i:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.portal-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 47%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(119, 126, 136, 0.18);
  border-radius: 50%;
  color: inherit;
  background:
    radial-gradient(circle, transparent 0 51%, rgba(185, 190, 199, 0.13) 51.2% 51.5%, transparent 52%),
    conic-gradient(from 215deg, rgba(185, 190, 199, 0.13), transparent 12%, transparent 76%, rgba(185, 190, 199, 0.08)),
    radial-gradient(circle, rgba(16, 18, 23, 0.94), rgba(7, 8, 10, 0.84));
  font-size: initial;
  letter-spacing: normal;
  text-transform: none;
  transform: translate(-50%, -50%) rotate(-12deg);
  animation: portal-orbit 84s linear infinite;
}

.portal-orbit::before,
.portal-orbit::after {
  position: absolute;
  border: 1px solid rgba(119, 126, 136, 0.13);
  border-radius: 50%;
  content: "";
}

.portal-orbit::before {
  inset: 13%;
}

.portal-orbit::after {
  inset: 29%;
  border-style: dashed;
}

.portal-orbit i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 16px rgba(119, 126, 136, 0.7);
  will-change: opacity, filter;
  animation: portal-orbit-twinkle 6.8s ease-in-out infinite;
}

.portal-orbit i:nth-child(1) {
  top: 4%;
  left: 58%;
}

.portal-orbit i:nth-child(2) {
  right: 7%;
  bottom: 24%;
  width: 3px;
  height: 3px;
  animation-delay: -3.7s;
  animation-duration: 9.4s;
}

.portal-orbit i:nth-child(3) {
  bottom: 12%;
  left: 18%;
  width: 2px;
  height: 2px;
  animation-delay: -6.2s;
  animation-duration: 11.2s;
}

@keyframes portal-orbit {
  to { transform: translate(-50%, -50%) rotate(348deg); }
}

@keyframes portal-orbit-twinkle {
  0%, 100% {
    opacity: 0.18;
    filter: brightness(0.7) drop-shadow(0 0 2px rgba(216, 226, 240, 0.28));
  }
  28% {
    opacity: 1;
    filter: brightness(1.7) drop-shadow(0 0 12px rgba(216, 226, 240, 1));
  }
  48% {
    opacity: 0.3;
    filter: brightness(0.82) drop-shadow(0 0 3px rgba(216, 226, 240, 0.34));
  }
  76% {
    opacity: 0.94;
    filter: brightness(1.5) drop-shadow(0 0 9px rgba(255, 239, 224, 0.86));
  }
}

.portal-hud {
  position: absolute;
  z-index: 5;
  inset: 0 2% 0 0;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portal-hud > span {
  position: absolute;
  top: 8%;
  padding: 9px 12px;
  background: rgba(5, 6, 8, 0.76);
  backdrop-filter: blur(8px);
}

.portal-hud > span:first-child {
  left: 3%;
}

.portal-hud > span:nth-child(2) {
  right: 3%;
}

.portal-hud strong {
  position: absolute;
  bottom: 18%;
  left: 4%;
  max-width: 55%;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 36px);
  font-weight: 430;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}

.portal-hud small {
  position: absolute;
  right: 4%;
  bottom: 18%;
  color: rgba(255, 255, 255, 0.52);
  font-size: 7px;
  letter-spacing: 0.15em;
}

.duchesse-journey {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: 16px;
  display: grid;
  width: 58px;
  padding: 12px 7px;
  border: 1px solid rgba(185, 190, 199, 0.34);
  background: rgba(7, 8, 10, 0.82);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  justify-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transform: translateY(-50%);
}

.duchesse-journey > span {
  color: #f7f3ed;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.duchesse-journey > i {
  position: relative;
  display: block;
  width: 1px;
  height: min(26vh, 210px);
  overflow: visible;
  background: rgba(255, 255, 255, 0.18);
}

.duchesse-journey > i b {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 9px rgba(255, 255, 255, 0.62);
}

.duchesse-journey > i em {
  position: absolute;
  top: 0;
  left: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #07080a;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%);
}

.duchesse-journey > small {
  max-height: 150px;
  overflow: hidden;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

[data-spotlight] {
  --spot-x: 50%;
  --spot-y: 50%;
  --spot-opacity: 0;
}

.page-duchesse .product-gallery[data-spotlight]::after,
.page-duchesse .product-option-grid[data-spotlight]::after {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 290px at var(--spot-x) var(--spot-y),
    rgba(216, 226, 240, 0.13),
    transparent 70%
  );
  content: "";
  mix-blend-mode: screen;
  opacity: var(--spot-opacity);
  transition: opacity 300ms ease;
}

.page-duchesse .product-option-grid[data-spotlight] {
  position: relative;
  isolation: isolate;
}

@media (max-width: 1120px) {
  .duchesse-journey {
    display: none;
  }

  .page-duchesse .product-story {
    grid-template-columns: 1fr;
  }

  .experience-portal {
    width: min(820px, 100%);
    min-height: clamp(430px, 64vw, 560px);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .page-duchesse .product-story {
    gap: 54px;
    padding-top: 76px;
    padding-bottom: 78px;
    background:
      radial-gradient(circle at 50% 21%, rgba(119, 126, 136, 0.13), transparent 28%),
      var(--pearl);
  }

  .page-duchesse .product-story::before {
    mask-image: linear-gradient(#000, transparent 54%);
  }

  .experience-portal {
    min-height: 330px;
  }

  .page-duchesse .product-story .experience-portal::before {
    inset: 5% 0 8% 4%;
  }

  .portal-frame {
    width: 97%;
    aspect-ratio: 16 / 11;
    box-shadow:
      0 24px 60px rgba(5, 6, 8, 0.25),
      0 0 0 4px rgba(242, 238, 231, 0.24),
      0 0 0 5px rgba(16, 18, 23, 0.14);
    transform: translateY(-50%);
  }

  .portal-orbit {
    left: 51%;
    width: 106vw;
  }

  .portal-hud {
    right: 0;
  }

  .portal-hud > span {
    top: 9%;
    padding: 7px 9px;
    font-size: 6px;
  }

  .portal-hud strong {
    bottom: 15%;
    left: 5%;
    max-width: 66%;
    font-size: 24px;
  }

  .portal-hud small {
    display: none;
  }

  .portal-corners {
    inset: 9px;
  }

  .portal-corners i {
    width: 22px;
    height: 22px;
  }

  .page-duchesse .morning-media img {
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .page-duchesse .product-final > img {
    object-position: center 42%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-frame,
  .page-duchesse .product-story .experience-portal .portal-frame img {
    transition: none;
  }

  .portal-scan,
  .portal-orbit,
  .portal-orbit i {
    animation: none;
  }

  .page-duchesse .product-gallery[data-spotlight]::after,
  .page-duchesse .product-option-grid[data-spotlight]::after {
    display: none;
  }
}

/* La Duchesse — V10 « aristocratie céleste »
   Une constellation-couronne, un sceau et des cadres éditoriaux remplacent
   l'ancien portail de science-fiction sans signification pour la marque. */
.duchesse-symbol-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.duchesse-constellation {
  position: absolute;
  z-index: 0;
  display: block;
  overflow: visible;
  pointer-events: none;
}

.page-duchesse .product-story,
.page-duchesse .morning,
.page-duchesse .product-occasions,
.page-duchesse .product-reviews {
  isolation: isolate;
  overflow: hidden;
}

.page-duchesse .product-story > :not(.duchesse-constellation),
.page-duchesse .morning > :not(.duchesse-constellation),
.page-duchesse .product-occasions > :not(.duchesse-constellation),
.page-duchesse .product-reviews > :not(.duchesse-constellation) {
  position: relative;
  z-index: 1;
}

.page-duchesse :is(
  .product-story,
  .morning,
  .product-occasions,
  .product-reviews
) > .lrs-celestial-layer {
  position: absolute !important;
  z-index: -1;
}

.page-duchesse .product-story {
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: clamp(58px, 6.5vw, 108px);
  padding-top: clamp(92px, 8vw, 132px);
  padding-bottom: clamp(92px, 8vw, 132px);
  background:
    radial-gradient(circle at 7% 18%, rgba(119, 126, 136, 0.55) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 44% 9%, rgba(119, 126, 136, 0.35) 0 1px, transparent 1.6px),
    radial-gradient(circle at 33% 88%, rgba(119, 126, 136, 0.42) 0 1px, transparent 1.6px),
    linear-gradient(110deg, #f7f3ec 0 58%, #ece7df 58% 100%);
}

.page-duchesse .product-story::before {
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(16, 18, 23, 0.09) 8% calc(8% + 1px), transparent calc(8% + 1px)),
    linear-gradient(90deg, transparent 0 58%, rgba(16, 18, 23, 0.08) 58% calc(58% + 1px), transparent calc(58% + 1px));
  content: "";
  mask-image: none;
  opacity: 0.55;
}

.experience-portal {
  --portal-rx: 0deg;
  --portal-ry: 0deg;
  --portal-x: 50%;
  --portal-y: 50%;
  width: 100%;
  min-height: 0;
  padding: clamp(48px, 5vw, 72px) clamp(20px, 3vw, 42px) clamp(54px, 5vw, 76px) 0;
  perspective: 1400px;
}

.page-duchesse .product-story .experience-portal::before {
  z-index: 0;
  inset: clamp(74px, 8vw, 112px) 0 clamp(18px, 2vw, 30px) clamp(30px, 4vw, 58px);
  border: 1px solid rgba(16, 18, 23, 0.19);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    18px 18px 0 -17px rgba(16, 18, 23, 0.24),
    36px 36px 0 -35px rgba(16, 18, 23, 0.12);
  clip-path: none;
  content: "";
}

.page-duchesse .product-story .experience-portal::after {
  z-index: 4;
  inset: clamp(48px, 5vw, 72px) clamp(20px, 3vw, 42px) clamp(54px, 5vw, 76px) 0;
  background: radial-gradient(
    circle 220px at var(--portal-x) var(--portal-y),
    rgba(255, 255, 255, 0.26),
    rgba(216, 200, 187, 0.05) 42%,
    transparent 72%
  );
  mix-blend-mode: screen;
  opacity: 0.7;
}

.portal-frame {
  position: relative;
  z-index: 2;
  top: auto;
  left: auto;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #090a0d;
  box-shadow:
    0 36px 82px rgba(5, 6, 8, 0.25),
    0 0 0 7px rgba(247, 243, 236, 0.52),
    0 0 0 8px rgba(16, 18, 23, 0.17);
  clip-path: none;
  transform: rotateX(var(--portal-rx)) rotateY(var(--portal-ry));
  transform-style: preserve-3d;
  transform-origin: 50% 52%;
  transition: transform 180ms ease-out, box-shadow 500ms ease;
}

.experience-portal:hover .portal-frame {
  box-shadow:
    0 42px 96px rgba(5, 6, 8, 0.29),
    0 0 0 7px rgba(247, 243, 236, 0.65),
    0 0 0 8px rgba(16, 18, 23, 0.22);
}

.portal-frame::before {
  position: absolute;
  z-index: 3;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  content: "";
  pointer-events: none;
}

.portal-frame::after {
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(5, 6, 8, 0.82), transparent 48%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 32%);
}

.page-duchesse .product-story .experience-portal .portal-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 48%;
  clip-path: none;
  box-shadow: none;
  filter: saturate(0.93) contrast(1.03);
  transform: scale(1.015);
  transition: filter 700ms ease, transform 1.2s var(--ease);
}

.experience-portal:hover .portal-frame img {
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.045);
}

.portal-frame figcaption {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 3vw, 40px);
  bottom: clamp(24px, 3vw, 38px);
  left: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 5px;
  color: var(--white);
  pointer-events: none;
}

.portal-frame figcaption span {
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portal-frame figcaption strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 420;
  letter-spacing: -0.025em;
  line-height: 1;
}

.duchesse-constellation-story {
  top: -2%;
  right: -2%;
  width: min(470px, 64%);
  color: rgba(119, 126, 136, 0.29);
  filter: drop-shadow(0 0 14px rgba(119, 126, 136, 0.14));
  transform: rotate(6deg);
  animation: duchesse-constellation-breathe 7s ease-in-out infinite;
}

@keyframes duchesse-constellation-breathe {
  0%, 100% { opacity: 0.62; transform: rotate(6deg) translateY(0); }
  50% { opacity: 0.9; transform: rotate(6deg) translateY(-4px); }
}

.experience-portal > .duchesse-seal {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  display: grid;
  width: 108px;
  aspect-ratio: 0.84;
  padding: 16px 10px 13px;
  place-content: center;
  border: 1px solid rgba(16, 18, 23, 0.28);
  color: var(--ink);
  background: rgba(247, 243, 236, 0.96);
  box-shadow:
    0 18px 36px rgba(5, 6, 8, 0.16),
    inset 0 0 0 6px rgba(247, 243, 236, 0.96),
    inset 0 0 0 7px rgba(16, 18, 23, 0.12);
  text-align: center;
  clip-path: polygon(18% 0, 82% 0, 100% 16%, 100% 76%, 50% 100%, 0 76%, 0 16%);
  transform: rotate(4deg);
}

.experience-portal > .duchesse-seal b {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 460;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.experience-portal > .duchesse-seal small {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 6.5px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.duchesse-constellation-quote {
  top: 50%;
  left: 50%;
  width: min(600px, 62vw);
  color: rgba(255, 255, 255, 0.075);
  filter: drop-shadow(0 0 25px rgba(185, 190, 199, 0.1));
  transform: translate(-50%, -50%);
}

/* Emplacement privilégié de la future visite vidéo.
   La section reste masquée jusqu’à l’ajout du vrai fichier ou de l’URL vidéo. */
.product-video[hidden] {
  display: none;
}

.product-video {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(52px, 7vw, 116px);
  overflow: hidden;
  padding: clamp(88px, 9vw, 148px) var(--page-x);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 190, 199, 0.12), transparent 28%),
    #07080a;
}

.product-video-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #030406;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    0 0 0 7px rgba(255, 255, 255, 0.04);
}

.product-video-media::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  pointer-events: none;
}

.product-video-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-video-copy {
  position: relative;
  z-index: 1;
}

.product-video-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .product-video {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .product-video {
    padding-top: 76px;
    padding-bottom: 78px;
  }
}

.page-duchesse .signature-quote {
  isolation: isolate;
  overflow: hidden;
}

.page-duchesse .signature-quote blockquote {
  position: relative;
  z-index: 1;
}

.page-duchesse .morning {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(56px, 7vw, 118px);
  background:
    radial-gradient(circle at 91% 16%, rgba(119, 126, 136, 0.32) 0 1px, transparent 1.7px),
    linear-gradient(90deg, #f3efe8, #eee9e1);
}

.page-duchesse .morning-media {
  width: min(100%, 520px);
  padding: 0 24px 46px 0;
  justify-self: end;
}

.page-duchesse .morning-media::before {
  z-index: -1;
  inset: 22px 0 0 24px;
  border: 1px solid rgba(16, 18, 23, 0.2);
  background: rgba(255, 255, 255, 0.16);
}

.page-duchesse .morning-media::after {
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  content: "Le lendemain · La lumière revient";
}

.page-duchesse .morning-media img {
  width: 100%;
  height: clamp(300px, 27vw, 380px);
  min-height: 0;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(0 0, 94% 0, 100% 10%, 100% 100%, 0 100%);
  box-shadow: 0 26px 60px rgba(5, 6, 8, 0.14);
}

.duchesse-constellation-morning {
  top: 6%;
  right: -72px;
  width: min(430px, 40vw);
  color: rgba(119, 126, 136, 0.13);
  transform: rotate(9deg);
}

.page-duchesse .product-occasions {
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.1fr);
  gap: clamp(62px, 8vw, 136px);
  background:
    radial-gradient(circle at 10% 86%, rgba(119, 126, 136, 0.28) 0 1px, transparent 1.7px),
    linear-gradient(108deg, #ece7df 0 45%, #f5f1ea 45% 100%);
}

.page-duchesse .product-occasions .split-media {
  width: min(100%, 480px);
  padding: 28px 0 0 28px;
  justify-self: center;
}

.page-duchesse .product-occasions .split-media::before {
  z-index: -1;
  inset: 0 28px 28px 0;
  border: 1px solid rgba(16, 18, 23, 0.2);
  background: rgba(255, 255, 255, 0.13);
}

.page-duchesse .product-occasions .split-media::after {
  right: 0;
  bottom: 24px;
  padding: 10px 14px;
  content: "Votre occasion · Notre mise en scène";
}

.page-duchesse .product-occasions .split-media img {
  width: 100%;
  height: clamp(300px, 27vw, 380px);
  object-fit: cover;
  object-position: 50% 50%;
  clip-path: polygon(0 0, 92% 0, 100% 7%, 100% 100%, 0 100%);
  box-shadow: 0 28px 64px rgba(5, 6, 8, 0.16);
}

.duchesse-constellation-occasions {
  top: 1%;
  left: 12%;
  width: min(460px, 42vw);
  color: rgba(119, 126, 136, 0.12);
  transform: rotate(-8deg);
}

.page-duchesse .product-reviews {
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.08fr);
  gap: clamp(64px, 8vw, 132px);
  background:
    radial-gradient(circle at 84% 14%, rgba(119, 126, 136, 0.3) 0 1px, transparent 1.6px),
    linear-gradient(100deg, #f5f1ea, #eee9e1);
}

.page-duchesse .review-photo {
  width: min(100%, 400px);
  padding: 0 22px 34px 0;
  justify-self: center;
}

.page-duchesse .review-photo::before {
  z-index: -1;
  inset: 24px 0 0 22px;
  border: 1px solid rgba(16, 18, 23, 0.2);
  background: rgba(255, 255, 255, 0.14);
}

.page-duchesse .review-photo > img {
  width: 100%;
  min-height: 0;
  max-height: 540px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 64px rgba(5, 6, 8, 0.16);
}

.page-duchesse .review-photo > div {
  right: 0;
  bottom: 0;
  min-width: 166px;
  padding: 19px 20px;
}

.page-duchesse .review-photo div strong {
  font-size: 30px;
}

.page-duchesse .review-platforms {
  width: fit-content;
  max-width: 100%;
}

.duchesse-constellation-reviews {
  top: 4%;
  left: -88px;
  width: min(450px, 42vw);
  color: rgba(119, 126, 136, 0.1);
  transform: rotate(-8deg);
}

.duchesse-journey > i {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.34) 0 3px,
      transparent 3px 9px
    );
}

.duchesse-journey > i em {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 0;
  background: #07080a;
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-duchesse .product-gallery[data-spotlight]::after,
.page-duchesse .product-option-grid[data-spotlight]::after {
  background: radial-gradient(
    circle 260px at var(--spot-x) var(--spot-y),
    rgba(216, 200, 187, 0.14),
    transparent 72%
  );
}

@media (max-width: 1120px) {
  .page-duchesse .product-story {
    grid-template-columns: 1fr;
  }

  .experience-portal {
    width: min(840px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .page-duchesse .morning,
  .page-duchesse .product-occasions,
  .page-duchesse .product-reviews {
    grid-template-columns: 1fr;
  }

  .page-duchesse .morning-media {
    width: min(100%, 620px);
    justify-self: start;
  }

  .page-duchesse .product-occasions .split-media,
  .page-duchesse .review-photo {
    justify-self: start;
  }

  .duchesse-constellation-morning,
  .duchesse-constellation-occasions,
  .duchesse-constellation-reviews {
    width: min(480px, 62vw);
  }
}

@media (max-width: 640px) {
  .page-duchesse .product-story {
    gap: 48px;
    padding-top: 74px;
    padding-bottom: 78px;
    background:
      radial-gradient(circle at 8% 12%, rgba(119, 126, 136, 0.45) 0 1px, transparent 1.7px),
      linear-gradient(112deg, #f7f3ec 0 58%, #ece7df 58% 100%);
  }

  .page-duchesse .product-story::before {
    opacity: 0.32;
  }

  .experience-portal {
    min-height: 0;
    padding: 34px 12px 54px 0;
  }

  .page-duchesse .product-story .experience-portal::before {
    inset: 58px 0 22px 20px;
  }

  .page-duchesse .product-story .experience-portal::after {
    inset: 34px 12px 54px 0;
  }

  .portal-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    box-shadow:
      0 26px 58px rgba(5, 6, 8, 0.24),
      0 0 0 4px rgba(247, 243, 236, 0.55),
      0 0 0 5px rgba(16, 18, 23, 0.17);
    transform: none;
  }

  .portal-frame::before {
    inset: 9px;
  }

  .portal-frame figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .portal-frame figcaption strong {
    font-size: 25px;
  }

  .duchesse-constellation-story {
    top: -10px;
    right: -20px;
    width: 66%;
  }

  .experience-portal > .duchesse-seal {
    right: 2px;
    bottom: 0;
    width: 78px;
  }

  .experience-portal > .duchesse-seal b {
    font-size: 36px;
  }

  .experience-portal > .duchesse-seal small {
    margin-top: 6px;
    font-size: 5px;
  }

  .page-duchesse .morning-media,
  .page-duchesse .product-occasions .split-media,
  .page-duchesse .review-photo {
    width: 100%;
    max-width: 100%;
  }

  .page-duchesse .morning-media {
    padding: 0 16px 38px 0;
  }

  .page-duchesse .morning-media::before {
    inset: 16px 0 0 16px;
  }

  .page-duchesse .morning-media img {
    height: min(72vw, 360px);
  }

  .page-duchesse .product-occasions .split-media {
    padding: 18px 0 0 18px;
  }

  .page-duchesse .product-occasions .split-media::before {
    inset: 0 18px 18px 0;
  }

  .page-duchesse .product-occasions .split-media img {
    height: min(72vw, 360px);
  }

  .page-duchesse .review-photo {
    padding: 0 16px 28px 0;
  }

  .page-duchesse .review-photo::before {
    inset: 18px 0 0 16px;
  }

  .page-duchesse .review-photo > img {
    max-height: none;
  }

  .duchesse-constellation-morning,
  .duchesse-constellation-occasions,
  .duchesse-constellation-reviews {
    width: 78vw;
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .duchesse-constellation-story {
    animation: none;
  }

  .portal-frame,
  .page-duchesse .product-story .experience-portal .portal-frame img {
    transition: none;
  }
}

/* La Duchesse — ciel vivant et chapitres célestes */
.celestial-sky {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.celestial-sky::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 17% 24%, rgba(185, 190, 199, 0.1), transparent 28%),
    radial-gradient(ellipse at 81% 67%, rgba(216, 200, 187, 0.07), transparent 31%);
  content: "";
  opacity: 0.8;
}

.celestial-sky i {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.98);
  background: currentColor;
  filter: drop-shadow(0 0 8px rgba(216, 226, 240, 0.94));
  will-change: opacity, filter;
  animation: duchesse-twinkle 7.6s ease-in-out infinite;
}

.celestial-sky i::before,
.celestial-sky i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.celestial-sky i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.celestial-sky i:nth-child(1) {
  top: 11%;
  left: 7%;
  box-shadow:
    12vw 9vh 0 -0.2px rgba(255, 255, 255, 0.68),
    25vw 31vh 0 0.2px rgba(185, 190, 199, 0.8),
    52vw 47vh 0 0.1px rgba(216, 200, 187, 0.7),
    67vw 19vh 0 -0.3px rgba(255, 255, 255, 0.74),
    88vw 29vh 0 -0.4px rgba(255, 255, 255, 0.6);
}

.celestial-sky i:nth-child(2) {
  top: 23%;
  left: 3%;
  width: 1px;
  height: 1px;
  color: rgba(216, 200, 187, 0.88);
  box-shadow:
    9vw 21vh 0 0 rgba(255, 255, 255, 0.58),
    34vw 44vh 0 -0.2px rgba(255, 255, 255, 0.7),
    48vw 18vh 0 0 rgba(185, 190, 199, 0.76),
    73vw 35vh 0 -0.2px rgba(216, 200, 187, 0.76),
    92vw 69vh 0 0.2px rgba(185, 190, 199, 0.66);
  animation-duration: 10.4s;
  animation-delay: -4.1s;
}

.celestial-sky i:nth-child(3) {
  top: 5%;
  left: 16%;
  width: 3px;
  height: 3px;
  color: rgba(216, 226, 240, 0.86);
  box-shadow:
    8vw 56vh 0 -0.7px rgba(255, 255, 255, 0.62),
    18vw 25vh 0 -0.4px rgba(185, 190, 199, 0.74),
    44vw 7vh 0 -0.8px rgba(255, 255, 255, 0.74),
    69vw 74vh 0 -0.6px rgba(255, 255, 255, 0.7),
    88vw 48vh 0 -0.8px rgba(255, 255, 255, 0.68);
  animation-duration: 12.8s;
  animation-delay: -7.3s;
}

.celestial-sky i:nth-child(4) {
  top: 31%;
  left: 9%;
  color: rgba(255, 239, 224, 0.94);
  box-shadow:
    7vw 8vh 0 0.1px rgba(255, 255, 255, 0.78),
    29vw 14vh 0 0.2px rgba(255, 255, 255, 0.72),
    41vw 54vh 0 -0.2px rgba(185, 190, 199, 0.86),
    64vw 43vh 0 0.3px rgba(216, 200, 187, 0.76),
    86vw 20vh 0 0.1px rgba(185, 190, 199, 0.8);
  animation-duration: 9.1s;
  animation-delay: -2.6s;
}

@keyframes duchesse-twinkle {
  0%, 100% {
    opacity: 0.18;
    filter: brightness(0.7) drop-shadow(0 0 2px rgba(216, 226, 240, 0.22));
  }
  16% {
    opacity: 0.36;
    filter: brightness(0.9) drop-shadow(0 0 4px rgba(216, 226, 240, 0.42));
  }
  29% {
    opacity: 1;
    filter: brightness(1.75) drop-shadow(0 0 13px rgba(216, 226, 240, 1));
  }
  43% {
    opacity: 0.26;
    filter: brightness(0.76) drop-shadow(0 0 2px rgba(216, 226, 240, 0.26));
  }
  67% {
    opacity: 0.48;
    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 239, 224, 0.5));
  }
  78% {
    opacity: 0.96;
    filter: brightness(1.55) drop-shadow(0 0 10px rgba(255, 239, 224, 0.92));
  }
  90% {
    opacity: 0.3;
    filter: brightness(0.82) drop-shadow(0 0 3px rgba(216, 226, 240, 0.32));
  }
}

.page-duchesse .moment-section .celestial-sky {
  z-index: 2;
  opacity: 1;
  mask-image: none;
}

.page-duchesse .moment-copy {
  z-index: 3;
}

.page-duchesse .signature-quote .celestial-sky {
  z-index: 0;
  opacity: 1;
  filter: brightness(1.34) drop-shadow(0 0 9px rgba(216, 226, 240, 0.2));
}

.page-duchesse .signature-quote .celestial-sky i {
  filter: drop-shadow(0 0 10px rgba(216, 226, 240, 1));
}

.page-duchesse .signature-quote .duchesse-constellation-quote {
  z-index: 1;
}

.page-duchesse .signature-quote blockquote {
  z-index: 2;
  text-shadow: 0 0 34px rgba(185, 190, 199, 0.12);
}

.page-duchesse .equipment-section,
.page-duchesse .mid-cta,
.page-duchesse .product-options {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-duchesse .equipment-section .celestial-sky,
.page-duchesse .mid-cta .celestial-sky,
.page-duchesse .product-options .celestial-sky {
  z-index: 0;
  opacity: 0.76;
}

.page-duchesse .equipment-section > :not(.celestial-sky),
.page-duchesse .product-options > :not(.celestial-sky, .shooting-stars) {
  position: relative;
  z-index: 2;
}

.page-duchesse .mid-cta > div {
  position: relative;
  z-index: 2;
}

.page-duchesse .equipment-section {
  background:
    radial-gradient(circle at 18% 14%, rgba(185, 190, 199, 0.09), transparent 22%),
    radial-gradient(circle at 78% 30%, rgba(216, 200, 187, 0.08), transparent 28%),
    linear-gradient(115deg, #0e1015, #07080b 62%, #111319);
}

.page-duchesse .mid-cta {
  background:
    radial-gradient(circle at center, rgba(185, 190, 199, 0.11), transparent 40%),
    linear-gradient(120deg, #08090c, #111318 52%, #060709);
}

.page-duchesse .product-options {
  background:
    radial-gradient(circle at 16% 13%, rgba(216, 200, 187, 0.08), transparent 24%),
    radial-gradient(circle at 82% 66%, rgba(185, 190, 199, 0.09), transparent 26%),
    linear-gradient(135deg, #101217, #07080b 58%, #121419);
}

.shooting-stars {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shooting-stars i {
  position: absolute;
  top: 9%;
  right: -190px;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(185, 190, 199, 0.35) 28%, transparent);
  filter: drop-shadow(0 0 6px rgba(216, 226, 240, 0.74));
  opacity: 0;
  transform: rotate(-24deg);
  animation: duchesse-shooting-star 15s cubic-bezier(0.2, 0.55, 0.35, 1) infinite;
  animation-delay: -10.6s;
}

.shooting-stars i::before {
  position: absolute;
  top: 50%;
  left: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.95);
  content: "";
  transform: translateY(-50%);
}

.shooting-stars i:nth-child(2) {
  top: 38%;
  width: 125px;
  animation-delay: -5.1s;
  animation-duration: 21s;
}

.page-duchesse .shooting-stars-moment {
  z-index: 2;
  opacity: 0.92;
}

.page-duchesse .shooting-stars-quote {
  z-index: 1;
  opacity: 0.94;
}

.page-duchesse .shooting-stars-quote i {
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.92));
}

@keyframes duchesse-shooting-star {
  0%, 68% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-24deg);
  }
  71% {
    opacity: 0.95;
  }
  82% {
    opacity: 0;
    transform: translate3d(-115vw, 48vh, 0) rotate(-24deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-115vw, 48vh, 0) rotate(-24deg);
  }
}

/* Les chapitres clairs reprennent la profondeur et le mouvement de La parenthèse. */
.celestial-card {
  --portal-rx: 0deg;
  --portal-ry: 0deg;
  --portal-x: 50%;
  --portal-y: 50%;
  transform: perspective(1400px) rotateX(var(--portal-rx)) rotateY(var(--portal-ry));
  transform-style: preserve-3d;
  transform-origin: 50% 52%;
  transition: filter 450ms ease, transform 180ms ease-out;
  will-change: transform;
}

.celestial-card:hover {
  filter: drop-shadow(0 28px 44px rgba(5, 6, 8, 0.13));
}

.page-duchesse .morning {
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.82fr);
  background:
    radial-gradient(circle at 8% 16%, rgba(119, 126, 136, 0.48) 0 1px, transparent 1.7px),
    radial-gradient(circle at 41% 84%, rgba(119, 126, 136, 0.32) 0 1px, transparent 1.7px),
    linear-gradient(112deg, #f8f4ed 0 57%, #e6dfd5 57% 100%);
}

.page-duchesse .morning::before,
.page-duchesse .product-occasions::before,
.page-duchesse .product-reviews::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(16, 18, 23, 0.07) 8% calc(8% + 1px), transparent calc(8% + 1px)),
    linear-gradient(90deg, transparent 0 58%, rgba(16, 18, 23, 0.065) 58% calc(58% + 1px), transparent calc(58% + 1px));
  content: "";
  pointer-events: none;
}

.page-duchesse .morning::after,
.page-duchesse .product-occasions::after,
.page-duchesse .product-reviews::after {
  position: absolute;
  z-index: 0;
  right: 2.5%;
  bottom: -0.2em;
  color: rgba(16, 18, 23, 0.035);
  font-family: var(--serif);
  font-size: clamp(190px, 23vw, 360px);
  line-height: 0.7;
  content: "05";
  pointer-events: none;
}

.page-duchesse .morning-media {
  width: min(100%, 590px);
  padding: 0 34px 58px 0;
}

.page-duchesse .morning-media::before {
  inset: 34px 0 0 32px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 72% 26%, rgba(185, 190, 199, 0.16), transparent 24%),
    linear-gradient(135deg, #15171c, #090a0d);
  box-shadow: 22px 24px 56px rgba(5, 6, 8, 0.17);
}

.page-duchesse .morning-media img {
  height: clamp(350px, 31vw, 430px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 30px 76px rgba(5, 6, 8, 0.2),
    0 0 0 7px rgba(248, 244, 237, 0.44);
}

.duchesse-constellation-morning {
  top: 2%;
  right: -44px;
  width: min(520px, 44vw);
  color: rgba(119, 126, 136, 0.19);
  filter: drop-shadow(0 0 16px rgba(119, 126, 136, 0.1));
}

.page-duchesse .product-occasions {
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1fr);
  background:
    radial-gradient(circle at 89% 14%, rgba(119, 126, 136, 0.42) 0 1px, transparent 1.7px),
    radial-gradient(circle at 18% 78%, rgba(119, 126, 136, 0.3) 0 1px, transparent 1.7px),
    linear-gradient(108deg, #e5ddd2 0 43%, #f8f4ed 43% 100%);
}

.page-duchesse .product-occasions::after {
  right: auto;
  left: 1.5%;
  content: "08";
}

.page-duchesse .product-occasions .split-media {
  width: min(100%, 560px);
  padding: 34px 0 52px 34px;
}

.page-duchesse .product-occasions .split-media::before {
  inset: 0 34px 30px 0;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 24% 74%, rgba(216, 200, 187, 0.14), transparent 22%),
    linear-gradient(135deg, #15171c, #08090c);
  box-shadow: 20px 24px 58px rgba(5, 6, 8, 0.17);
}

.page-duchesse .product-occasions .split-media img {
  height: clamp(340px, 29vw, 410px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 30px 76px rgba(5, 6, 8, 0.2),
    0 0 0 7px rgba(248, 244, 237, 0.4);
}

.duchesse-constellation-occasions {
  top: 0;
  left: 8%;
  width: min(520px, 45vw);
  color: rgba(119, 126, 136, 0.18);
  filter: drop-shadow(0 0 16px rgba(119, 126, 136, 0.1));
}

.page-duchesse .product-reviews {
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.08fr);
  background:
    radial-gradient(circle at 12% 16%, rgba(119, 126, 136, 0.4) 0 1px, transparent 1.7px),
    radial-gradient(circle at 82% 88%, rgba(119, 126, 136, 0.28) 0 1px, transparent 1.7px),
    linear-gradient(102deg, #f8f4ed 0 47%, #e7e0d7 47% 100%);
}

.page-duchesse .product-reviews::after {
  content: "10";
}

.page-duchesse .review-photo {
  width: min(100%, 450px);
  padding: 0 30px 44px 0;
}

.page-duchesse .review-photo::before {
  inset: 30px 0 0 28px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 70% 24%, rgba(185, 190, 199, 0.15), transparent 22%),
    linear-gradient(135deg, #15171c, #08090c);
  box-shadow: 20px 24px 58px rgba(5, 6, 8, 0.17);
}

.page-duchesse .review-photo > img {
  height: clamp(490px, 42vw, 590px);
  max-height: none;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    0 30px 76px rgba(5, 6, 8, 0.2),
    0 0 0 7px rgba(248, 244, 237, 0.4);
}

.page-duchesse .review-copy {
  position: relative;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(16, 18, 23, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.17)),
    rgba(248, 244, 237, 0.36);
  box-shadow: 0 28px 76px rgba(5, 6, 8, 0.1);
  clip-path: polygon(0 0, 95% 0, 100% 7%, 100% 100%, 0 100%);
}

.page-duchesse .review-copy::before {
  position: absolute;
  z-index: -1;
  top: -46px;
  right: 5%;
  color: rgba(119, 126, 136, 0.1);
  font-family: var(--serif);
  font-size: 190px;
  line-height: 1;
  content: "“";
}

.page-duchesse .review-copy blockquote {
  border-left: 1px solid rgba(119, 126, 136, 0.45);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), transparent);
}

.duchesse-constellation-reviews {
  top: 2%;
  left: -70px;
  width: min(510px, 45vw);
  color: rgba(119, 126, 136, 0.16);
}

/* Infos pratiques : plan céleste et architecture Art déco. */
.page-duchesse .practical {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(119, 126, 136, 0.48) 0 1px, transparent 1.7px),
    radial-gradient(circle at 35% 8%, rgba(119, 126, 136, 0.3) 0 1px, transparent 1.7px),
    radial-gradient(circle at 84% 29%, rgba(119, 126, 136, 0.42) 0 1px, transparent 1.7px),
    repeating-linear-gradient(90deg, transparent 0 109px, rgba(16, 18, 23, 0.025) 110px),
    repeating-linear-gradient(0deg, transparent 0 109px, rgba(16, 18, 23, 0.02) 110px),
    linear-gradient(118deg, #f8f4ed 0 52%, #e5ddd2 52% 100%);
}

.page-duchesse .practical::before {
  position: absolute;
  z-index: 0;
  right: 2%;
  bottom: 0;
  color: rgba(16, 18, 23, 0.035);
  font-family: var(--serif);
  font-size: clamp(210px, 26vw, 420px);
  line-height: 0.72;
  content: "12";
  pointer-events: none;
}

.page-duchesse .practical::after {
  position: absolute;
  z-index: 0;
  inset: 7% 5%;
  border: 1px solid rgba(16, 18, 23, 0.08);
  clip-path: polygon(0 0, 28% 0, 28% 1px, 72% 1px, 72% 0, 100% 0, 100% 100%, 72% 100%, 72% calc(100% - 1px), 28% calc(100% - 1px), 28% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.page-duchesse .practical > :not(.duchesse-constellation) {
  position: relative;
  z-index: 2;
}

.duchesse-constellation-practical {
  z-index: 1;
  top: -38px;
  left: 50%;
  width: min(620px, 54vw);
  color: rgba(119, 126, 136, 0.13);
  filter: drop-shadow(0 0 18px rgba(119, 126, 136, 0.08));
  transform: translateX(-50%);
}

.page-duchesse .practical-grid {
  max-width: 1320px;
  margin: 0 auto;
  gap: 12px;
  border: 0;
  background: transparent;
}

.page-duchesse .practical-grid article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 23, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.22)),
    rgba(248, 244, 237, 0.62);
  box-shadow: 0 18px 44px rgba(5, 6, 8, 0.07);
  transition: border-color 350ms ease, box-shadow 350ms ease, transform 350ms var(--ease);
}

.page-duchesse .practical-grid article::before {
  position: absolute;
  top: 17px;
  right: 20px;
  color: rgba(119, 126, 136, 0.36);
  font-family: var(--serif);
  font-size: 18px;
  content: "✦";
}

.page-duchesse .practical-grid article::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(119, 126, 136, 0.12);
  content: "";
  transform: rotate(45deg);
}

.page-duchesse .practical-grid article:hover {
  border-color: rgba(119, 126, 136, 0.34);
  box-shadow: 0 24px 56px rgba(5, 6, 8, 0.11);
  transform: translateY(-4px);
}

.page-duchesse .product-faq {
  padding: 0 clamp(22px, 4vw, 52px);
  border: 1px solid rgba(16, 18, 23, 0.13);
  background: rgba(248, 244, 237, 0.52);
  box-shadow: 0 22px 64px rgba(5, 6, 8, 0.08);
}

.page-duchesse .product-faq a {
  color: #334867;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #7a8799;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.page-duchesse .product-faq a::after {
  margin-left: 0.28em;
  content: "↗";
  text-decoration: none;
}

@media (max-width: 900px) {
  .celestial-card {
    transform: none;
    transition: filter 450ms ease;
    will-change: auto;
  }

  .page-duchesse .morning,
  .page-duchesse .product-occasions,
  .page-duchesse .product-reviews {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(54px, 10vw, 78px);
    background:
      radial-gradient(circle at 87% 12%, rgba(119, 126, 136, 0.36) 0 1px, transparent 1.7px),
      linear-gradient(112deg, #f8f4ed 0 62%, #e6dfd5 62% 100%);
  }

  .page-duchesse .morning-media {
    width: min(100%, 620px);
    justify-self: start;
  }

  .page-duchesse .product-occasions .split-media {
    width: min(100%, 580px);
    justify-self: start;
  }

  .page-duchesse .review-photo {
    width: min(100%, 460px);
    justify-self: start;
  }

  .page-duchesse .review-copy {
    width: 100%;
    padding: 34px;
  }

  .page-duchesse .practical::after {
    inset: 4% 22px;
  }
}

@media (max-width: 640px) {
  .celestial-sky {
    opacity: 0.82 !important;
  }

  .shooting-stars i {
    width: 110px;
  }

  .page-duchesse .morning::after,
  .page-duchesse .product-occasions::after,
  .page-duchesse .product-reviews::after,
  .page-duchesse .practical::before {
    font-size: 170px;
  }

  .page-duchesse .morning-media {
    padding: 0 18px 42px 0;
  }

  .page-duchesse .morning-media::before {
    inset: 20px 0 0 18px;
  }

  .page-duchesse .morning-media img,
  .page-duchesse .product-occasions .split-media img {
    height: min(74vw, 350px);
  }

  .page-duchesse .product-occasions .split-media {
    padding: 20px 0 38px 18px;
  }

  .page-duchesse .product-occasions .split-media::before {
    inset: 0 18px 20px 0;
  }

  .page-duchesse .review-photo {
    padding: 0 18px 34px 0;
  }

  .page-duchesse .review-photo::before {
    inset: 20px 0 0 18px;
  }

  .page-duchesse .review-photo > img {
    height: min(126vw, 540px);
  }

  .page-duchesse .review-copy {
    padding: 26px 20px 30px;
    clip-path: polygon(0 0, 94% 0, 100% 4%, 100% 100%, 0 100%);
  }

  .page-duchesse .practical-grid {
    gap: 10px;
  }

  .page-duchesse .practical-grid article {
    min-height: 0;
  }

  .page-duchesse .product-faq {
    padding: 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .celestial-sky i,
  .shooting-stars i {
    animation: none;
  }

  .celestial-sky i {
    opacity: 0.68;
    transform: none;
  }

  .shooting-stars {
    display: none;
  }

  .celestial-card,
  .page-duchesse .practical-grid article {
    transition: none;
  }
}

/* Audit navigateur 2026-07-22 : lisibilité et densité mobile des éléments partagés. */
:root {
  --ink-soft: #4c535e;
  --brand-dark: #596373;
  --steel: #5b6574;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px 20px;
    padding: 38px 20px 22px;
  }

  .footer-brand {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
  }

  .footer-brand img {
    width: 112px;
  }

  .footer-brand p {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
  }

  .site-footer nav,
  .footer-contact {
    min-width: 0;
    gap: 7px;
  }

  .site-footer nav a,
  .footer-contact a {
    min-width: 0;
    max-width: 100%;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.07em;
    overflow-wrap: anywhere;
  }

  .footer-contact a[href^="mailto:"] {
    width: auto;
    letter-spacing: 0.04em;
    text-transform: none;
  }

  .footer-note {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding-top: 16px;
    letter-spacing: 0.08em;
  }
}

.experience-portal > .duchesse-seal small,
.review-copy cite {
  font-size: 11px;
}
/* V10.4.15 — La Duchesse : supprimer les orbites pointillées parasites. */
.page-duchesse .portal-orbit,
.page-duchesse .option-aura i {
  border-style: solid;
  opacity: 0.16;
}

.page-duchesse .portal-orbit::after {
  border-style: solid;
}

.page-duchesse .destination .section-label {
  color: #8995a6;
}

/* Afficher le LCP sans attendre l'introduction décorative sur mobile. */
@media (max-width: 820px) {
  .page-duchesse .door {
    display: none;
  }

  .page-duchesse .hero-media img,
  .page-duchesse .hero-home .hero-media img,
  .page-duchesse .hero-product .hero-media img {
    animation: none;
  }

  .page-duchesse [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
