/* =========================================================
   Imakō — modern editorial design (warm edition)
   ========================================================= */

:root {
  /* Warm palette — amber, persimmon, espresso, saffron */
  --cream:         #fbe9cd;   /* buttery amber background */
  --cream-2:       #f6d8a8;
  --paper:         #f6dcb0;   /* warmer paper for cards */
  --paper-2:       #efc88a;

  --ink:           #2b1610;   /* warm espresso (was dark green) */
  --ink-soft:      #4d2b1c;
  --ink-mute:      #8a6249;
  --line:          rgba(43, 22, 16, 0.15);

  --terracotta:    #d04a2a;   /* richer warm primary */
  --terracotta-2:  #b6391b;
  --ember:         #ec6a35;   /* persimmon coral */
  --paprika:       #c8341a;
  --cocoa:         #381a0e;   /* deep warm dark for sections */
  --cocoa-2:       #5a2a18;

  --ponzu:         #f2b13d;   /* saffron */
  --saffron:       #e89530;
  --honey:         #f6c869;
  --rice:          #f7e3b8;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  --brush: "Ma Shan Zheng", "Noto Serif SC", serif;
  --cjk: "Noto Serif SC", "Cormorant Garamond", serif;

  --container: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(236, 106, 53, 0.12), transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(242, 177, 61, 0.18), transparent 60%),
    var(--cream);
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--terracotta); color: var(--cream); }

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - clamp(20px, 4vw, 56px) * 2);
  max-width: 1340px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto auto;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  padding: 12px 14px 12px 18px;
  background: rgba(251, 233, 205, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(43, 22, 16, 0.08);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 18px 40px -20px rgba(56, 26, 14, 0.25);
  transition: top 0.35s var(--ease), padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), max-width 0.4s var(--ease);
}
.nav.is-stuck {
  top: 10px;
  padding: 8px 10px 8px 14px;
  background: rgba(251, 233, 205, 0.88);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 22px 50px -22px rgba(56, 26, 14, 0.35);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 8px;
}
.nav__logo {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  color: var(--terracotta);
  filter: drop-shadow(0 6px 14px rgba(208, 74, 42, 0.35));
  transition: transform 0.3s var(--ease);
}
.nav__logo svg { width: 100%; height: 100%; display: block; }
.nav__brand:hover .nav__logo { transform: rotate(-8deg) scale(1.05); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__since {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 4px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease), background 0.25s var(--ease);
}
.nav__links a:hover {
  color: var(--ink);
  background: rgba(43, 22, 16, 0.06);
}

.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(43, 22, 16, 0.05);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.22);
  animation: pulse-green 2.4s ease-in-out infinite;
}
.nav__status.is-closed .nav__status-dot {
  background: var(--ink-mute);
  box-shadow: 0 0 0 3px rgba(138, 98, 73, 0.18);
  animation: none;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.22); }
  50%     { box-shadow: 0 0 0 7px rgba(76, 175, 80, 0); }
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav__cta svg { width: 14px; height: 14px; }
.nav__cta:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(208, 74, 42, 0.6);
}

.nav__cart {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav__cart:hover { background: var(--terracotta); transform: translateY(-1px); }
.nav__cart svg { width: 18px; height: 18px; }
.nav__cart .badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  background: var(--ember);
  color: var(--cream);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  display: grid; place-items: center;
  border: 2px solid var(--cream);
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}
.nav__cart.has-items .badge { transform: scale(1); }
.nav__cart.bump { animation: bump 0.5s var(--ease); }
@keyframes bump { 0%,100% { transform: scale(1); } 35% { transform: scale(1.18) rotate(-6deg); } }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  background: rgba(43, 22, 16, 0.05);
}
.nav__burger span { display: block; width: 18px; height: 1.6px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

@media (max-width: 1280px) {
  .nav__since { display: none; }
}
@media (max-width: 1180px) {
  .nav__status { display: none; }
}
@media (max-width: 1040px) {
  .nav__cta span { display: none; }
  .nav__cta { padding: 10px 12px; }
}
@media (max-width: 880px) {
  .nav {
    grid-template-columns: 1fr auto auto;
    border-radius: 999px;
  }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed; inset: 80px 14px auto 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    background: rgba(251, 233, 205, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    font-size: 22px;
    font-family: var(--serif);
    box-shadow: 0 30px 60px -30px rgba(43, 22, 16, 0.5);
  }
  .nav__links a { padding: 14px 18px; border-radius: var(--radius-sm); }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: all; }
  .nav__burger { display: flex; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(120px, 16vh, 180px) var(--pad) 80px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 96px);
  align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__halo {
  position: absolute;
  top: 50%; right: -8%;
  transform: translateY(-50%);
  width: 70vh; height: 70vh;
  max-width: 880px; max-height: 880px;
  background:
    radial-gradient(circle at 50% 50%, rgba(236, 106, 53, 0.42) 0%, rgba(236, 106, 53, 0.18) 30%, transparent 65%);
  filter: blur(8px);
  animation: heroHalo 12s ease-in-out infinite;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38% 38% at 12% 22%, rgba(242, 177, 61, 0.25), transparent 65%),
    radial-gradient(60% 60% at 50% 110%, rgba(208, 74, 42, 0.16), transparent 60%);
}
@keyframes heroHalo {
  0%,100% { transform: translate(0, -50%) scale(1); opacity: 1; }
  50%     { transform: translate(-2%, -52%) scale(1.06); opacity: 0.92; }
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero__content { max-width: 720px; position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  background: rgba(43, 22, 16, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero__eyebrow-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-mute);
}
.dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--ember);
  box-shadow: 0 0 0 4px rgba(236, 106, 53, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(236, 106, 53, 0.22); }
  50%     { box-shadow: 0 0 0 9px rgba(236, 106, 53, 0); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  color: var(--ink);
}
.hero__title .italic {
  font-style: italic; font-weight: 300;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--ember) 50%, var(--saffron) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__title span.reveal { display: block; overflow: hidden; }
.hero__title span.reveal > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.05s var(--ease) forwards;
}
.hero__title span.reveal:nth-child(1) > span { animation-delay: 0.05s; }
.hero__title span.reveal:nth-child(2) > span { animation-delay: 0.18s; }
.hero__title span.reveal:nth-child(3) > span { animation-delay: 0.31s; }
.hero__title span.reveal:nth-child(4) > span { animation-delay: 0.44s; }
@keyframes rise { to { transform: translateY(0); } }

