/* ==========================================================================
   Succulentes et Gracieuses — feuille de style
   Site vitrine one-page, mobile-first, sans dépendance.

   PALETTE (variables CSS, définies sur :root ci-dessous)
   --sage-dark        #3C4C3A  vert profond : titres, fonds de section sombres, bouton principal
   --sage             #5F7A5B  vert sauge : accents, bordures, icônes
   --sage-light       #EAF0E7  fond doux des sections « sur mesure » et « contact »
   --terracotta       #C07A5E  accent chaud : soulignements, filets, gros titres uniquement
                               (contraste 3,3:1 sur crème → réservé au décoratif et au texte ≥ 24 px)
   --terracotta-deep  #8F5238  dérivé foncé du terracotta pour les boutons secondaires et liens
                               (contraste 5,9:1 sur crème, 6,1:1 avec du blanc dessus → AA)
   --terracotta-light #F7EBE4  fond des encarts chauds (confirmation, prix à compléter)
   --cream            #FCFAF6  fond général de la page
   --ink              #2B302A  texte courant (12,9:1 sur crème)
   --muted            #6E7569  texte secondaire (4,6:1 sur crème → AA ; pas utilisé sur sauge clair)

   TYPOGRAPHIE
   --font-serif  Cormorant Garamond (titres), repli Iowan Old Style / Palatino / Georgia
   --font-sans   Source Sans 3 (corps), repli pile système
   ========================================================================== */

:root {
  --sage-dark: #3C4C3A;
  --sage: #5F7A5B;
  --sage-light: #EAF0E7;
  --terracotta: #C07A5E;
  --terracotta-deep: #8F5238;
  --terracotta-light: #F7EBE4;
  --cream: #FCFAF6;
  --ink: #2B302A;
  --muted: #6E7569;

  --font-serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1120px;
  --gutter: 20px;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(60, 76, 58, 0.09);
  --shadow-hover: 0 22px 44px rgba(60, 76, 58, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);   /* sortie douce, « chaleureuse » */
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --transition: 240ms var(--ease-out);
  --header-h: 64px;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--sage-dark);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 7.5vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 3.2vw, 1.55rem); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--terracotta-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--transition); }
a:hover { color: var(--sage-dark); }
p a:not(.btn), .card-link, .map-link a, .footer-info a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 100%;
  transition: background-size var(--transition), color var(--transition);
}
p a:not(.btn):hover, .card-link:hover, .map-link a:hover, .footer-info a:hover { background-size: 100% 2px; }

strong { font-weight: 600; }
address { font-style: normal; }
ul[role="list"], ol.steps { list-style: none; margin: 0; padding: 0; }

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

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

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--sage-dark);
  color: var(--cream);
  border-radius: var(--radius);
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.narrow { max-width: 720px; }

/* ---------- Composants texte ---------- */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--terracotta);
  flex: none;
}

.lead {
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  line-height: 1.55;
  max-width: 34em;
}

.section-intro {
  color: var(--muted);
  max-width: 40em;
  font-size: 1.05rem;
}
.section-sage .section-intro { color: var(--sage-dark); }

.a-completer {
  display: inline-block;
  padding: 0.05em 0.45em;
  border-radius: 4px;
  background: var(--terracotta-light);
  color: var(--terracotta-deep);
  font-style: italic;
  font-size: 0.95em;
}

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.7em 1.4em;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-icon { transition: transform var(--transition); }
.btn-arrow:hover .btn-icon { transform: translateX(4px); }

