/* ===================== TOKENS ===================== */
:root {
  --forest-dark: #12261B;
  --forest: #1E4632;
  --forest-light: #326B4C;
  --forest-lighter: #5B9678;
  --gold: #E3A038;
  --gold-light: #F0C36F;
  --gold-dark: #B97C1E;
  --bordeaux: #7A2331;
  --bordeaux-light: #9C3244;
  --bordeaux-dark: #551620;
  --cream: #FBF6EC;
  --cream-alt: #F2E9D8;
  --white: #FFFFFF;
  --ink: #1B1B16;
  --ink-soft: #55554C;
  --ink-faint: #8B8A7F;
  --border: rgba(27, 27, 22, 0.08);

  --font-display: "Fraunces", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: "Caveat", cursive;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(18, 38, 27, 0.07);
  --shadow-md: 0 12px 32px rgba(18, 38, 27, 0.11);
  --shadow-lg: 0 24px 60px rgba(18, 38, 27, 0.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ===================== RESET ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--forest-dark); line-height: 1.15; }
section[id] { scroll-margin-top: 84px; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--bordeaux);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(122, 35, 49, 0.35);
}
.btn--primary:hover {
  background: var(--bordeaux-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(122, 35, 49, 0.45);
}
.btn--ghost {
  background: rgba(31, 64, 51, 0.07);
  color: var(--forest-dark);
  border: 1.5px solid var(--forest-light);
}
.btn--ghost:hover {
  border-color: var(--forest-dark);
  background: rgba(31, 64, 51, 0.14);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--cream);
  color: var(--forest-dark);
}
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--block { width: 100%; padding: 15px; }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  padding: 9px 0;
  background: rgba(250, 246, 236, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 24px rgba(18,38,27,0.09);
}
.nav__inner { display: flex; align-items: center; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav__mark { width: 54px; height: 54px; flex-shrink: 0; }
.nav__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__word { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--forest-dark); max-width: 220px; }
.nav__cursive { font-family: var(--font-script); font-size: 1.25rem; color: var(--bordeaux); line-height: 1; margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--forest-dark); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { flex-shrink: 0; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--forest-dark);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/Accueil.webp");
  background-size: cover;
  background-position: center 65%;
  z-index: 0;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18,38,27,0.82) 0%, rgba(18,38,27,0.72) 45%, rgba(18,38,27,0.88) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 150px 24px 110px;
  max-width: 760px;
  margin: 0;
  width: 100%;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(227,160,56,0.14);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero .eyebrow { color: var(--gold-light); background: rgba(227,160,56,0.18); }
.hero__title {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  margin-bottom: 22px;
  color: var(--cream);
}
.hero__title .highlight { color: var(--gold-light); }
.hero__lead {
  font-size: 1.1rem;
  color: rgba(251,246,236,0.88);
  max-width: 600px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.trust-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(251,246,236,0.16);
  background: rgba(18, 38, 27, 0.55);
  backdrop-filter: blur(6px);
  padding: 18px 0;
  margin-top: auto;
}
.trust-bar__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--cream);
}

/* ===================== SECTIONS ===================== */
.section { padding: 110px 0; }
.section--alt { background: var(--cream-alt); }
.section__head { max-width: 680px; margin-bottom: 56px; }
.section__head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 14px; }
.section__lead { color: var(--ink-soft); font-size: 1.05rem; }

/* --- Présentation --- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.split__visual { position: relative; display: flex; justify-content: center; }
.split__visual::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  top: -30px; right: 10px;
  background: var(--forest-light);
  opacity: 0.22;
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
}
.photo-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.photo-card img { width: 100%; height: 460px; object-fit: cover; }
.photo-card__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(0deg, rgba(18,38,27,0.9) 0%, rgba(18,38,27,0) 100%);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.92rem;
}

.badge-float {
  position: absolute;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  animation: bob 7s ease-in-out infinite;
  white-space: nowrap;
}
.badge-float--1 { top: -6px; left: -18px; animation-delay: 0.2s; }
.badge-float--2 { bottom: 90px; right: -34px; animation-delay: 1.8s; }
.badge-float--3 { bottom: -12px; left: 24px; animation-delay: 3.4s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.split__text h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 20px; }
.split__text p { color: var(--ink-soft); margin-bottom: 18px; }
.callout {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
.callout p { color: var(--forest-dark); font-weight: 600; margin: 0; font-size: 0.98rem; }
.split__note { font-style: italic; color: var(--ink-faint); font-size: 0.95rem; }

/* --- Produits : sous-blocs --- */
.sub-block { margin-top: 68px; }
.sub-block:first-of-type { margin-top: 0; }
.sub-block__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.sub-block__head h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.sub-block__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(227,160,56,0.16);
  border-radius: 999px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sub-block__lead { color: var(--ink-soft); max-width: 760px; margin-bottom: 28px; }