.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--terracotta), var(--ember));
  color: var(--cream);
  box-shadow: 0 12px 28px -10px rgba(208, 74, 42, 0.65);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--terracotta-2), var(--terracotta));
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -10px rgba(208, 74, 42, 0.75);
}
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--cocoa); }
.btn--light:hover { background: var(--ponzu); color: var(--cocoa); transform: translateY(-2px); }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

.hero__meta {
  display: flex; flex-wrap: wrap;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 620px;
}
.hero__meta li {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}
.hero__meta li:first-child { padding-left: 0; border-left: 0; }
.hero__meta-k {
  display: block;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 6px;
  font-weight: 500;
}
.hero__meta-v {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* Hero stage (right column) — rotating stamp + bowl + tag */
.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
.hero__spotlight {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 245, 220, 0.95) 0%, rgba(246, 200, 105, 0.7) 40%, rgba(208, 74, 42, 0.25) 75%, transparent 100%);
  box-shadow:
    inset 0 8px 30px rgba(56, 26, 14, 0.08),
    0 30px 70px -20px rgba(56, 26, 14, 0.4),
    0 80px 140px -40px rgba(208, 74, 42, 0.35);
}
.hero__spotlight::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px dashed rgba(43, 22, 16, 0.18);
}
.hero__spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 80%, rgba(56, 26, 14, 0.18), transparent 50%);
  pointer-events: none;
}

.hero__stamp {
  position: absolute;
  inset: -2%;
  width: 104%; height: 104%;
  animation: stampSpin 28s linear infinite;
  pointer-events: none;
}
.hero__stamp text {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  fill: var(--ink);
  text-transform: uppercase;
}
@keyframes stampSpin {
  to { transform: rotate(360deg); }
}

.hero__bowl {
  position: relative;
  width: 62%;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  animation: bowlFloat 8s ease-in-out infinite;
}
.hero__bowl .bowl {
  width: 100%; height: 100%;
  margin: 0;
}
@keyframes bowlFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

.hero__tag {
  position: absolute;
  bottom: 6%; right: -2%;
  display: grid;
  gap: 4px;
  padding: 14px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 40px -18px rgba(56, 26, 14, 0.35);
  text-align: left;
  animation: tagFloat 5s ease-in-out -1s infinite;
  z-index: 2;
}
.hero__tag-k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.hero__tag-v {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
}
.hero__tag-p {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--terracotta);
  font-weight: 600;
  font-style: italic;
}
@keyframes tagFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-6px) rotate(-1deg); }
}

.hero__chip {
  position: absolute;
  top: 4%; left: -2%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 18px 32px -14px rgba(43, 22, 16, 0.55);
  animation: chipFloat 6s ease-in-out infinite;
  z-index: 2;
}
.hero__chip svg { color: var(--ponzu); }
@keyframes chipFloat {
  0%,100% { transform: translate(0, 0) rotate(-3deg); }
  50%     { transform: translate(-4px, -8px) rotate(-2deg); }
}

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px; border: 1px solid var(--ink); border-radius: 999px;
  display: grid; place-items: center;
  opacity: 0.45;
  transition: opacity 0.3s var(--ease);
}
.hero__scroll:hover { opacity: 0.9; }
.hero__scroll span { width: 2px; height: 8px; background: var(--ink); border-radius: 2px; animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translateY(-6px); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(8px); opacity: 0; } }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    text-align: left;
  }
  .hero__stage { max-width: 380px; margin: 0 auto; justify-self: center; }
  .hero__halo { right: -30%; width: 100vw; height: 100vw; }
  .hero__meta { gap: 8px; }
  .hero__meta li { padding: 12px 16px; border-left: 0; border-top: 1px solid var(--line); flex: 1 1 45%; }
  .hero__meta li:first-child { border-top: 0; padding-top: 0; }
  .hero__scroll { display: none; }
  .hero__tag { padding: 10px 16px; }
  .hero__tag-v { font-size: 15px; }
  .hero__tag-p { font-size: 18px; }
}
@media (max-width: 600px) {
  .hero__eyebrow { font-size: 10.5px; padding: 6px 12px; }
  .hero__chip { font-size: 10.5px; padding: 7px 12px; }
}

/* ============== MARQUEE ============== */
.marquee {
  background: linear-gradient(90deg, var(--cocoa), var(--ink), var(--cocoa));
  color: var(--cream);
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: inline-flex;
  gap: 36px;
  padding: 22px 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 400;
}
.marquee__track span:nth-child(odd) { color: var(--cream); }
.marquee__track span:nth-child(even) { color: var(--ponzu); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== SECTIONS ============== */
.section {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.section__head { max-width: 880px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__num {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
  font-weight: 600;
}
.section__num.light { color: var(--ponzu); }
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section__title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--terracotta), var(--ember) 60%, var(--saffron));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__title.light { color: var(--cream); }
.section__title.light em {
  background: linear-gradient(135deg, var(--ponzu), var(--honey));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__lede {
  margin-top: 18px;
  max-width: 640px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}
.link-arrow span { transition: transform 0.3s var(--ease); display: inline-block; }
.link-arrow:hover span { transform: translateX(6px); }
.link-arrow.light { color: var(--cream); }

/* ============== HISTOIRE ============== */
.histoire__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.histoire__copy p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 560px;
}
.histoire__copy .link-arrow { margin-top: 14px; color: var(--terracotta); }

.histoire__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--paper);
}
.histoire__stats li {
  background: var(--paper);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--terracotta), var(--ember));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-size: 13.5px; color: var(--ink-mute); }

@media (max-width: 880px) {
  .histoire__grid { grid-template-columns: 1fr; }
}

