/* ========================================
   LA BUVETTE MOBILE — Site styles v2
   DNA: scrapbook craft + Beauce + Vietnam
   ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--noir);
  line-height: 1.65;
  font-size: var(--fs-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--terre); color: var(--bone); }

/* texture papier kraft subtile */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ========================================
   NAV — barre d'outils, pas un menu corporate
   ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 234, 211, 0.92);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: var(--border-soft);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  padding: 0.6rem var(--space-md);
  box-shadow: 0 6px 20px rgba(107, 62, 42, 0.08);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--terre);
  transition: transform 0.3s ease;
}
.nav-brand:hover { transform: translateX(-2px); }
.nav-brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--terre);
  flex-shrink: 0;
  background: var(--bone);
}
.nav-brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--terre);
}
.nav-brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre-clair);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-link {
  color: var(--noir-soft);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.4rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--terre);
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 0.7rem 1.4rem;
  background: var(--terre);
  color: var(--bone);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}
.nav-cta:hover { background: var(--vin); transform: translateY(-2px); }

.nav-toggle { display: none; width: 32px; height: 24px; position: relative; cursor: pointer; }
.nav-toggle span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--terre);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* ========================================
   HERO — la VRAIE cover
   ======================================== */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-md)) var(--space-md) var(--space-lg);
  background: var(--bg-base);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-block: var(--space-md);
}
.hero-text { position: relative; z-index: 2; }
.hero-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  background: var(--bone);
  border: 1.5px dashed var(--terre);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: var(--space-sm);
}
.hero-stamp::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--vin);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--terre-deep);
  margin-bottom: var(--space-md);
}
.hero-title .vin { color: var(--vin); }
.hero-title .script {
  font-family: var(--font-script);
  color: var(--or);
  font-weight: 600;
  font-size: 0.85em;
  display: inline-block;
  transform: rotate(-3deg) translateY(-0.05em);
}
.hero-tagline {
  font-size: var(--fs-md);
  color: var(--noir-soft);
  max-width: 38ch;
  margin-bottom: var(--space-md);
  line-height: 1.55;
}
.hero-tagline strong {
  background: linear-gradient(transparent 60%, var(--or-pale) 60%);
  font-weight: 600;
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.05rem 1.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.btn-primary { background: var(--vin); color: var(--bone); }
.btn-primary:hover { background: var(--vin-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--terre);
  border: 1.5px solid var(--terre);
}
.btn-ghost:hover { background: var(--terre); color: var(--bone); transform: translateY(-2px); }
.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Hero proof line */
.hero-proof {
  display: flex;
  gap: 1.6rem;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: var(--border-soft);
  flex-wrap: wrap;
}
.hero-proof-item {
  font-size: 0.8rem;
  color: var(--noir-soft);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-proof-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--terre);
  line-height: 1;
}
.hero-proof-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--terre-clair);
}

/* Hero visual = la cover BRANDÉE */
.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(107, 62, 42, 0.18),
    0 0 0 6px var(--bone),
    0 0 0 8px var(--terre);
  transform: rotate(0.8deg);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-visual:hover img { transform: scale(1.04); }
.hero-visual-tape {
  position: absolute;
  top: -14px; right: 30px;
  width: 90px; height: 28px;
  background: rgba(229, 198, 131, 0.7);
  transform: rotate(-12deg);
  z-index: 5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.hero-visual-tape.left { right: auto; left: 20px; transform: rotate(8deg); top: -10px; }

/* Karibu badge — flottant sur le hero */
.karibu-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--vin);
  color: var(--bone);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transform: rotate(-4deg);
  box-shadow: 0 14px 30px rgba(124, 31, 31, 0.3);
  display: flex; align-items: center; gap: 0.6rem;
  z-index: 10;
  border: 2px solid var(--bone);
}
.karibu-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  margin-top: 2px;
}
.karibu-badge svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--or-clair); }

/* ========================================
   3 SOUS-MARQUES — bandeau spécifique
   ======================================== */
.sub-brands {
  background: var(--terre-deep);
  color: var(--bone);
  padding: var(--space-lg) var(--space-md);
  position: relative;
}
.sub-brands-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  max-width: var(--container-wide);
  margin: 0 auto;
  align-items: center;
}
.sub-brands-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  line-height: 1;
  font-weight: 400;
}
.sub-brands-title .script { font-family: var(--font-script); color: var(--or-clair); display: block; }
.sub-brands-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245, 234, 211, 0.14);
}
.sub-brand {
  background: var(--terre-deep);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sub-brand-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-clair);
  opacity: 0.85;
}
.sub-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.05;
}
.sub-brand-desc {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.55;
  font-weight: 300;
}
.sub-brand.featured { background: var(--vin); }
.sub-brand.featured .sub-brand-tag { color: var(--or-pale); }