.btn-primary { background: var(--sage-dark); color: var(--cream); border-color: var(--sage-dark); box-shadow: 0 6px 18px rgba(60, 76, 58, 0.22); }
.btn-primary:hover { background: var(--sage); border-color: var(--sage); color: #fff; box-shadow: 0 12px 26px rgba(60, 76, 58, 0.28); }

.btn-secondary { background: var(--terracotta-deep); color: #fff; border-color: var(--terracotta-deep); box-shadow: 0 6px 18px rgba(143, 82, 56, 0.22); }
.btn-secondary:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

.btn-outline { background: rgba(252, 250, 246, 0.12); color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--sage-dark); }

.btn-sm { min-height: 40px; padding: 0.5em 1.1em; font-size: 0.95rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 246, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(60, 76, 58, 0.12);
  transition: box-shadow 300ms var(--ease-out), background-color 300ms var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(252, 250, 246, 0.9);
  box-shadow: 0 6px 24px rgba(60, 76, 58, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-dark);
  text-decoration: none;
  min-width: 0;
}
.brand-mark { flex: none; transition: transform 500ms var(--ease-spring); }
.brand:hover .brand-mark { transform: rotate(30deg); }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-name em { font-style: italic; font-weight: 400; color: var(--terracotta-deep); }

.header-call { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 10px;
  background: none;
  border: 0;
  color: var(--sage-dark);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle-bar {
  position: relative;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav-toggle-bar::before, .nav-toggle-bar::after {
  content: "";
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition);
}
.nav-toggle-bar::before { top: -7px; }
.nav-toggle-bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(60, 76, 58, 0.12);
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 8px var(--gutter) 16px; }
.site-nav a {
  display: block;
  padding: 12px 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(60, 76, 58, 0.1);
}
.site-nav li:last-child a { border-bottom: 0; }
.site-nav a:hover, .site-nav a.is-active { color: var(--terracotta-deep); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(88vh, 720px);
  color: var(--cream);
  background: var(--sage-dark);
  isolation: isolate;
  overflow: hidden; /* le zoom d'ouverture de la photo ne doit pas créer de défilement horizontal */
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: -2;
  transform-origin: 55% 45%;
  animation: hero-zoom 7s var(--ease-out) both; /* un seul zoom lent à l'ouverture, puis immobile */
}
@keyframes hero-zoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(60, 76, 58, 0.18) 0%, rgba(60, 76, 58, 0.42) 40%, rgba(43, 48, 42, 0.78) 72%, rgba(43, 48, 42, 0.9) 100%);
}
.hero-overlay::after {
  /* grain léger : casse les aplats du dégradé et réchauffe la photo */
  content: "";
  position: absolute; inset: 0;
  opacity: 0.07;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;charset=utf-8,%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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content { padding-block: 72px 96px; }
.hero-in { opacity: 0; transform: translateY(18px); animation: hero-in 800ms var(--ease-out) both; animation-delay: calc(180ms + var(--i, 0) * 110ms); }
@keyframes hero-in { to { opacity: 1; transform: none; } }
.hero .eyebrow::before { background: var(--terracotta-light); }
.souligne { position: relative; display: inline-block; white-space: nowrap; }
.souligne-trait {
  position: absolute; left: -2%; right: -2%; bottom: -0.08em;
  width: 104%; height: 0.32em;
  color: var(--terracotta);
  pointer-events: none;
}
.souligne-trait path {
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  animation: trace 900ms var(--ease-out) 1000ms forwards;
}
@keyframes trace { to { stroke-dashoffset: 0; } }
.hero-scroll {
  position: absolute;
  right: var(--gutter); bottom: 26px;
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(252, 250, 246, 0.85);
  text-decoration: none;
}
.hero-scroll svg { transition: transform var(--transition); }
.hero-scroll:hover { color: #fff; }
.hero-scroll:hover svg { transform: translateY(4px); }
.hero .eyebrow { color: var(--terracotta-light); }
.hero h1 { color: #fff; margin-bottom: 0.35em; max-width: 12em; }
.hero .lead { color: rgba(252, 250, 246, 0.94); margin-bottom: 1.6rem; text-shadow: 0 1px 12px rgba(43, 48, 42, 0.25); }
.hero h1 { text-shadow: 0 2px 18px rgba(43, 48, 42, 0.3); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.4rem; }
.hero-actions .btn { flex: 1 1 200px; }
.hero-hours {
  font-size: 0.95rem;
  color: rgba(252, 250, 246, 0.85);
  margin: 0;
}
.hero-hours .is-open-now { color: #DCE8D6; font-weight: 600; }

/* ---------- Sections, vagues et formes organiques ---------- */

.section { padding-block: clamp(56px, 9vw, 104px); position: relative; }
.wave { position: absolute; left: 0; width: 100%; height: clamp(28px, 5vw, 70px); pointer-events: none; }
.wave-hero { bottom: -1px; height: clamp(34px, 6vw, 90px); }
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }
.wave-footer { top: -1px; }
.has-waves { padding-block: clamp(84px, 12vw, 150px); }
.section-sage { background: var(--sage-light); overflow: hidden; }
.section-sage::before, .section-sage::after {
  /* halos chauds, très doux, façon lumière sur la pierre */
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
}
.section-sage::before { width: 42vw; height: 42vw; max-width: 520px; max-height: 520px; right: -12vw; top: 8%; background: var(--terracotta-light); }
.section-sage::after { width: 30vw; height: 30vw; max-width: 380px; max-height: 380px; left: -10vw; bottom: 6%; background: #fff; }
.section-sage > .container { position: relative; z-index: 1; }
.section-dark { background: var(--sage-dark); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--terracotta-light); }
.section-dark a { color: var(--terracotta-light); }
.section-dark a:hover { color: #fff; }

.section-head { margin-bottom: clamp(28px, 5vw, 48px); }
.section-head h2 { max-width: 16em; }

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 5vw, 44px);
}

/* ---------- Cartes créations ---------- */

.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(60, 76, 58, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 380ms var(--ease-out), box-shadow 380ms var(--ease-out), opacity 600ms var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; transition: transform 700ms var(--ease-out); }
.card:hover img { transform: scale(1.05); }
.card:nth-child(2) { transition-delay: 80ms; }
.card:nth-child(3) { transition-delay: 160ms; }
.card:nth-child(4) { transition-delay: 240ms; }
.card:hover, .card.is-visible:hover { transition-delay: 0ms; }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { margin: 0; }
.card-body p { margin: 0; }
.card-body > p:not(.price) { color: var(--muted); font-size: 1rem; }
.price { font-weight: 600; color: var(--sage-dark); margin-top: auto !important; padding-top: 6px; }
.card-link { font-weight: 600; margin-top: 4px; align-self: flex-start; }

/* ---------- Sur mesure : étapes + avant/après ---------- */

.steps {
  display: grid;
  gap: 24px;
  counter-reset: etape;
}
.step {
  position: relative;
  padding: 26px 24px;
  background: rgba(252, 250, 246, 0.9);
  border: 1px solid rgba(60, 76, 58, 0.1);
  border-radius: var(--radius-lg);
  transition: transform 380ms var(--ease-out), box-shadow 380ms var(--ease-out), opacity 600ms var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step:nth-child(2) { transition-delay: 100ms; }
.step:nth-child(3) { transition-delay: 200ms; }
.step:hover { transition-delay: 0ms; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 0 0 6px var(--terracotta-light);
  transition: transform 500ms var(--ease-spring);
}
.step:hover .step-num { transform: scale(1.08) rotate(-6deg); }
.step h3 { margin-bottom: 0.4em; }
.step p { color: var(--sage-dark); }

.compare { margin: clamp(32px, 6vw, 56px) auto 0; max-width: 820px; }
.compare-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.compare-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-apres { clip-path: inset(0 0 0 var(--pos)); }
.compare-tag {
  position: absolute; top: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(43, 48, 42, 0.55);
  color: #fff;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.compare-tag-avant { left: 14px; }
.compare-tag-apres { right: 14px; }
.compare-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0; padding: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none; appearance: none;
  background: none; border: 0;
}
.compare-range::-webkit-slider-thumb { -webkit-appearance: none; width: 48px; height: 48px; }
.compare-range::-moz-range-thumb { width: 48px; height: 48px; border: 0; }
.compare-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: #fff;
  pointer-events: none;
  transform: translateX(-1px);
}
.compare-handle svg {
  position: absolute; top: 50%; left: 50%;
  width: 46px; height: 46px; padding: 11px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: var(--sage-dark);
  box-shadow: 0 6px 18px rgba(43, 48, 42, 0.3);
  transition: transform 300ms var(--ease-spring), box-shadow var(--transition);
}
.compare-range:hover ~ .compare-handle svg, .compare-range:active ~ .compare-handle svg { transform: translate(-50%, -50%) scale(1.08); }
.compare-range:focus-visible ~ .compare-handle svg { outline: 3px solid var(--terracotta); outline-offset: 3px; }
.compare figcaption { margin-top: 12px; color: var(--sage-dark); font-size: 0.95rem; text-align: center; }
.compare strong { font-family: var(--font-serif); font-size: 1.15rem; color: var(--terracotta-deep); }

/* ---------- Ateliers ---------- */

.split { display: grid; gap: 32px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); aspect-ratio: 3 / 2; object-fit: cover; width: 100%; box-shadow: var(--shadow-hover); }
.split-media::before {
  content: "";
  position: absolute; inset: 14px -14px -14px 14px;
  border: 2px solid var(--terracotta-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split-text .section-head { margin-bottom: 16px; }
.split-text > p { color: var(--ink); }

.dates { margin: 24px 0 24px; }
.dates h3 { font-size: 1.2rem; margin-bottom: 10px; }
.dates-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(60, 76, 58, 0.15); }
.dates-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 2px 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(60, 76, 58, 0.15);
  transition: background-color var(--transition);
}
.date-chip {
  grid-row: 1 / span 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 58px; height: 62px;
  border-radius: 14px;
  background: var(--sage-light);
  color: var(--sage-dark);
  line-height: 1;
  transition: transform 400ms var(--ease-spring), background-color var(--transition), color var(--transition);
}
.date-chip .d { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; font-variant-numeric: lining-nums; }
.date-chip .m { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }
.dates-list li:hover .date-chip { background: var(--terracotta); color: #fff; transform: rotate(-4deg); }
.dates-list time { font-weight: 600; color: var(--sage-dark); font-size: 0.95rem; }
.dates-list .date-titre { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--sage-dark); }
.dates-list .date-meta { color: var(--muted); font-size: 0.9rem; }
.dates-list .dates-empty { display: block; color: var(--muted); }

/* ---------- La boutique ---------- */

.shop-grid { display: grid; gap: 28px; }
.shop-grid figure { margin: 0; }
.shop-grid img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25); }
.section-dark { overflow: hidden; }
.section-dark .container { position: relative; z-index: 1; }
.section-dark::before {
  content: "";
  position: absolute;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  right: -20vw; top: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 122, 91, 0.55), transparent 65%);
  pointer-events: none;
}
.shop-front img { aspect-ratio: 3 / 2; }
.portrait img { aspect-ratio: 3 / 4; max-width: 300px; }
.shop-grid figcaption { margin-top: 10px; padding-bottom: 2px; font-size: 0.95rem; color: rgba(252, 250, 246, 0.8); }
.shop-story p { max-width: 38em; }
.services { display: grid; gap: 14px; margin-top: 22px; }
.services li { display: flex; gap: 12px; align-items: flex-start; }
.services svg { flex: none; margin-top: 3px; color: var(--terracotta-light); }