/* ============== POKE (signature) ============== */
.poke {
  background:
    radial-gradient(60% 60% at 90% 10%, rgba(242, 177, 61, 0.18), transparent 70%),
    radial-gradient(50% 60% at 10% 90%, rgba(208, 74, 42, 0.20), transparent 70%),
    linear-gradient(180deg, var(--cocoa) 0%, var(--ink) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.poke__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.poke__lede {
  margin: 22px 0 36px;
  max-width: 540px;
  color: rgba(251, 233, 205, 0.82);
  font-size: 17px;
}
.poke__list {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(251, 233, 205, 0.14);
  margin-bottom: 22px;
}
.poke__list li {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(251, 233, 205, 0.14);
  align-items: center;
  transition: padding 0.3s var(--ease);
}
.poke__list li:hover { padding-left: 8px; }
.poke__list span { font-family: var(--serif); font-size: 21px; }
.poke__list em { color: rgba(251, 233, 205, 0.62); font-style: italic; font-size: 14px; }
.poke__list b { font-family: var(--serif); font-weight: 500; color: var(--ponzu); font-size: 19px; }
.poke__list .add {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(251, 233, 205, 0.1);
  color: var(--cream);
  border: 1px solid rgba(251, 233, 205, 0.18);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s var(--ease);
}
.poke__list .add:hover { background: var(--ember); border-color: var(--ember); color: #fff; transform: scale(1.08); }
.poke__note { color: rgba(251, 233, 205, 0.55); font-size: 14px; margin-bottom: 28px; }

.poke__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Poke bowl visual */
.poke__visual { display: grid; place-items: center; }
.bowl {
  position: relative;
  width: clamp(280px, 32vw, 480px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 20%, #4a2616 0%, #2c1409 60%, #1a0a04 100%);
  box-shadow:
    0 50px 120px -40px rgba(0,0,0,0.6),
    inset 0 -20px 60px rgba(0,0,0,0.35),
    inset 0 10px 22px rgba(255, 219, 158, 0.08);
  overflow: hidden;
  animation: floaty 10s ease-in-out infinite;
}
.bowl::before {
  content: ""; position: absolute; inset: -8% -8% auto -8%; height: 30%;
  background: radial-gradient(ellipse at center, rgba(255, 219, 158, 0.20) 0%, transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.bowl__layer { position: absolute; inset: 14%; border-radius: 50%; }
.bowl__rice { background: radial-gradient(circle at 50% 30%, #fffaef 0%, #efe1bf 60%, #c9b58a 100%); box-shadow: inset 0 -10px 24px rgba(0,0,0,0.12); }
.bowl__sauce { inset: 32%; background: radial-gradient(circle, rgba(208, 74, 42, 0.7) 0%, rgba(208, 74, 42, 0) 70%); filter: blur(6px); }
.bowl__ingredient { position: absolute; }
.bowl__salmon { width: 32%; height: 22%; left: 22%; top: 24%; background: linear-gradient(135deg, #f4a988, #e07556); border-radius: 50%; transform: rotate(-12deg); box-shadow: inset 0 4px 0 rgba(255,255,255,0.2), inset 0 -3px 0 rgba(0,0,0,0.08); }
.bowl__avocado { width: 26%; height: 20%; right: 22%; top: 26%; background: linear-gradient(135deg, #b6cf7a, #6e8c3f); border-radius: 60% 40% 60% 40%; transform: rotate(15deg); box-shadow: inset -3px -4px 0 rgba(0,0,0,0.12); }
.bowl__edamame { width: 7%; height: 7%; left: 30%; bottom: 28%; background: #6e8c3f; border-radius: 50%; box-shadow: 18px -10px 0 #6e8c3f, 32px 4px 0 #88a85a, -2px 14px 0 #88a85a; }
.bowl__nori { width: 18%; height: 8%; left: 22%; top: 56%; background: linear-gradient(180deg, #0d1610, #2f4a39); border-radius: 4px; transform: rotate(-22deg); }
.bowl__radish { width: 9%; aspect-ratio: 1; right: 28%; bottom: 24%; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff 10%, #f3c0d2 60%, #c97a96 100%); box-shadow: 14px 6px 0 #f3c0d2; }
.bowl__sesame { inset: 14%; background: radial-gradient(circle, #f7e8b8 0.6px, transparent 1.6px) 10% 25% / 24px 24px, radial-gradient(circle, #4a3320 0.6px, transparent 1.6px) 65% 70% / 28px 28px; pointer-events: none; opacity: 0.7; }

@media (max-width: 880px) {
  .poke__inner { grid-template-columns: 1fr; }
  .poke__list li { grid-template-columns: 1fr auto auto; }
  .poke__list em { display: none; }
}

/* ============== BOWL BUILDER ============== */
.builder {
  background: linear-gradient(180deg, transparent, var(--paper) 25%, var(--paper) 75%, transparent);
  position: relative;
  padding-top: 1px;
}
.builder__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--pad);
}
.builder__head { max-width: 720px; margin-bottom: 56px; }
.builder__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.builder__steps { display: flex; flex-direction: column; gap: 28px; }
.bstep { display: flex; flex-direction: column; gap: 14px; }
.bstep__head {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.bstep__num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: -0.02em;
}
.bstep__title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); }
.bstep__hint { font-size: 13px; color: var(--ink-mute); margin-left: auto; }

.bopts { display: flex; flex-wrap: wrap; gap: 8px; }
.bopt {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
}
.bopt:hover { border-color: var(--terracotta); transform: translateY(-1px); }
.bopt input { position: absolute; opacity: 0; pointer-events: none; }
.bopt .price { font-size: 12.5px; color: var(--ink-mute); font-weight: 400; }
.bopt:has(input:checked),
.bopt.is-checked {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.bopt:has(input:checked) .price,
.bopt.is-checked .price { color: rgba(251, 233, 205, 0.7); }
.bopt:has(input:checked)::before,
.bopt.is-checked::before {
  content: "✓";
  display: inline-grid; place-items: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ember);
  color: #fff;
  font-size: 11px;
  margin-right: 2px;
}

.builder__summary {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 30px 60px -25px rgba(43, 22, 16, 0.45);
  overflow: hidden;
}
.builder__summary::before {
  content: ""; position: absolute; inset: -50% -10% auto -10%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(236, 106, 53, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.builder__summary h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  position: relative;
}
.builder__lines { display: flex; flex-direction: column; gap: 10px; position: relative; }
.builder__lines li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 14.5px;
  color: rgba(251, 233, 205, 0.85);
}
.builder__lines li.hint { color: rgba(251, 233, 205, 0.5); font-style: italic; }
.builder__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 233, 205, 0.18);
  position: relative;
}
.builder__total span:first-child { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251, 233, 205, 0.6); }
.builder__total span:last-child {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--ponzu), var(--honey));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.builder__add { width: 100%; justify-content: center; position: relative; }

@media (max-width: 980px) {
  .builder__grid { grid-template-columns: 1fr; }
  .builder__summary { position: relative; top: auto; }
}

/* ============== CARTE / TABS ============== */
.carte__tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.carte__tabs button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream);
  transition: all 0.25s var(--ease);
}
.carte__tabs button:hover { color: var(--ink); border-color: var(--ink); }
.carte__tabs button[aria-selected="true"] {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}

.carte__panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.carte__panel.is-active { display: grid; animation: fadeIn 0.4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.carte__panel article {
  background: var(--paper);
  padding: 26px 24px 70px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  transition: background 0.25s var(--ease);
  min-height: 160px;
}
.carte__panel article:hover { background: var(--paper-2); }
.carte__panel article h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.carte__panel article p { font-size: 14.5px; color: var(--ink-mute); line-height: 1.5; }
.carte__panel article > span {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--terracotta);
  position: absolute;
  bottom: 24px; left: 24px;
}
.carte__panel article .add {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  box-shadow: 0 8px 18px -8px rgba(43, 22, 16, 0.4);
}
.carte__panel article .add:hover {
  background: var(--ember); transform: scale(1.1) rotate(90deg);
}
.carte__panel article .add svg { width: 14px; height: 14px; }

.carte__footnote { margin-top: 24px; font-size: 14px; color: var(--ink-mute); text-align: center; }
.carte__footnote a { color: var(--terracotta); border-bottom: 1px solid currentColor; }

/* ============== EXPÉRIENCE ============== */
.experience {
  background:
    radial-gradient(40% 60% at 80% 20%, rgba(242, 177, 61, 0.32), transparent 60%),
    radial-gradient(60% 60% at 20% 90%, rgba(56, 26, 14, 0.30), transparent 60%),
    linear-gradient(135deg, var(--terracotta) 0%, var(--ember) 60%, var(--paprika) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.experience__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--pad);
}
.experience__head { max-width: 800px; margin-bottom: 64px; }
.experience__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.xcard {
  background: rgba(251, 233, 205, 0.10);
  border: 1px solid rgba(251, 233, 205, 0.22);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.xcard:hover { transform: translateY(-4px); background: rgba(251, 233, 205, 0.16); }
.xcard__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.xcard__tag { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251, 233, 205, 0.7); }
.xcard__price { font-family: var(--serif); font-size: 26px; color: var(--cream); }
.xcard__price small { font-size: 12px; color: rgba(251, 233, 205, 0.65); margin-left: 4px; font-family: var(--sans); letter-spacing: 0.05em; }
.xcard h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.1; }
.xcard p { color: rgba(251, 233, 205, 0.85); font-size: 15px; }
.xcard .link-arrow { margin-top: auto; color: var(--cream); }

@media (max-width: 880px) { .experience__cards { grid-template-columns: 1fr; } }

/* ============== BIEN-ÊTRE ============== */
.bienetre__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.bienetre__copy p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  margin-top: 22px;
  max-width: 520px;
}
.bienetre__note { color: var(--ink-mute) !important; font-size: 14px !important; font-style: italic; }
.bienetre__list { border-top: 1px solid var(--line); }
.bienetre__list li {
  display: grid; grid-template-columns: 1fr auto auto; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding 0.3s var(--ease);
}
.bienetre__list li:hover { padding-left: 12px; }
.bienetre__list h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; }
.bienetre__list span { font-size: 13px; color: var(--ink-mute); letter-spacing: 0.05em; }
.bienetre__list b { font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--terracotta); }

@media (max-width: 880px) { .bienetre__grid { grid-template-columns: 1fr; } }

/* ============== QUOTES ============== */
.quotes {
  background: linear-gradient(180deg, transparent, rgba(246, 220, 176, 0.6) 30%, rgba(246, 220, 176, 0.6) 70%, transparent);
  padding: clamp(60px, 8vw, 100px) var(--pad);
}
.quotes__list {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.quotes__list li {
  background: var(--paper);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.quotes blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.3;
  color: var(--ink);
  font-style: italic;
  font-weight: 300;
}
.quotes cite { font-style: normal; font-size: 13px; color: var(--ink-mute); letter-spacing: 0.06em; }

@media (max-width: 880px) { .quotes__list { grid-template-columns: 1fr; } }

/* ============== CONTACT ============== */
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--pad);
}
.contact__head { margin-bottom: 56px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 20px;
}
.contact__card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact__card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.contact__hours { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.contact__hours li { display: flex; justify-content: space-between; font-size: 14.5px; padding: 2px 0; }
.contact__hours li span:first-child { color: var(--ink-mute); }
.contact__hours li .closed { color: var(--terracotta); font-weight: 500; }
.contact__hint { font-size: 13px; color: var(--ink-mute); margin-top: 6px; }

.contact__big {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--terracotta), var(--ember));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
  margin: 4px 0 8px;
  transition: opacity 0.2s var(--ease);
}
.contact__big:hover { opacity: 0.78; }
.contact__socials { display: flex; flex-wrap: wrap; gap: 14px; margin-top: auto; padding-top: 12px; }
.contact__socials a {
  font-size: 13.5px; padding: 8px 14px;
  border: 1px solid var(--ink); border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.contact__socials a:hover { background: var(--ink); color: var(--cream); }

.contact__card--map { padding: 0; overflow: hidden; position: relative; min-height: 280px; }
.contact__card--map iframe {
  width: 100%; height: 100%; min-height: 320px; border: 0; display: block;
  filter: sepia(0.15) saturate(1.1);
}
.contact__card--map .link-arrow {
  position: absolute; bottom: 18px; right: 18px;
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.contact__parking {
  margin-top: 36px;
  padding: 24px 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  align-items: baseline;
  background: rgba(246, 220, 176, 0.4);
}
.contact__parking h4 { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--terracotta); }
.contact__parking p { color: var(--ink-soft); font-size: 14.5px; flex: 1 1 380px; }

@media (max-width: 980px) {
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .contact__card--map { grid-column: span 2; }
}
@media (max-width: 720px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card--map { grid-column: span 1; }
}

/* ============== FOOTER ============== */
.footer {
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(208, 74, 42, 0.20), transparent 60%),
    linear-gradient(180deg, var(--cocoa), var(--ink));
  color: var(--cream);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--pad) 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
}
.footer__brand p { color: rgba(251, 233, 205, 0.65); margin-top: 14px; max-width: 320px; font-size: 14.5px; }
.footer__mark {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--ponzu), var(--ember));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__cols h5 {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ponzu); margin-bottom: 14px; font-weight: 600;
}
.footer__cols a {
  display: block; padding: 4px 0; font-size: 14.5px;
  color: rgba(251, 233, 205, 0.78);
  transition: color 0.2s var(--ease);
}
.footer__cols a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(251, 233, 205, 0.10);
  padding: 22px var(--pad);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
  color: rgba(251, 233, 205, 0.6);
  max-width: var(--container);
  margin: 0 auto;
}

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ============== CART (FAB + DRAWER) ============== */
.cart-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 80;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--ember));
  color: var(--cream);
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -12px rgba(208, 74, 42, 0.65);
  border: 0;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  pointer-events: none;
}
.cart-fab.is-active {
  opacity: 1; transform: scale(1) translateY(0); pointer-events: all;
}
.cart-fab:hover { transform: scale(1.06); box-shadow: 0 24px 50px -14px rgba(208, 74, 42, 0.75); }
.cart-fab svg { width: 24px; height: 24px; }
.cart-fab .badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 24px; height: 24px;
  padding: 0 6px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: grid; place-items: center;
  border: 2px solid var(--cream);
}
.cart-fab.bump { animation: bump 0.5s var(--ease); }

