/* 1. Variables de design */
:root {
  --brown: #5B3C2E;
  --brown-dark: #3A261D;
  --paper: #F5F0E8;
  --porcelain: #FBFAF7;
  --linen: #E7DDD2;
  --wood: #C7A98A;
  --bronze: #A1733D;
  --sage: #75806A;
  --sage-fresh: #6F8065;
  --sage-deep: #56684D;
  --sage-light: #AAB99F;
  --lavender: #8D7A87;
  --red: #8A3B34;
  --suptitle-size: 13px;
  --border: #D7CCBF;
  --ink-soft: #5B3C2E;
  --shadow: 0 10px 28px rgba(58, 38, 29, .08), 0 2px 8px rgba(58, 38, 29, .05);
  --shadow-soft: 0 16px 42px rgba(58, 38, 29, .10), 0 1px 0 rgba(255, 255, 255, .72) inset;
  --surface-sage: rgba(117, 128, 106, .045);
  --surface-lavender: rgba(141, 122, 135, .045);
  --surface-linen: rgba(231, 221, 210, .52);
  --line-ornament: linear-gradient(180deg, var(--bronze), var(--wood) 52%, var(--sage));
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Lato, Arial, Helvetica, sans-serif;
  --grid-gutter: clamp(24px, 2.6vw, 36px);
  --gutter: var(--grid-gutter);
  --container: 1280px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 .23 0 0 0 0 .15 0 0 0 0 .1 0 0 0 .30 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --floral-texture: url("../photos/textures/papier-peint-allure-al26290.jpg");
}

/* 2. Base et normalisation */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--paper);
  background-image: var(--grain);
  background-size: 140px 140px;
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--bronze); color: var(--paper); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
section { scroll-margin-top: 92px; }

.wrap {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

/* 3. En-tête et navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(58, 38, 29, .12);
  background-color: var(--paper);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 rgba(58, 38, 29, 0);
  transition: box-shadow .28s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(58, 38, 29, .14), 0 2px 8px rgba(58, 38, 29, .08);
}

.nav {
  position: relative;
  height: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 0;
}

.brand img {
  width: auto;
  height: 70px;
  filter: drop-shadow(0 2px 6px rgba(58, 38, 29, .10));
  transform-origin: left center;
  transition: height .45s ease, transform .45s ease, filter .45s ease;
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 18px;
  line-height: 1.15;
}

.brand-name {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand-baseline {
  color: #39251D;
  font-family: var(--sans);
  padding-left: 18px;
  border-left: 1px solid rgba(58, 38, 29, .28);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  min-width: 0;
}

.nav-links a {
  text-decoration: none;
  background-image: linear-gradient(var(--sage), var(--sage));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  padding: 7px 0;
  transition: color .32s ease, background-size .32s ease, transform .32s ease;
}

.nav-links a:hover {
  color: var(--sage);
  background-size: 100% 1px;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-soft);
  transition: transform .28s ease, opacity .28s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1.5px solid var(--sage-deep);
  border-radius: 8px;
  background: var(--sage-fresh);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(86, 104, 77, .16), 0 2px 8px rgba(58, 38, 29, .05);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.btn:hover {
  background: var(--sage-deep);
  border-color: var(--sage);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--brown);
  color: var(--paper);
  border-color: var(--brown);
}

/* 4. Hero */
.hero {
  --travel: 0;
  --hero-shift: clamp(0, calc((var(--travel) - .36) * 2), 1);
  --inside-copy: clamp(0, calc((var(--travel) - .52) * 3.1), 1);
  --card-in: clamp(0, calc((var(--travel) - .74) * 4.2), 1);
  position: relative;
  min-height: 210vh;
  overflow: clip;
  background: var(--brown-dark);
  color: var(--paper);
  isolation: isolate;
}

.hero-sticky {
  position: sticky;
  top: 80px;
  min-height: calc(100svh - 80px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.hero-image--outside {
  z-index: 0;
  object-position: 50% 58%;
  transform: scale(calc(1.06 + var(--travel) * .46));
  opacity: calc(1 - var(--travel) * .72);
  filter: blur(calc(var(--travel) * 2px)) saturate(calc(1 + var(--travel) * .10));
}

.hero-image--inside {
  z-index: 1;
  object-position: 50% 50%;
  transform: translate3d(calc((1 - var(--travel)) * 3vw), calc((1 - var(--travel)) * 2vh), 0) scale(calc(1.15 - var(--travel) * .11));
  opacity: clamp(0, calc((var(--travel) - .18) * 1.7), .82);
  filter: blur(calc((1 - var(--travel)) * 3px));
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(105deg, oklch(0.16 0.025 55 / 0.61) 0%, oklch(0.18 0.03 55 / 0.62) 38%, oklch(0.2 0.03 55 / 0.22) 66%, transparent 100%),
    linear-gradient(to top, oklch(0.14 0.025 50 / 0.5) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vh, 118px) 0 clamp(92px, 12vh, 148px);
}

.hero-content {
  width: min(760px, 100%);
  display: grid;
  margin-top: 0;
  animation: hero-content-enter .95s ease-out both;
}

.hero-phase {
  grid-area: 1 / 1;
  min-width: 0;
  will-change: transform, opacity;
}

.hero-phase--intro {
  transform: translateY(calc(var(--hero-shift) * -34px));
  opacity: clamp(0, calc(1 - var(--hero-shift) * 2.35), 1);
}

.hero-phase--inside {
  max-width: 740px;
  transform: translateY(calc((1 - var(--inside-copy)) * 30px));
  opacity: var(--inside-copy);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--wood);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--brown);
  line-height: 1.05;
}

h1 {
  max-width: 100%;
  font-size: 110.9px;
  font-weight: 600;
  overflow-wrap: anywhere;
  text-shadow: 0 3px 24px rgba(58, 38, 29, .32);
}

.hero h1 {
  max-width: 720px;
}

.hero-phase h2 {
  font-size: clamp(45.6px, 6vw, 69.6px);
}

.hero h1,
.hero h2,
.hero .hero-lead,
.hero-entry p {
  color: #fff;
}

.hero-title-nowrap {
  white-space: nowrap;
}

.hero h1::after {
  content: "";
  display: block;
  width: 224px;
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, var(--wood), var(--bronze), transparent);
  box-shadow: 0 0 18px rgba(199, 169, 138, .28);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 29px;
  font-weight: 600;
}

