/* ============================================================
   Le Chat Moine — plage zen à l'heure dorée
   ============================================================ */

:root {
  --sand: #FDF6EC;
  --sand-2: #F6E7D2;
  --ink: #173F3F;
  --ink-soft: #4E6E6B;
  --sea: #2EC4B6;
  --sea-deep: #1D9E92;
  --sea-light: #A8E6DC;
  --coral: #FF6B5E;
  --coral-deep: #EF5347;
  --sakura: #F7C8D8;
  --straw: #E9B44C;
  --white: #FFFFFF;

  --font-display: "Fraunces", "Noto Serif SC", Georgia, serif;
  --font-body: "Outfit", "Noto Sans SC", -apple-system, system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 50px rgba(23, 63, 63, 0.10);
  --shadow-lift: 0 28px 60px rgba(23, 63, 63, 0.16);
  --hairline: rgba(23, 63, 63, 0.10);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--coral); color: var(--white); }

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

html[lang="zh"] h1, html[lang="zh"] h2, html[lang="zh"] h3 { letter-spacing: 0.02em; }

section { scroll-margin-top: 84px; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 780px; }

/* ---------- texture & ambiance ---------- */

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- pétales ---------- */

#petals { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }

.petal {
  position: absolute;
  top: -4vh;
  left: var(--x);
  width: 16px; height: 12px;
  background: linear-gradient(135deg, #FBD3E0, #F3A9C4);
  border-radius: 100% 0 100% 0;
  opacity: var(--o, 0.7);
  animation: fall var(--d, 12s) linear var(--delay, 0s) infinite;
}

@keyframes fall {
  0%   { transform: translate(0, -4vh) rotate(0deg); }
  25%  { transform: translate(calc(var(--sway) * 1), 25vh) rotate(120deg); }
  50%  { transform: translate(calc(var(--sway) * -0.6), 52vh) rotate(230deg); }
  75%  { transform: translate(calc(var(--sway) * 0.8), 78vh) rotate(310deg); }
  100% { transform: translate(0, 108vh) rotate(420deg); opacity: 0; }
}

/* ---------- boutons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  filter: grayscale(1);
}
.btn:disabled:hover { transform: none; }

.btn-coral { background: var(--coral); color: var(--white); box-shadow: 0 12px 28px rgba(255, 107, 94, 0.35); }
.btn-coral:hover { background: var(--coral-deep); }

.btn-ghost { background: transparent; border-color: rgba(23, 63, 63, 0.25); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(255, 255, 255, 0.6); }

.btn-light { background: var(--sand); color: var(--ink); }
.btn-light:hover { background: var(--white); }

.btn-small { padding: 0.55rem 1.15rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

:focus-visible { outline: 3px solid var(--sea); outline-offset: 2px; border-radius: 6px; }

/* ---------- navigation ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 2rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(253, 246, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline);
  padding: 0.6rem 2rem;
}

.brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--ink);
}
.brand-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 4px 14px rgba(23, 63, 63, 0.18);
}
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.01em; }

.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { opacity: 1; color: var(--coral); }

.nav-right { display: flex; align-items: center; gap: 0.8rem; }

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active { background: var(--ink); color: var(--sand); }

/* ---------- héro ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8.5rem 2rem 7rem;
  background:
    radial-gradient(60% 45% at 72% 18%, rgba(255, 214, 170, 0.55) 0%, rgba(255, 214, 170, 0) 70%),
    radial-gradient(45% 40% at 20% 30%, rgba(247, 200, 216, 0.5) 0%, rgba(247, 200, 216, 0) 70%),
    linear-gradient(180deg, #FDF6EC 0%, #FCE9DC 34%, #F7C8D8 58%, #C9ECE4 82%, #A8E6DC 100%);
}

.hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.eyebrow .dot { font-size: 1rem; }

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }

.hero-note { font-size: 0.85rem; font-style: italic; color: var(--ink-soft); opacity: 0.85; }

.hero-visual { position: relative; }

.hero-frame {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 220px 220px 30px 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lift);
  transform: rotate(2.5deg);
  transition: transform 0.5s ease;
}
.hero-frame:hover { transform: rotate(0.5deg) translateY(-6px); }
.hero-frame img {
  border-radius: 210px 210px 22px 22px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -16px; left: -20px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.hero-badge-emoji { font-size: 1.1rem; }

.wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 80px;
  color: var(--sand);
}

/* ---------- sections communes ---------- */

h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); text-align: center; margin-bottom: 0.9rem; text-wrap: balance; }

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0 auto 3.2rem;
  font-size: 1.05rem;
}