.scrim {
  position: fixed; inset: 0;
  background: rgba(43, 22, 16, 0.55);
  backdrop-filter: blur(4px);
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.scrim.is-open { opacity: 1; pointer-events: all; }

.cart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(460px, 100vw);
  background:
    radial-gradient(60% 30% at 100% 0%, rgba(236, 106, 53, 0.18), transparent 60%),
    var(--cream);
  z-index: 96;
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.45s var(--ease);
  box-shadow: -30px 0 60px -20px rgba(43, 22, 16, 0.35);
}
.cart.is-open { transform: translateX(0); }
.cart__head {
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart__head h2 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.cart__head .count { font-size: 13px; color: var(--ink-mute); margin-left: 8px; font-family: var(--sans); }
.cart__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  transition: background 0.2s var(--ease);
}
.cart__close:hover { background: var(--ember); color: var(--cream); }
.cart__close svg { width: 16px; height: 16px; }

.cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 26px;
  display: flex; flex-direction: column; gap: 6px;
}
.cart__empty {
  text-align: center;
  padding: 60px 20px;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
  color: var(--ink-mute);
}
.cart__empty .icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  color: var(--terracotta);
}
.cart__empty .icon svg { width: 26px; height: 26px; }
.cart__empty h3 { font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 500; }
.cart__empty p { font-size: 14px; max-width: 280px; margin: 0 auto; }