.hero-lead {
  max-width: 100%;
  margin: 28px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(25px, 2.64vw, 33px);
  font-style: italic;
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(58, 38, 29, .32);
}

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

.hero-phase--inside .hero-actions {
  margin-top: 30px;
}

.hero-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(199, 169, 138, .74);
  border-radius: 8px;
  padding: 13px 22px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  background: rgba(58, 38, 29, .16);
  box-shadow: 0 8px 22px rgba(58, 38, 29, .16);
  transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.hero-link:hover {
  color: var(--paper);
  background: rgba(161, 115, 61, .22);
  border-color: var(--wood);
  box-shadow: 0 13px 28px rgba(58, 38, 29, .22);
  transform: translateY(-2px);
}

.hero .btn {
  min-height: 48px;
  border-radius: 8px;
  border-color: rgba(170, 185, 159, .72);
  background:
    linear-gradient(180deg, #809174, var(--sage-deep));
  box-shadow: 0 12px 28px rgba(58, 38, 29, .18), 0 1px 0 rgba(255, 255, 255, .28) inset;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease;
}

.hero .btn:hover {
  background:
    linear-gradient(180deg, #8EA080, #4F6047);
  border-color: var(--sage-light);
  box-shadow: 0 18px 34px rgba(58, 38, 29, .24), 0 1px 0 rgba(255, 255, 255, .32) inset;
  transform: translateY(-2px);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 5;
  width: 48px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  opacity: clamp(0, calc(1 - var(--travel) * 4), 1);
  transform: translateX(-50%);
  transition: opacity .24s ease;
}

.hero.is-past-scroll-cue .hero-scroll-cue {
  pointer-events: none;
}

.hero-scroll-cue__mark {
  position: relative;
  width: 32px;
  height: 38px;
  display: block;
  animation: hero-scroll-cue 1.45s ease-in-out infinite;
}

.hero-scroll-cue__mark::before,
.hero-scroll-cue__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  opacity: .92;
  filter: drop-shadow(0 3px 10px rgba(58, 38, 29, .44));
}

.hero-scroll-cue__mark::before {
  top: 0;
}

.hero-scroll-cue__mark::after {
  top: 13px;
  opacity: .58;
}

@keyframes hero-scroll-cue {
  0%, 100% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(-4px);
  }
}

.hero-entry {
  position: absolute;
  z-index: 4;
  right: max(20px, calc((100vw - 1280px) / 2));
  bottom: clamp(42px, 10vh, 104px);
  width: min(390px, calc(100% - 40px));
  padding: 24px;
  border: 1px solid rgba(231, 221, 210, .26);
  border-radius: 8px;
  background: rgba(58, 38, 29, .48);
  box-shadow: 0 24px 70px rgba(58, 38, 29, .34);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: var(--card-in);
  pointer-events: none;
  transform: translateY(calc((1 - var(--card-in)) * 38px)) scale(calc(.97 + var(--card-in) * .03));
  will-change: opacity, transform;
}

.hero.is-card-visible .hero-entry {
  pointer-events: auto;
}

.hero-entry .kicker {
  margin-bottom: 20px;
  color: var(--wood);
}

.hero-entry h2 {
  color: var(--paper);
  font-size: clamp(36px, 3.24vw, 48px);
}

.hero-entry p {
  margin: 16px 0 0;
  color: rgba(245, 240, 232, .84);
  font-size: 16px;
  line-height: 1.62;
}

@keyframes hero-content-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 5. Sections de contenu */
.section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
  background-color: var(--paper);
  background-image: var(--grain);
  background-size: 140px 140px;
}

.section.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}

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

.section.alt {
  background-color: var(--linen);
  background-image: var(--grain);
  background-size: 140px 140px;
}

.section-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .62fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 36px;
}

.section-head > div {
  position: relative;
  padding-left: 18px;
}

.section-head > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 2px;
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--sage);
}

.section-head p,
.prose p,
.card p,
.local-card p,
.faq-item p {
  color: var(--brown-dark);
}

.section-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.section-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--sage-deep);
  font-weight: 700;
  text-underline-offset: 4px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--bronze);
  font-size: var(--suptitle-size);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-head .kicker,
.local-card .kicker,
.hero .kicker {
  font-size: var(--suptitle-size);
  line-height: 1.2;
}

.section-head h2::after,
.seasonal-hero h2::after,
.local-card h2::after {
  content: none;
  display: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
  grid-auto-rows: 1fr;
  margin: 30px 0;
}

.intro-grid .quote {
  grid-column: span 1;
  height: 100%;
  min-height: 360px;
}

.intro-grid .photo-card {
  grid-column: span 2;
  height: 100%;
  min-height: 360px;
}

.intro-grid .photo-card img {
  height: 100%;
}

.quote {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(117, 128, 106, .22);
  border-radius: 12px;
  padding: 38px;
  background:
    linear-gradient(135deg, var(--surface-lavender), transparent 62%),
    radial-gradient(120% 90% at 18% 16%, rgba(199,169,138,.24), transparent 60%),
    radial-gradient(100% 90% at 84% 82%, rgba(117,128,106,.12), transparent 55%),
    #EFE6D6;
}

.quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 3px;
  border-radius: 999px;
  background: var(--line-ornament);
}

.quote .mark {
  color: var(--wood);
  font-family: var(--serif);
  font-size: 72px;
  line-height: .6;
}

.quote p {
  margin: 12px 0 20px;
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-style: italic;
  line-height: 1.25;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(161, 115, 61, .18);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.universe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 30px 0;
}

.card {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(141, 122, 135, .20);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .90)),
    linear-gradient(135deg, var(--surface-linen), rgba(141, 122, 135, .11) 52%, rgba(117, 128, 106, .12));
  box-shadow: var(--shadow);
}

.card:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 4px;
}

.card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--linen);
}

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

.card-body {
  position: relative;
  padding: 22px 22px 24px;
}

.card-body::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--bronze), var(--wood), var(--sage));
}

.card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: var(--suptitle-size);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.card-icon {
  width: 34px;
  height: 34px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  color: var(--brown);
}

.card p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.65;
}

.prose {
  border: 1px solid rgba(141, 122, 135, .22);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(141, 122, 135, .08), rgba(255, 255, 255, .78) 42%),
    linear-gradient(180deg, rgba(231, 221, 210, .32), transparent),
    rgba(255, 255, 255, .68);
  box-shadow: var(--shadow);
}

