/* Cha Baan Yai · preorder landing · re-skin v1 2026-05-21
   Palette or-forward apothicaire : noir profond + or filigrané + crème + orange (chaleur secondaire) */

:root {
  /* Surfaces sombres */
  --noir:        #1A1A1A;
  --noir-soft:   #25211D;
  --noir-deep:   #0E0C0A;

  /* Or — pilier du premium */
  --or:          #D4A857;
  --or-soft:     #E5C079;
  --or-deep:     #A07D32;

  /* Chaleur secondaire — usage parcimonieux sur fond clair */
  --orange:      #C45A2C;
  --orange-deep: #9F3F18;
  --orange-soft: #E89668;

  /* Surfaces claires */
  --creme-warm:  #FAF5EC;
  --creme:       #F5EDE0;
  --creme-deep:  #ECDFC8;
  --blanc:       #FFFFFF;

  /* Texte */
  --texte:              #2B1F18;
  --texte-mute:         #6B5949;
  --texte-on-noir:      #F5EDE0;
  --texte-on-noir-mute: rgba(245, 237, 224, 0.65);

  /* Borders et hairlines or filigrané */
  --border:           rgba(43, 31, 24, 0.12);
  --border-strong:    rgba(43, 31, 24, 0.22);
  --border-gold:      rgba(212, 168, 87, 0.45);
  --border-gold-soft: rgba(212, 168, 87, 0.20);
  --hairline-light:   rgba(160, 125, 50, 0.50);
  --hairline-noir:    rgba(212, 168, 87, 0.55);

  --font-display: "Cormorant Garamond", "Noto Serif Thai", Georgia, serif;
  --font-body: "Inter", "Noto Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container-max: 1180px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(26, 26, 26, 0.06);
  --shadow: 0 12px 36px rgba(26, 26, 26, 0.10);
  --shadow-strong: 0 24px 60px rgba(26, 26, 26, 0.18);
  --shadow-noir: 0 24px 60px rgba(0, 0, 0, 0.45);
  --transition: 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--texte);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--orange-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--noir); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--noir);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 0.4em; }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.15rem; }

h1 em, h2 em { color: var(--orange); font-style: italic; }

p { margin-bottom: 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-deep);
  margin-bottom: 16px;
}

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

.origine-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--orange-deep);
  margin: 8px 0 16px;
}

.produit-allergen {
  font-size: 0.82rem;
  color: var(--texte-on-noir-mute);
  margin: -8px 0 8px;
  padding: 8px 12px;
  background: rgba(212, 168, 87, 0.06);
  border-left: 2px solid var(--or);
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--noir);
  color: var(--blanc);
  border-color: var(--noir);
}
.btn-primary:hover {
  background: var(--or-deep);
  border-color: var(--or-deep);
  color: var(--blanc);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--noir);
  border-color: var(--noir);
}
.btn-ghost:hover {
  background: var(--noir);
  color: var(--blanc);
}

.btn-block { width: 100%; }

/* Gold buttons — pour les fonds noirs (produits, waitlist) */
.btn-gold {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}
.btn-gold:hover {
  background: var(--or-soft);
  border-color: var(--or-soft);
  color: var(--noir);
  transform: translateY(-1px);
}
.btn-gold-ghost {
  background: transparent;
  color: var(--or);
  border-color: var(--or);
}
.btn-gold-ghost:hover {
  background: var(--or);
  color: var(--noir);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  background: rgba(245, 237, 224, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-light);
  z-index: 50;
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--noir);
  font-weight: 600;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--noir);
  color: var(--or);
  border-radius: 50%;
}
.brand-mark svg,
.brand-mark img {
  width: 22px;
  height: 22px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--noir);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-cta {
  background: var(--noir);
  color: var(--or) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-cta:hover { background: var(--or); color: var(--noir) !important; }

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
  gap: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--texte-mute);
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.lang-btn:hover { color: var(--noir); background: rgba(196, 90, 44, 0.05); }
.lang-btn.is-active {
  color: var(--orange-deep);
  background: rgba(196, 90, 44, 0.10);
}
html[data-lang="th"] .lang-btn { font-size: 0.85rem; }