.cart__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
}
.cart__item:last-child { border-bottom: 0; }
.cart__item h4 { font-family: var(--serif); font-size: 17px; font-weight: 500; line-height: 1.25; }
.cart__item .details { font-size: 13px; color: var(--ink-mute); line-height: 1.45; grid-column: 1 / -1; }
.cart__item .price { font-family: var(--serif); font-weight: 500; color: var(--terracotta); font-size: 16px; white-space: nowrap; }
.cart__item .controls {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px;
}
.cart__item .qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}
.cart__item .qty button {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink-mute);
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.cart__item .qty button:hover { background: var(--ink); color: var(--cream); }
.cart__item .qty .n { padding: 0 10px; font-weight: 500; min-width: 20px; text-align: center; }
.cart__item .remove {
  margin-left: auto;
  font-size: 12.5px; color: var(--ink-mute);
  text-decoration: underline;
}
.cart__item .remove:hover { color: var(--paprika); }

.cart__foot {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 20px 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  flex-shrink: 0;
}
.cart__total {
  display: flex; justify-content: space-between; align-items: baseline;
}
.cart__total span:first-child { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.cart__total span:last-child { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--terracotta); }

.cart__mode { display: flex; gap: 8px; }
.cart__mode label {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  font-size: 13.5px; font-weight: 500;
  cursor: pointer;
  background: var(--cream);
  transition: all 0.2s var(--ease);
}
.cart__mode input { display: none; }
.cart__mode label:has(input:checked) {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}

.cart__form { display: flex; flex-direction: column; gap: 8px; }
.cart__form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cart__form input, .cart__form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cart__form input:focus, .cart__form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(208, 74, 42, 0.15);
}
.cart__form textarea { resize: vertical; min-height: 60px; }

.cart__submit { width: 100%; justify-content: center; }
.cart__call {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.cart__call a { color: var(--terracotta); border-bottom: 1px solid currentColor; }
.cart__legal { font-size: 11.5px; color: var(--ink-mute); text-align: center; }

@media (max-width: 720px) {
  .cart-fab { bottom: 16px; right: 16px; width: 56px; height: 56px; }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 100px; right: 24px;
  z-index: 90;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 18px 40px -16px rgba(43, 22, 16, 0.45);
}
.toast.is-show { opacity: 1; transform: translateY(0); }
.toast::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
}

/* ============== REVEAL on scroll ============== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================
   DUAL THEME — Cuisine (warm) / Bien-être (jade & gold)
   ========================================================= */
:root {
  /* Palette dragon (mode cuisine par défaut) */
  --dragon-a: #c8341a;
  --dragon-b: #f2b13d;
  --dragon-spine: #fbe9cd;
  --dragon-eye: #2b1610;
  --dragon-pearl: #f6c869;
}

body {
  transition: background 1.2s var(--ease), color 1.2s var(--ease);
}

body[data-mode="bien-etre"] {
  --cream:     #f4efe4;
  --cream-2:   #e6ddc8;
  --paper:     #ece4d0;
  --paper-2:   #d9ceb0;

  --ink:       #142b26;   /* vert nuit */
  --ink-soft:  #24423a;
  --ink-mute:  #6e8178;
  --line:      rgba(20, 43, 38, 0.15);

  --terracotta:   #2f6b5b;   /* jade profond (primary) */
  --terracotta-2: #225245;
  --ember:        #4f9280;   /* jade clair (secondary) */
  --paprika:      #2f6b5b;
  --cocoa:        #0f2420;   /* vert nuit pour sections sombres */
  --cocoa-2:      #17332c;

  --ponzu:   #d6a86a;   /* or rose */
  --saffron: #c49253;
  --honey:   #e9c68f;
  --rice:    #ede1c4;

  /* Dragon (mode zen : jade → or) */
  --dragon-a: #2f6b5b;
  --dragon-b: #d6a86a;
  --dragon-spine: #f4efe4;
  --dragon-eye: #0f2420;
  --dragon-pearl: #e9c68f;
}