.prose p {
  margin: 18px 0 0;
}

.seasonal-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid rgba(161, 115, 61, .20);
  border-radius: 12px;
  padding: clamp(30px, 5vw, 52px);
  background:
    linear-gradient(90deg, rgba(245, 240, 232, .95) 0%, rgba(245, 240, 232, .86) 58%, rgba(245, 240, 232, .74) 100%),
    linear-gradient(135deg, rgba(117, 128, 106, .08), rgba(141, 122, 135, .05) 46%, transparent 72%),
    var(--floral-texture) center / 560px 560px repeat,
    var(--grain);
  box-shadow: var(--shadow-soft);
}

.seasonal-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 3px;
  border-radius: 999px;
  background: var(--sage);
}

.seasonal-hero p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--brown-dark);
  font-size: 18px;
  line-height: 1.62;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
  margin: 30px 0;
}

.season-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(117, 128, 106, .18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
    linear-gradient(135deg, var(--surface-sage), var(--surface-lavender));
  box-shadow: var(--shadow);
}

.season-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(161, 115, 61, .72), rgba(199, 169, 138, .52), rgba(117, 128, 106, .58));
  opacity: .72;
  z-index: 1;
}

.season-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: stretch;
  height: auto;
  min-height: 0;
  border-color: rgba(138, 59, 52, .28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
    linear-gradient(135deg, rgba(138, 59, 52, .045), rgba(199, 169, 138, .12));
}

.season-card.featured::before {
  background: linear-gradient(180deg, var(--red), var(--bronze), var(--wood));
  opacity: .78;
}

.season-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 24px;
  z-index: 2;
}

.season-card.featured .season-body {
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
}

.season-card h3,
.gift-card h3 {
  color: var(--brown);
}

.season-card p,
.gift-card p {
  margin: 14px 0 0;
  color: var(--brown-dark);
  font-size: 16px;
  line-height: 1.65;
}

.season-tags,
.gift-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.season-tags span,
.gift-tags span {
  --tag-color: var(--bronze);
  border: 1px solid color-mix(in srgb, var(--tag-color) 28%, transparent);
  border-radius: 999px;
  padding: 5px 10px;
  color: color-mix(in srgb, var(--tag-color) 72%, var(--brown-dark));
  background: color-mix(in srgb, var(--tag-color) 12%, #fff);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.season-tags span:nth-child(4n+2),
.gift-tags span:nth-child(4n+2) {
  --tag-color: var(--lavender);
}

.season-tags span:nth-child(4n+3),
.gift-tags span:nth-child(4n+3) {
  --tag-color: var(--sage);
}

.season-tags span:nth-child(4n+4),
.gift-tags span:nth-child(4n+4) {
  --tag-color: var(--wood);
}

.season-card.featured .season-tags span:first-child {
  border-color: rgba(138, 59, 52, .34);
  color: var(--red);
  background: rgba(138, 59, 52, .055);
}

.gift-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(260px, .58fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(199, 169, 138, .24), transparent 52%),
    linear-gradient(135deg, rgba(141, 122, 135, .06), rgba(117, 128, 106, .08)),
    #fff;
  box-shadow: var(--shadow);
}

.gift-card .btn {
  justify-self: end;
  width: auto;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 230px;
  gap: 36px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(161, 115, 61, .20);
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--linen);
}

.gallery figure:first-child {
  grid-row: span 2;
}

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

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(58, 38, 29, .82), rgba(91, 60, 46, .74));
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* 6. Informations pratiques, formulaire et FAQ */
.local-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}

.local-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(117, 128, 106, .24);
  border-radius: 12px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(117, 128, 106, .09), rgba(255, 255, 255, .84) 46%),
    linear-gradient(180deg, rgba(231, 221, 210, .30), transparent),
    #fff;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(117, 128, 106, .24);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .74);
  color: var(--brown-dark);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(161, 115, 61, .58);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(161, 115, 61, .12);
}

.local-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  border-radius: 999px;
  background: var(--line-ornament);
}

.local-card dl {
  display: grid;
  gap: 16px;
  margin: 0 0 26px;
}

.local-card dt {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.local-card dd {
  margin: 4px 0 0;
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
}

.map-photo {
  position: relative;
  min-height: 100%;
}

.map-photo img {
  min-height: 420px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px;
  border: 1px solid rgba(161, 115, 61, .30);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(245, 240, 232, .92), rgba(255, 255, 255, .86)),
    rgba(255, 255, 255, .88);
  color: var(--brown-dark);
  box-shadow: 0 12px 28px rgba(58, 38, 29, .14);
  backdrop-filter: blur(8px);
}

.map-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: var(--line-ornament);
}

.map-overlay p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.map-overlay strong {
  display: block;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
}

#infos .local-card {
  align-self: start;
  padding: 24px 30px;
}

#infos .map-photo {
  align-self: stretch;
  min-height: 0;
}

#infos .contact-form {
  gap: 10px;
  margin-top: 16px;
}

#infos .field {
  gap: 5px;
}

#infos .field input,
#infos .field textarea {
  padding-block: 10px;
}

#infos .field textarea {
  min-height: 84px;
}

#infos .map-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(141, 122, 135, .22);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(141, 122, 135, .08), rgba(255, 255, 255, .78) 34%),
    linear-gradient(180deg, rgba(117, 128, 106, .045), transparent),
    rgba(255, 255, 255, .72);
  box-shadow: 0 1px 2px rgba(58, 38, 29, .05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.65;
}

