:root {
  --bg: #f7efe8;
  --paper: #fff9f4;
  --ink: #3f2a26;
  --muted: #8f6f67;
  --hibiscus: #b63838;
  --coral: #d96c5f;
  --terracotta: #8e4e3d;
  --wood: #6e4632;
  --gold: #c79b55;
  --leaf: #4f6b4b;
  --line: rgba(110,70,50,.18);
  --shadow: 0 18px 60px rgba(72,36,24,.10);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(217,108,95,.09), transparent 28rem),
    linear-gradient(180deg, #fbf5ef 0%, var(--bg) 100%);
  line-height: 1.65;
}

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

a { color: inherit; }

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

.hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
  color: white;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(47,22,18,.08), rgba(47,22,18,.68)),
    url("../images/banniere-hibiscus.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: -1;
}

.hero-inner { padding: 90px 0 110px; }

.eyebrow,
.section-kicker,
.product small,
nav a {
  font-family: Arial, sans-serif;
}

.eyebrow {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  opacity: .88;
}

h1, h2, h3 { line-height: 1.05; margin: 0; }

h1 {
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -.045em;
}

.tagline {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  max-width: 680px;
  margin: 18px 0 0;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247,239,232,.82);
  border-bottom: 1px solid var(--line);
}

nav .wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 0;
}

nav a {
  text-decoration: none;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 8px 13px;
  border-radius: 999px;
}

nav a:hover {
  background: rgba(182,56,56,.09);
  color: var(--hibiscus);
}

section { padding: 88px 0; }

.section-kicker {
  color: var(--hibiscus);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

.lead {
  font-size: 1.15rem;
  color: #5f4741;
  max-width: 760px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  margin-top: 40px;
}

.shot {
  background: var(--paper);
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.shot img { border-radius: 18px; }

.address {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--hibiscus);
  background: rgba(255,255,255,.55);
  border-radius: 0 16px 16px 0;
}

.policy {
  background: linear-gradient(135deg, rgba(142,78,61,.96), rgba(95,52,42,.98));
  color: #fff6f0;
}

.policy .lead { color: #f4dcd3; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  padding: 26px;
  min-height: 230px;
}

.card h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.card p {
  margin: 0;
  color: #f4ded6;
}

.products .group { margin-top: 52px; }

.group-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.group h3 {
  font-size: 2rem;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

.product::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  right: -30px;
  top: -30px;
  background: rgba(217,108,95,.11);
}

.product h4 {
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.product small { color: var(--muted); }

.hrp {
  background: #302725;
  color: #eaded8;
}

.hrp h2 { color: #fff; }
.hrp .lead { color: #cdbdb6; }

footer {
  padding: 34px 0;
  text-align: center;
  color: #8c736b;
  font-size: .88rem;
}

@media (max-width: 900px) {
  .intro-grid, .cards { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 58vh; }
}

@media (max-width: 560px) {
  .wrap { width: min(calc(100% - 26px), var(--max)); }
  section { padding: 68px 0; }
  .hero-inner { padding: 70px 0 95px; }
  h1 { font-size: clamp(3.5rem, 20vw, 6rem); }
  .product-grid { grid-template-columns: 1fr; }
  .group-head { display: block; }
}



/* --- Sélecteur de parfums signatures --- */
.fragrance-display {
  margin-top: 28px;
  position: relative;
}

.fragrance-card {
  display: none;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  background:
    radial-gradient(circle at 16% 20%, rgba(182,56,56,.10), transparent 19rem),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease;
}

.fragrance-card.is-active {
  display: grid;
}

.fragrance-card.is-entering {
  opacity: 0;
  transform: translateY(8px);
}

.fragrance-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}

.fragrance-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,108,95,.16), rgba(217,108,95,0) 70%);
}

.fragrance-visual img {
  width: min(100%, 390px);
  max-height: 520px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 22px 24px rgba(69,34,36,.13));
}

.fragrance-copy {
  max-width: 690px;
}

.fragrance-overline {
  margin-bottom: 10px;
  color: var(--hibiscus);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
}

.fragrance-copy h4 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.035em;
}

.fragrance-profile {
  margin: 14px 0 28px;
  color: var(--terracotta);
  font-style: italic;
  font-size: 1.05rem;
}