/* Hero */
.hero {
  padding: 80px 24px 100px;
  background: linear-gradient(160deg, var(--creme) 0%, var(--creme-deep) 100%);
}
.hero-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 18px; }
.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--hairline-light);
  position: relative;
  margin: 0 0 24px;
}
.hero-rule::before, .hero-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--or-deep);
  transform: translateY(-50%);
}
.hero-rule::before { left: -8px; }
.hero-rule::after { right: -8px; }
.lede {
  font-size: 1.15rem;
  color: var(--texte-mute);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 460px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-light);
}
.hero-trust > div {
  display: flex;
  flex-direction: column;
}
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--or-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-trust span {
  font-size: 0.82rem;
  color: var(--texte-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong), 0 0 0 1px var(--border-gold);
  aspect-ratio: 8 / 5;
  object-fit: cover;
  width: 100%;
}

/* Origine */
.origine {
  padding: 100px 0;
  background: var(--blanc);
}
.origine-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-top: 32px;
}
.origine-text p {
  font-size: 1.05rem;
  color: var(--texte-mute);
}
.origine-text p:last-child {
  color: var(--noir);
  font-weight: 500;
}
.origine-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong), 0 0 0 1px var(--border-gold);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

/* .section-lede — global (utilisé aussi par Préparation), conservé */
.section-lede {
  font-size: 1.1rem;
  color: var(--texte-mute);
  margin-bottom: 48px;
  max-width: 620px;
}

/* Produits — bascule noir profond apothicaire */
.produits {
  padding: 100px 0;
  background: var(--noir);
  color: var(--texte-on-noir);
}
.produits .eyebrow { color: var(--or); }
.produits h2 { color: var(--blanc); }
.produits h2 em { color: var(--or); }
.produits .section-lede { color: var(--texte-on-noir-mute); }
.produits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.produit-card {
  background: var(--noir-soft);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.produit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}
.produit-image {
  position: relative;
  background: var(--blanc);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.produit-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
}
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--or);
  color: var(--noir);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.produit-body {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.produit-body h3 { color: var(--blanc); margin-bottom: 6px; }
.produit-tagline {
  color: var(--texte-on-noir-mute);
  font-size: 0.98rem;
  margin-bottom: 20px;
}
.produit-features {
  list-style: none;
  margin-bottom: 20px;
}
.produit-features li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--texte-on-noir);
  border-bottom: 1px solid var(--border-gold-soft);
}
.produit-features li:last-child { border-bottom: none; }
.produit-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--or);
  font-size: 0.85rem;
  top: 11px;
}
.produit-price {
  margin-top: auto;
  padding: 20px 0 24px;
  display: flex;
  flex-direction: column;
}
.price-main {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--or);
  line-height: 1;
}
.price-note {
  font-size: 0.82rem;
  color: var(--texte-on-noir-mute);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.produits-shipping {
  text-align: center;
  margin-top: 36px;
  color: var(--texte-on-noir-mute);
  font-size: 0.92rem;
}
.produits .btn-primary {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}
.produits .btn-primary:hover {
  background: var(--or-soft);
  border-color: var(--or-soft);
  color: var(--noir);
  transform: translateY(-1px);
  box-shadow: none;
}

/* Carte "bientôt" — produit à venir */
.produit-card.is-soon .produit-image { opacity: 0.5; }
.produit-card.is-soon:hover { transform: none; border-color: var(--border-gold-soft); }
.badge-soon {
  background: transparent;
  color: var(--or);
  border: 1px solid var(--or);
}
.produit-soon-note {
  margin-top: auto;
  padding: 20px 0 24px;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--texte-on-noir-mute);
}

/* Bloc B2B — ancienne section réservation repurposée */
.b2b-card { text-align: center; }
.b2b-card p {
  color: var(--texte-mute);
  margin: 0 auto 28px;
  max-width: 52ch;
}