/* 7. Pied de page */
.footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 30px;
  background:
    radial-gradient(95% 72% at 14% 10%, rgba(199, 169, 138, .14), transparent 58%),
    radial-gradient(80% 80% at 86% 92%, rgba(117, 128, 106, .12), transparent 58%),
    linear-gradient(90deg, rgba(161, 115, 61, .10), transparent 42%, rgba(141, 122, 135, .08)),
    var(--brown-dark);
  color: var(--linen);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--wood), var(--bronze), var(--sage), transparent);
  opacity: .82;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(220px, .85fr) minmax(220px, .85fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.footer-brand img {
  width: 198px;
  margin: 0 0 24px;
  filter: brightness(1.9) sepia(.18);
  opacity: .92;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.45;
}

.footer-col {
  position: relative;
  padding-top: 8px;
}

.footer-label {
  margin: 0 0 18px;
  color: var(--wood);
  font-size: var(--suptitle-size);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-address,
.footer-contact {
  margin: 0;
  color: rgba(245, 240, 232, .82);
  font-size: 15px;
  line-height: 1.75;
}

.footer-contact {
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 0;
  color: var(--wood);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links a {
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: var(--paper);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(231, 221, 210, .14);
  color: rgba(231, 221, 210, .68);
  font-size: 13px;
}

.copyright {
  margin: 0;
}

.powered-by {
  margin: 0;
  color: rgba(231, 221, 210, .56);
  font-size: 12px;
}

.powered-by a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* Cohérence chromatique : le DS est volontairement resserré ici. */
.section.alt {
  background-color: var(--linen);
  background-image: var(--grain);
  background-size: 140px 140px;
}

#univers,
#faq {
  background-color: var(--linen);
  background-image:
    linear-gradient(rgba(231, 221, 210, .76), rgba(231, 221, 210, .76)),
    var(--floral-texture),
    var(--grain);
  background-size: auto, 560px 560px, 140px 140px;
}

#magasin,
#ambiances {
  background-color: var(--paper);
  background-image:
    linear-gradient(135deg, rgba(231, 221, 210, .58), rgba(245, 240, 232, .68) 46%, rgba(141, 122, 135, .055)),
    linear-gradient(90deg, rgba(117, 128, 106, .045), transparent 42%, rgba(161, 115, 61, .055));
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%;
}

.quote::before,
.season-card::before,
.local-card::before,
.map-overlay::before {
  display: none;
}

.quote,
.photo-card,
.card,
.prose,
.local-card,
.faq-item {
  background-color: rgba(255, 255, 255, .9);
}

.quote {
  border-color: rgba(117, 128, 106, .22);
  background:
    linear-gradient(135deg, var(--surface-lavender), transparent 62%),
    radial-gradient(120% 90% at 18% 16%, rgba(199,169,138,.24), transparent 60%),
    radial-gradient(100% 90% at 84% 82%, rgba(117,128,106,.12), transparent 55%),
    #fff;
}

.quote .mark {
  color: var(--bronze);
}

.card-img,
.gallery figure {
  background:
    linear-gradient(135deg, rgba(199, 169, 138, .20), rgba(117, 128, 106, .08)),
    var(--linen);
}

.gallery figcaption {
  background: var(--brown-dark);
}


/* 8. Grille structurante de 12 colonnes */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gutter);
}

.section-head > div { grid-column: span 7; }
.section-head > p { grid-column: span 5; }

.intro-grid > .quote { grid-column: span 4; }
.intro-grid > .photo-card { grid-column: span 8; }

.universe-grid > .card {
  grid-column: span 4;
}

.seasonal-grid > .season-card {
  grid-column: span 6;
}

.seasonal-grid > .season-card.featured {
  grid-column: span 6;
}

.season-card.featured > .season-body {
  grid-column: 1 / -1;
}

.gift-card > div { grid-column: span 8; }
.gift-card > .btn { grid-column: span 4; }

.local-grid > * { grid-column: span 6; }

.footer-grid > .footer-brand { grid-column: span 5; }
.footer-grid > .footer-col:nth-child(2) { grid-column: span 3; }
.footer-grid > .footer-col:nth-child(3) { grid-column: span 4; }