/* ---------- Avis ---------- */

.reviews { display: grid; gap: 20px; }
.review blockquote {
  position: relative;
  margin: 0;
  height: 100%;
  padding: 44px 24px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 380ms var(--ease-out), box-shadow 380ms var(--ease-out);
}
.review blockquote::before {
  content: "\201C";
  position: absolute; top: -6px; left: 16px;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.35;
}
.review:hover blockquote { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review:nth-child(2) { transition-delay: 100ms; }
.review:nth-child(3) { transition-delay: 200ms; }
.review blockquote p { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.4; color: var(--sage-dark); }
.review blockquote p.a-completer { font-family: var(--font-sans); font-size: 1rem; }
.review footer { margin-top: 12px; color: var(--muted); font-size: 0.95rem; }
#lien-avis[aria-disabled="true"] { opacity: 0.6; cursor: not-allowed; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; gap: 32px; }
.contact-info h3 { font-size: 1.25rem; margin: 22px 0 8px; }
.contact-info h3:first-child { margin-top: 0; }
.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours th, .hours td { padding: 8px 0; border-bottom: 1px solid rgba(60, 76, 58, 0.15); text-align: left; }
.hours th { font-weight: 600; color: var(--sage-dark); width: 45%; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--terracotta-deep); font-weight: 600; background: linear-gradient(90deg, rgba(247, 235, 228, 0.9), transparent); }
.hours tr.is-today th { padding-left: 8px; border-radius: 8px 0 0 8px; }
.hours tr.is-today th::after { content: " · aujourd'hui"; font-weight: 400; font-size: 0.85em; }
.contact-phone { font-size: 1.4rem; font-family: var(--font-serif); font-weight: 600; }
.contact-phone a { text-decoration: none; }
.socials { display: grid; gap: 8px; }
.socials a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; min-height: 44px; }
.socials a:hover { text-decoration: underline; }

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
  background: #dfe6dc;
  box-shadow: var(--shadow);
}
.map-link { margin-top: 10px; font-size: 0.95rem; }