/* ========================================
   STORY — Win, sa vraie histoire
   ======================================== */
.story {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-warm);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  align-items: start;
}
.story-photo-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.story-photo-stack img {
  position: absolute;
  width: 88%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(107, 62, 42, 0.2);
  border: 6px solid var(--bone);
}
.story-photo-stack img:nth-child(1) {
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.story-photo-stack img:nth-child(2) {
  bottom: 0; right: 0;
  transform: rotate(4deg);
  z-index: 2;
}
.story-photo-tape {
  position: absolute;
  width: 60px;
  height: 20px;
  background: rgba(229, 198, 131, 0.8);
  top: -8px;
  z-index: 10;
}
.story-eyebrow {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--vin);
  margin-bottom: 0.8rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.story-eyebrow::before {
  content: ''; width: 32px; height: 1.5px; background: var(--vin);
}
.story-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--terre-deep);
  margin-bottom: var(--space-md);
}
.story-title .script { font-family: var(--font-script); color: var(--vin); font-size: 1em; }
.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  color: var(--noir-soft);
}
.story-content p strong { color: var(--terre); font-weight: 600; }
.story-pull {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--bone);
  border-left: 4px solid var(--or);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--terre-deep);
  font-style: italic;
}
.story-pull cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terre-clair);
  font-weight: 600;
}

/* ========================================
   MENU — cuisine vivante (vraies photos)
   ======================================== */
.menu {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-base);
}
.section-header {
  max-width: var(--container-wide);
  margin: 0 auto var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: end;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 0.6rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 1.5px; background: var(--terre);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1;
  color: var(--terre-deep);
  letter-spacing: -0.015em;
}
.section-title .vin { color: var(--vin); }
.section-title .script { font-family: var(--font-script); color: var(--or); display: inline-block; }
.section-lead {
  font-size: 1.05rem;
  color: var(--noir-soft);
  max-width: 45ch;
  line-height: 1.65;
}

.menu-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.menu-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--terre);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-card:hover img { transform: scale(1.06); }
.menu-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30, 15, 8, 0.92));
}
.menu-card-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-md);
  color: var(--bone);
  z-index: 1;
}
.menu-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 0.4rem;
}
.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.menu-card-meta {
  font-size: 0.8rem;
  opacity: 0.85;
  font-weight: 300;
}

.menu-card.tall { grid-column: span 3; grid-row: span 2; }
.menu-card.wide { grid-column: span 3; grid-row: span 2; }
.menu-card.short { grid-column: span 2; grid-row: span 1; }
.menu-card.medium { grid-column: span 2; grid-row: span 2; }
.menu-card.full { grid-column: span 6; grid-row: span 1; }

.menu-note {
  margin: var(--space-md) auto 0;
  max-width: var(--container-md);
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--vin);
  transform: rotate(-1deg);
}

/* ========================================
   BUVETTE MOBILE — focus produit
   ======================================== */
.buvette {
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(180deg, var(--terre) 0%, var(--terre-deep) 100%);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.buvette::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(229, 198, 131, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(124, 31, 31, 0.25), transparent 50%);
  pointer-events: none;
}
.buvette-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: center;
}
.buvette-text .section-eyebrow { color: var(--or-clair); }
.buvette-text .section-eyebrow::before { background: var(--or-clair); }
.buvette-text .section-title { color: var(--bone); }
.buvette-text .section-title .script { color: var(--or-clair); }
.buvette-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: var(--space-sm) 0;
  opacity: 0.92;
  font-weight: 300;
  max-width: 50ch;
}
.buvette-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.4rem;
  margin: var(--space-md) 0;
  list-style: none;
}
.buvette-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245, 234, 211, 0.18);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem;
}
.buvette-list li::before {
  content: '✦';
  color: var(--or-clair);
  font-size: 0.8rem;
}

.buvette-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  border: 6px solid var(--bone);
}
.buvette-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ========================================
   FERME / PANIERS — autre côté
   ======================================== */
.ferme {
  padding: var(--space-2xl) var(--space-md);
  background: var(--olive);
  color: var(--bone);
}
.ferme-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  align-items: center;
}
.ferme-text .section-eyebrow { color: var(--or-pale); }
.ferme-text .section-eyebrow::before { background: var(--or-pale); }
.ferme-text .section-title { color: var(--bone); }
.ferme-text .section-title .script { color: var(--or-pale); }
.ferme-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: var(--space-sm) 0;
  opacity: 0.95;
  font-weight: 300;
}
.ferme-photo {
  aspect-ratio: 5/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--bone);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  transform: rotate(-1deg);
}
.ferme-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ========================================
   ÉVÉNEMENTS — types de moments
   ======================================== */