/* 9. Responsive — navigation compacte et tablette */
@media (max-width: 1023px) {
  .intro-grid {
    grid-auto-rows: auto;
  }

  .intro-grid .quote {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }

  .nav {
    align-items: center;
    flex-direction: row;
    padding: 14px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px max(12px, calc((100vw - 1280px) / 2 + 20px)) 28px 30px;
    white-space: normal;
    background-color: var(--paper);
    background-image: var(--grain);
    background-size: 140px 140px;
    box-shadow: 0 10px 28px rgba(58, 38, 29, .14), 0 2px 8px rgba(58, 38, 29, .08);
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .hero {
    min-height: 160vh;
  }

  .hero-sticky {
    align-items: start;
  }

  .hero-inner {
    padding-top: 74px;
  }

  .hero-content {
    width: min(620px, 100%);
    margin-left: 0;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-entry {
    left: 20px;
    right: 20px;
    bottom: 58px;
    width: auto;
  }

  .section-head,
  .intro-grid,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid .quote,
  .intro-grid .photo-card {
    grid-column: auto;
  }

  .universe-grid,
  .gallery,
  .seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .season-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    height: auto;
  }
  .gift-card {
    grid-template-columns: 1fr;
  }
  .gift-card .btn {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  /* Répartition de la grille 12 colonnes sous 1024 px */
  .grid-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .section-head > *,
  .intro-grid > *,
  .gift-card > *,
  .local-grid > *,
  .footer-grid > * {
    grid-column: 1 / -1;
  }

  .universe-grid > .card,
  .seasonal-grid > .season-card {
    grid-column: span 6;
  }

  .seasonal-grid > .season-card.featured {
    grid-column: span 6;
  }

  .season-card.featured > .season-body {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

}

/* Desktop compact : navigation classique à partir de 1024 px */
@media (min-width: 1024px) and (max-width: 1200px) {
  .nav {
    gap: 18px;
  }

  .brand-text {
    gap: 12px;
  }

  .brand-name {
    font-size: clamp(24px, 2.3vw, 28px);
  }

  .brand-baseline {
    padding-left: 12px;
    font-size: 12px;
  }

  .nav-links {
    gap: clamp(12px, 1.6vw, 20px);
  }
}

/* Marque sur deux lignes sous 1200 px */
@media (max-width: 1199px) {
  .brand-text {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .brand-baseline {
    padding-left: 0;
    border-left: 0;
    font-size: clamp(11px, 1.2vw, 12px);
    line-height: 1.2;
  }
}

/* Desktop peu profond */
@media (min-width: 1024px) and (max-height: 760px) {
  .hero-inner {
    padding: 54px 0 44px;
  }

  .hero h1 {
    font-size: clamp(55px, 6.6vw, 77px);
  }

  .hero h1::after {
    margin-top: 16px;
  }

  .hero-lead {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
  }
}

/* Tablette verticale */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .wrap,
  .hero-inner {
    width: min(calc(100% - 48px), 960px);
  }

  .hero {
    min-height: 150vh;
  }

  .hero-inner {
    padding-top: clamp(64px, 8vh, 88px);
  }

  .hero #hero-title {
    font-size: clamp(48px, 7vw, 64px);
  }

  .section {
    padding-block: 88px;
  }

  .universe-grid,
  .seasonal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .local-grid {
    gap: 32px;
  }
  .grid-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

}

/* Mobile */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .wrap, .hero-inner { width: calc(100vw - 24px); max-width: calc(100vw - 24px); }
  .brand img { height: 58px; }
  .nav-links .btn { display: none; }
  .hero {
    min-height: 145vh;
  }
  .hero-sticky {
    top: 80px;
    min-height: calc(100svh - 80px);
  }
  .hero-inner { padding: 56px 0 136px; }
  .hero h1 {
    width: 100%;
    max-width: 330px;
    font-size: 52px;
    line-height: 1.03;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  h2 {
    font-size: 36px;
    line-height: 1.06;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-phase h2 {
    font-size: 36px;
  }
  .hero-content {
    width: 100%;
    max-width: calc(100vw - 24px);
    min-width: 0;
    padding-inline: 20px;
  }
  .hero-lead {
    max-width: 340px;
    font-size: 20px;
    overflow-wrap: anywhere;
  }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero .btn,
  .hero-link,
  .btn { width: 100%; }
  .hero-link { align-self: center; }
  .hero-phase--inside .hero-actions {
    display: none;
  }
  .hero-entry {
    bottom: 46px;
    padding: 20px;
  }
  .hero-entry .kicker {
    display: none;
  }
  .hero-entry h2 {
    font-size: 29px;
  }
  .hero-entry p {
    font-size: 15px;
  }
  .hero-scroll-cue {
    bottom: 30px;
  }
  .section { padding: 62px 0; }
  #ambiances { scroll-margin-top: 178px; }
  .intro-grid,
  .universe-grid,
  .local-grid,
  .seasonal-grid {
    gap: 40px;
  }
  .universe-grid,
  .gallery,
  .seasonal-grid {
    grid-template-columns: 1fr;
  }
  .seasonal-hero {
    background:
      linear-gradient(rgba(245, 240, 232, .90), rgba(245, 240, 232, .90)),
      var(--floral-texture) center / 520px 520px repeat,
      var(--grain);
  }
  .season-card.featured { grid-column: auto; }
  .gallery { grid-auto-rows: 240px; }
  .gallery figure:first-child { grid-row: span 1; }
  /* Une seule colonne de contenu sur mobile */
  .grid-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .universe-grid > .card,
  .seasonal-grid > .season-card,
  .seasonal-grid > .season-card.featured {
    grid-column: 1 / -1;
  }

  .footer-brand p { font-size: 24px; }
}

/* Accessibilité : mouvements réduits */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .section.reveal-section {
    opacity: 1;
    transform: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-sticky {
    position: relative;
  }

  .hero-image--outside,
  .hero-image--inside,
  .hero-phase--intro,
  .hero-phase--inside,
  .hero-entry,
  .hero-scroll-cue__mark {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-entry {
    pointer-events: auto;
  }
}

/* 10. Pages internes — source unique partagée avec le design system */
body.internal-page {
  margin: 0;
  background: var(--porcelain);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.internal-page.is-modal-open { overflow: hidden; }

.page-shell {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gutter);
}

.internal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(58,38,29,.12);
  background: rgba(251,250,247,.97);
  box-shadow: 0 8px 24px rgba(58,38,29,.08);
  backdrop-filter: blur(10px);
}
.internal-nav {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.internal-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--brown);
  text-decoration: none;
  white-space: nowrap;
}
.internal-brand-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.internal-brand-baseline {
  padding-left: 18px;
  border-left: 1px solid rgba(58,38,29,.28);
  color: var(--brown-dark);
  font-size: 13px;
}
.internal-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.internal-nav-links a {
  padding-block: 8px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.internal-nav-links a:hover { color: var(--sage-deep); }
.internal-nav-links a.is-active {
  color: var(--sage-deep);
  border-bottom-color: var(--sage);
}
.internal-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.internal-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--brown);
  transition: transform .2s ease, opacity .2s ease;
}
.internal-nav.is-open .internal-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.internal-nav.is-open .internal-nav-toggle span:nth-child(2) { opacity: 0; }
.internal-nav.is-open .internal-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.product-hero {
  position: relative;
  min-height: 530px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
  isolation: isolate;
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(92deg, rgba(43, 27, 20, .88), rgba(43, 27, 20, .54) 52%, rgba(43, 27, 20, .16));
}
.product-hero--mobilier { background-image: url("../photos/381dc68f-ec51-4faf-8a70-3f644ce2cd09.png"); }
.product-hero--decoration { background-image: url("../photos/accessoires.jpg"); }
.product-hero--senteurs { background-image: url("../photos/681721323_1602368988565969_9040349170403304882_n.jpg"); }
.product-hero--textiles { background-image: url("../photos/textiles.jpg"); }
.product-hero--savons { background-image: url("../photos/savons.jpg"); }
.product-hero--cadeaux { background-image: url("../photos/epicerie.jpg"); }

.internal-hero-inner { padding-block: 28px clamp(56px, 8vw, 92px); }
.hero-copy { grid-column: 1 / span 8; }
.internal-eyebrow {
  margin: 0 0 12px;
  color: #ead8c1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.product-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .96;
}
.hero-deck {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 31px);
  font-style: italic;
  line-height: 1.3;
}

.breadcrumbs {
  padding-block: 18px;
  border-bottom: 1px solid rgba(91,60,46,.12);
  background: var(--porcelain);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(58,38,29,.65);
  font-size: 14px;
}
.breadcrumbs li + li::before {
  content: "›";
  margin-right: 9px;
  color: var(--bronze);
}
.breadcrumbs a {
  color: var(--sage-deep);
  font-weight: 700;
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumbs [aria-current="page"] { color: var(--brown-dark); }

.editorial-intro {
  position: relative;
  padding-block: clamp(72px, 9vw, 118px);
  background: var(--porcelain);
}
.editorial-intro > .page-shell { position: relative; }
.editorial-intro > .page-shell::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--gutter) * -1) / 2);
  width: 2px;
  background: linear-gradient(var(--bronze), var(--sage));
}
.intro-heading { grid-column: 1 / span 4; }
.intro-copy { grid-column: 5 / -1; columns: 2; column-gap: var(--gutter); }
.section-number {
  margin: 0 0 12px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.editorial-intro h2,
.gallery-heading h2,
.visit-copy h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}
.intro-copy p { margin: 0; }
.intro-copy p + p { margin-top: 18px; }
.dropcap::first-letter {
  float: left;
  margin: 7px 9px 0 0;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 76px;
  line-height: .68;
}