/* Préparation */
.preparation {
  padding: 100px 0;
  background: var(--noir);
  color: var(--creme);
}
.preparation .eyebrow { color: var(--or); }
.preparation h2 { color: var(--blanc); }
.preparation h2 em { color: var(--or); }
.preparation .section-lede { color: rgba(245, 237, 224, 0.72); }

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.step:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-gold);
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(212, 168, 87, 0.08);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius-sm);
  color: var(--or);
  margin-bottom: 16px;
}
.step-icon svg {
  width: 56%;
  height: 56%;
}
.step-num {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  background: var(--or);
  color: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.step h4 {
  color: var(--blanc);
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.step p {
  font-size: 0.88rem;
  color: rgba(245, 237, 224, 0.72);
  margin: 0;
}

/* Réservation */
.reserver {
  padding: 100px 0;
  background: var(--creme-deep);
}
.reserver-card {
  background: var(--blanc);
  max-width: 720px;
  margin: 0 auto;
  padding: 56px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong), 0 0 0 1px var(--border-gold);
}
.reserver-card h2 { margin-bottom: 16px; }
.reserver-card > p {
  color: var(--texte-mute);
  margin-bottom: 32px;
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--blanc);
}
.faq-list {
  margin-top: 32px;
  max-width: 800px;
}
.faq details {
  border-bottom: 1px solid var(--hairline-light);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: none; }
.faq summary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--noir);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--or-deep);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--or-deep); }
.faq details p {
  padding-top: 14px;
  color: var(--texte-mute);
  font-size: 1rem;
}

/* Waitlist — bascule noir profond */
.waitlist {
  padding: 96px 0;
  background: var(--noir);
  color: var(--texte-on-noir);
  border-top: 1px solid var(--border-gold-soft);
}
.waitlist-card {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.waitlist h2 { color: var(--blanc); margin-bottom: 12px; }
.waitlist h2 em { color: var(--or); }
.waitlist-card > p {
  color: var(--texte-on-noir-mute);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: var(--noir);
  color: rgba(245, 237, 224, 0.78);
  padding: 56px 0 40px;
  border-top: 1px solid var(--border-gold-soft);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .brand-mark {
  background: var(--noir);
  border: 1px solid var(--border-gold);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand .brand-name {
  color: var(--blanc);
  font-size: 1.5rem;
}
.footer-brand p { margin: 0; }
.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-meta p { margin: 0; font-size: 0.92rem; }
.footer-meta a { color: var(--or); }
.footer-meta a:hover { color: var(--blanc); }
.footer-fineprint {
  margin-top: 20px !important;
  font-size: 0.8rem !important;
  color: rgba(245, 237, 224, 0.5) !important;
}

/* Ornement apothicaire — séparateur losange */
.div-diamond {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.div-diamond .ln { flex: 1; height: 1px; background: var(--hairline-light); }
.div-diamond .dot { width: 6px; height: 6px; background: var(--or-deep); transform: rotate(45deg); }
.is-on-noir .div-diamond .ln { background: var(--hairline-noir); }
.is-on-noir .div-diamond .dot { background: var(--or); }

/* Focus visible — accessibilité */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--or-deep);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Responsive */
/* Origine signature + story link styles */
.origine-signature-wrap { margin: 22px 0 6px; }
.origine-signature-wrap .div-diamond { margin: 0 0 6px; max-width: 150px; }
.origine-signature-wrap .origine-signature { margin: 0; }
.origine-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--orange-deep);
  margin: 18px 0 6px;
  letter-spacing: 0.02em;
}
.origine-story-link {
  display: inline-block;
  color: var(--noir);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
}
.origine-story-link:hover {
  color: var(--orange);
  border-color: var(--noir);
}

/* /our-story page styles */
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.story-hero {
  padding: 100px 0 40px;
  background: linear-gradient(180deg, var(--creme) 0%, var(--creme-deep) 100%);
}
.story-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 24px;
  line-height: 1.1;
}
.story-intro {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--orange-deep);
  margin: 0;
  line-height: 1.5;
}