.events {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-base);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--terre);
  border: 1.5px solid var(--terre);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: var(--container-wide);
  margin: var(--space-lg) auto 0;
}
.event-card {
  padding: var(--space-md);
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.4s ease;
  cursor: default;
}
.event-card:hover { background: var(--bone); }
.event-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre-clair);
}
.event-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--terre-deep);
  line-height: 1.05;
}
.event-desc {
  font-size: 0.92rem;
  color: var(--noir-soft);
  line-height: 1.55;
}

/* ========================================
   PROOF / SOCIAL
   ======================================== */
.proof {
  padding: var(--space-lg) var(--space-md);
  background: var(--bone);
  border-block: 1.5px solid var(--terre);
}
.proof-grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.proof-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--vin);
  line-height: 1;
}
.proof-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre);
}
.proof-sub {
  font-size: 0.85rem;
  color: var(--noir-soft);
}

/* ========================================
   CONTACT — minimaliste, vrai
   ======================================== */
.contact {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-warm);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  align-items: start;
}
.contact-content { padding-top: var(--space-md); }
.contact-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--noir-soft);
  margin: var(--space-sm) 0 var(--space-md);
}
.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem;
  background: var(--bone);
  border-radius: var(--radius-md);
  border: var(--border-soft);
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-row:hover { background: var(--creme-warm); transform: translateX(4px); }
.contact-row-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--terre);
  color: var(--bone);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-row-icon svg { width: 18px; height: 18px; }
.contact-row-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre-clair);
  margin-bottom: 3px;
}
.contact-row-value {
  font-size: 1.05rem;
  color: var(--noir);
  font-weight: 500;
}
.contact-row-value a { color: inherit; transition: color 0.3s ease; }
.contact-row-value a:hover { color: var(--vin); }

.contact-form {
  background: var(--bone);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(107, 62, 42, 0.12);
  border: 1.5px solid var(--creme-deep);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--terre-deep);
  margin-bottom: 0.3rem;
}
.form-sub {
  font-size: 0.9rem;
  color: var(--terre-clair);
  margin-bottom: var(--space-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: none;
  border-bottom: 1.5px solid rgba(107, 62, 42, 0.25);
  background: transparent;
  padding: 0.55rem 0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--noir);
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--vin);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit {
  background: var(--vin);
  color: var(--bone);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  margin-top: 0.6rem;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.form-submit:hover { background: var(--vin-deep); transform: translateY(-2px); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--terre-deep);
  color: var(--bone);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}
.footer-grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(245, 234, 211, 0.15);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.footer-tagline {
  opacity: 0.75;
  max-width: 32ch;
  line-height: 1.55;
  font-size: 0.95rem;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-list a, .footer-list span { opacity: 0.8; transition: opacity 0.3s ease; font-size: 0.92rem; }
.footer-list a:hover { opacity: 1; color: var(--or-clair); }

.footer-bottom {
  max-width: var(--container-wide);
  margin: var(--space-md) auto 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.82rem; opacity: 0.65;
}
.footer-trademark {
  display: flex; align-items: center; gap: 0.5rem;
  transition: opacity 0.3s ease;
}
.footer-trademark img { height: 18px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-trademark:hover { opacity: 1; }

/* ========================================
   REVEAL
   ======================================== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  body.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; inset: var(--nav-height) 0 0 0;
    background: var(--bone); padding: var(--space-lg) var(--space-md);
    gap: 1.4rem; z-index: 99;
  }
  body.nav-open .nav-link { font-size: 1.4rem; }
  body.nav-open .nav-cta { display: inline-flex; align-self: flex-start; }

  .hero-grid { grid-template-columns: 1fr; gap: var(--space-md); min-height: auto; }
  .hero-visual { transform: rotate(0); margin-top: var(--space-md); }

  .sub-brands-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .sub-brands-list { grid-template-columns: 1fr; gap: 1.5px; }

  .story-grid, .buvette-grid, .ferme-grid, .contact-grid {
    grid-template-columns: 1fr; gap: var(--space-lg);
  }
  .story-photo-stack { aspect-ratio: 4/3; }

  .menu-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .menu-card.tall, .menu-card.wide, .menu-card.full { grid-column: span 2; }
  .menu-card.short, .menu-card.medium { grid-column: span 1; grid-row: span 1; }

  .events-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .section-header { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .karibu-badge { left: -10px; bottom: -16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