/* ---------- manifeste ---------- */

.manifesto { padding: 6.5rem 0 5.5rem; position: relative; z-index: 2; }

.koans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3.5rem;
}

.koan {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.koan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.koan-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(168, 230, 220, 0.5), rgba(247, 200, 216, 0.55));
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.koan h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }
.koan p { color: var(--ink-soft); font-size: 0.97rem; }

.golden-rule {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.golden-rule p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5;
}
.golden-rule cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- bandeau questions ---------- */

.strip {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--sand);
  text-align: center;
  padding: 3.4rem 1.5rem;
}
.strip-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea-light);
  margin-bottom: 1rem;
}
.strip-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  max-width: 46rem;
  margin: 0 auto;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
}
.strip-question.fading { opacity: 0; }

/* ---------- étapes ---------- */

.steps { padding: 6.5rem 0; position: relative; z-index: 2; }

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  counter-reset: step;
}

.step { position: relative; }
.step-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--straw);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 20px rgba(233, 180, 76, 0.4);
}
.steps-grid li + li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: calc(-1.25rem - 50% + 23px);
  width: calc(100% - 46px);
  border-top: 2px dashed rgba(23, 63, 63, 0.22);
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- tarifs ---------- */

.pricing {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--sand) 0%, #FAEDD9 100%);
  position: relative;
  z-index: 2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.price-card header { text-align: center; margin-bottom: 1.6rem; }
.price-icon {
  display: grid; place-items: center;
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  font-size: 1.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 200, 216, 0.55), rgba(233, 180, 76, 0.35));
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.price-tagline { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 0.4rem; }
.price-value { font-family: var(--font-display); font-weight: 700; font-size: 2.9rem; letter-spacing: -0.02em; }
.price-per { font-size: 0.9rem; color: var(--ink-soft); }
.price-wink { font-size: 0.85rem; font-style: italic; color: var(--coral-deep); margin-top: 0.35rem; }

.price-card ul { list-style: none; margin-bottom: 2rem; flex: 1; }
.price-card li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.price-card li + li { margin-top: 0.8rem; }
.price-card li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--sea);
  font-size: 0.8rem;
  line-height: 2.2;
}

/* ---------- La Graine : question quotidienne ---------- */

#graine-panel { margin-top: 0.9rem; text-align: left; }
#graine-note { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.6rem; text-align: center; }
#graine-body {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: #FFFEFB;
  border: 1.5px solid rgba(23, 63, 63, 0.16);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  resize: vertical;
  margin-bottom: 0.4rem;
}
#graine-body:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 4px rgba(168, 230, 220, 0.45); }
.graine-counter { font-size: 0.72rem; color: var(--ink-soft); text-align: right; margin-bottom: 0.5rem; }
#graine-extra { margin-top: 0.5rem; font-size: 0.85rem; }

.price-card.featured {
  border: 2px solid var(--coral);
  transform: scale(1.03);
  box-shadow: 0 26px 60px rgba(255, 107, 94, 0.22);
  z-index: 1;
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-ribbon {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card.dark {
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--sand);
}
.price-card.dark .price-tagline,
.price-card.dark .price-per { color: var(--sea-light); }
.price-card.dark li { color: rgba(253, 246, 236, 0.85); }
.price-card.dark li::before { color: var(--sea-light); }
.price-card.dark .price-icon {
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.3), rgba(233, 180, 76, 0.25));
}

/* ---------- réservation ---------- */

.booking { padding: 6.5rem 0; position: relative; z-index: 2; }

.booking-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 32px;
  padding: 3rem 3rem 2.4rem;
  box-shadow: var(--shadow-lift);
}

.booking-head { text-align: center; margin-bottom: 2rem; }
.booking-head h2 { margin-bottom: 0.5rem; }
.booking-head p { color: var(--ink-soft); margin-bottom: 1.4rem; }

.booking-rules {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.booking-rules li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--sand);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.book-indicator {
  list-style: none;
  counter-reset: bookstep;
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-bottom: 2.2rem;
}
.book-indicator li {
  counter-increment: bookstep;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: 0.55;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.book-indicator li::before {
  content: counter(bookstep);
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: 0.75rem;
}
.book-indicator li.active { opacity: 1; color: var(--coral); }
.book-indicator li.done { opacity: 1; color: var(--sea-deep); }

.book-step h3 { font-size: 1.15rem; margin-bottom: 1.3rem; text-align: center; }

.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.6rem;
}

