:root { --font-geist-sans: "Geist"; --font-cormorant: "Cormorant Garamond"; }

:root {
  --ink: #17211c;
  --muted: #687069;
  --cream: #f5f0e6;
  --cream-deep: #ebe2d3;
  --ivory: #fffdf8;
  --green: #1f4737;
  --green-deep: #112d23;
  --green-soft: #536b55;
  --gold: #b58b3d;
  --gold-light: #d8bb7a;
  --rose: #9d4354;
  --line: rgba(23, 33, 28, 0.16);
  --line-light: rgba(255, 253, 248, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#collection,
#professionnels,
#particuliers,
#histoire,
#contact {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.shell {
  width: min(100% - 72px, 1440px);
  margin-inline: auto;
}

.hero {
  min-height: 100vh;
  background: var(--cream);
}

.site-header {
  position: relative;
  z-index: 20;
  height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 84px;
  height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta,
.text-link,
.inline-contact,
.footer-main a,
.footer-bottom a {
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover,
.header-cta:hover,
.text-link:hover,
.inline-contact:hover,
.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.header-cta {
  justify-self: end;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.menu-icon {
  width: 28px;
  display: grid;
  gap: 6px;
}

.menu-icon span {
  width: 100%;
  height: 1.5px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu[open] .menu-icon span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu[open] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .menu-icon span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero-grid {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(400px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(52px, 6vw, 104px);
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.eyebrow,
.kicker,
.section-label,
.product-topline,
.product-base,
.audience-type {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--green-soft);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 680px;
  margin: 30px 0 28px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(4.3rem, 6.4vw, 7.2rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.hero h1 em,
.maison h2 em,
.savoir-title h2 em,
.contact h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-intro {
  max-width: 590px;
  margin: 0;
  color: #4f5b54;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 270px;
  padding: 15px 18px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--ivory);
  background: var(--green);
}

.button-primary:hover,
.button-green:hover {
  background: var(--green-deep);
}

.text-link {
  padding-block: 10px 8px;
  border-bottom: 1px solid rgba(23, 33, 28, 0.38);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 12px;
}

.hero-signature {
  margin: 58px 0 0;
  color: var(--green);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
  overflow: hidden;
  border-radius: 18px;
}

.hero-visual::before {
  display: none;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 586px;
  object-fit: cover;
  object-position: 64% center;
  border-radius: inherit;
}

.marquee {
  border-bottom: 1px solid rgba(181, 139, 61, 0.42);
  background: var(--cream);
}

.marquee-track {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.45;
  text-align: center;
}

.section-label {
  display: flex;
  gap: 16px;
  align-items: baseline;
  color: var(--green-soft);
}

.section-label span {
  color: var(--gold);
}

.section-label p {
  margin: 0;
}

.maison {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.58fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: start;
  padding-top: 150px;
  padding-bottom: 158px;
}

.maison-heading {
  margin-bottom: 42px;
}

.maison h2,
.collection-heading h2,
.savoir-title h2,
.audiences-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(3.9rem, 5.7vw, 6.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.maison-copy {
  padding-top: 104px;
}

.maison-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.maison-copy .lead {
  color: var(--ink);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.52;
}

.collection {
  padding: 136px 0 148px;
  border-bottom: 1px solid rgba(181, 139, 61, 0.24);
  background: var(--cream);
}

.collection-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.55fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: start;
  padding-top: 36px;
  padding-bottom: 74px;
}

.collection-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 1px;
  background: var(--gold);
}

.collection-heading .kicker {
  margin-bottom: 26px;
}

.collection-heading h2 {
  font-size: clamp(3.8rem, 5.1vw, 6rem);
}

.collection-note {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.52;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 34px);
}

.product-card,
.product-dialog-panel {
  --accent: var(--gold);
}

.product-card {
  min-width: 0;
}

.product-card-trigger {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.product-card-image {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: #eadfce;
  box-shadow: 0 18px 46px rgba(33, 42, 36, 0.08);
}

.product-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(23, 33, 28, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 650ms ease;
}

.product-card-trigger:hover .product-card-image img,
.product-card-trigger:focus-visible .product-card-image img {
  transform: scale(1.025);
  filter: saturate(1.03) contrast(1.01);
}

.product-card-trigger:focus-visible {
  outline: none;
}

.product-card-trigger:focus-visible .product-card-image {
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--gold);
}

.product-card-name {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.1;
}

.collection-scroll-hint {
  display: none;
}

html.product-dialog-open {
  overflow: hidden;
}

.product-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(20px, 3vw, 44px);
  border: 0;
  color: var(--ink);
  background: transparent;
  overflow: auto;
}

.product-dialog[open] {
  display: grid;
  place-items: center;
}

.product-dialog::backdrop {
  background: rgba(8, 25, 19, 0.72);
  backdrop-filter: blur(9px);
}

.product-dialog-panel {
  position: relative;
  width: min(1240px, 100%);
  height: min(780px, calc(100dvh - 64px));
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  background: var(--ivory);
  box-shadow: 0 36px 110px rgba(7, 19, 14, 0.34);
}

.product-venus {
  --accent: #a64659;
}

.product-assinie {
  --accent: #b69035;
}

.product-love {
  --accent: #a8192a;
}

.product-dialog-image {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #eadfce;
}

.product-dialog-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-dialog-image figcaption {
  position: absolute;
  inset: auto 20px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  color: var(--ivory);
  background: rgba(17, 45, 35, 0.86);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 33, 28, 0.18);
  border-radius: 50%;
  color: var(--green-deep);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 8px 28px rgba(17, 45, 35, 0.1);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-dialog-close:hover,
.product-dialog-close:focus-visible {
  color: var(--ivory);
  background: var(--green);
  transform: rotate(4deg);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 94px);
  overflow-y: auto;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 32px;
  margin-top: 24px;
}

.product-topline {
  margin: 0;
  color: var(--green-soft);
}

.product-base {
  margin: 0;
  color: var(--accent);
}

.product-base span {
  margin-inline: 6px;
}

.product-dialog h3 {
  margin: clamp(28px, 4vh, 52px) 0 0;
  color: var(--ink);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(3.7rem, 5vw, 6.1rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.product-story {
  margin-top: 34px;
}

.product-story p {
  margin: 0 0 16px;
  color: #4f5852;
  font-size: 0.96rem;
  line-height: 1.78;
}

.product-story .product-quote {
  color: var(--accent);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.16rem;
  font-style: italic;
  line-height: 1.55;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-details dt,
.product-facts span {
  margin-bottom: 9px;
  color: var(--green-soft);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-details dd {
  color: #5c665f;
  font-size: 0.83rem;
  line-height: 1.68;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-facts div {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-facts span {
  display: block;
  margin: 0 0 12px;
  font-size: 0.68rem;
}

.product-facts strong {
  color: var(--ink);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
}

.alcohol-notice {
  margin-top: 34px;
  color: #6e746f;
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: right;
}

.savoir-faire {
  padding: 144px 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 187, 122, 0.11), transparent 34%),
    var(--green-deep);
}

.savoir-grid {
  display: grid;
  grid-template-columns: 0.36fr 1.64fr;
  gap: 42px 78px;
}

.light-label {
  color: rgba(255, 253, 248, 0.62);
}

.savoir-title .kicker {
  margin-bottom: 26px;
  color: var(--gold-light);
}

.savoir-title h2 {
  color: var(--ivory);
}

.ingredient-grid,
.craft-note {
  grid-column: 2;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.ingredient-grid article {
  min-height: 240px;
  padding: 24px 28px 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.ingredient-grid article > span {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.ingredient-grid h3 {
  margin: 58px 0 12px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.ingredient-grid p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 253, 248, 0.63);
  font-size: 0.9rem;
  line-height: 1.7;
}

.craft-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 28px;
}

.craft-note > p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.5;
}

.craft-note > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.craft-note span {
  padding: 11px 14px;
  border: 1px solid rgba(216, 187, 122, 0.5);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pause-section {
  padding: 150px 0;
  background: var(--ivory);
}

.pause-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.pause-grid figure {
  position: relative;
  padding: 18px 18px 0 0;
}

.pause-grid figure::before {
  content: "";
  position: absolute;
  inset: 0 0 18px 18px;
  z-index: 0;
  border: 1px solid rgba(181, 139, 61, 0.45);
}

.pause-grid img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.98);
}

.pause-copy .kicker {
  margin-bottom: 30px;
}

.pause-copy blockquote {
  color: var(--green);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(2.8rem, 4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.pause-copy > p:last-child {
  max-width: 500px;
  margin: 34px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.audiences {
  padding: 136px 0 150px;
  background: var(--cream);
}

.audiences-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.audiences-heading h2 {
  font-size: clamp(3.7rem, 5vw, 5.9rem);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.audience-card {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: clamp(42px, 5vw, 76px);
}

.professional-card {
  color: var(--ivory);
  background: var(--green);
}

.consumer-card {
  color: var(--ink);
  background: var(--ivory);
}

.audience-type {
  margin: 0 0 86px;
  color: var(--gold-light);
}

.consumer-card .audience-type {
  color: var(--gold);
}

.audience-card h3 {
  max-width: 600px;
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(3rem, 4.2vw, 5rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.audience-intro {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.93rem;
  line-height: 1.76;
}

.consumer-card .audience-intro {
  color: var(--muted);
}

.audience-card ul {
  padding: 0;
  margin: 38px 0 44px;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
  list-style: none;
}

.consumer-card ul {
  border-color: var(--line);
}

.audience-card li {
  position: relative;
  padding: 15px 0 15px 25px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.84rem;
  line-height: 1.5;
}

.audience-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 22px;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  transform: rotate(45deg);
}

.consumer-card li {
  border-color: var(--line);
  color: #59635d;
}

.consumer-card li::before {
  background: var(--gold);
}

.audience-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: auto;
}

.button-cream {
  color: var(--green-deep);
  background: var(--cream);
}

.button-cream:hover {
  background: var(--ivory);
}

.button-green {
  color: var(--ivory);
  background: var(--green);
}

.inline-contact {
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.professional-card .inline-contact {
  color: var(--gold-light);
}

/* Reprise des contenus de la première maquette */
.professional-reprise {
  position: relative;
  overflow: hidden;
  padding: 136px 0 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 187, 122, 0.12), transparent 32%),
    var(--green);
}

.professional-topline {
  position: relative;
  padding-bottom: 44px;
}

.professional-topline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: var(--gold-light);
}

.audience-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.audience-subtitle {
  margin: 0;
  color: var(--green);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
}

.audience-heading-light .audience-subtitle {
  color: var(--gold-light);
}

.professional-reprise .light-label {
  color: rgba(255, 253, 248, 0.62);
}

.professional-reprise .light-label span,
.professional-reprise .kicker {
  color: var(--gold-light);
}

.professional-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.55fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  padding: 64px 0 76px;
}

.professional-intro-grid h2,
.consumer-copy h2,
.ritual-heading h2,
.story-title h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(4rem, 5.7vw, 6.65rem);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.045em;
}

.professional-intro-grid h2 em,
.consumer-copy h2 em,
.ritual-heading h2 em,
.story-title h2 em,
.faq-heading h2 em {
  color: var(--gold);
  font-weight: 400;
}

.professional-intro-grid > p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.5;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 48px);
}

.benefit-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 28px;
  text-align: center;
}

.benefit-symbol {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.benefit-grid h3 {
  margin: 18px 0 12px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.benefit-grid p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.84rem;
  line-height: 1.65;
}

.professional-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 46px 0 58px;
}

.professional-phone {
  padding-block: 9px 7px;
  border-bottom: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.use-cases {
  display: flex;
  gap: 24px;
  padding: 18px 0 40px;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  scroll-snap-type: x proximity;
  text-transform: uppercase;
}

.use-cases article {
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  scroll-snap-align: start;
  text-align: center;
}

.use-cases img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.use-cases span {
  line-height: 1.55;
  white-space: nowrap;
}

.use-cases-hint {
  display: none;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.use-cases-hint span {
  margin-inline: 6px;
}

.consumer-reprise {
  padding: 150px 0;
  background: var(--cream);
}

.consumer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.consumer-copy .audience-heading {
  margin-bottom: 48px;
}

.consumer-copy .section-label {
  margin-bottom: 0;
}

.consumer-intro {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.52;
}

.consumer-list {
  max-width: 590px;
  padding: 0;
  margin: 42px 0;
  list-style: none;
}

.consumer-list li {
  min-height: 64px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  color: #535f58;
  font-size: 0.84rem;
  line-height: 1.5;
}

.consumer-list span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.consumer-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.consumer-actions > a:not(.button) {
  padding-block: 8px 6px;
  border-bottom: 1px solid rgba(23, 33, 28, 0.4);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
}

.consumer-image {
  position: relative;
  margin: 0;
}

.consumer-image::before {
  display: none;
}

.consumer-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  filter: saturate(0.82) contrast(0.98);
}

.consumer-stamp {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 187, 122, 0.48);
  border-radius: 50%;
  color: var(--ivory);
  background: var(--green);
  text-align: center;
}

.consumer-stamp strong {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.consumer-stamp span {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ritual-reprise {
  padding: 138px 0;
  background: var(--cream);
}

.ritual-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  align-items: start;
  margin-bottom: 70px;
}

.ritual-heading h2 {
  color: var(--green);
  font-size: clamp(4.2rem, 6.2vw, 7.1rem);
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ritual-steps article {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ritual-steps article > span {
  color: var(--green-soft);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.ritual-symbol {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  margin: 46px auto;
  border: 1px solid rgba(31, 71, 55, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 2.8rem;
}

.ritual-illustration {
  width: min(100%, 220px);
  height: 210px;
  object-fit: contain;
  margin: 0 auto 28px;
  filter: saturate(0.76) contrast(0.96);
}

.ritual-steps h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.ritual-steps p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.68;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  padding-top: 150px;
  padding-bottom: 150px;
  background: var(--cream);
}

.story-gallery {
  position: relative;
  width: min(100%, 610px);
  height: clamp(390px, 36vw, 520px);
  margin-top: 64px;
}

.story-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream-deep);
  box-shadow: 0 22px 58px rgba(28, 38, 32, 0.12);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 450ms ease;
}

.story-photo:hover img {
  transform: scale(1.025);
  filter: saturate(0.9) contrast(1.03);
}

.story-photo-primary {
  top: 0;
  left: 0;
  width: 58%;
  height: 80%;
  transform: rotate(-1deg);
}

.story-photo-primary img {
  object-position: 52% center;
}

.story-photo-secondary {
  right: 1%;
  bottom: 0;
  z-index: 2;
  width: 52%;
  height: 70%;
  border: 8px solid var(--cream);
  transform: rotate(2deg);
}

.story-photo-secondary img {
  object-position: 56% center;
}

.story-title .section-label,
.faq-heading .section-label {
  margin-bottom: 72px;
}

.story-monogram {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  border: 1px solid rgba(181, 139, 61, 0.42);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.8rem);
}

.story-monogram span:first-child {
  transform: translateX(5px);
}

.story-monogram span:last-child {
  transform: translateX(-5px);
}

.story-monogram i {
  color: var(--gold);
  font-size: 0.7em;
  font-style: normal;
}

.story-copy {
  padding-top: 98px;
}

.story-copy > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}

.story-copy .story-lead {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.46rem;
  line-height: 1.45;
}

.signature {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.signature strong {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.signature span {
  color: var(--green-soft);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 170px);
  padding-top: 126px;
  padding-bottom: 150px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.faq-list {
  padding-top: 34px;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  color: var(--green);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.38rem;
}

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

.faq-list summary span {
  color: var(--gold);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 650px;
  margin: -10px 60px 30px 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.72;
}

.contact {
  padding: 132px 0;
  background: #d8bd82;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
  column-gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.final-cta-inner > .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.final-cta-inner > h2,
.final-cta-inner > .final-actions {
  grid-column: 2;
}

.final-cta-inner > h2 {
  grid-row: 1;
}

.final-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(216, 187, 122, 0.72);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(17, 45, 35, 0.94);
  box-shadow: 0 12px 34px rgba(17, 45, 35, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease,
    visibility 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.back-to-top:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.back-to-top span:first-child {
  color: var(--gold-light);
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.dark-eyebrow {
  color: rgba(17, 45, 35, 0.72);
}

.dark-eyebrow::before {
  background: var(--green);
}

.contact h2 {
  margin-top: 30px;
  color: var(--green-deep);
}

.contact h2 em {
  color: var(--ivory);
}

.contact-options {
  border-top: 1px solid rgba(17, 45, 35, 0.32);
}

.contact-options a {
  position: relative;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 54px 24px 0;
  border-bottom: 1px solid rgba(17, 45, 35, 0.32);
  transition: padding-left 180ms ease;
}

.contact-options a:hover {
  padding-left: 10px;
}

.contact-options span {
  margin-bottom: 12px;
  color: rgba(17, 45, 35, 0.68);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-options strong {
  color: var(--green-deep);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  font-weight: 500;
}

.contact-options i {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 1.4rem;
  font-style: normal;
  transform: translateY(-50%);
}

.site-footer {
  padding: 82px 0 26px;
  color: var(--ivory);
  background: var(--green-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.56fr 0.9fr 0.9fr 0.54fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
  padding-bottom: 66px;
}

.footer-brand img {
  width: 112px;
  height: 64px;
  filter: invert(1);
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 253, 248, 0.63);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.5;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.76rem;
  line-height: 1.5;
}

.footer-contact > span {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-contact p {
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.48);
}

.footer-main nav {
  display: grid;
  gap: 14px;
  justify-self: end;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.72rem;
  line-height: 1.5;
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
  text-align: right;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
    font-size: 0.7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(360px, 0.8fr) minmax(480px, 1.2fr);
    gap: 48px;
  }

  .product-dialog-panel {
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  }

  .product-copy {
    padding: 52px;
  }

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

  .product-facts div {
    min-height: 76px;
  }

  .audience-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .benefit-grid article {
    min-height: 210px;
  }

  .use-cases {
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .use-cases::-webkit-scrollbar {
    display: none;
  }

  .use-cases article {
    flex: 0 0 190px;
  }

  .use-cases-hint {
    display: block;
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 48px, 900px);
  }

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 8px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: calc(100% + 18px);
    min-width: 270px;
    display: grid;
    padding: 14px 22px;
    border: 1px solid rgba(181, 139, 61, 0.4);
    background: var(--ivory);
    box-shadow: 0 18px 54px rgba(17, 45, 35, 0.12);
  }

  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 66px;
    padding-top: 88px;
    padding-bottom: 84px;
  }

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

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .marquee-track {
    flex-wrap: wrap;
    justify-content: center;
    padding: 22px 0;
  }

  .maison,
  .collection-heading {
    grid-template-columns: 1fr;
  }

  .maison-copy,
  .collection-note {
    grid-column: 1;
  }

  .maison-copy {
    padding-top: 0;
  }

  .product-dialog-panel {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  }

  .product-copy {
    padding: 44px;
  }

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

  .savoir-grid {
    grid-template-columns: 0.4fr 1.6fr;
    gap: 40px;
  }

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

  .pause-copy {
    max-width: 700px;
  }

  .audiences-heading {
    grid-template-columns: 0.4fr 1.6fr;
  }

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

  .audience-card {
    min-height: 620px;
  }

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

  .professional-intro-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .professional-intro-grid > p {
    max-width: 680px;
  }

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

  .consumer-copy {
    max-width: 760px;
  }

  .story {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .story-monogram {
    display: none;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .final-cta-inner > .eyebrow,
  .final-cta-inner > h2,
  .final-cta-inner > .final-actions {
    grid-column: 1;
    grid-row: auto;
  }

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

  .footer-main nav {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .hero h1,
  .maison h2,
  .collection-heading h2,
  .savoir-title h2,
  .audiences-heading h2,
  .contact h2,
  .professional-intro-grid h2,
  .consumer-copy h2,
  .ritual-heading h2,
  .story-title h2,
  .faq-heading h2 {
    font-size: clamp(3.25rem, 12vw, 5.2rem);
  }

  .maison,
  .collection-heading,
  .savoir-grid,
  .audiences-heading {
    grid-template-columns: 1fr;
  }

  .maison-copy,
  .collection-note,
  .ingredient-grid,
  .craft-note {
    grid-column: 1;
  }

  .maison,
  .pause-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .collection,
  .savoir-faire,
  .audiences,
  .contact,
  .consumer-reprise,
  .ritual-reprise {
    padding-top: 108px;
    padding-bottom: 108px;
  }

  .professional-reprise {
    padding-top: 102px;
  }

  .professional-topline {
    padding-bottom: 40px;
  }

  .professional-intro-grid {
    padding: 56px 0 62px;
  }

  .professional-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .consumer-grid {
    gap: 72px;
  }

  .story-title .section-label,
  .faq-heading .section-label {
    margin-bottom: 56px;
  }

  .consumer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ritual-heading {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ritual-steps {
    grid-template-columns: 1fr;
  }

  .ritual-steps article {
    min-height: 320px;
  }

  .ritual-illustration {
    height: 190px;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 108px;
    padding-bottom: 108px;
  }

  .story-copy {
    padding-top: 10px;
  }

  .story-gallery {
    width: min(100%, 560px);
    height: clamp(360px, 82vw, 500px);
    margin-top: 48px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 104px;
    padding-bottom: 108px;
  }

  .faq-list {
    padding-top: 0;
  }

  .faq-list summary {
    min-height: 84px;
    font-size: 1.18rem;
  }

  .product-dialog-panel {
    width: min(680px, 100%);
    height: auto;
    max-height: calc(100dvh - 32px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .product-dialog-image {
    aspect-ratio: 4 / 5;
  }

  .product-dialog-image img {
    min-height: 0;
  }

  .product-copy {
    padding: 46px 34px 40px;
    overflow: visible;
  }

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

  .ingredient-grid article {
    min-height: 210px;
  }

  .craft-note {
    grid-template-columns: 1fr;
  }

  .pause-grid {
    gap: 76px;
  }

  .audiences-heading {
    gap: 34px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main nav {
    justify-self: start;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

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

  .footer-bottom p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 76px;
  }

  .brand img {
    width: 70px;
    height: 42px;
  }

  .hero-grid {
    min-height: calc(100vh - 76px);
    gap: 50px;
    padding-top: 68px;
    padding-bottom: 64px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .hero-intro {
    font-size: 1.25rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-signature {
    margin-top: 44px;
  }

  .hero-visual {
    padding: 0;
    border-radius: 14px;
  }

  .hero-visual img {
    aspect-ratio: 1 / 1;
    object-position: 64% center;
  }

  .marquee-track {
    align-items: center;
    padding: 24px 0;
    text-align: center;
  }

  .maison,
  .collection-heading,
  .savoir-grid {
    gap: 36px;
  }

  .product-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-list::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    min-width: min(76vw, 330px);
    scroll-snap-align: start;
  }

  .collection-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 26px 0 0;
    color: var(--green-soft);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .product-dialog {
    padding: 12px;
  }

  .product-dialog-image figcaption {
    inset: auto 12px 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .product-copy {
    padding: 40px 24px 28px;
  }

  .product-dialog h3 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .product-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
  }

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

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

  .benefit-grid article {
    min-height: 0;
    padding: 18px 12px 26px;
  }

  .benefit-grid h3 {
    margin-top: 26px;
  }

  .professional-phone {
    align-self: flex-start;
  }

  .consumer-image {
    padding: 0;
  }

  .consumer-stamp {
    left: 16px;
    bottom: 16px;
    width: 108px;
    height: 108px;
  }

  .ritual-symbol {
    margin: 34px auto;
  }

  .ritual-illustration {
    width: min(100%, 190px);
    height: 180px;
    margin-bottom: 24px;
  }

  .faq-list details > p {
    margin-right: 20px;
  }

  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-actions .text-link {
    align-self: flex-start;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 10px;
  }

  .story-gallery {
    height: clamp(320px, 105vw, 430px);
    margin-top: 40px;
  }

  .story-photo-primary {
    width: 62%;
  }

  .story-photo-secondary {
    width: 56%;
    border-width: 6px;
  }

  .back-to-top span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .alcohol-notice {
    text-align: left;
  }

  .ingredient-grid article {
    min-height: 190px;
    padding: 22px;
  }

  .ingredient-grid h3 {
    margin-top: 42px;
  }

  .pause-grid figure {
    padding: 10px 10px 0 0;
  }

  .pause-grid figure::before {
    inset: 0 0 10px 10px;
  }

  .pause-grid img {
    aspect-ratio: 4 / 5;
  }

  .audience-card {
    min-height: 0;
    padding: 42px 24px;
  }

  .audience-type {
    margin-bottom: 54px;
  }

  .audience-card h3 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .audience-actions {
    margin-top: 18px;
  }

  .contact-options a {
    min-height: 118px;
  }

  .contact-options strong {
    overflow-wrap: anywhere;
  }

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

  .footer-main > p {
    grid-column: 1;
    grid-row: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
