@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --ink: #24352b;
  --muted: #66736b;
  --cream: #f7f5ed;
  --paper: #fffdf8;
  --sage: #aabda4;
  --moss: #3e6048;
  --gold: #c58a42;
  --line: rgba(36, 53, 43, .12);
  --shadow: 0 20px 60px rgba(36, 53, 43, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
.home-page {
  background: linear-gradient(180deg, #dfe9d9 0%, #edf1e8 42%, #dfe9d9 100%);
  scroll-behavior: smooth;
}
html:has(body.home-page) {
  scroll-snap-type: y proximity;
}
.home-page main {
  scroll-snap-type: y proximity;
}
.home-page .hero,
.home-page #decouverte,
.home-page .section.alt {
  scroll-snap-align: start;
}
.home-intro {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fffdf8;
  background: #183425;
  animation: home-intro-exit .9s 8s ease forwards;
}
.home-intro-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 224, 160, .8) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 18%, rgba(255, 224, 160, .75) 0 2px, transparent 3px),
    radial-gradient(circle at 73% 38%, rgba(255, 255, 255, .5) 0 1px, transparent 2px),
    radial-gradient(circle at 26% 42%, rgba(255, 255, 255, .45) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 25%, rgba(166, 203, 143, .28), transparent 34%),
    linear-gradient(180deg, #224f35 0%, #183425 58%, #10281b 100%);
  animation: intro-sky-drift 8s ease-in-out infinite alternate;
}
.home-intro-sky::after {
  content: "";
  position: absolute;
  inset: 58% -10% -12%;
  background: #10281b;
  border-radius: 50% 50% 0 0;
  transform: rotate(-3deg);
  box-shadow: 0 -20px 45px rgba(112, 157, 88, .2);
}
.home-intro-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  padding: 30px 20px 80px;
  text-align: center;
  animation: home-intro-rise .8s .15s ease both;
}
.home-intro-content::before,
.home-intro-content::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d6b178;
  box-shadow: 0 0 18px 4px rgba(214, 177, 120, .6);
  animation: intro-firefly 3s ease-in-out infinite alternate;
}
.home-intro-content::before { top: 18%; left: 3%; }
.home-intro-content::after { top: 34%; right: 3%; animation-delay: 1.2s; }
.home-intro-kicker {
  color: #d6b178;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.home-intro h2 {
  margin: 14px 0 8px;
  color: #fffdf8;
  font-size: clamp(2rem, 5vw, 4rem);
}
.home-intro p {
  margin: 0;
  color: rgba(255, 253, 248, .78);
}
.home-intro-mushrooms {
  position: relative;
  height: 190px;
  margin-top: 18px;
}
.intro-mushroom {
  position: absolute;
  bottom: 14px;
  width: 86px;
  height: 132px;
  border: 0;
  border-radius: 48% 48% 36% 36%;
  padding: 0;
  background-image: url("photos/morilles-fraiches.jpg");
  background-repeat: no-repeat;
  background-size: 310% 100%;
  background-color: #3d5a36;
  cursor: pointer;
  filter: drop-shadow(0 8px 7px rgba(0, 0, 0, .28));
  transition: transform .25s ease, filter .25s ease;
  animation: intro-mushroom-sway 3.5s ease-in-out infinite;
}
.intro-mushroom:hover,
.intro-mushroom:focus-visible {
  transform: translateY(-12px) scale(1.12);
  filter: drop-shadow(0 14px 10px rgba(0, 0, 0, .36));
  outline: none;
}
.intro-mushroom.is-growing {
  animation: intro-mushroom-grow .65s ease both;
}
.intro-mushroom-one { left: 7%; transform: rotate(-8deg); background-position: 0 center; }
.intro-mushroom-two { left: 30%; bottom: 0; width: 104px; height: 158px; background-position: 50% center; animation-delay: .5s; }
.intro-mushroom-three { right: 28%; bottom: 8px; background-position: 100% center; transform: rotate(7deg); animation-delay: 1s; }
.intro-mushroom-four { right: 5%; bottom: 2px; background-position: 50% center; transform: rotate(12deg); animation-delay: 1.5s; }
.home-intro.is-leaving { animation: home-intro-exit .9s ease forwards; }
@keyframes home-intro-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes intro-sky-drift {
  from { transform: scale(1); }
  to { transform: scale(1.06) translateY(-1%); }
}
@keyframes intro-firefly {
  from { opacity: .25; transform: translate(0, 8px); }
  to { opacity: 1; transform: translate(18px, -12px); }
}
@keyframes intro-mushroom-sway {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 5px; }
}
@keyframes intro-mushroom-grow {
  0%, 100% { transform: scale(1) rotate(0); }
  45% { transform: translateY(-25px) scale(1.35) rotate(-8deg); }
}
@keyframes home-intro-exit {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  overflow: visible;
  background: rgba(247, 245, 237, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 72px; height: 72px; display: flex; align-items: center; justify-content: flex-start; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: "Playfair Display", serif; font-size: 1.15rem; font-weight: 700; }
.brand { transition: transform .3s ease; }
.brand:hover { transform: scale(1.05); }
.brand-logo { width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(0 4px 7px rgba(36,53,43,.22)); transition: transform .3s ease; }
.brand:hover .brand-logo { transform: scale(1.1) rotate(-3deg); }
.nav nav { display: flex; align-items: center; justify-content: flex-start; gap: 8px; min-width: 0; flex: 1 1 auto; margin-left: 20px; }
.nav-links { display: flex; align-items: center; justify-content: flex-start; flex: 1 1 auto; flex-wrap: nowrap; gap: 1px; min-width: 0; overflow: visible; list-style: none; padding: 0; margin: 0; }
.language-switcher { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 2px; margin-left: 8px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); }
.language-switcher a { display: inline-flex; align-items: center; gap: 4px; border-radius: 999px; padding: 6px 8px; color: var(--muted); background: transparent; font: inherit; font-size: .78rem; font-weight: 700; cursor: pointer; transition: transform .25s, color .25s, background .25s; }
.language-switcher a:hover { transform: scale(1.18); }
.language-switcher a.active, .language-switcher a[aria-current="page"], .language-switcher a:hover { color: var(--ink); background: #dcebd8; }
.language-switcher a.active::before, .language-switcher a[aria-current="page"]::before { content: ""; width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: #2f9b5c; box-shadow: 0 0 0 3px rgba(84,184,121,.22); }
.language-switcher-floating {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1002;
  margin: 0;
  box-shadow: 0 8px 24px rgba(36, 53, 43, .12);
}
.nav-links a { display: inline-block; padding: 10px 11px; border-radius: 30px; color: var(--muted); font-size: .82rem; font-weight: 600; white-space: nowrap; transition: transform .25s, color .25s, background .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: #e6eee2; }
.nav-links a:hover { transform: scale(1.08); }
.menu-toggle { display: none; border: 0; background: none; color: var(--ink); font-size: 1.7rem; }
.nav-mushroom { display: inline-grid; place-items: center; width: 34px; height: 34px; font-size: 1.55rem; cursor: pointer; filter: drop-shadow(0 2px 3px rgba(36,53,43,.2)); animation: nav-arrive .7s ease both, mushroom-bob 2.4s .8s ease-in-out infinite; transition: transform .25s ease; }
.nav-mushroom:hover { transform: scale(1.25) rotate(-8deg); }

.hero { position: relative; min-height: calc(100svh - 72px); display: grid; align-items: center; overflow: hidden; background: #183425; }
.hero::before { content: ""; position: absolute; inset: 0; background-color: #183425; background-image: linear-gradient(90deg, rgba(14, 30, 20, .9) 0%, rgba(14, 30, 20, .68) 47%, rgba(14, 30, 20, .36) 100%), url("https://images.unsplash.com/photo-1504545102780-26774c1e5f3c?auto=format&fit=crop&w=2000&q=85"); background-position: center; background-size: cover; transform: scale(1.03); }
.hero-home::after { content: ""; position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.7) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(90deg, black, transparent 75%); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 50px; }
.hero-content { max-width: 670px; color: #fff; padding: 100px 0; animation: rise .8s ease both; }
.brand, .nav-links { animation: nav-arrive .7s ease both; }
.nav-links { animation-delay: .22s; }
.eyebrow { display: inline-flex; align-items: center; gap: 5px; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 700; }
.eyebrow::before { content: ""; width: 16px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.12; margin: 0 0 18px; }
h1 { font-size: clamp(3.2rem, 8vw, 6.4rem); letter-spacing: -.04em; }
.hero h1 { margin-top: 18px; margin-bottom: 24px; }
.hero h1 em { color: #ffe0a0; font-style: normal; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
h2 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
h3 { font-size: 1.5rem; }
.hero p { max-width: 560px; margin: 0 0 30px; color: #fff; font-size: 1.08rem; font-weight: 600; text-shadow: 0 2px 12px rgba(0,0,0,.42); }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.actions .button { animation: button-arrive .65s ease both; }
.actions .button:nth-of-type(2) { animation-delay: .12s; }
.actions .button:hover { animation: none; transform: translateY(-3px) scale(1.12); }
.hero-mushroom { display: grid; place-items: center; width: 42px; height: 42px; font-size: 1.8rem; cursor: pointer; filter: drop-shadow(0 3px 6px rgba(0,0,0,.35)); animation: pop-in .7s .55s ease both, mushroom-bob 2.4s 1.3s ease-in-out infinite; }
.mushroom-launch { position: relative; z-index: 30; animation: mushroom-launch 1.8s cubic-bezier(.2,.8,.3,1) both !important; }
.photo-launch-1, .photo-launch-2, .photo-launch-3, .photo-launch-4 { position: relative; z-index: 30; animation-duration: 1.8s; animation-timing-function: cubic-bezier(.2,.8,.3,1); animation-fill-mode: both; animation-iteration-count: 1; }
.photo-launch-1 { animation-name: photo-launch-left; }
.photo-launch-2 { animation-name: photo-launch-right; }
.photo-launch-3 { animation-name: photo-launch-spin; }
.photo-launch-4 { animation-name: photo-launch-up; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 7px; padding: 13px 20px; color: #fff; background: var(--moss); font-weight: 700; font-size: .9rem; transition: .25s; cursor: pointer; }
.button:hover { transform: translateY(-2px) scale(1.07); box-shadow: 0 10px 22px rgba(62,96,72,.25); }
.button.light { color: var(--ink); background: #fff; }
.glass-button { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.glass-button:hover { background: rgba(255,255,255,.18); }
.button.outline { color: var(--moss); background: transparent; border-color: var(--moss); }
.button.outline:hover { color: #fff; background: var(--moss); }
.hero-proof { display: flex; align-items: center; gap: 10px; margin-top: 28px; color: rgba(255,255,255,.7); font-size: .78rem; }
.proof-dot { width: 8px; height: 8px; border-radius: 50%; background: #54b879; box-shadow: 0 0 0 5px rgba(84,184,121,.18); animation: pulse-green 2s infinite; }
.hero-side { position: relative; min-height: 370px; display: grid; place-items: center; animation: float-in 1s .2s ease both; }
.season-card { position: relative; isolation: isolate; width: min(100%, 310px); min-height: 330px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; color: #fff; background: #1d3827; box-shadow: 0 25px 70px rgba(0,0,0,.3); transform: rotate(3deg); transition: transform .35s ease, box-shadow .35s ease; }
.season-card:hover { transform: scale(1.16) rotate(3deg); box-shadow: 0 40px 95px rgba(0,0,0,.48); z-index: 3; }
.season-card::after { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .62; background: url("logos/logo-morilles-canourgue.png") center/cover; }
.season-card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(20,34,24,.25), rgba(20,34,24,.62)); }
.season-card .kicker { display: inline-block; margin-bottom: 18px; color: #e5bd7d; }
.season-card strong { display: block; margin-bottom: 10px; font-family: "Playfair Display", serif; font-size: 2rem; line-height: 1.05; }
.season-card p { margin: 0 0 23px; color: #fff; font-size: .9rem; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.season-card a { color: #f0c77f; font-size: .82rem; font-weight: 700; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.season-logo { display: block; width: 72px; height: 72px; margin: -10px auto 18px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,.42)); }
.hero-stamp { position: absolute; right: 5%; bottom: 16%; display: grid; place-items: center; width: 105px; height: 105px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: #fff; background: rgba(14,30,20,.25); text-align: center; transform: rotate(-12deg); transition: transform .3s ease, background .3s ease; }
.hero-stamp:hover { transform: scale(1.08) rotate(-12deg); background: rgba(14,30,20,.48); }
.hero-side.card-focus .hero-stamp { transform: scale(1.16) rotate(-12deg); background: rgba(14,30,20,.48); }
.hero-stamp span { font-family: "Playfair Display", serif; font-size: 1.35rem; font-weight: 700; }
.hero-stamp small { color: rgba(255,255,255,.72); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.2; }
.hero-orb { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; pointer-events: none; }
.orb-one { width: 420px; height: 420px; right: -130px; top: -170px; }
.orb-two { width: 230px; height: 230px; left: 50%; bottom: -160px; transform: translateX(-50%); }
.scroll-cue { position: absolute; z-index: 2; bottom: 10px; left: 50%; display: block; width: 110px; height: 32px; padding: 15px 26px; overflow: hidden; background: transparent; cursor: pointer; pointer-events: auto; transform: translateX(-50%); }
.scroll-cue::before { content: ""; position: absolute; inset: 0; border-radius: 999px; }
.scroll-cue i { display: block; width: 16px; height: 1px; margin: 15px auto 0; background: #d6b178; animation: scroll-line 1.8s infinite; }
.home-ribbon { display: block; overflow: hidden; border-bottom: 1px solid var(--line); background: #dce8d7; cursor: pointer; }
.ribbon-track { display: flex; justify-content: space-between; gap: 25px; padding: 14px 0; color: var(--moss); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }

.section { padding: 100px 0; }
.home-page #decouverte,
.home-page .section.alt {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: visible;
}
.home-page #decouverte {
  background: linear-gradient(180deg, #f0f4ec 0%, #dfe9d9 100%);
}
.section.alt { background: linear-gradient(180deg, #dfe9d9 0%, #d4e2cf 100%); }
.promise-photo { position: absolute; z-index: 0; width: 250px; height: 250px; border: 5px solid rgba(197,138,66,.85); border-radius: 50%; background-position: center; background-size: cover; box-shadow: 0 18px 45px rgba(36,53,43,.22); cursor: pointer; transition: transform .3s ease, box-shadow .3s ease; }
.promise-photo:hover { transform: scale(1.08); box-shadow: 0 25px 55px rgba(36,53,43,.3); }
.promise-photo-one { top: -285px; left: 11%; width: 190px; height: 190px; background-image: url("logos/logo.png"); }
.promise-photo-two { top: -120px; right: 11%; width: 220px; height: 220px; background-image: url("logos/immage.png"); }
.section.alt .container { position: relative; z-index: 1; }
.section.alt .section-heading { position: relative; z-index: 2; }
.section-heading { max-width: 680px; margin-bottom: 45px; }
.section-heading p { color: var(--muted); max-width: 580px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.photo-card { min-height: 450px; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow); background-color: #aabda4; background-image: url("photos/sainte-enimie.jpg"); background-position: center; background-size: cover; transition: transform .35s ease, box-shadow .35s ease; }
.photo-card:hover { transform: scale(1.04); box-shadow: 0 28px 65px rgba(36,53,43,.2); }
.kicker { color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.lead { color: var(--muted); font-size: 1.05rem; }
.quote { margin: 28px 0 0; padding: 20px 0 20px 22px; border-left: 3px solid var(--gold); color: var(--moss); font-family: "Playfair Display", serif; font-size: 1.25rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { position: relative; padding: 30px; overflow: hidden; border: 1px solid rgba(62,96,72,.1); border-radius: 18px; background: var(--paper); box-shadow: 0 12px 28px rgba(36,53,43,.06); transition: transform .25s, box-shadow .25s; }
.card::after { content: ""; position: absolute; right: -30px; bottom: -55px; width: 145px; height: 145px; border-radius: 50%; background: #edf4e9; }
.card:hover { transform: translateY(-8px); box-shadow: 0 22px 38px rgba(36,53,43,.12); }
.card-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 22px; border-radius: 16px; background: #e8f1e3; font-size: 1.7rem; }
.card p, .card li { color: var(--muted); font-size: .94rem; }
.card ul { padding-left: 18px; }
.card a { position: relative; z-index: 1; display: inline-flex; gap: 7px; margin-top: 13px; color: var(--moss); font-size: .82rem; font-weight: 700; }

.page-hero { padding: 95px 0 85px; background: radial-gradient(circle at 85% 20%, #d9e4d1, transparent 32%), #edf1e8; }
.page-hero p { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.story-intro { position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(237,241,232,.96), rgba(237,241,232,.72)), url("photos/sainte-enimie.jpg") center/cover; }
.story-list { background: var(--paper); }
.story-block { padding: 105px 0; }
.story-block-alt { background: #edf1e8; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story-grid.reverse .story-copy { order: 2; }
.story-grid.reverse .story-image { order: 1; }
.story-copy { max-width: 590px; }
.story-copy h2 { margin-top: 8px; font-size: clamp(2rem, 4vw, 3.2rem); }
.story-copy p { color: var(--muted); font-size: 1rem; }
.story-copy strong { color: var(--moss); }
.story-number { display: inline-grid; place-items: center; width: 43px; height: 43px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-weight: 700; }
.story-highlight { margin-top: 28px; color: var(--moss) !important; font-family: "Playfair Display", serif; font-size: 1.45rem !important; font-weight: 700; }
.story-copy blockquote { margin: 28px 0 0; padding: 20px 0 20px 22px; border-left: 3px solid var(--gold); color: var(--moss); font-family: "Playfair Display", serif; font-size: 1.22rem; }
.story-image { min-height: 420px; border-radius: 20px; background-position: center; background-size: cover; box-shadow: var(--shadow); transition: transform .35s ease, box-shadow .35s ease; }
.story-image:hover { transform: scale(1.04); box-shadow: 0 28px 65px rgba(36,53,43,.2); }
.story-image-forest { background-image: url("photos/histoire-gevaudan.png"); }
.story-image-landscape { background-image: url("photos/histoire-champignons.jpg"); }
.story-image-spring { background-image: url("photos/histoire-printemps.jpg"); }
.story-image-morel { background-image: url("logos/logo-morilles-canourgue.png"); background-size: cover; }
.story-image-hands { background-image: url("photos/histoire-connaissance.jpg"); }
.story-image-mountain { background-image: url("photos/histoire-interessante.jpg"); }
.story-image-path { background-image: url("photos/histoire-cueillette.jpg"); }
.story-image-earth { background-image: url("photos/histoire-terroir.jpg"); }
.story-image-table { background-image: url("photos/histoire-gastronomie.png"); }
.story-image-basket { background-image: url("photos/histoire-continue.png"); }
.story-image-village { background-image: url("photos/histoire-gevaudan-morilles.jpg"); }
.story-image-light { background-image: url("photos/histoire-nature.jpg"); }
.story-image-logo { background: url("logos/logo-la-morille-canourguaise.png") center/contain no-repeat, #dfe9d9; }
.story-final { color: var(--ink); background: #dfe9d9; }
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product { overflow: hidden; border-radius: 12px; background: var(--paper); box-shadow: var(--shadow); transition: transform .35s ease, box-shadow .35s ease; }
.product:hover { transform: scale(1.03); box-shadow: 0 24px 55px rgba(36,53,43,.16); }
.product-clickable { cursor: pointer; }
.product-coming { opacity: .72; }
.product-image { height: 230px; background: center/cover; }
.product-image-morels { background-image: url("photos/morilles-fraiches.jpg"); }
.product-image-coming { background-image: url("logos/immage.png"); background-position: center; background-size: cover; }
.product-body { padding: 24px; }
.product-body p { color: var(--muted); font-size: .9rem; }
.price { display: block; margin: 17px 0; color: var(--moss); font-size: 1.2rem; font-weight: 700; }
.recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.recipe-card { overflow: hidden; border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.recipe-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(36,53,43,.16); }
.recipe-card-image { display: block; height: 230px; background: center/cover; cursor: pointer; }
.recipe-card-body { padding: 25px; }
.recipe-card-body h2 { font-size: clamp(1.55rem, 2.6vw, 2.25rem); }
.recipe-card-body p { color: var(--muted); }
.recipe-card-body .button { margin-top: 12px; }
.recipe-image-morel { background-image: url("photos/morillealacreme.png"); }
.recipe-card-image.recipe-image-morel {
  background-image: url("photos/couverture-morilles-creme.jpg");
}
.recipe-card-image.recipe-image-eggs { background-image: url("photos/couverture-oeufs-morilles.jpg"); }
.recipe-card-image.recipe-image-risotto { background-image: url("photos/couverture-risotto-morilles.jpg"); }
.recipe-card-image.recipe-image-gastronomy { background-image: url("photos/couverture-oeufs-morilles.jpg"); }
.recipe-card-image.recipe-image-forest { background-image: url("photos/couverture-risotto-morilles.jpg"); }
.recipe-card-image[href*="morilles-creme.html"] {
  background-image: url("photos/couverture-morilles-creme-nouvelle.jpg");
}
.recipe-card-image[href*="oeufs-morilles.html"] {
  background-image: url("photos/couverture-oeufs-morilles-nouvelle.jpg");
}
.recipe-card-image[href*="risotto-morilles.html"] {
  background-image: url("photos/couverture-risotto-morilles-nouveau.jpg");
}
.recipe-card-image[href*="aligot-maroilles.html"] {
  background-image: url("photos/couverture-aligot-maroilles.jpg");
}
.recipe-card-image[href*="filet-mignon-veau-morilles.html"] {
  background-image: url("photos/couverture-filet-mignon-veau-morilles.jpg");
}
.recipe-card-image[href*="supreme-pintade-morilles-vin-jaune.html"] {
  background-image: url("photos/couverture-supreme-pintade-morilles-vin-jaune.jpg");
}
.recipe-card-image[href*="omelette-morilles.html"] {
  background-image: url("photos/couverture-omelette-morilles.jpg");
}
.recipe-card-image[href*="grenadins-veau-morilles.html"] {
  background-image: url("photos/couverture-grenadins-veau-morilles.jpg");
}
.recipe-card-image[href*="morilles-vin-jaune-creme.html"] {
  background-image: url("photos/couverture-morilles-vin-jaune-creme.jpg");
}
.recipe-card-image[href*="feuillete-asperges-morilles.html"] {
  background-image: url("photos/couverture-feuillete-asperges-morilles.jpg");
}
.recipe-card-image[href*="gratin-lasagnes-morilles-parmesan.html"] {
  background-image: url("photos/couverture-gratin-lasagnes-morilles-parmesan.jpg");
}
.recipe-card-image[href*="croutes-morilles.html"] {
  background-image: url("photos/couverture-croutes-morilles.jpg");
}
.recipe-card-image[href*="noix-saint-jacques-morilles.html"] {
  background-image: url("photos/couverture-noix-saint-jacques-morilles.jpg");
}
.recipe-card-image[href*="mille-feuille-pommes-terre-morilles-truffe.html"] {
  background-image: url("photos/couverture-mille-feuille-pommes-terre-morilles-truffe.jpg");
}
.recipe-card-image[href*="boeuf-creme-morilles.html"] {
  background-image: url("photos/couverture-boeuf-creme-morilles.jpg");
}
.recipe-card-image[href*="poularde-morilles-cocotte.html"] {
  background-image: url("photos/couverture-poularde-morilles-cocotte.jpg");
}
.recipe-card-image[href*="asperges-creme-morilles.html"] {
  background-image: url("photos/couverture-asperges-creme-morilles.jpg");
}
.recipe-card-image[href*="beignets-pommes-terre-morilles.html"] {
  background-image: url("photos/couverture-beignets-pommes-terre-morilles.jpg");
}
.recipe-card-image[href*="poulet-fermier-morilles-vin-jaune.html"] {
  background-image: url("photos/couverture-poulet-fermier-morilles-vin-jaune.jpg");
}
.recipe-card-image[href*="quiche-morilles.html"] {
  background-image: url("photos/couverture-quiche-morilles.jpg");
}
.recipe-card-image[href*="poisson-crunchy-saveurs-boisees.html"] {
  background-image: url("photos/couverture-poisson-crunchy-saveurs-boisees.jpg");
}
.recipe-grid .recipe-card:nth-child(1) .recipe-card-image {
  background-image: url("photos/couverture-morilles-creme-nouvelle.jpg");
}
.recipe-grid .recipe-card:nth-child(2) .recipe-card-image {
  background-image: url("photos/couverture-oeufs-morilles-nouvelle.jpg");
}
.recipe-grid .recipe-card:nth-child(3) .recipe-card-image {
  background-image: url("photos/couverture-risotto-morilles-nouveau.jpg");
}
.recipe-image-gastronomy { background-image: url("photos/histoire-gastronomie.png"); }
.recipe-image-forest { background-image: url("photos/delaforetalagastronomie.png"); }
.recipe-image-eggs { background-image: url("photos/oeufscocottemorilles.jpg"); }
.recipe-image-risotto { background-image: url("photos/risottoauxmorilles.jpg"); }
.recipe-detail-image[aria-label*="Œufs"],
.recipe-detail-image[aria-label*="Huevos"],
.recipe-detail-image[aria-label*="eggs"] { background-image: url("photos/oeufscocottemorilles.jpg"); }
.recipe-detail-image[aria-label*="Risotto"] { background-image: url("photos/risottoauxmorilles.jpg"); }
.recipe-image-logo { background-image: url("logos/logo-la-morille-canourguaise.png"); background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #eef2e8; }
.recipe-detail-image.recipe-image-logo[aria-label*="Morilles à la crème"],
.recipe-detail-image.recipe-image-logo[aria-label*="Morilles a la crema"],
.recipe-detail-image.recipe-image-logo[aria-label*="Morel cream"] {
  background-image: url("photos/couverture-morilles-creme.jpg");
}
.recipe-detail-image.recipe-image-logo[aria-label*="Oeufs"],
.recipe-detail-image.recipe-image-logo[aria-label*="Huevos"],
.recipe-detail-image.recipe-image-logo[aria-label*="eggs"] {
  background-image: url("photos/couverture-oeufs-morilles.jpg");
}
.recipe-detail-image.recipe-image-logo[aria-label*="Risotto"],
.recipe-detail-image.recipe-image-logo[aria-label*="Rizotto"] {
  background-image: url("photos/couverture-risotto-morilles.jpg");
}

.recipe-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: start; }
.recipe-detail-image { min-height: 500px; border-radius: 22px; background: center/cover; box-shadow: var(--shadow); }
.recipe-detail-image.recipe-image-morel { background-image: url("photos/morillealacreme.png"); }
.recipe-detail-image.recipe-image-forest { background-image: url("photos/risottoauxmorilles.jpg"); }
.recipe-detail-image[aria-label*="Aligot"] { background-image: url("photos/detail-aligot-maroilles.jpg"); }
.recipe-detail-image[aria-label*="Filet mignon"],
.recipe-detail-image[aria-label*="Veal tenderloin"] { background-image: url("photos/detail-filet-mignon-veau-morilles.jpg"); }
.recipe-detail-image[aria-label*="Suprême"],
.recipe-detail-image[aria-label*="Supreme"] { background-image: url("photos/detail-supreme-pintade-morilles.webp?v=20260912-1000"); }
.recipe-detail-photo {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #eef2e8;
}
.recipe-detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-detail-image[aria-label*="Omelette"] { background-image: url("photos/detail-omelette-morilles.webp"); }
.recipe-detail-image[aria-label*="Grenadins"],
.recipe-detail-image[aria-label*="Veal medallions"] { background-image: url("photos/detail-grenadins-veau-morilles.jpg"); }
.recipe-detail-image[aria-label*="vin jaune"],
.recipe-detail-image[aria-label*="yellow wine"] { background-image: url("photos/detail-morilles-vin-jaune.webp"); }
.recipe-detail-image[aria-label*="Feuilleté"],
.recipe-detail-image[aria-label*="Puff pastry"] { background-image: url("photos/detail-feuillete-asperges-morilles.webp"); }
.recipe-detail-image[aria-label*="Gratin"],
.recipe-detail-image[aria-label*="Lasagna"] { background-image: url("photos/detail-gratin-lasagnes-morilles.webp"); }
.recipe-detail-image[aria-label*="Croûtes"],
.recipe-detail-image[aria-label*="Crostini"] { background-image: url("photos/detail-croutes-morilles.jpg"); }
.recipe-detail-copy { max-width: 600px; }
.recipe-detail-copy h2 { margin-top: 28px; font-size: 1.8rem; }
.recipe-detail-copy p, .recipe-detail-copy li { color: var(--muted); }
.recipe-detail-copy ul, .recipe-detail-copy ol { padding-left: 22px; }
.recipe-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.recipe-meta span { padding: 8px 13px; border-radius: 999px; color: var(--moss); background: #e7eee2; font-size: .8rem; font-weight: 700; }
.button-secondary { margin-left: 8px; color: var(--moss); background: #e7eee2; }
.button-disabled { color: var(--muted); background: #e5e8df; cursor: not-allowed; }
.notice { padding: 18px 22px; border-radius: 8px; color: #70542c; background: #f9edcf; font-size: .9rem; }
.account-layout { display: grid; place-items: center; }
.account-card { width: min(100%, 560px); margin-inline: auto; padding: 34px; border-radius: 14px; background: var(--paper); box-shadow: var(--shadow); }
.account-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.account-tabs .button { padding: 10px 14px; font-size: .8rem; }
.account-form-heading { display: flex; align-items: center; gap: 14px; margin: 8px 0 10px; }
.account-form-heading img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 7px 11px rgba(36,53,43,.16)); }
.account-form-heading h2 { margin: 4px 0 0; color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.2rem); }
.account-form-intro { margin: 0 0 26px; color: var(--muted); font-size: .92rem; }
.account-card form { display: grid; gap: 18px; }
.account-card label { display: grid; gap: 7px; }
.account-card .button { justify-self: start; }
.account-card, .account-dashboard, .admin-card { border: 1px solid rgba(197,138,66,.22); }
.verification-modal[hidden] { display: none; }
.verification-modal { position: fixed; z-index: 30; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(23,38,28,.72); }
.verification-modal-card { width: min(100%, 520px); padding: 38px; border: 1px solid rgba(197,138,66,.45); border-radius: 20px; background: linear-gradient(145deg, #fffdf8, #edf1e8); box-shadow: 0 25px 80px rgba(0,0,0,.28); }
.verification-modal-card h2 { margin-top: 10px; font-size: clamp(2rem, 5vw, 3rem); }
.verification-modal-card p { color: var(--muted); }
.verification-modal-card form { display: grid; gap: 16px; margin-top: 22px; }
.account-card { background: linear-gradient(145deg, rgba(255,253,248,.98), rgba(237,241,232,.92)); }
.account-card input, .account-card select, .account-dashboard input, .account-dashboard select { border: 1px solid rgba(62,96,72,.2); border-radius: 12px; background: rgba(255,255,255,.72); transition: border-color .2s, box-shadow .2s, transform .2s; }
.account-card input:focus, .account-dashboard input:focus, .account-dashboard select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(197,138,66,.13); transform: translateY(-1px); }
.account-dashboard { padding: 34px; border-radius: 18px; background: rgba(255,253,248,.88); box-shadow: var(--shadow); }
.dashboard-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 28px; }
.dashboard-head h2 { margin: 8px 0 0; }
.dashboard-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.dashboard-tab { border: 0; border-radius: 999px; padding: 11px 16px; color: var(--muted); background: transparent; font: inherit; font-weight: 700; cursor: pointer; }
.dashboard-tab.active, .dashboard-tab:hover { color: var(--ink); background: #e5eee0; }
.dashboard-panel { display: none; }
.dashboard-panel.active { display: block; animation: rise .35s ease both; }
.profile-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.profile-actions .notice { margin: 0; }
.order-list { display: grid; gap: 12px; }
.order-card, .admin-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.order-card span, .admin-row span { color: var(--muted); }
.order-card b { color: var(--gold); font-size: .8rem; text-transform: uppercase; }
.order-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.empty-state { padding: 25px; border-radius: 12px; color: var(--muted); background: #edf1e8; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.admin-card { padding: 28px; border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); }
.admin-card h2 { margin: 12px 0 24px; color: var(--moss); }
.admin-card > div { display: grid; gap: 10px; }
.payment-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: stretch; }
.payment-visual, .payment-form { padding: 34px; border: 1px solid rgba(197,138,66,.22); border-radius: 18px; box-shadow: var(--shadow); }
.payment-visual { color: #fff; background: linear-gradient(145deg, #183425, #496b52); }
.payment-visual h2 { margin-top: 55px; }
.payment-visual p { color: rgba(255,255,255,.78); }
.payment-visual strong { display: block; margin-top: 30px; color: #f0c77f; font-size: 1.2rem; }
.payment-form { background: var(--paper); }
.payment-form h2 { font-size: 2rem; }
.payment-options { display: grid; gap: 12px; margin: 24px 0; }
.payment-options label { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: #fff; cursor: pointer; }
.payment-options label:has(input:checked) { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,138,66,.13); }
.payment-options input { accent-color: var(--moss); }
.payment-options span { display: grid; gap: 2px; font-weight: 700; }
.payment-options small { color: var(--muted); font-weight: 400; }
.product-detail { min-height: 560px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.product-detail-image { min-height: 460px; border-radius: 20px; background: url("photos/morilles-fraiches.jpg") center/cover; box-shadow: var(--shadow); }
.product-detail p { max-width: 600px; color: var(--muted); }
.product-detail .button { margin: 8px 8px 0 0; }
.product-detail .button:disabled { opacity: .55; cursor: not-allowed; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; }
.payment-box { margin-top: 55px; padding: 30px; border-radius: 14px; background: #edf1e8; }
.payment-box p { color: var(--muted); }
.payment-methods { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.payment-methods span { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--moss); font-weight: 700; background: #fff; }
.shop-modal[hidden], .cart-panel[hidden] { display: none; }
.shop-modal { position: fixed; z-index: 20; inset: 0; display: grid; place-items: center; padding: 20px; }
.shop-modal-backdrop { position: absolute; inset: 0; background: rgba(21,34,26,.72); }
.shop-modal-card { position: relative; display: grid; grid-template-columns: minmax(220px, .85fr) 1.15fr; max-width: 760px; overflow: hidden; border-radius: 16px; background: var(--paper); box-shadow: 0 25px 80px rgba(0,0,0,.3); }
.modal-product-image { min-height: 360px; background: url("photos/morilles-fraiches.jpg") center/cover; }
.shop-modal-card > div:last-child { padding: 38px; }
.shop-modal-card p { color: var(--muted); }
.modal-note { font-size: .88rem; font-style: italic; }
.modal-close { border: 0; color: var(--moss); background: transparent; font-size: 1.8rem; cursor: pointer; }
.shop-modal-card > .modal-close { position: absolute; z-index: 1; top: 10px; right: 16px; }
.cart-panel { position: fixed; z-index: 15; right: 22px; bottom: 22px; width: min(360px, calc(100% - 44px)); padding: 25px; border-radius: 14px; background: var(--paper); box-shadow: 0 20px 60px rgba(21,34,26,.25); }
.cart-panel-head { display: flex; justify-content: space-between; align-items: center; }
.cart-panel-head h2 { margin: 0; font-size: 1.55rem; }
.cart-visual { display: grid; justify-items: center; gap: 7px; margin: 4px 0 18px; padding: 18px 12px; border-radius: 14px; color: #f4d28f; background: linear-gradient(145deg, #183425, #496b52); text-align: center; }
.cart-visual img { width: 74px; height: 74px; object-fit: contain; }
.cart-visual span { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cart-guest-message { display: grid; gap: 7px; margin-bottom: 16px; padding: 15px; border: 1px solid rgba(197,138,66,.3); border-radius: 12px; color: var(--muted); background: #f7f1df; font-size: .86rem; }
.cart-guest-message strong { color: var(--ink); }
.cart-guest-message .button { justify-self: start; margin-top: 4px; padding: 10px 14px; }
.cart-guest-message[hidden] { display: none; }
.cart-panel .button { margin-top: 10px; }
body.modal-open { overflow: hidden; }

.chatbot { position: fixed; z-index: 30; right: 24px; bottom: 24px; font-family: "DM Sans", sans-serif; }
.chatbot-toggle { display: grid; place-items: center; width: 70px; height: 70px; padding: 7px; border: 3px solid var(--gold); border-radius: 50%; background: var(--moss); box-shadow: 0 10px 28px rgba(36,53,43,.3); cursor: pointer; transition: transform .25s, box-shadow .25s; }
.chatbot-toggle:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(36,53,43,.4); }
.chatbot-toggle img { width: 100%; height: 100%; object-fit: contain; }
.chatbot-toggle > span { font-size: 2.25rem; line-height: 1; }
.chatbot-window { position: absolute; right: 0; bottom: 86px; display: grid; grid-template-rows: auto 1fr auto; width: min(390px, calc(100vw - 32px)); height: min(620px, calc(100vh - 120px)); overflow: hidden; border: 1px solid rgba(197,138,66,.42); border-radius: 22px; background: #15251c; box-shadow: 0 22px 70px rgba(21,34,26,.35); }
.chatbot-window[hidden] { display: none; }
.chatbot-header { display: flex; align-items: center; gap: 11px; padding: 15px 18px; color: #fff; background: #1e3527; border-bottom: 1px solid rgba(197,138,66,.3); }
.chatbot-header img { width: 52px; height: 52px; object-fit: contain; }
.chatbot-brand-mushroom { display: grid; place-items: center; width: 52px; height: 52px; font-size: 2rem; }
.chatbot-header strong, .chatbot-header span { display: block; }
.chatbot-header strong { font-family: "Playfair Display", serif; font-size: 1rem; }
.chatbot-header span { margin-top: 2px; color: rgba(255,255,255,.7); font-size: .72rem; }
.chatbot-header i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #57c781; }
.chatbot-close { margin-left: auto; border: 1px solid rgba(197,138,66,.5); border-radius: 50%; color: #f2d08d; background: transparent; font-size: 1.35rem; line-height: 30px; width: 32px; height: 32px; cursor: pointer; }
.chatbot-body { padding: 18px 16px; overflow-y: auto; background: #17221c; }
.chatbot-message { max-width: 94%; margin-bottom: 14px; padding: 13px 15px; border: 1px solid rgba(197,138,66,.16); border-radius: 16px 16px 16px 5px; color: #f8f5ed; background: #24382a; font-size: .88rem; line-height: 1.6; }
.chatbot-message-user { margin-left: auto; border-radius: 16px 16px 5px 16px; color: var(--ink); background: #f1d28f; }
.chatbot-welcome-logo { display: block; width: 64px; height: 64px; margin: 8px auto 12px; object-fit: contain; }
.chatbot-suggestions { display: flex; flex-wrap: wrap; gap: 9px; }
.chatbot-suggestions button { padding: 9px 12px; border: 1px solid rgba(197,138,66,.6); border-radius: 999px; color: #f6d894; background: transparent; font: inherit; font-size: .76rem; cursor: pointer; }
.chatbot-suggestions button:hover { color: var(--ink); background: #f1d28f; }
.chatbot-conversation { margin-top: 16px; }
.chatbot-conversation:empty { display: none; }
.chatbot-form { display: flex; gap: 10px; padding: 13px 15px; border-top: 1px solid rgba(197,138,66,.28); background: #15251c; }
.chatbot-form input { min-width: 0; border-color: rgba(197,138,66,.65); border-radius: 999px; color: #fff; background: #202329; }
.chatbot-form input:focus { color: #fff; border-color: #f0c76f; background: #202329; box-shadow: 0 0 0 3px rgba(240,199,111,.18); transform: none; }
.chatbot-form input::placeholder { color: rgba(255,255,255,.55); }
.chatbot-form button { flex: 0 0 46px; border: 0; border-radius: 50%; color: var(--ink); background: #f0c76f; font-size: 1.3rem; cursor: pointer; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 35px; }
.contact-info { padding: 35px; border-radius: 12px; color: #fff; background: var(--moss); }
.contact-info p { color: rgba(255,255,255,.74); }
.contact-list { list-style: none; padding: 0; margin: 35px 0 0; }
.contact-list li { display: flex; gap: 12px; margin: 20px 0; }
.contact-form { position: relative; overflow: hidden; padding: 38px; border: 1px solid rgba(62,96,72,.14); border-radius: 24px; background: linear-gradient(145deg, rgba(255,253,248,.98), rgba(237,241,232,.92)); box-shadow: 0 22px 60px rgba(36,53,43,.12); }
.contact-form::before { content: ""; position: absolute; width: 220px; height: 220px; right: -105px; top: -105px; border: 1px solid rgba(197,138,66,.3); border-radius: 50%; box-shadow: 0 0 0 18px rgba(197,138,66,.05), 0 0 0 36px rgba(197,138,66,.035); pointer-events: none; }
.contact-form-heading { position: relative; display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.contact-form-logo { flex: 0 0 58px; width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(36,53,43,.18)); }
.contact-form-heading h2 { margin: 4px 0 0; color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.25rem); }
.contact-form-status { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-form-status i { width: 7px; height: 7px; border-radius: 50%; background: #57b97a; box-shadow: 0 0 0 4px rgba(87,185,122,.14); }
.contact-form-intro { position: relative; max-width: 590px; margin: 0 0 28px 58px; color: var(--muted); font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 8px; color: var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .02em; }
input, textarea, select { width: 100%; border: 1px solid rgba(62,96,72,.18); border-radius: 12px; padding: 14px 15px; color: var(--ink); background: rgba(255,255,255,.72); font: inherit; transition: border-color .2s, box-shadow .2s, background .2s, transform .2s; }
input::placeholder, textarea::placeholder { color: #98a39b; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(197,138,66,.13); transform: translateY(-1px); }
textarea { min-height: 150px; resize: vertical; }
.full { grid-column: 1 / -1; }
.contact-submit { text-align: center; padding-top: 10px; }
.contact-submit .button { min-width: 220px; border-radius: 999px; box-shadow: 0 10px 24px rgba(62,96,72,.18); }
.contact-submit .button span { font-size: 1.1rem; transition: transform .2s; }
.contact-submit .button:hover span { transform: translate(3px, -3px); }

footer { padding: 32px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; }
.footer-row a { color: var(--moss); font-weight: 600; }
.reveal { animation: rise .7s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nav-arrive { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pop-in { from { opacity: 0; transform: scale(.65); } to { opacity: 1; transform: scale(1); } }
@keyframes button-arrive { from { opacity: 0; transform: translateY(15px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes mushroom-bob { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-5px) rotate(4deg); } }
@keyframes mushroom-launch {
  0% { transform: translate(0, 0) rotate(0) scale(1); }
  18% { transform: translate(0, -18px) rotate(-12deg) scale(1.08); }
  34% { transform: translate(14px, 0) rotate(14deg) scale(1); }
  50% { transform: translate(24px, -12px) rotate(-10deg) scale(1.05); }
  68% { transform: translate(42px, 0) rotate(12deg) scale(1); }
  100% { transform: translate(110vw, -110vh) rotate(720deg) scale(.65); }
}
@keyframes photo-launch-left {
  0% { transform: translate(0, 0) rotate(0) scale(1); }
  18% { transform: translate(0, -24px) rotate(-4deg) scale(1.03); }
  34% { transform: translate(-26px, 0) rotate(-8deg) scale(1); }
  50% { transform: translate(-48px, -30px) rotate(-14deg) scale(1.05); }
  68% { transform: translate(-72px, 0) rotate(-20deg) scale(1); }
  100% { transform: translate(-110vw, -90vh) rotate(-360deg) scale(.75); }
}
@keyframes photo-launch-right {
  0% { transform: translate(0, 0) rotate(0) scale(1); }
  20% { transform: translate(0, -30px) rotate(5deg) scale(1.04); }
  40% { transform: translate(30px, 0) rotate(10deg) scale(1); }
  58% { transform: translate(55px, -22px) rotate(16deg) scale(1.05); }
  75% { transform: translate(85px, 0) rotate(22deg) scale(1); }
  100% { transform: translate(110vw, -70vh) rotate(420deg) scale(.7); }
}
@keyframes photo-launch-spin {
  0% { transform: translate(0, 0) rotate(0) scale(1); }
  16% { transform: translate(0, -36px) rotate(45deg) scale(1.08); }
  32% { transform: translate(-22px, 0) rotate(120deg) scale(1); }
  48% { transform: translate(28px, -28px) rotate(210deg) scale(1.08); }
  64% { transform: translate(-10px, 0) rotate(300deg) scale(1); }
  100% { transform: translate(35vw, -110vh) rotate(720deg) scale(.65); }
}
@keyframes photo-launch-up {
  0% { transform: translate(0, 0) rotate(0) scale(1); }
  22% { transform: translate(0, -45px) rotate(-6deg) scale(1.06); }
  44% { transform: translate(12px, -8px) rotate(8deg) scale(1); }
  66% { transform: translate(-14px, -55px) rotate(-12deg) scale(1.08); }
  100% { transform: translate(25vw, -115vh) rotate(180deg) scale(.6); }
}
@keyframes float-in { from { opacity: 0; transform: translateY(25px) rotate(3deg); } to { opacity: 1; transform: translateY(0) rotate(3deg); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(214,177,120,0); } }
@keyframes pulse-green { 50% { box-shadow: 0 0 0 9px rgba(84,184,121,0); } }
@keyframes scroll-line { 0% { transform: translateX(-42px); } 100% { transform: translateX(124px); } }

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 600px); }
  .home-intro-mushrooms { height: 170px; margin-top: 28px; }
  .intro-mushroom { width: 54px; height: 88px; }
  .intro-mushroom-one { left: 1%; }
  .intro-mushroom-two { left: 25%; bottom: 0; width: 68px; height: 108px; }
  .intro-mushroom-three { right: 25%; bottom: 8px; }
  .intro-mushroom-four { right: 1%; bottom: 2px; }
  .nav { position: relative; z-index: 30; display: grid; grid-template-columns: minmax(0, 1fr) 44px 40px auto; min-height: 64px; height: 64px; gap: 6px; }
  .brand { min-width: 0; flex: 1 1 auto; gap: 7px; font-size: .92rem; line-height: 1.05; }
  .brand span { display: block; min-width: 0; width: 118px; max-width: 118px; white-space: normal; overflow: visible; text-overflow: clip; overflow-wrap: normal; }
  .brand-logo { width: 54px; height: 54px; }
  .magasin-page .nav { grid-template-columns: minmax(0, 1fr) 42px 34px auto; gap: 5px; }
  .magasin-page .brand { width: 100%; gap: 5px; font-size: .72rem; }
  .magasin-page .brand-logo { width: 48px; height: 48px; }
  .magasin-page .brand span { flex: 0 0 104px; width: 104px; max-width: 104px; white-space: normal; overflow-wrap: normal; }
  .magasin-page .brand span br { display: block; }
  .magasin-page .language-switcher a { padding-left: 4px; padding-right: 4px; font-size: .66rem; }
  .nav nav { display: contents; }
  .language-switcher { position: static; z-index: 40; grid-column: 4; grid-row: 1; margin: 0; gap: 1px; padding: 3px; }
  .language-switcher a { padding: 5px 6px; font-size: .7rem; }
  .nav-mushroom {
    display: inline-grid;
    position: static;
    grid-column: 3;
    grid-row: 1;
    width: 32px;
    height: 32px;
    font-size: 1.35rem;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-links { display: none; position: absolute; z-index: 100; left: 0; right: 0; top: 100%; width: 100%; margin-top: 8px; padding: 8px 48px 8px 46px; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; z-index: 1001; }
  .nav-links a { display: block; padding: 12px 14px; }
  .menu-toggle { position: static; z-index: 101; grid-column: 2; grid-row: 1; display: grid !important; place-items: center; width: 44px; height: 44px; min-width: 44px; padding: 0; border: 1px solid var(--ink); border-radius: 8px; color: var(--ink); background: rgba(255,255,255,.9); font-size: 0; line-height: 1; }
  .menu-toggle::before { content: "☰"; display: block; color: var(--ink); font-family: Arial, sans-serif; font-size: 1.7rem; line-height: 1; }
  .magasin-page .page-hero h1 {
    width: 100%;
    max-width: none;
    margin: 16px 0 18px;
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    line-height: 1.08;
    white-space: nowrap;
    overflow: visible;
  }
  .hero { min-height: calc(100svh - 64px); }
  .hero-layout { display: flex; flex-direction: column; gap: 0; color: #fff; }
  .hero-content { display: contents; }
  .hero-content > .eyebrow { order: 1; margin-top: 62px; }
  .hero-content > h1 { order: 2; margin-top: 18px; }
  .hero-content > p { order: 3; }
  .hero-content > .actions { order: 5; }
  .hero-content > .hero-proof { order: 6; margin-bottom: 50px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .hero p { font-size: .98rem; }
  .actions { align-items: stretch; }
  .actions .button { flex: 1 1 100%; }
  .hero-side {
    display: grid;
    order: 4;
    width: 100%;
    min-height: 240px;
    margin: 4px 0 10px;
    place-items: center;
  }

  .season-card {
    width: min(100%, 285px);
    min-height: 225px;
    padding: 20px;
    transform: rotate(3deg) scale(.82);
  }
  .season-card:hover { transform: rotate(3deg) scale(.88); }
  .season-card strong { font-size: 1.65rem; }
  .season-card p { margin-bottom: 12px; font-size: .78rem; }
  .season-logo { width: 52px; height: 52px; margin: -8px auto 8px; }
  .hero-stamp { right: 2%; bottom: 4%; width: 78px; height: 78px; }
  .hero-stamp span { font-size: 1rem; }
  .section.alt .section-heading { padding-top: 76px; }
  .promise-photo { width: 112px; height: 112px; border-width: 3px; }
  .promise-photo-one {
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .promise-photo-two { display: none; }
  .ribbon-track { justify-content: flex-start; overflow: hidden; }
  .ribbon-track span:nth-child(n+3) { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-detail-image { min-height: 300px; background-position: 50% 42%; }
  .story-block { padding: 70px 0; }
  .story-grid, .story-grid.reverse { display: flex; flex-direction: column; gap: 30px; }
  .story-grid .story-copy { display: contents; }
  .story-grid .story-number { order: 1; }
  .story-image { min-height: 280px; background-position: center; }
  .story-grid .story-image { order: 2; width: 100%; }
  .story-grid .story-copy h2,
  .story-grid .story-copy p,
  .story-grid .story-copy blockquote { order: 3; }
  .story-final .story-copy .button { order: 4; width: 100%; margin-top: 8px; }
  .cards, .products { grid-template-columns: 1fr; }
  .recipe-grid { grid-template-columns: 1fr; }
  .recipe-card-image { height: 215px; }
  .recipe-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .recipe-detail-image { min-height: 300px; }
  .shop-modal-card { grid-template-columns: 1fr; max-height: calc(100vh - 40px); overflow-y: auto; }
  .modal-product-image { min-height: 180px; }
  .shop-modal-card > div:last-child { padding: 28px; }
  .shop-modal-card .button { display: block; width: 100%; margin: 10px 0 0; text-align: center; }
  .shop-toolbar { align-items: flex-start; flex-direction: column; gap: 12px; }
  .button-secondary { margin-left: 0; }
  .dashboard-head { align-items: flex-start; flex-direction: column; }
  .account-dashboard { padding: 22px; }
  .admin-grid { grid-template-columns: 1fr; }
  .payment-card { grid-template-columns: 1fr; }
  .order-card, .admin-row { align-items: flex-start; flex-direction: column; }
  .photo-card { min-height: 280px; background-position: center; }
  .product-image { height: 210px; background-position: center; }
  .section { padding: 64px 0; }
  .home-page #decouverte,
  .home-page .section.alt {
    min-height: calc(100svh - 64px);
  }
  .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .contact-form { padding: 28px 22px; border-radius: 18px; }
  .contact-form-heading { align-items: flex-start; }
  .contact-form-status { position: absolute; top: 2px; right: 0; }
  .contact-form-intro { margin-left: 0; }
  .footer-row { flex-direction: column; }
  .chatbot { right: 16px; bottom: 16px; }
  .chatbot-window { right: -2px; bottom: 78px; height: min(590px, calc(100vh - 105px)); }
  .chatbot-toggle { width: 62px; height: 62px; }
}

@media (min-width: 1440px) {
  .container { width: min(1320px, calc(100% - 96px)); }
  .hero-layout { gap: clamp(60px, 7vw, 120px); }
  .hero-content { max-width: 760px; }
  .home-page #decouverte,
  .home-page .section.alt { min-height: min(900px, calc(100svh - 72px)); }
}

@media (min-width: 761px) {
  .nav-links a { font-size: .9rem; }
}

@media (min-width: 2560px) {
  body { font-size: 1.08rem; }
  .container { width: min(1480px, calc(100% - 160px)); }
  .nav { min-height: 86px; height: 86px; }
  .hero { min-height: calc(100svh - 86px); }
  .brand-logo { width: 86px; height: 86px; }
  .hero-content { padding: 130px 0; }
  .home-page #decouverte,
  .home-page .section.alt { min-height: min(1100px, calc(100svh - 86px)); }
}

.reviews-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 88% 18%, rgba(197, 138, 66, .22), transparent 23%),
    radial-gradient(circle at 15% 90%, rgba(170, 189, 164, .45), transparent 30%),
    #edf1e8;
}
.reviews-hero::after {
  content: "★★★★★";
  position: absolute;
  right: 7%;
  bottom: 16px;
  color: rgba(197, 138, 66, .16);
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: .12em;
  transform: rotate(-8deg);
}
.reviews-hero h1 { max-width: 760px; margin-top: 16px; }
.reviews-hero p { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}
.review-form-card, .reviews-wall {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .86);
  box-shadow: var(--shadow);
}
.review-form-card { position: sticky; top: 96px; padding: 30px; }
.review-form-card h2 { margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3rem); }
.review-form-card > p { color: var(--muted); margin-top: 0; }
.review-form { display: grid; gap: 15px; margin-top: 24px; }
.review-form label { display: grid; gap: 7px; color: var(--ink); font-size: .86rem; font-weight: 700; }
.review-form input, .review-form select, .review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}
.review-form textarea { min-height: 130px; resize: vertical; }
.review-form input:focus, .review-form select:focus, .review-form textarea:focus {
  outline: 3px solid rgba(197, 138, 66, .2);
  border-color: var(--gold);
}
.review-success { margin: 0; color: var(--moss); font-weight: 700; }
.reviews-wall { padding: 30px; }
.reviews-wall-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 24px; }
.reviews-wall-head h2 { margin: 0; font-size: clamp(2rem, 4vw, 3rem); }
.reviews-summary { display: flex; gap: 18px; align-items: center; color: var(--muted); }
.reviews-summary strong { color: var(--ink); font-size: 1.7rem; }
.reviews-summary .review-stars { display: block; }
.reviews-breakdown {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(36, 53, 43, .1);
  border-radius: 16px;
  background: rgba(237, 241, 232, .58);
}
.review-breakdown-row {
  display: grid;
  grid-template-columns: 34px minmax(80px, 1fr) 62px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .82rem;
}
.review-breakdown-label { color: var(--gold); font-weight: 700; }
.review-breakdown-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(36, 53, 43, .1);
}
.review-breakdown-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #e5bd76);
  transition: width .45s ease;
}
.review-breakdown-row strong { color: var(--ink); font-size: .78rem; text-align: right; }
.reviews-list { display: grid; gap: 14px; }
.review-card {
  padding: 20px;
  border: 1px solid rgba(36, 53, 43, .1);
  border-radius: 18px;
  background: #fff;
  animation: review-arrive .45s ease both;
}
.review-card-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.review-author { display: flex; gap: 11px; align-items: center; }
.review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--moss), var(--gold));
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}
.review-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.review-author strong, .review-author small { display: block; }
.review-author small { color: var(--muted); font-size: .75rem; }
.review-stars { color: var(--gold); letter-spacing: .08em; white-space: nowrap; }
.review-card p { margin: 16px 0 0; color: var(--muted); }
.reviews-empty { padding: 34px 20px; border: 1px dashed rgba(36, 53, 43, .22); border-radius: 16px; color: var(--muted); text-align: center; }
@keyframes review-arrive { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 760px) {
  .reviews-hero { padding: 64px 0 58px; }
  .reviews-hero h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .reviews-layout { grid-template-columns: 1fr; gap: 24px; }
  .review-form-card { position: static; padding: 22px; }
  .reviews-wall { padding: 22px; }
  .reviews-wall-head { align-items: start; flex-direction: column; }
  .reviews-summary { width: 100%; justify-content: space-between; }
  .review-card-head { align-items: start; flex-direction: column; }
}