/* Contenu conditionnel par mode */
[data-show="cuisine"],
[data-show="bien-etre"] {
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
body[data-mode="cuisine"] [data-show="bien-etre"],
body[data-mode="bien-etre"] [data-show="cuisine"] {
  display: none !important;
}

/* Séparation stricte des univers : on cache les sections réservées à l'autre mode */
body[data-mode="cuisine"] [data-mode-section="bien-etre"],
body[data-mode="bien-etre"] [data-mode-section="cuisine"] {
  display: none !important;
}

/* =========================================================
   MODE SWITCH — pillule Cuisine / Bien-être
   ========================================================= */
.mode-switch {
  position: relative;
  display: inline-flex;
  gap: 0;
  padding: 5px;
  margin-bottom: 22px;
  background: rgba(43, 22, 16, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mode-switch__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  transition: color 0.35s var(--ease);
  cursor: pointer;
}
.mode-switch__btn svg { transition: transform 0.5s var(--ease); }
.mode-switch__btn span { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.mode-switch__btn b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.mode-switch__btn small {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.mode-switch__btn.is-active { color: var(--cream); }
.mode-switch__btn.is-active b { color: var(--cream); }
.mode-switch__btn.is-active small { color: rgba(255,255,255,0.7); }
.mode-switch__btn.is-active svg { transform: rotate(-10deg) scale(1.08); }

.mode-switch__indicator {
  position: absolute;
  top: 5px; left: 5px;
  width: calc(50% - 5px); height: calc(100% - 10px);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(43, 22, 16, 0.55);
  transition: transform 0.55s var(--ease), background 0.55s var(--ease);
  z-index: 1;
}
body[data-mode="bien-etre"] .mode-switch__indicator { transform: translateX(100%); background: var(--terracotta); }
body[data-mode="bien-etre"] .mode-switch { background: rgba(20, 43, 38, 0.06); }

@media (max-width: 560px) {
  .mode-switch__btn small { display: none; }
}

/* =========================================================
   HERO — fix du clipping italique + palette bien-être
   ========================================================= */
.hero__title {
  padding-bottom: 0.12em;
  line-height: 1.02;
}
.hero__line {
  display: block;
  padding: 0.02em 0 0.14em;
}
.hero__line > span {
  display: inline-block;
  transform: translateY(22px);
  opacity: 0;
  animation: hero-rise 0.95s var(--ease) forwards;
  will-change: transform, opacity;
}
.hero__line:nth-child(1) > span { animation-delay: 0.08s; }
.hero__line:nth-child(2) > span { animation-delay: 0.22s; }
.hero__line:nth-child(3) > span { animation-delay: 0.36s; }
.hero__line:nth-child(4) > span { animation-delay: 0.50s; }
@keyframes hero-rise {
  to { transform: translateY(0); opacity: 1; }
}

.hero__line--em > span {
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.028em;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--ember) 50%, var(--saffron) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}
body[data-mode="bien-etre"] .hero__line--em > span {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--ember) 45%, var(--ponzu) 100%);
  -webkit-background-clip: text; background-clip: text;
}

/* Palette de fond mode zen */
body[data-mode="bien-etre"] {
  background:
    radial-gradient(62% 52% at 100% 0%, rgba(47, 107, 91, 0.14), transparent 60%),
    radial-gradient(50% 42% at 0% 100%, rgba(214, 168, 106, 0.18), transparent 60%),
    var(--cream);
  background-attachment: fixed;
}

/* =========================================================
   DRAGON — chemin ondulant, discret mais vivant
   ========================================================= */
.hero__dragon {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.55;
  mix-blend-mode: normal;
  pointer-events: none;
  animation: dragon-breathe 9s ease-in-out infinite;
  z-index: 0;
}
body[data-mode="bien-etre"] .hero__dragon { opacity: 0.45; }
/* SVG stop/stroke/fill hooks via CSS variables */
.dragon-stop-a { stop-color: var(--dragon-a); }
.dragon-stop-b { stop-color: var(--dragon-b); }
.dragon-stroke-b { stroke: var(--dragon-b); }
.dragon-spine { stroke: var(--dragon-spine); }
.dragon-fill-eye { fill: var(--dragon-eye); }
.dragon-fill-pearl { fill: var(--dragon-pearl); }

.hero__dragon-float {
  transform-origin: center;
  animation: dragon-drift 14s ease-in-out infinite;
}
@keyframes dragon-drift {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-10px, -6px); }
  50%      { transform: translate(6px, -10px); }
  75%      { transform: translate(10px, 4px); }
}
@keyframes dragon-breathe {
  0%, 100% { opacity: 0.48; }
  50%      { opacity: 0.6; }
}

.dragon-body {
  animation: dragon-undulate 7s ease-in-out infinite;
}
.hero.reveal-dragon .dragon-body {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: dragon-trace 4.5s var(--ease) 0.2s forwards,
             dragon-undulate 7s ease-in-out 4.7s infinite;
}
@keyframes dragon-trace {
  to { stroke-dashoffset: 0; }
}
@keyframes dragon-undulate {
  0%, 100% { stroke-width: 38; }
  50%      { stroke-width: 44; }
}
.dragon-spine {
  animation: dragon-spine-flow 6s linear infinite;
}
@keyframes dragon-spine-flow {
  to { stroke-dashoffset: -360; }
}
.dragon-whisker {
  transform-origin: 1340px 320px;
  animation: whisker-wave 5s ease-in-out infinite;
}
.dragon-whisker:nth-of-type(2) { animation-delay: 0.4s; }
@keyframes whisker-wave {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(3deg); }
}
.dragon-eye {
  animation: dragon-blink 5.5s steps(1, end) infinite;
}
@keyframes dragon-blink {
  0%, 92%, 100% { r: 6; }
  94%, 97%      { r: 0.5; }
}
.dragon-pearl {
  animation: pearl-pulse 3.6s ease-in-out infinite;
}
@keyframes pearl-pulse {
  0%, 100% { opacity: 0.5; r: 8; }
  50%      { opacity: 1;   r: 11; }
}

/* Nuages chinois stylisés */
.hero__cloud {
  position: absolute;
  width: 120px; height: 60px;
  color: var(--ink-mute);
  opacity: 0.28;
  pointer-events: none;
  animation: cloud-drift 24s linear infinite;
}
.hero__cloud--1 { top: 14%; left: 55%; width: 100px; }
.hero__cloud--2 { top: 28%; left: 72%; width: 80px; animation-duration: 30s; animation-delay: -8s; }
@keyframes cloud-drift {
  0%   { transform: translateX(-20px); }
  50%  { transform: translateX(20px); }
  100% { transform: translateX(-20px); }
}

@media (prefers-reduced-motion: reduce) {
  .dragon-body { stroke-dashoffset: 0 !important; animation: none; }
  .hero__dragon, .hero__dragon-float, .dragon-spine, .dragon-whisker, .dragon-eye, .dragon-pearl, .hero__cloud {
    animation: none !important;
  }
}

/* =========================================================
   ZEN STAGE — mode bien-être (yin/yang + lotus + anneaux)
   ========================================================= */