.day-chip {
  border: 1.5px solid rgba(23, 63, 63, 0.14);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 0.65rem 0.3rem 0.55rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.day-chip .dow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.day-chip .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.3;
}
.day-chip .mon {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-soft);
}
button.day-chip:hover:not(:disabled) {
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 107, 94, 0.18);
}
.day-chip.selected {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.day-chip.selected .dow,
.day-chip.selected .mon { color: rgba(255, 255, 255, 0.85); }
.day-chip:disabled,
.day-chip.closed,
.day-chip.taken {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--sand);
  filter: grayscale(1);
}

.hour-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.hour-chip {
  border: 1.5px solid rgba(23, 63, 63, 0.14);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.hour-chip .h-start {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}
.hour-chip .h-range {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}
button.hour-chip:hover { border-color: var(--coral); transform: translateY(-2px); }
.hour-chip.selected { background: var(--coral); border-color: var(--coral); color: var(--white); }
.hour-chip.selected .h-range { color: rgba(255, 255, 255, 0.85); }

#bookForm { display: grid; gap: 1.1rem; max-width: 480px; margin: 0 auto; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.field label em { font-weight: 400; color: var(--ink-soft); font-style: normal; font-size: 0.8rem; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #FFFEFB;
  border: 1.5px solid rgba(23, 63, 63, 0.16);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(168, 230, 220, 0.45);
}
.field-err { color: var(--coral-deep); font-size: 0.82rem; margin-top: 0.35rem; }

.book-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
}

.done { text-align: center; max-width: 480px; margin: 0 auto; }
.done-mark {
  width: 76px; height: 76px;
  display: grid; place-items: center;
  margin: 0 auto 1.2rem;
  font-size: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 200, 216, 0.6), rgba(168, 230, 220, 0.6));
}
.done h3 { font-size: 1.4rem; margin-bottom: 0.9rem; }
.done-recap {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  white-space: pre-line;
  margin-bottom: 1rem;
}
.done-demo {
  font-size: 0.84rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.done .btn { margin: 0.3rem 0.3rem 0; }

/* ---------- FAQ ---------- */

.faq { padding: 6.5rem 0; position: relative; z-index: 2; }

.faq details {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 1.15rem 1.5rem;
  margin-bottom: 0.9rem;
  transition: box-shadow 0.3s ease;
}
.faq details[open] { box-shadow: var(--shadow-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-right: 2.2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--coral);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: var(--sand);
  text-align: center;
  padding: 4.5rem 0 2.5rem;
  position: relative;
  z-index: 2;
}
.footer-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.6rem;
}
.footer-top { margin-bottom: 1.4rem; }
.footer-bottom { font-size: 0.85rem; opacity: 0.75; }
.footer-bottom .footer-made { margin: 0; }
.footer-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--sea-light);
}
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sea-light);
}
.footer-made { font-size: 0.9rem; opacity: 0.85; }
.footer-line a { color: var(--sea-light); text-decoration: none; }
.footer-line a:hover { text-decoration: underline; }

/* ---------- toast ---------- */

.toast {
  position: fixed;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--sand);
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lift);
  z-index: 60;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  max-width: min(90vw, 480px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- apparition au scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .hero { padding-top: 7rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.6rem; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-frame { max-width: 330px; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -14px; white-space: nowrap; }
  .koans { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 2.2rem; max-width: 460px; margin: 0 auto; }
  .steps-grid li + li::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .booking-card { padding: 2.2rem 1.4rem; }
  .day-grid { grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); }
}

@media (max-width: 560px) {
  .nav { padding: 0.7rem 1rem; }
  .nav.scrolled { padding: 0.55rem 1rem; }
  .brand-name { font-size: 1rem; }
  .lang-switch button { padding: 0.28rem 0.5rem; }
  .book-indicator { gap: 1rem; }
  .book-indicator li { font-size: 0; gap: 0; }
  .book-indicator li::before { font-size: 0.75rem; width: 26px; height: 26px; }
  .hero-note br { display: none; }
}

/* ---------- accessibilité : mouvement réduit ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .petal { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .koan, .price-card, .hero-frame { transition: none; }
  .strip-question { transition: none; }
}