/* --- Compositions grid --- */
.compo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.compo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.compo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.compo-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  color: var(--gold-light);
  margin-bottom: 16px;
}
.compo-card__icon svg { width: 24px; height: 24px; }
.compo-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--forest-dark); margin-bottom: 8px; }
.compo-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* --- Fermes / producteurs --- */
.farm-scroll { margin-bottom: 28px; }
.farm-track-wrap { position: relative; }
.farm-row {
  --farm-visible: 4;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.farm-row::-webkit-scrollbar { display: none; }
.farm-card {
  flex: 0 0 calc((100% - (var(--farm-visible) - 1) * 18px) / var(--farm-visible));
  scroll-snap-align: start;
  background: var(--forest-dark);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: left;
  font: inherit;
}
.farm-card::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: var(--gold);
  opacity: 0.14;
  border-radius: 50%;
}
.farm-card--partners {
  border: 1.5px solid rgba(227,160,56,0.55);
  background:
    linear-gradient(180deg, rgba(18,38,27,0.80) 0%, rgba(18,38,27,0.93) 100%),
    url("assets/Producteurs_Partenaires.webp") center 22% / cover no-repeat;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.farm-card--partners:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.farm-card--partners span { color: var(--gold-light); font-weight: 700; }
.farm-track-wrap .scroll-edge { bottom: 6px; transition: opacity .2s; }
.farm-track-wrap .scroll-edge.left { left: -16px; }
.farm-track-wrap .scroll-edge.right { right: -16px; }
.farm-track-wrap .scroll-btn { background: var(--cream); color: var(--forest-dark); }
.farm-track-wrap .scroll-btn:hover { background: var(--gold-light); }
.scroll-edge.is-off { opacity: 0; visibility: hidden; }
.farm-progress {
  margin-top: 8px;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(31,64,51,0.12);
  overflow: hidden;
}
.farm-progress.is-off { display: none; }
.farm-progress-fill {
  width: 0;
  height: 100%;
  background: var(--bordeaux);
  border-radius: 999px;
  transition: width .2s ease;
}
.farm-card__icon { width: 30px; height: 30px; color: var(--gold-light); margin-bottom: 14px; }
.farm-card h4 { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.farm-card span { font-size: 0.82rem; color: rgba(251,246,236,0.7); }

/* --- Deux colonnes charcuterie / épicerie --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.two-col__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.two-col__card h4 { font-size: 1.1rem; margin-bottom: 12px; }
.two-col__card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 16px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest-dark);
  background: var(--cream-alt);
  border: 1px solid rgba(31,64,51,0.14);
  padding: 6px 14px;
  border-radius: 999px;
}

/* --- Galerie --- */
.gallery-note { color: var(--ink-faint); font-size: 0.9rem; font-style: italic; margin-bottom: 22px; }

.prod-gallery-wrap { margin-top: 4px; }
.prod-scroll { position: relative; border-radius: var(--radius-md); }
.prod-gallery {
  --visible-count: 4;
  display: flex;
  gap: 16px;
  overflow-x: hidden;
  padding: 4px 2px 8px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
.prod-gallery::-webkit-scrollbar { height: 8px; }
.prod-gallery::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 999px; }
.prod-item {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
  flex: 0 0 calc((100% - (var(--visible-count) - 1) * 16px) / var(--visible-count));
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.prod-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.prod-item:hover img { transform: scale(1.06); }
.scroll-edge {
  position: absolute;
  top: 0;
  bottom: 16px;
  width: 72px;
  z-index: 5;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.scroll-edge.left { left: 0; justify-content: flex-start; }
.scroll-edge.right { right: 0; justify-content: flex-end; }
.scroll-btn {
  margin: 0 6px;
  border: 0;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  background: var(--forest-dark);
  color: var(--cream);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  transition: background .2s;
}
.scroll-btn:hover { background: var(--bordeaux); }
.prod-progress {
  margin-top: 10px;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--cream-alt);
  overflow: hidden;
}
.prod-progress-fill {
  width: 0;
  height: 100%;
  background: var(--bordeaux);
  border-radius: 999px;
  transition: width .25s ease;
}

/* --- Lightbox (plein écran) --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18,38,27,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 9999;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 96vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 6px 10px 8px;
  cursor: pointer;
}
.lightbox--doc { align-items: flex-start; overflow-y: auto; }
.lightbox--doc .lightbox-content { max-height: none; width: min(900px, 96vw); margin: 0 auto; }
.lightbox--doc .lightbox-close { position: fixed; }
.lightbox--doc .lightbox-footer { display: none; }
.lightbox-close:hover { background: rgba(255,255,255,0.28); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: none;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.32); }
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }
.lightbox-nav.show { display: block; }
.lightbox-footer {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(4px);
}
.lightbox-counter { font-size: 0.9rem; white-space: nowrap; min-width: 46px; text-align: center; }
.lightbox-progress {
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  overflow: hidden;
}
.lightbox-progress-fill {
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 999px;
  transition: width .2s ease;
}

/* --- Allergen callout --- */
.allergen-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(227,160,56,0.14);
  border: 1.5px solid rgba(227,160,56,0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 8px;
  margin-bottom: 24px;
}
/* --- Info note (réservation) --- */
.info-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(30,70,50,0.07);
  border: 1.5px solid rgba(30,70,50,0.22);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.info-note__icon { font-size: 1.4rem; flex-shrink: 0; }
.info-note p { font-size: 0.92rem; color: var(--forest-dark); }
.info-note strong { color: var(--bordeaux); }
.info-note a { font-weight: 700; color: var(--bordeaux); white-space: nowrap; }
.info-note a:hover { text-decoration: underline; }
.sub-block__lead + .info-note { margin-top: -12px; }
.compo-grid + .allergen-note { margin-top: 24px; margin-bottom: 0; }
.section__head + .info-note { margin-top: -28px; }

.allergen-note__icon { font-size: 1.4rem; flex-shrink: 0; }
.allergen-note p { font-size: 0.92rem; color: var(--forest-dark); }
.allergen-note strong { color: var(--bordeaux); }

/* --- Tarifs --- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card__photo { position: relative; height: 190px; overflow: hidden; }
.price-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.price-card__price-wrap {
  position: absolute;
  bottom: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.price-card__prefix {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(18,38,27,0.62);
  padding: 3px 10px;
  border-radius: 999px;
}
.price-card__tag {
  background: var(--bordeaux);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.price-card__body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.price-card__body h4 { font-size: 1.08rem; margin-bottom: 10px; }
.price-card__body ul { margin-bottom: 18px; flex: 1; }
.price-card__body li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
  margin-bottom: 7px;
}
.price-card__body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}
.price-note {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.price-note strong { color: var(--forest-dark); }

/* --- Box promo --- */
.box-promo {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.box-promo__photo { position: relative; min-height: 220px; }
.box-promo__photo img { width: 100%; height: 100%; object-fit: cover; }
.box-promo__body { padding: 30px 34px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.box-promo__body h4 { font-size: 1.15rem; }
.box-promo__body p { color: var(--ink-soft); font-size: 0.92rem; }
.box-promo__body .btn { width: fit-content; margin-top: 8px; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
}
.contact-info {
  background: var(--forest-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.contact-info h3 { font-family: var(--font-display); color: var(--white); font-size: 1.25rem; margin-bottom: 16px; }
.contact-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-item__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(227,160,56,0.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item__icon svg { width: 22px; height: 22px; }
.info-item__label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.info-item__value {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--white);
  margin-bottom: 2px;
}
.info-item__value a { transition: color .2s; }
.info-item__value a:hover { color: var(--gold-light); }
.info-item__sub { font-size: 0.8rem; color: rgba(250,246,236,0.65); }
.info-item__todo { color: var(--gold-light); font-style: italic; font-size: 0.86rem; }

.hours-table {
  border-top: 1px solid rgba(250,246,236,0.15);
  padding-top: 22px;
  margin-bottom: 24px;
}
.hours-table__title { font-family: var(--font-display); color: var(--white); font-size: 1.05rem; margin-bottom: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(250,246,236,0.12);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 700; color: var(--cream); }
.hours-row span:last-child { color: rgba(250,246,236,0.8); }

.contact-grid > * { min-width: 0; }
.info-item > div { min-width: 0; }
.info-item__value { overflow-wrap: anywhere; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 22px; border-top: 1px solid rgba(250,246,236,0.15); }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(250,246,236,0.6);
  background: rgba(250,246,236,0.08);
  border: 1px dashed rgba(250,246,236,0.25);
  padding: 8px 14px;
  border-radius: 999px;
}
.social-pill svg { width: 16px; height: 16px; }

.map-card {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.map-card iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.15); }
.map-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--forest-dark);
}
.map-card__link svg { width: 16px; height: 16px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: fit-content;
}
.contact-form__title { font-size: 1.3rem; margin-bottom: 4px; }
.contact-form__lead { color: var(--ink-soft); font-size: 0.92rem; margin-top: -12px; margin-bottom: 4px; }
.captcha-wrap { display: flex; }
.btn__icon { width: 17px; height: 17px; flex-shrink: 0; }
.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1; }
.field { display: flex; flex-direction: column; }
.field input, .field textarea {
  padding: 18px 20px;
  border: 1.5px solid rgba(27, 27, 22, 0.16);
  border-radius: 16px;
  background: var(--cream);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-dark);
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--ink-soft);
  font-weight: 700;
  opacity: 1;
}
.field textarea { min-height: 140px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.contact-form__note { font-size: 0.88rem; font-weight: 700; color: var(--forest); min-height: 1.2em; }
.contact-form__note.is-error { color: var(--bordeaux); }
.contact-form__note.is-success { color: var(--forest); }

/* ===================== FOOTER ===================== */
.footer { background: var(--forest-dark); color: var(--cream); padding-top: 56px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,246,236,0.12);
}
.footer__brand { display: flex; gap: 14px; align-items: flex-start; }
.footer__word { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }
.footer__cursive { font-family: var(--font-script); font-size: 1.2rem; color: var(--gold-light); }
.footer__tagline { font-size: 0.85rem; color: rgba(250,246,236,0.62); max-width: 260px; margin-top: 6px; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; }
.footer__links a, .footer__contact a { color: rgba(250,246,236,0.75); transition: color .2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold-light); }
.footer__legal {
  padding: 24px 24px;
  font-size: 0.78rem;
  color: rgba(250,246,236,0.5);
  line-height: 1.7;
}
.footer__legal strong { color: rgba(250,246,236,0.75); }
.footer__bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250,246,236,0.45);
  padding: 16px 0 26px;
  border-top: 1px solid rgba(250,246,236,0.08);
}
.footer__bottom a { text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.footer__bottom a:hover { color: var(--gold-light); }

.mini-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

/* ===================== FAB ===================== */
.fab {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--cream);
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(122,35,49,0.45);
  z-index: 90;
  transition: transform .25s var(--ease);
}
.fab.is-visible { display: flex; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 22px; height: 22px; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split__visual { margin-bottom: 10px; }
  .compo-grid { grid-template-columns: 1fr 1fr; }
  .farm-row { --farm-visible: 2; }
  .two-col { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .box-promo { grid-template-columns: 1fr; }
  .box-promo__photo { min-height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 20px 24px 26px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
  .hero__inner { padding: 120px 20px 70px; }
  .trust-bar__inner { justify-content: flex-start; gap: 10px 20px; }
  .trust-bar__inner span { font-size: 0.78rem; }
  .section { padding: 70px 0; }
  .compo-grid { grid-template-columns: 1fr; }
  .farm-row { --farm-visible: 1.15; }
  .price-grid { grid-template-columns: 1fr; }
  .prod-item img { height: 180px; }
  .badge-float--1 { left: -4px; }
  .badge-float--2 { right: -4px; }
  .scroll-edge { width: 56px; }
  .field-row { flex-direction: column; gap: 18px; }
  .fab { display: none !important; }
}