.product-gallery-section {
  padding-block: clamp(68px, 8vw, 104px);
  background-color: var(--linen);
  background-image:
    linear-gradient(rgba(231,221,210,.76), rgba(231,221,210,.76)),
    url("../photos/textures/papier-peint-allure-al26290.jpg"),
    var(--grain);
  background-size: auto, 560px 560px, 140px 140px;
  color: var(--brown-dark);
  border-block: 0;
}
.product-gallery-section .section-number { color: var(--bronze); }
.product-gallery-section .gallery-heading h2 { color: var(--brown); }
.gallery-heading {
  grid-column: 1 / span 5;
  margin-bottom: 38px;
}
.gallery-note {
  grid-column: 8 / -1;
  align-self: end;
  margin: 0 0 42px;
  color: rgba(58,38,29,.7);
  font-size: 15px;
}
.product-gallery { row-gap: var(--gutter); }
.product-shot {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(141,122,135,.2);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.9)),
    linear-gradient(135deg, rgba(231,221,210,.52), rgba(141,122,135,.11) 52%, rgba(117,128,106,.12));
  box-shadow: 0 10px 28px rgba(58,38,29,.08), 0 2px 8px rgba(58,38,29,.05);
}
.product-shot button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--linen);
  cursor: zoom-in;
  box-shadow: none;
}
.product-shot button:focus-visible { outline: 3px solid var(--bronze); outline-offset: -4px; }
.product-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.product-shot button:hover img,
.product-shot button:focus-visible img { transform: scale(1.025); filter: saturate(1.05); }
.product-shot figcaption {
  position: relative;
  min-height: 94px;
  padding: 38px 22px 22px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.15;
}
.product-shot figcaption::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 22px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--wood), var(--sage));
}

.universe-directory-section {
  padding-block: clamp(72px, 9vw, 112px);
  background-color: var(--linen);
  background-image:
    linear-gradient(rgba(231,221,210,.76), rgba(231,221,210,.76)),
    url("../photos/textures/papier-peint-allure-al26290.jpg"),
    var(--grain);
  background-size: auto, 560px 560px, 140px 140px;
  color: var(--brown-dark);
  border-block: 0;
}
.universe-directory-section .section-number { color: var(--bronze); }
.universe-directory-section .directory-heading h2 { color: var(--brown); }
.directory-heading { align-items: end; margin-bottom: 42px; }
.directory-heading > div { grid-column: 1 / span 7; }
.directory-heading > p { grid-column: 9 / -1; margin: 0; color: rgba(58,38,29,.7); }
.directory-heading h2,
.seo-heading h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}
.universe-directory { row-gap: var(--gutter); }
.directory-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(91,60,46,.14);
  border-radius: 4px;
  background: #fff;
  color: var(--brown-dark);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(12,18,13,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.directory-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(58,38,29,.13); }