/* ---------- Formulaire ---------- */

.form { display: grid; gap: 18px; }
.hp { display: none !important; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; gap: 18px; }
label { font-weight: 600; color: var(--sage-dark); }
.req { color: var(--terracotta-deep); }

input[type="text"], select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(60, 76, 58, 0.35);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
textarea { resize: vertical; min-height: 140px; }
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%233C4C3A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l4.5 4.5L12.5 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(95, 122, 91, 0.18);
}
.field-error { transform: translateY(-4px); opacity: 0; transition: opacity var(--transition), transform var(--transition); }
.field-error:not(:empty) { transform: none; opacity: 1; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #A8412B;
}
.field-hint { font-size: 0.9rem; color: var(--muted); margin: 0; }
.field-error { font-size: 0.92rem; color: #A8412B; font-weight: 600; margin: 0; min-height: 0; }
.field-error:empty { display: none; }

.form-status { margin: 0; font-weight: 600; color: #A8412B; }
.form-status:empty { display: none; }
.form-actions { display: grid; gap: 14px; }
.form-legal { font-size: 0.88rem; color: var(--muted); margin: 0; }
.btn[disabled] { opacity: 0.6; cursor: wait; transform: none; }

.form-success {
  padding: 32px 28px;
  background: var(--terracotta-light);
  border-radius: var(--radius-lg);
  animation: pop-in 600ms var(--ease-spring) both;
}
@keyframes pop-in { from { opacity: 0; transform: scale(0.96) translateY(10px); } to { opacity: 1; transform: none; } }
.form-success h3 { margin-bottom: 0.4em; }
.success-check { color: var(--sage); margin-bottom: 14px; }
.success-circle { stroke-dasharray: 176; stroke-dashoffset: 176; animation: trace-circle 700ms var(--ease-out) 150ms forwards; }
.success-tick { stroke-dasharray: 40; stroke-dashoffset: 40; animation: trace-tick 400ms var(--ease-out) 700ms forwards; }
@keyframes trace-circle { to { stroke-dashoffset: 0; } }
@keyframes trace-tick { to { stroke-dashoffset: 0; } }
.form-success[hidden] { display: none; }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 0 calc(40px + env(safe-area-inset-bottom));
  background: var(--sage-dark);
  color: rgba(252, 250, 246, 0.85);
  font-size: 0.95rem;
}
.footer-inner { display: grid; gap: 20px; }
.site-footer a { color: var(--terracotta-light); }
.site-footer a:hover { color: #fff; }
.site-footer .brand-name { font-size: 1.4rem; color: var(--cream); margin-bottom: 4px; white-space: normal; }
.site-footer .brand-name em { color: var(--terracotta-light); }
.footer-info p { margin: 0 0 4px; }

.legal { border-top: 1px solid rgba(252, 250, 246, 0.18); padding-top: 14px; }
.legal summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--cream);
  padding: 6px 0;
  list-style: none;
}
.legal summary::-webkit-details-marker { display: none; }
.legal summary::before { content: "+ "; color: var(--terracotta-light); }
.legal[open] summary::before { content: "– "; }
.legal-body { padding: 8px 0 4px; font-size: 0.9rem; max-width: 70em; }
.legal-body p { margin-bottom: 0.8em; }
.copyright { margin: 0; font-size: 0.85rem; color: rgba(252, 250, 246, 0.65); }