/* Editorial hero image for /our-story */
.story-hero-image-wrap {
  padding: 40px 0 20px;
  background: linear-gradient(180deg, var(--creme-deep) 0%, var(--blanc) 100%);
}
.story-hero-image {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.story-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.story-body {
  padding: 60px 0 100px;
  background: var(--blanc);
}
.story-body p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--texte);
  margin-bottom: 1.4em;
}
.story-emphasis {
  font-family: var(--font-display);
  font-size: 1.5rem !important;
  font-style: italic;
  color: var(--orange-deep);
  text-align: left;
  margin: 36px 0 !important;
  line-height: 1.35;
}
.story-keyword {
  font-family: var(--font-display);
  font-size: 2.4rem !important;
  font-weight: 600;
  color: var(--noir);
  text-align: center;
  margin: 28px 0 36px !important;
  letter-spacing: -0.01em;
}
.story-home-anchor {
  list-style: none;
  padding: 32px 28px;
  margin: 36px 0;
  background: var(--creme);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
}
.story-home-anchor li {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--noir);
  padding: 10px 0;
  line-height: 1.5;
  border-bottom: 1px solid rgba(196, 90, 44, 0.10);
}
.story-home-anchor li:last-child { border-bottom: none; }
.story-welcome {
  font-family: var(--font-display);
  font-size: 2.6rem !important;
  font-weight: 600;
  color: var(--orange-deep);
  text-align: center;
  margin: 48px 0 !important;
  line-height: 1.2;
}
.story-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}
.story-body h2 {
  font-size: 2rem;
  margin-bottom: 36px;
  color: var(--noir);
  text-align: left;
}
.story-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 0 0 56px 0;
}
.story-value {
  padding: 24px 28px;
  background: var(--creme);
  border-radius: 12px;
  border-left: 3px solid var(--orange);
}
.story-value h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.story-value p {
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
  color: var(--texte-mute);
  margin: 0 !important;
}
.story-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--orange-deep);
  text-align: center;
  margin: 56px auto;
  padding: 0 24px;
  border: none;
  line-height: 1.45;
}
.story-signature {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--noir);
  margin: 40px 0 !important;
  letter-spacing: 0.04em;
}
.story-cta {
  text-align: center;
  margin-top: 48px;
}
.story-cta .btn { padding: 16px 36px; font-size: 1.05rem; }

@media (max-width: 540px) {
  .story-hero-image { aspect-ratio: 4 / 5; border-radius: 16px; }
  .story-home-anchor { padding: 24px 20px; }
  .story-home-anchor li { font-size: 1.1rem; }
  .story-keyword { font-size: 1.9rem !important; }
  .story-welcome { font-size: 2rem !important; }
  .story-value { padding: 20px 22px; }
}

/* Thai-specific tweaks: tighter leading not needed (Noto handles it),
   but display em italic does not render well in Thai serifs, so disable italic in TH */
html[data-lang="th"] h1 em,
html[data-lang="th"] h2 em,
html[data-lang="th"] p em,
html[data-lang="th"] .origine-signature {
  font-style: normal;
}
html[data-lang="th"] body {
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
}
html[data-lang="th"] h1,
html[data-lang="th"] h2,
html[data-lang="th"] h3,
html[data-lang="th"] h4 {
  line-height: 1.35;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .hero { padding: 56px 24px 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-trust { max-width: none; }
  .origine, .produits, .preparation, .reserver, .faq { padding: 72px 0; }
  .origine-grid { grid-template-columns: 1fr; gap: 32px; }
  .origine-visual { max-width: 420px; }
  .produits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reserver-card { padding: 36px 24px; }
  .reserver-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .nav-links { gap: 14px; font-size: 0.9rem; }
  .nav-links a:not(.nav-cta):not(.lang-switcher a) { display: none; }
  .nav-links .nav-cta { display: inline-flex; }
  .lang-switcher { margin-left: 4px; padding-left: 10px; }
  .lang-btn { padding: 6px 6px; font-size: 0.72rem; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero-trust { grid-template-columns: 1fr; gap: 12px; padding-top: 20px; }
  .hero-trust > div { flex-direction: row; align-items: baseline; gap: 8px; }
  .hero-trust strong { font-size: 1.3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .reserver-card { padding: 28px 20px; }
}