.fragrance-notes {
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.note-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.note-row span {
  color: var(--hibiscus);
  font-weight: 700;
}

.note-row p {
  margin: 0;
}

.fragrance-description {
  margin: 0;
  color: #5f4741;
  font-size: 1.02rem;
}

.fragrance-selector {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fragrance-thumb {
  appearance: none;
  width: 100%;
  min-height: 205px;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  text-align: left;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.fragrance-thumb::after {
  content: "";
  position: absolute;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  right: -34px;
  top: -38px;
  background: rgba(217,108,95,.10);
  pointer-events: none;
}

.fragrance-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(182,56,56,.35);
  box-shadow: 0 14px 32px rgba(72,36,24,.08);
}

.fragrance-thumb.is-active {
  border-color: rgba(182,56,56,.55);
  background: #fff6f1;
  box-shadow: inset 0 0 0 1px rgba(182,56,56,.12), 0 14px 34px rgba(72,36,24,.08);
}

.fragrance-thumb img {
  width: 90px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 13px rgba(69,34,36,.10));
  position: relative;
  z-index: 1;
}

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

.thumb-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.18;
}

.thumb-copy small {
  display: block;
  color: var(--terracotta);
  line-height: 1.45;
}

/* Desktop prioritaire : simple filet de sécurité si la fenêtre est rétrécie. */
@media (max-width: 950px) {
  .fragrance-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* --- Sels & infusions de bain interactifs --- */
.bath-subgroup {
  margin-top: 46px;
}

.bath-subgroup + .bath-subgroup {
  margin-top: 70px;
}

.bath-subhead {
  margin-bottom: 18px;
}

.bath-subhead h4 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 500;
}

.bath-subhead p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.bath-display {
  position: relative;
}

.bath-card {
  display: none;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  background:
    radial-gradient(circle at 16% 20%, rgba(199,155,85,.10), transparent 20rem),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease;
}

.bath-card.is-active {
  display: grid;
}

.bath-card.is-entering {
  opacity: 0;
  transform: translateY(8px);
}

.bath-visual {
  min-height: 500px;
  display: grid;
  place-items: center;
  position: relative;
}

.bath-visual::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,155,85,.13), rgba(199,155,85,0) 70%);
}

.bath-visual img {
  width: min(100%, 460px);
  max-height: 500px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 22px 24px rgba(69,34,36,.12));
}

.bath-copy {
  max-width: 720px;
}

.bath-overline {
  margin-bottom: 10px;
  color: var(--hibiscus);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
}

.bath-copy h4 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.03em;
}

.bath-profile {
  margin: 14px 0 28px;
  color: var(--terracotta);
  font-style: italic;
  font-size: 1.05rem;
}

.bath-notes {
  margin: 0 0 26px;
  border-top: 1px solid var(--line);
}

.bath-note-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.bath-note-row span {
  color: var(--hibiscus);
  font-weight: 700;
}

.bath-note-row p {
  margin: 0;
}

.bath-description {
  margin: 0 0 12px;
  color: #5f4741;
  font-size: 1.01rem;
}

.bath-description:last-child {
  margin-bottom: 0;
}

.bath-selector {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.bath-selector--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bath-thumb {
  appearance: none;
  width: 100%;
  min-height: 210px;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  text-align: left;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.bath-thumb::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  right: -38px;
  top: -42px;
  background: rgba(199,155,85,.10);
  pointer-events: none;
}

.bath-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(182,56,56,.35);
  box-shadow: 0 14px 32px rgba(72,36,24,.08);
}

.bath-thumb.is-active {
  border-color: rgba(182,56,56,.55);
  background: #fff6f1;
  box-shadow: inset 0 0 0 1px rgba(182,56,56,.12), 0 14px 34px rgba(72,36,24,.08);
}

.bath-thumb img {
  width: 100px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 13px rgba(69,34,36,.10));
  position: relative;
  z-index: 1;
}

.bath-thumb .thumb-copy {
  position: relative;
  z-index: 1;
}

.bath-thumb .thumb-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.bath-thumb .thumb-copy small {
  display: block;
  color: var(--terracotta);
  line-height: 1.45;
}


.bath-display--unified {
  margin-top: 28px;
}




/* --- Politique de l'atelier : version interactive --- */
.policy {
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.07), transparent 24rem),
    linear-gradient(135deg, #984d43 0%, #7b3f38 48%, #62332f 100%);
  color: #fff6f1;
}