.directory-card:focus-visible { outline: 3px solid var(--bronze); outline-offset: 4px; }
.directory-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.directory-card > div { padding: 22px 24px 26px; }
.directory-card span { color: var(--bronze); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.directory-card h3 { margin: 7px 0 0; color: var(--brown); font-family: var(--serif); font-size: 30px; line-height: 1.05; }
.directory-card p { margin: 11px 0 0; font-size: 15px; }

.seo-copy-section {
  padding-block: clamp(76px, 10vw, 126px);
  background: var(--porcelain);
}
.seo-heading { grid-column: 1 / span 4; }
.seo-copy { grid-column: 5 / -1; columns: 2; column-gap: var(--gutter); }
.seo-copy p { margin: 0; }
.seo-copy p + p { margin-top: 18px; }

.visit-section {
  position: relative;
  padding-block: clamp(78px, 10vw, 126px);
  background-color: var(--paper);
  background-image:
    linear-gradient(135deg, rgba(231,221,210,.58), rgba(245,240,232,.68) 46%, rgba(141,122,135,.055)),
    linear-gradient(90deg, rgba(117,128,106,.045), transparent 42%, rgba(161,115,61,.055));
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%;
}
.visit-card {
  align-items: center;
  padding: 0;
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.visit-card::after {
  display: none;
}
.visit-copy,
.visit-action { position: relative; z-index: 1; }
.visit-copy { grid-column: 1 / span 8; }
.visit-copy p { max-width: 680px; margin: 18px 0 0; }
.visit-action { grid-column: 10 / -1; justify-self: end; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--sage);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(86,104,77,.18);
}
.button:hover { background: var(--sage-deep); }

.internal-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 30px;
  background:
    radial-gradient(95% 72% at 14% 10%, rgba(199,169,138,.14), transparent 58%),
    radial-gradient(80% 80% at 86% 92%, rgba(117,128,106,.12), transparent 58%),
    linear-gradient(90deg, rgba(161,115,61,.1), transparent 42%, rgba(141,122,135,.08)),
    var(--brown-dark);
  color: var(--linen);
}
.internal-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--wood), var(--bronze), var(--sage), transparent);
  opacity: .82;
}
.internal-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(220px, .85fr) minmax(220px, .85fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.internal-footer-brand img {
  width: 198px;
  margin: 0 0 24px;
  filter: brightness(1.9) sepia(.18);
  opacity: .92;
}
.internal-footer-brand p {
  max-width: 430px;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.45;
}
.internal-footer-col { padding-top: 8px; }
.internal-footer-label {
  margin: 0 0 18px;
  color: var(--wood);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.internal-footer-address,
.internal-footer-contact {
  margin: 0;
  color: rgba(245,240,232,.82);
  font-size: 15px;
  line-height: 1.75;
}
.internal-footer-contact { margin-top: 12px; }
.internal-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--wood);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.internal-footer-links a { text-decoration: none; transition: color .2s ease, transform .2s ease; }
.internal-footer-links a:hover { color: var(--paper); transform: translateX(2px); }
.internal-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(231,221,210,.14);
  color: rgba(231,221,210,.68);
  font-size: 13px;
}
.internal-footer-powered { color: rgba(231,221,210,.56); font-size: 12px; }
.internal-footer-powered a { color: #fff; font-weight: 700; text-decoration: none; }

.lightbox {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #17110e;
  color: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
}
.lightbox::backdrop { background: rgba(25,16,12,.84); backdrop-filter: blur(5px); }
.lightbox-inner { position: relative; display: grid; }
.lightbox img { width: 100%; max-height: calc(100dvh - 105px); object-fit: contain; }
.lightbox-caption { margin: 0; padding: 14px 20px; color: rgba(255,255,255,.84); }
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: rgba(23,17,14,.76);
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .internal-nav-toggle { display: block; }
  .internal-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px max(20px, calc((100vw - var(--container)) / 2 + 20px)) 28px;
    background: var(--paper);
    box-shadow: 0 16px 28px rgba(58,38,29,.14);
  }
  .internal-nav.is-open .internal-nav-links { display: flex; }
  .internal-brand { flex-direction: column; align-items: flex-start; gap: 4px; }
  .internal-brand-baseline { padding-left: 0; border-left: 0; font-size: 11px; }
  .product-hero { min-height: 460px; }
  .hero-copy { grid-column: 1 / span 10; }
  .intro-heading { grid-column: 1 / span 5; }
  .intro-copy { grid-column: 6 / -1; columns: 1; }
  .product-shot { grid-column: span 6; }
  .gallery-heading { grid-column: 1 / span 7; }
  .gallery-note { grid-column: 8 / -1; }
  .visit-copy { grid-column: 1 / span 8; }
  .visit-action { grid-column: 9 / -1; }
  .directory-heading > div { grid-column: 1 / span 7; }
  .directory-heading > p { grid-column: 8 / -1; }
  .directory-card { grid-column: span 6; }
  .seo-heading { grid-column: 1 / span 5; }
  .seo-copy { grid-column: 6 / -1; columns: 1; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .page-shell { width: calc(100% - 24px); }
  .internal-brand-name { font-size: 25px; }
  .product-hero { min-height: 430px; }
  .product-hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero-copy,
  .intro-heading,
  .intro-copy,
  .gallery-heading,
  .gallery-note,
  .product-shot,
  .visit-copy,
  .visit-action { grid-column: 1 / -1; }
  .directory-heading > div,
  .directory-heading > p,
  .directory-card,
  .seo-heading,
  .seo-copy { grid-column: 1 / -1; }
  .internal-hero-inner { padding-bottom: 48px; }
  .intro-copy { margin-top: 30px; }
  .gallery-note { margin: 18px 0 30px; }
  .product-gallery { row-gap: 32px; }
  .directory-heading > p,
  .seo-copy { margin-top: 28px; }
  .visit-action { justify-self: start; margin-top: 28px; }
  .internal-footer-grid { grid-template-columns: 1fr; }
  .internal-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; }
}