.hero__stage--zen {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
.zen { position: relative; width: 100%; height: 100%; display: grid; place-items: center; }
.zen__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(47, 107, 91, 0.22);
  pointer-events: none;
}
.zen__ring--1 { inset: 6%;  border-color: rgba(47, 107, 91, 0.28); animation: zen-spin 80s linear infinite; border-style: dashed; }
.zen__ring--2 { inset: 14%; border-color: rgba(214, 168, 106, 0.36); animation: zen-spin 60s linear reverse infinite; }
.zen__ring--3 { inset: 22%; border-color: rgba(47, 107, 91, 0.4); animation: zen-breathe 7s ease-in-out infinite; }
@keyframes zen-spin { to { transform: rotate(360deg); } }
@keyframes zen-breathe {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50%     { transform: scale(1.04); opacity: 0.85; }
}

.zen__yinyang {
  position: relative; z-index: 2;
  width: 46%; aspect-ratio: 1;
  color: var(--ink);
  animation: yinyang-spin 28s linear infinite;
  filter: drop-shadow(0 18px 40px rgba(15, 36, 32, 0.35));
}
.zen__yinyang svg { width: 100%; height: 100%; display: block; }
@keyframes yinyang-spin { to { transform: rotate(360deg); } }

.zen__lotus {
  position: absolute;
  bottom: 8%; left: 50%;
  transform: translateX(-50%);
  width: 42%;
  color: var(--ponzu);
  opacity: 0.7;
  animation: lotus-float 7s ease-in-out infinite;
}
.zen__lotus svg { width: 100%; display: block; }
@keyframes lotus-float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-8px); }
}

.zen__stamp {
  position: absolute;
  inset: -2%;
  width: 104%; height: 104%;
  animation: stampSpin 40s linear infinite;
  pointer-events: none;
}
.zen__stamp text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  fill: var(--ink-soft);
  text-transform: uppercase;
}

.hero__tag--zen {
  background: var(--ink);
  color: var(--cream);
  border-color: transparent;
}
.hero__tag--zen .hero__tag-k { color: rgba(255,255,255,0.55); }
.hero__tag--zen .hero__tag-v { color: var(--cream); }
.hero__tag--zen .hero__tag-p { color: var(--ponzu); }

.hero__chip--zen { background: var(--terracotta); color: var(--cream); }
.hero__chip--zen svg { color: var(--ponzu); }

@media (max-width: 980px) {
  .hero__stage--zen { max-width: 380px; margin: 0 auto; justify-self: center; }
}

/* =========================================================
   BIEN-ÊTRE section enrichie — kanji, gallery, desc
   ========================================================= */
.section.bienetre {
  position: relative;
  overflow: hidden;
}
body[data-mode="bien-etre"] .section.bienetre {
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(47, 107, 91, 0.08), transparent 60%),
    radial-gradient(40% 40% at 100% 100%, rgba(214, 168, 106, 0.12), transparent 60%);
}
.bienetre__kanji {
  position: absolute;
  top: 40%; right: -4%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(260px, 36vw, 520px);
  line-height: 0.9;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
body[data-mode="bien-etre"] .bienetre__kanji { opacity: 0.1; color: var(--terracotta); }
.bienetre__grid { position: relative; z-index: 1; }

.bienetre__gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 36px;
  max-width: 560px;
}
.bienetre__shot {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 22px 50px -22px rgba(15, 36, 32, 0.45);
  aspect-ratio: 4 / 5;
  background: #0f2420;
}
.bienetre__shot--1 { grid-row: 1 / 3; aspect-ratio: auto; }
.bienetre__shot svg { width: 100%; height: 100%; display: block; }
.bienetre__shot figcaption {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.88);
  font-weight: 500;
}
.bienetre__shot .steam {
  animation: steam-rise 4s ease-in-out infinite;
  transform-origin: center bottom;
}
.bienetre__shot .steam:nth-of-type(2) { animation-delay: -1.2s; }
@keyframes steam-rise {
  0%   { opacity: 0.3; transform: translateY(4px); }
  50%  { opacity: 0.75; transform: translateY(-2px); }
  100% { opacity: 0.3; transform: translateY(4px); }
}

/* Liste des soins — plus aérée */
.bienetre__list li {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr auto auto;
  grid-template-rows: auto auto;
  align-items: baseline;
  column-gap: 22px;
  row-gap: 4px;
  padding: 22px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.bienetre__list li:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(47, 107, 91, 0.04), transparent); }
.bienetre__list h3  { grid-row: 1; grid-column: 1; }
.bienetre__list span { grid-row: 1; grid-column: 2; text-align: right; }
.bienetre__list b    { grid-row: 1; grid-column: 3; text-align: right; }
.bienetre__desc {
  grid-row: 2; grid-column: 1 / -1;
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 440px;
  margin: 0;
}

/* =========================================================
   NAV — mode switch compatibility
   ========================================================= */
body[data-mode="bien-etre"] .nav__logo { color: var(--terracotta); filter: drop-shadow(0 6px 14px rgba(47, 107, 91, 0.35)); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   SALON — univers bien-être entièrement dédié
   ========================================================= */
.salon {
  position: relative;
  overflow: hidden;
}
.salon__kanji {
  position: absolute;
  top: 6%;
  right: -6%;
  font-family: var(--brush);
  font-size: clamp(320px, 44vw, 640px);
  line-height: 0.85;
  color: var(--terracotta);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Fond seigaiha (vagues) discret sur tout le salon */
.salon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 10px, transparent 9px, rgba(47, 107, 91, 0.06) 9px, rgba(47, 107, 91, 0.06) 10px, transparent 10px),
    radial-gradient(circle at 10px 10px, transparent 9px, rgba(47, 107, 91, 0.06) 9px, rgba(47, 107, 91, 0.06) 10px, transparent 10px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.salon > section { position: relative; z-index: 1; }

/* 01 — Philosophie */
.salon__philo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.salon__philo-copy p + p { margin-top: 18px; }
.salon__philo-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 18px;
  border-left: 2px solid var(--terracotta);
  margin-top: 28px !important;
}
.salon__brush {
  margin-top: 36px;
  color: var(--terracotta);
  max-width: 340px;
}
.salon__brush svg { width: 100%; height: auto; display: block; }

.salon__stamp-cjk {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.salon__stamp-char {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--brush);
  font-size: 34px;
  line-height: 1;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18), 0 10px 24px -12px rgba(47, 107, 91, 0.5);
  transform: rotate(-4deg);
}

.salon__philo-photo { aspect-ratio: 3 / 4; max-height: 640px; justify-self: end; width: 100%; }

@media (max-width: 900px) {
  .salon__philo-grid { grid-template-columns: 1fr; }
}