/* ---------- Barre d'appel flottante (mobile) ---------- */

.call-bar {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 20px;
  background: var(--terracotta-deep);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(43, 48, 42, 0.28);
  transform: translateY(calc(100% + 24px));
  opacity: 0;
  transition: transform 500ms var(--ease-spring), opacity 260ms ease;
  pointer-events: none;
}
.call-bar.is-visible { transform: none; opacity: 1; pointer-events: auto; }
.call-bar:hover { background: var(--terracotta); color: #fff; }

/* ---------- Apparition au défilement ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.js .reveal-scale { transform: scale(0.96) translateY(10px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .card.reveal, .js .step.reveal, .js .review.reveal { transition-property: opacity, transform, box-shadow; }

/* ---------- Responsive ---------- */

@media (max-width: 419px) {
  .brand-name { font-size: 1.1rem; }
  .brand-mark { width: 30px; height: 30px; }
  .nav-toggle-label {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  .nav-toggle { padding-inline: 10px; }
}

@media (min-width: 560px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .before-after { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .legal, .copyright { grid-column: 1 / -1; }
  .hero-actions .btn { flex: 0 1 auto; }
}

@media (min-width: 768px) {
  :root { --gutter: 32px; --header-h: 72px; }
  .nav-toggle { display: none; }
  .header-call { display: inline-flex; }
  .site-nav {
    display: block;
    position: static;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .site-nav ul { display: flex; gap: 2px; padding: 0; }
  .site-nav a { position: relative; padding: 8px 10px; font-size: 0.95rem; border: 0; border-radius: 999px; white-space: nowrap; transition: color var(--transition); }
  .site-nav a::after {
    content: "";
    position: absolute; left: 10px; right: 10px; bottom: 3px;
    height: 2px; border-radius: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms var(--ease-out);
  }
  .site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
  .site-nav a:hover, .site-nav a.is-active { background: none; color: var(--sage-dark); }
  .brand-name { font-size: 1.15rem; }
  .site-nav .nav-contact { display: none; }
  .hero-content { padding-block: 120px 72px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 48px; }
  .shop-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .shop-front { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-map iframe { height: 100%; min-height: 420px; }
  .call-bar { display: none; }
  .site-footer { padding-bottom: 40px; }
}

/* Entre 768 et 959 px : bouton « Appeler » en icône seule pour garder toute la navigation sur une ligne */
@media (min-width: 768px) and (max-width: 959px) {
  .header-call { width: 44px; height: 44px; min-height: 0; padding: 0; font-size: 0; gap: 0; }
  .header-call svg { width: 20px; height: 20px; }
}

@media (min-width: 960px) {
  .site-nav ul { gap: 4px; }
  .site-nav a { padding: 8px 12px; font-size: 1rem; }
  .brand-name { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
  .shop-grid { grid-template-columns: 1.4fr 1fr 0.8fr; }
  .shop-front { grid-column: auto; }
  .shop-front img { aspect-ratio: 4 / 5; }
  .site-nav ul { gap: 8px; }
}

/* ---------- Mouvement réduit ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
  .hero-in, .hero-img, .form-success { animation: none; opacity: 1; transform: none; }
  .souligne-trait path, .success-circle, .success-tick { animation: none; stroke-dashoffset: 0; }
  .card:hover, .step:hover, .review:hover blockquote, .card:hover img { transform: none; }
}

/* ---------- Impression ---------- */

@media print {
  .site-header, .call-bar, .hero-overlay, .contact-map, .form, .nav-toggle { display: none !important; }
  .hero { min-height: 0; color: var(--ink); }
  .hero h1 { color: var(--ink); }
  .js .reveal { opacity: 1; transform: none; }
}