.policy h2 {
  color: #fffaf6;
}

.policy-kicker {
  color: #ffd4c9;
}

.policy-lead {
  color: #f2d7cf;
}

.policy-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.policy-choice {
  appearance: none;
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.08);
  color: #fff8f4;
  text-align: left;
  padding: 24px 24px 22px;
  border-radius: 20px;
  cursor: pointer;
  min-height: 175px;
  position: relative;
  overflow: hidden;
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.policy-choice::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  right: -42px;
  top: -48px;
  background: rgba(255,220,210,.08);
  pointer-events: none;
}

.policy-choice:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.28);
}

.policy-choice.is-active {
  background: #fff7f2;
  color: var(--ink);
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 18px 38px rgba(52,22,18,.18);
}

.policy-choice-number {
  display: block;
  margin-bottom: 22px;
  font-family: Arial, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: #ffd2c7;
}

.policy-choice.is-active .policy-choice-number {
  color: var(--hibiscus);
}

.policy-choice strong {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 10px;
}

.policy-choice small {
  display: block;
  position: relative;
  z-index: 1;
  color: #f0d5ce;
  line-height: 1.45;
  font-family: Arial, sans-serif;
}

.policy-choice.is-active small {
  color: var(--terracotta);
}

.policy-detail {
  margin-top: 22px;
  background: rgba(255,248,244,.98);
  color: var(--ink);
  border-radius: 24px;
  padding: 30px 34px 28px;
  box-shadow: 0 18px 48px rgba(52,22,18,.18);
  border: 1px solid rgba(255,255,255,.32);
  transition: opacity .24s ease, transform .24s ease;
}

.policy-detail.is-entering {
  opacity: 0;
  transform: translateY(8px);
}

.policy-panel {
  display: none;
}

.policy-panel.is-active {
  display: block;
}

.policy-panel h3 {
  margin: 0 0 18px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--hibiscus);
}

.policy-panel p {
  margin: 0 0 14px;
  color: #5f4741;
  line-height: 1.72;
}

.policy-panel p:last-child {
  margin-bottom: 0;
}

.policy-panel strong {
  color: var(--hibiscus);
}


/* --- HRP & crédits --- */
.hrp {
  background:
    radial-gradient(circle at 82% 8%, rgba(217,108,95,.08), transparent 22rem),
    #302725;
  color: #eaded8;
}

.hrp h2 {
  color: #fff;
}

.hrp-kicker {
  color: #d9a89c;
}

.hrp-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  margin-top: 34px;
}

.hrp-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 28px 30px;
}

.hrp-card h3 {
  margin: 0 0 18px;
  color: #fff7f2;
  font-size: 1.7rem;
  font-weight: 500;
}

.hrp-card p {
  margin: 0 0 14px;
  color: #d7c8c2;
  line-height: 1.72;
}

.hrp-card p:last-child {
  margin-bottom: 0;
}

.credits-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.credits-list li {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #d7c8c2;
}

.credits-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.credits-list strong {
  color: #fff4ee;
  font-weight: 600;
}

.credits-list a {
  color: #e88f7d;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(232,143,125,.35);
  transition: color .2s ease, border-color .2s ease;
}

.credits-list a:hover {
  color: #ffb19f;
  border-color: rgba(255,177,159,.75);
}

.hrp-note {
  font-size: .93rem;
  color: #bdaaa2 !important;
}


/* --- Menu déroulant Produits --- */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger span {
  display: inline-block;
  margin-left: 4px;
  font-size: .78em;
  transition: transform .18s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  min-width: 205px;
  transform: translateX(-50%) translateY(-5px);
  padding: 8px;
  background: rgba(83, 43, 38, .97);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  box-shadow: 0 16px 36px rgba(53, 24, 20, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger span,
.nav-dropdown:focus-within .nav-dropdown-trigger span {
  transform: rotate(180deg);
}

nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 13px;
  border-radius: 10px;
  color: #fff4ee;
  white-space: nowrap;
  font-size: .76rem;
  letter-spacing: .07em;
}

nav .nav-dropdown-menu a:hover,
nav .nav-dropdown-menu a:focus {
  background: rgba(255,255,255,.10);
  color: #ffc3b4;
}

/* Les ancres gardent leur titre visible sous la navigation fixe. */
#parfums,
#bain,
#savons,
#huiles {
  scroll-margin-top: 90px;
}