/* 11. Documentation du design system — utilise les tokens du site */
body.design-system {
  margin: 0;
  background: var(--porcelain);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
.ds-shell { width: min(1280px, calc(100% - 40px)); margin-inline: auto; }
.ds-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  background: rgba(251,250,247,.96);
  backdrop-filter: blur(12px);
}
.ds-topbar-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.ds-brand { display: flex; align-items: center; gap: 16px; color: var(--brown); text-decoration: none; }
.ds-brand img { width: 150px; }
.ds-brand span { padding-left: 16px; border-left: 1px solid var(--border); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.ds-nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ds-nav a { color: var(--brown); text-decoration: none; }
.ds-nav a:hover { color: var(--sage-deep); }
.ds-hero {
  padding: clamp(70px, 9vw, 124px) 0;
  background:
    radial-gradient(95% 72% at 14% 10%, rgba(199,169,138,.15), transparent 58%),
    radial-gradient(80% 80% at 86% 92%, rgba(117,128,106,.14), transparent 58%),
    var(--brown-dark);
  color: var(--paper);
}
.ds-kicker { margin: 0 0 12px; color: var(--wood); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.ds-hero h1 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 7vw, 88px); font-weight: 600; line-height: .94; }
.ds-hero p { max-width: 760px; margin: 26px 0 0; color: var(--linen); font-family: var(--serif); font-size: clamp(21px, 2.2vw, 29px); font-style: italic; }
.ds-status { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.ds-chip, .ds-code { display: inline-flex; align-items: center; border: 1px solid rgba(199,169,138,.35); border-radius: 999px; padding: 6px 11px; font: 700 11px/1.3 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.ds-code { border-radius: 6px; background: rgba(91,60,46,.07); color: var(--brown); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0; text-transform: none; }
.ds-main { padding-bottom: 100px; }
.ds-section { padding: 82px 0; border-bottom: 1px solid var(--border); scroll-margin-top: 82px; }
.ds-section-head { display: grid; grid-template-columns: minmax(260px, 4fr) minmax(300px, 8fr); gap: var(--grid-gutter); margin-bottom: 38px; }
.ds-section h2 { margin: 0; color: var(--brown); font-family: var(--serif); font-size: clamp(40px, 5vw, 62px); line-height: 1; }
.ds-section-head > p { max-width: 680px; margin: 4px 0 0; color: rgba(58,38,29,.72); }
.ds-subtitle { margin: 48px 0 20px; color: var(--brown); font-family: var(--serif); font-size: 30px; }
.ds-token-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.ds-token { overflow: hidden; border: 1px solid var(--border); border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.ds-swatch { height: 112px; background: var(--token); }
.ds-token--brown { --token: #5B3C2E; }
.ds-token--brown-dark { --token: #3A261D; }
.ds-token--paper { --token: #F5F0E8; }
.ds-token--porcelain { --token: #FBFAF7; }
.ds-token--linen { --token: #E7DDD2; }
.ds-token--wood { --token: #C7A98A; }
.ds-token--bronze { --token: #A1733D; }
.ds-token--sage { --token: #75806A; }
.ds-token--sage-deep { --token: #56684D; }
.ds-token--border { --token: #D7CCBF; }
.ds-token-body { padding: 16px; }
.ds-token h3 { margin: 0; color: var(--brown); font-family: var(--serif); font-size: 23px; }
.ds-token p { margin: 5px 0 0; color: rgba(58,38,29,.68); font-size: 13px; }
.ds-type-grid, .ds-component-grid, .ds-background-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.ds-panel { border: 1px solid var(--border); border-radius: 12px; padding: clamp(24px, 4vw, 38px); background: #fff; box-shadow: var(--shadow); }
.ds-panel h3 { margin: 0 0 12px; color: var(--brown); font-family: var(--serif); font-size: 28px; }
.ds-panel p { margin: 0; }
.ds-serif-demo { margin: 18px 0 8px; color: var(--brown); font-family: var(--serif); font-size: clamp(38px, 5vw, 58px); line-height: .98; }
.ds-sans-demo { margin-top: 18px; font-size: 18px; }
.ds-grid-demo { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: var(--grid-gutter); }
.ds-grid-demo span { min-height: 92px; display: grid; place-items: center; border-radius: 6px; background: rgba(117,128,106,.14); color: var(--sage-deep); font-size: 12px; font-weight: 700; }
.ds-span-demo { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: var(--grid-gutter); margin-top: 24px; }
.ds-span-demo div { padding: 18px; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.ds-span-demo .span-4 { grid-column: span 4; }
.ds-span-demo .span-8 { grid-column: span 8; }
.ds-table { width: 100%; border-collapse: collapse; overflow: hidden; border: 1px solid var(--border); background: #fff; }
.ds-table th, .ds-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.ds-table th { color: var(--brown); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.ds-flow { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; }
.ds-flow div { position: relative; padding: 18px; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.ds-flow strong { display: block; color: var(--bronze); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.ds-flow > div > span { display: block; margin-top: 6px; color: var(--brown); font-family: var(--serif); font-size: 21px; line-height: 1.1; }
.ds-component-demo { margin-top: 20px; }
.ds-card-demo { overflow: hidden; border: 1px solid rgba(141,122,135,.2); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.ds-card-demo img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ds-card-demo div { padding: 20px 22px; }
.ds-card-demo h4 { margin: 0; color: var(--brown); font-family: var(--serif); font-size: 28px; }
.ds-card-demo p { margin: 7px 0 0; }
.ds-background-card { overflow: hidden; border: 1px solid var(--border); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.ds-background-preview { min-height: 220px; display: flex; align-items: flex-end; padding: 22px; }
.ds-background-preview--paper { background-color: var(--paper); background-image: var(--grain); background-size: 140px 140px; }
.ds-background-preview--linen { background-color: var(--linen); background-image: var(--grain); background-size: 140px 140px; }
.ds-background-preview--floral { background-color: var(--linen); background-image: linear-gradient(rgba(231,221,210,.76),rgba(231,221,210,.76)),var(--floral-texture),var(--grain); background-size: auto,560px 560px,140px 140px; }
.ds-background-preview--store { background-color: var(--paper); background-image: linear-gradient(135deg,rgba(231,221,210,.58),rgba(245,240,232,.68) 46%,rgba(141,122,135,.055)),linear-gradient(90deg,rgba(117,128,106,.045),transparent 42%,rgba(161,115,61,.055)); }
.ds-background-preview--porcelain { background: var(--porcelain); }
.ds-background-preview--dark { background: radial-gradient(95% 72% at 14% 10%,rgba(199,169,138,.14),transparent 58%),radial-gradient(80% 80% at 86% 92%,rgba(117,128,106,.12),transparent 58%),var(--brown-dark); color: var(--paper); }
.ds-background-preview--hero { background: linear-gradient(92deg,rgba(43,27,20,.88),rgba(43,27,20,.22)),url("../photos/accessoires.jpg") center/cover; color: #fff; }
.ds-background-meta { padding: 20px 22px 24px; }
.ds-background-meta h3 { margin: 0; color: var(--brown); font-family: var(--serif); font-size: 27px; }
.ds-background-meta p { margin: 9px 0 0; }
.ds-note { margin-top: 24px; padding: 18px 20px; border-left: 3px solid var(--sage); background: rgba(117,128,106,.08); }
.ds-footer { padding: 34px 0; background: var(--brown-dark); color: rgba(255,255,255,.72); font-size: 13px; }
@media (max-width: 1023px) {
  .ds-topbar-inner { align-items: flex-start; flex-direction: column; padding-block: 16px; }
  .ds-token-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ds-flow { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .ds-shell { width: calc(100% - 24px); }
  .ds-nav { gap: 11px; }
  .ds-section-head, .ds-type-grid, .ds-component-grid, .ds-background-grid { grid-template-columns: 1fr; }
  .ds-token-grid { grid-template-columns: 1fr; }
  .ds-grid-demo { gap: 5px; }
  .ds-grid-demo span { min-height: 62px; font-size: 10px; }
  .ds-span-demo .span-4, .ds-span-demo .span-8 { grid-column: 1 / -1; }
  .ds-table { display: block; overflow-x: auto; }
  .ds-flow { grid-template-columns: 1fr; }
}

/* Correction structurante de la section Magasin sous 1024 px.
   Placée après les règles mobiles afin que .grid-12 ne rétablisse pas
   accidentellement douze colonnes visibles sur ces deux blocs. */
@media (max-width: 1023px) {
  #magasin .section-head.grid-12,
  #magasin .intro-grid.grid-12 {
    grid-template-columns: minmax(0, 1fr);
  }

  #magasin .section-head.grid-12 > *,
  #magasin .intro-grid.grid-12 > * {
    grid-column: 1;
    min-width: 0;
  }

  #magasin .section-head {
    align-items: start;
    gap: 28px;
  }

  #magasin .intro-grid {
    gap: 28px;
  }

  #magasin .intro-grid .quote {
    width: 100%;
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }
}

@media (max-width: 767px) {
  #magasin .intro-grid .quote {
    padding: 28px;
  }

  #magasin .quote p {
    font-size: clamp(27px, 8vw, 36px);
  }

  #ambiances .gift-card.grid-12 {
    grid-template-columns: minmax(0, 1fr);
  }

  #ambiances .gift-card.grid-12 > div,
  #ambiances .gift-card.grid-12 > .btn {
    grid-column: 1;
    min-width: 0;
  }

  #ambiances .gift-card .btn {
    justify-self: stretch;
    width: 100%;
    margin-top: 6px;
  }
}