/* 02 — Les soins (cards) */
.salon__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.scard {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -30px rgba(15, 36, 32, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.scard:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -30px rgba(15, 36, 32, 0.55);
}
.scard__photo {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--cocoa);
}
.scard__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
  filter: saturate(0.9) contrast(1.02);
}
.scard:hover .scard__photo img { transform: scale(1.06); }
.scard__cjk {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--brush);
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  opacity: 0.9;
  letter-spacing: 0.04em;
}
.scard__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.scard__head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.scard__head h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.scard__head b {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--terracotta);
  white-space: nowrap;
}
.scard__head b small { font-size: 12px; color: var(--ink-mute); font-weight: 400; margin-left: 4px; }
.scard__body p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.scard__meta {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-weight: 500;
}

/* 03 — La séance (4 étapes) */
.salon__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.salon__steps li {
  position: relative;
  padding: 36px 28px 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.salon__steps li:last-child { border-right: 0; }
.salon__step-num {
  font-family: var(--brush);
  font-size: 48px;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.9;
}
.salon__steps h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.salon__steps p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .salon__steps li { border-right: 0; border-bottom: 1px solid var(--line); }
  .salon__steps li:last-child { border-bottom: 0; }
}

/* 04 — Le lieu — hero cinéma + strip 3 photos */
.salon__lieu-hero {
  margin: 8px 0 22px;
  aspect-ratio: 16 / 7;
  width: 100%;
}
.salon__lieu-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.salon__lieu-strip .photo { aspect-ratio: 4 / 5; }
@media (max-width: 820px) {
  .salon__lieu-hero { aspect-ratio: 4 / 3; }
  .salon__lieu-strip { grid-template-columns: 1fr 1fr; }
  .salon__lieu-strip .photo:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}
@media (max-width: 520px) {
  .salon__lieu-strip { grid-template-columns: 1fr; }
  .salon__lieu-strip .photo:last-child { grid-column: auto; aspect-ratio: 4 / 5; }
}

.salon__booking {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px clamp(24px, 4vw, 48px);
  background: var(--cocoa);
  color: var(--cream);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.salon__booking::before {
  content: "安";
  position: absolute;
  right: -30px; top: -40px;
  font-family: var(--brush);
  font-size: 260px;
  line-height: 1;
  color: var(--ponzu);
  opacity: 0.08;
  pointer-events: none;
}
.salon__booking h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--cream);
}
.salon__booking-copy p { color: rgba(244, 239, 228, 0.75); max-width: 460px; }
.salon__booking-cta { display: flex; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }

/* Masquer l'ancien style bienetre (on garde les classes CSS mais l'élément est rebuild) */
body[data-mode="bien-etre"] .bienetre__kanji { display: none; }

/* Hero image discrète pour le mode cuisine (derrière le bol) */
body[data-mode="cuisine"] .hero__stage { position: relative; }

/* Typographie CJK — appliquée aux accents chinois */
.cjk { font-family: var(--cjk); }
.brush { font-family: var(--brush); }

/* Hero seal stamp (福 — bonheur, mode cuisine) */
.hero__seal {
  position: absolute;
  bottom: 12%;
  left: 6%;
  width: 72px; height: 72px;
  display: grid; place-items: center;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--brush);
  font-size: 46px;
  line-height: 1;
  border-radius: 8px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.14), 0 18px 40px -18px rgba(208, 74, 42, 0.6);
  transform: rotate(-6deg);
  z-index: 3;
  animation: seal-breathe 5s ease-in-out infinite;
}
@keyframes seal-breathe {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50%      { transform: rotate(-6deg) scale(1.05); }
}
body[data-mode="bien-etre"] .hero__seal { display: none; }

@media (max-width: 900px) {
  .hero__seal { width: 56px; height: 56px; font-size: 34px; bottom: 6%; left: 6%; }
}

/* Section number — accent avec petit trait pinceau */
.section__num {
  position: relative;
  padding-left: 22px;
}
.section__num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 1.5px;
  background: currentColor;
  opacity: 0.6;
}

/* =========================================================
   PHOTO — composant unifié (salon + cuisine)
   ========================================================= */
.photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 60px -28px rgba(15, 36, 32, 0.45);
  background: #0f2420;
  isolation: isolate;
}
.photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
  will-change: transform;
}
.photo:hover > img { transform: scale(1.04); }
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 22, 18, 0.65) 0%, rgba(15, 22, 18, 0.12) 42%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.photo > figcaption {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.photo__kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 239, 228, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.photo__kicker::before {
  content: "";
  width: 16px; height: 1.5px;
  background: currentColor;
  opacity: 0.7;
}
.photo__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* Nuance chromatique selon l'univers */
body[data-mode="cuisine"] .photo > img { filter: saturate(1.02) contrast(1.03); }
body[data-mode="bien-etre"] .photo > img { filter: saturate(0.9) contrast(1.02) brightness(0.96); }
body[data-mode="bien-etre"] .photo::after {
  background: linear-gradient(to top, rgba(15, 36, 32, 0.7) 0%, rgba(15, 36, 32, 0.15) 44%, transparent 68%);
}

/* =========================================================
   CUISINE GALLERY — hero + grille 4 photos
   ========================================================= */
.section.cuisine-gallery { position: relative; }
.cuisine-gallery__hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  margin: 8px 0 22px;
}
.cuisine-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cuisine-gallery__grid .photo { aspect-ratio: 4 / 5; }
@media (max-width: 900px) {
  .cuisine-gallery__hero { aspect-ratio: 4 / 3; }
  .cuisine-gallery__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .cuisine-gallery__grid { grid-template-columns: 1fr; }
  .cuisine-gallery__grid .photo { aspect-ratio: 4 / 3; }
}

/* Quotes salon — variante jade */
.quotes.quotes--salon {
  background: linear-gradient(180deg, transparent, rgba(47, 107, 91, 0.08) 30%, rgba(47, 107, 91, 0.08) 70%, transparent);
}
body[data-mode="bien-etre"] .quotes.quotes--salon blockquote { color: var(--ink); }
body[data-mode="bien-etre"] .quotes.quotes--salon blockquote::before { color: var(--terracotta); }

/* Scard photo — aspect plus cinématique */
.scard__photo { aspect-ratio: 4 / 3; isolation: isolate; }
.scard__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 22, 18, 0.45) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.scard__photo img { transition: transform 0.9s var(--ease); }
.scard__cjk { z-index: 2; }

/* Harmoniser contact card et footer cols avec le mode (masquage déjà géré via data-show) */
.footer__cols > div[data-show] { display: block; }
body[data-mode="cuisine"] .footer__cols > div[data-show="bien-etre"],
body[data-mode="bien-etre"] .footer__cols > div[data-show="cuisine"] { display: none !important; }
