/* ============================================================
   PAGE — La Charrue Orbe — Accueil
   Refonte v3.13 — Bordeaux / Cream / Copper
   Préfixe .lco- pour isolation complète
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --lco-bordeaux-900: #3C140F;
  --lco-bordeaux-800: #5A1F18;
  --lco-bordeaux-700: #7A2B22;
  --lco-cream-50:     #FAF4E8;
  --lco-cream-100:    #F2E8D5;
  --lco-copper-400:   #D9B27E;
  --lco-copper-500:   #C9985B;
  --lco-copper-600:   #B17F44;
  --lco-ink-900:      #1A0F0A;
  --lco-ink-600:      #4A3A30;
  --lco-ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --lco-container:    1280px;
  --lco-section-py:   120px;
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.lco-container {
  max-width: var(--lco-container);
  margin: 0 auto;
  padding: 0 32px;
}

.lco-section {
  padding: var(--lco-section-py) 0;
  position: relative;
}

.lco-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lco-copper-500);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.lco-kicker::before, .lco-kicker::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}
.lco-kicker--light { color: var(--lco-copper-400); }
.lco-kicker--center { justify-content: center; }

.lco-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--lco-ink-900);
  margin-bottom: 24px;
}

.lco-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--lco-copper-600);
  text-decoration: none;
  border-bottom: 1px solid var(--lco-copper-600);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.lco-link:hover { color: var(--lco-copper-500); opacity: 1; }

.lco-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  text-decoration: none;
  border: none;
  letter-spacing: 0.03em;
  font-family: var(--font-body);
}
.lco-btn-primary {
  background: var(--lco-copper-500);
  color: var(--lco-ink-900);
}
.lco-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,152,91,0.4);
  background: var(--lco-copper-500);
  color: var(--lco-ink-900);
  opacity: 1;
}
.lco-btn-ghost {
  background: transparent;
  border: 1px solid rgba(250,244,232,0.55);
  color: #ffffff;
}
.lco-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  opacity: 1;
}

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

.lco-reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--lco-ease), transform 0.9s var(--lco-ease);
}
.lco-reveal-right.lco-visible { opacity: 1; transform: translateY(0); }

.lco-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--lco-ease), transform 0.6s var(--lco-ease);
}
.lco-stagger.lco-visible > *:nth-child(1) { transition-delay: 0ms; }
.lco-stagger.lco-visible > *:nth-child(2) { transition-delay: 80ms; }
.lco-stagger.lco-visible > *:nth-child(3) { transition-delay: 160ms; }
.lco-stagger.lco-visible > *:nth-child(4) { transition-delay: 240ms; }
.lco-stagger.lco-visible > *:nth-child(5) { transition-delay: 320ms; }
.lco-stagger.lco-visible > *:nth-child(6) { transition-delay: 400ms; }
.lco-stagger.lco-visible > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
@keyframes lco-zoom-slow {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
@keyframes lco-scroll-dot {
  0%   { transform: translateY(0) translateX(-50%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(36px) translateX(-50%); opacity: 0; }
}
@keyframes lco-sparkle {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.35; }
  100% { transform: translateY(-85vh); opacity: 0; }
}

.lco-hero {
  position: relative;
  min-height: 700px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--lco-bordeaux-900);
}

.lco-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://lacharrueorbe.com/wp-content/uploads/2023/04/pizza-744405-scaled.jpg') center/cover no-repeat;
  animation: lco-zoom-slow 20s ease-in-out infinite alternate;
  will-change: transform;
}

.lco-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.08) 38%,
    rgba(60,20,15,0.80) 100%
  );
}

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

.lco-sparkle {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #D9B27E, transparent);
  pointer-events: none;
  z-index: 3;
  animation: lco-sparkle var(--lco-dur, 12s) var(--lco-del, 0s) linear infinite;
}

.lco-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--lco-container);
  padding: 0 32px;
}

/* Mots du titre — animés via JS */
.lco-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--lco-ease), transform 0.7s var(--lco-ease);
  margin-right: 0.2em;
}
.lco-word.lco-word-vis { opacity: 1; transform: translateY(0); }

.lco-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 500;
}
.lco-hero-title em {
  font-style: italic;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(60,20,15,0.55), 0 0 32px rgba(60,20,15,0.4);
  opacity: 0.95;
}
.lco-hero-title .lco-block { display: block; }

.lco-hero-subtitle {
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 520px;
  font-family: var(--font-body);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--lco-ease) 1s, transform 0.7s var(--lco-ease) 1s;
}
.lco-hero-subtitle.lco-word-vis { opacity: 1; transform: translateY(0); }

.lco-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--lco-ease) 1.2s, transform 0.7s var(--lco-ease) 1.2s;
}
.lco-hero-ctas.lco-word-vis { opacity: 1; transform: translateY(0); }

/* GloriaFood dans le hero */
.lco-hero-ctas .restaurant-widget,
.lco-hero-ctas .widget-reserve,
.lco-hero-ctas .widget-order { display: inline-flex !important; }

.lco-hero-stats {
  display: flex;
  gap: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--lco-ease) 1.4s, transform 0.7s var(--lco-ease) 1.4s;
}
.lco-hero-stats.lco-word-vis { opacity: 1; transform: translateY(0); }

.lco-hero-stats .lco-stat {
  padding: 0 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.lco-hero-stats .lco-stat:last-child { border-right: none; }
.lco-hero-stats .lco-stat:first-child { padding-left: 0; }

.lco-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--lco-copper-400);
  line-height: 1;
  margin-bottom: 6px;
}
.lco-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
}

/* Scroll indicator */
.lco-scroll-ind {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.4s;
}
.lco-scroll-ind.lco-hidden { opacity: 0; pointer-events: none; }
.lco-scroll-ind-txt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
}
.lco-scroll-line {
  position: relative;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.22);
}
.lco-scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lco-copper-400);
  animation: lco-scroll-dot 2s ease-in-out infinite;
}

/* ============================================================
   SECTION — UN BISTROT D'ORBE
   ============================================================ */
.lco-bistrot { background: var(--lco-cream-50); }

.lco-bistrot-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 88px;
  align-items: center;
}

.lco-bistrot-body {
  font-size: 17px;
  line-height: 1.78;
  color: var(--lco-ink-600);
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.lco-bistrot-signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--lco-copper-600);
  margin: 28px 0 32px;
}

.lco-mini-stats {
  display: flex;
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(60,20,15,0.1);
}
.lco-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(60,20,15,0.1);
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lco-ink-600);
}
.lco-mini-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.lco-mini-stat .lco-stat-num {
  font-size: 2rem;
  color: var(--lco-copper-500);
}

.lco-bistrot-img-wrap { position: relative; }
.lco-bistrot-img {
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(60,20,15,0.16);
  background: url('https://lacharrueorbe.com/wp-content/uploads/2023/04/c32776b8-94aa-4459-a3c9-f45d0093749a.webp') center/cover no-repeat;
}

/* ============================================================
   SECTION — SIX UNIVERS
   ============================================================ */
.lco-univers { background: var(--lco-cream-100); }

.lco-univers-hd {
  text-align: center;
  margin-bottom: 52px;
}
.lco-univers-subtitle {
  font-size: 17px;
  color: var(--lco-ink-600);
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-body);
}

.lco-univers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lco-ucard {
  position: relative;
  height: 360px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.5s ease, transform 0.4s ease;
  cursor: default;
}
.lco-ucard:hover {
  border-color: rgba(201,152,91,0.55);
  transform: translateY(-4px);
}

.lco-ucard-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.62);
  transform: scale(1.04);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.lco-ucard:hover .lco-ucard-bg {
  filter: blur(0) brightness(0.85);
  transform: scale(1);
}

.lco-ucard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(60,20,15,0.52);
  transition: background 0.6s ease;
}
.lco-ucard:hover .lco-ucard-overlay { background: rgba(60,20,15,0.28); }

.lco-ucard-body {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.lco-ucard-icon {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 36px;
  height: 36px;
  color: var(--lco-copper-400);
}
.lco-ucard-icon svg { width: 100%; height: 100%; }

.lco-ucard h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--lco-cream-50);
  margin-bottom: 8px;
  line-height: 1.2;
}
.lco-ucard-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lco-copper-400);
  margin-bottom: 10px;
}
.lco-ucard p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(250,244,232,0.8);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lco-ucard:hover p { opacity: 1; transform: translateY(0); }

/* Images de fond par carte */
.lco-ucard:nth-child(1) .lco-ucard-bg { background-image: url('https://lacharrueorbe.com/wp-content/uploads/2023/04/pizza-744405-scaled.jpg'); }
.lco-ucard:nth-child(2) .lco-ucard-bg { background-image: url('https://lacharrueorbe.com/wp-content/uploads/2024/05/1.jpg'); }
.lco-ucard:nth-child(3) .lco-ucard-bg { background-image: url('https://lacharrueorbe.com/wp-content/uploads/2023/04/c32776b8-94aa-4459-a3c9-f45d0093749a.webp'); }
.lco-ucard:nth-child(4) .lco-ucard-bg { background-image: url('https://lacharrueorbe.com/wp-content/uploads/2023/04/pizza-744405-scaled.jpg'); }
.lco-ucard:nth-child(5) .lco-ucard-bg { background-image: url('https://lacharrueorbe.com/wp-content/uploads/2023/04/c32776b8-94aa-4459-a3c9-f45d0093749a.webp'); }
.lco-ucard:nth-child(6) .lco-ucard-bg { background-image: url('https://lacharrueorbe.com/wp-content/uploads/2024/05/1.jpg'); }

.lco-univers-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   SECTION — FEU DE BOIS
   ============================================================ */
.lco-feu {
  background: var(--lco-bordeaux-800);
  position: relative;
  overflow: hidden;
}
.lco-feu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.lco-feu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.lco-feu .lco-section-title { color: var(--lco-cream-50); }
.lco-feu .lco-kicker { color: var(--lco-copper-400); }

.lco-feu-body {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(250,244,232,0.86);
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.lco-emporter {
  margin-top: 40px;
  padding: 28px 32px;
  border: 1px solid rgba(217,178,126,0.2);
  border-radius: 2px;
  background: rgba(255,255,255,0.04);
}
.lco-emporter-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lco-copper-400);
  margin-bottom: 6px;
}
.lco-emporter-price {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--lco-copper-400);
  margin-bottom: 2px;
}
.lco-emporter-note {
  font-size: 11px;
  color: rgba(250,244,232,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.lco-emporter-desc {
  font-size: 14px;
  color: rgba(250,244,232,0.72);
  line-height: 1.65;
  margin-bottom: 22px;
  font-family: var(--font-body);
}
.lco-emporter-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lco-emporter-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--lco-copper-400);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
.lco-emporter-tel:hover {
  color: #ffffff;
  opacity: 1;
}
.lco-emporter-tel svg {
  flex-shrink: 0;
  stroke: currentColor;
}

/* Table pizzas signatures */
.lco-pizzas-hd {
  margin-bottom: 24px;
}
.lco-pizzas-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,244,232,0.45);
  margin-bottom: 6px;
}
.lco-pizzas-hd h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--lco-cream-50);
  font-weight: 500;
}

.lco-pizzas { list-style: none; margin: 0; padding: 0; }

.lco-pizza {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(250,244,232,0.08);
  transition: background 0.25s;
  border-radius: 2px;
}
.lco-pizza:hover { background: rgba(250,244,232,0.05); }

.lco-pizza-info { flex: 1; }
.lco-pizza-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--lco-cream-50);
  margin-bottom: 3px;
  line-height: 1.2;
}
.lco-pizza-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(250,244,232,0.55);
  line-height: 1.5;
}
.lco-pizza-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--lco-copper-400);
  flex-shrink: 0;
}
.lco-pizza-badge {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lco-copper-500);
  color: var(--lco-ink-900);
  padding: 2px 7px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================================
   SECTION — BANQUETS
   ============================================================ */
.lco-banquets { background: var(--lco-cream-50); }

.lco-banquets-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.lco-banquets-img {
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(60,20,15,0.14);
  background: url('https://lacharrueorbe.com/wp-content/uploads/2024/05/1.jpg') center/cover no-repeat;
}

.lco-banquets-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--lco-ink-600);
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.lco-banquets-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lco-banquets-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lco-ink-600);
  line-height: 1.55;
}
.lco-banquets-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--lco-copper-500);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============================================================
   SECTION — TÉMOIGNAGES
   ============================================================ */
.lco-avis { background: var(--lco-cream-100); }

.lco-avis-hd {
  text-align: center;
  margin-bottom: 52px;
}
.lco-avis-hd .lco-section-title em {
  font-style: italic;
  color: var(--lco-copper-600);
}

.lco-avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.lco-avis-card {
  background: var(--lco-cream-50);
  padding: 28px;
  border-radius: 2px;
  box-shadow: 0 2px 16px rgba(60,20,15,0.06);
}

.lco-stars {
  display: flex;
  gap: 3px;
  color: var(--lco-copper-500);
  font-size: 17px;
  margin-bottom: 18px;
}

.lco-avis-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--lco-ink-900);
  line-height: 1.65;
  margin-bottom: 20px;
}

.lco-avis-sep {
  height: 1px;
  background: rgba(60,20,15,0.1);
  margin-bottom: 18px;
}

.lco-avis-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--lco-ink-900);
  margin-bottom: 2px;
}
.lco-avis-source {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--lco-ink-600);
}

.lco-score {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 44px;
  background: var(--lco-cream-50);
  border-radius: 2px;
}
.lco-score-num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--lco-copper-500);
  line-height: 1;
  margin-bottom: 8px;
}
.lco-score-stars {
  color: var(--lco-copper-500);
  font-size: 20px;
  margin-bottom: 10px;
}
.lco-score-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--lco-ink-600);
}

/* ============================================================
   SECTION — NOUS RENDRE VISITE
   ============================================================ */
.lco-visite { background: var(--lco-cream-50); }

.lco-visite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lco-visite-items { display: flex; flex-direction: column; gap: 22px; }

.lco-visite-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lco-visite-ico {
  width: 44px;
  height: 44px;
  background: rgba(201,152,91,0.1);
  border: 1px solid rgba(201,152,91,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lco-copper-500);
  flex-shrink: 0;
}
.lco-visite-ico svg { width: 18px; height: 18px; }
.lco-visite-item-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lco-copper-500);
  margin-bottom: 4px;
}
.lco-visite-item-val {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lco-ink-600);
  line-height: 1.6;
}
.lco-visite-item-val a {
  color: var(--lco-ink-600);
  border-bottom: 1px solid rgba(74,58,48,0.28);
  transition: color 0.2s, border-color 0.2s;
}
.lco-visite-item-val a:hover { color: var(--lco-copper-600); border-color: var(--lco-copper-600); opacity: 1; }

.lco-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-left: 8px;
  vertical-align: middle;
}
.lco-badge-open { background: rgba(22,163,74,0.1); color: #16A34A; }
.lco-badge-closed { background: rgba(220,38,38,0.08); color: #DC2626; }
.lco-badge-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.lco-visite-map {
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(60,20,15,0.1);
}
.lco-visite-map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   SECTION — RÉSERVATION
   ============================================================ */
.lco-resa {
  background: var(--lco-bordeaux-800);
  position: relative;
  overflow: hidden;
}
.lco-resa::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.lco-resa-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.lco-resa-inner .lco-section-title { color: var(--lco-cream-50); }
.lco-resa-inner .lco-kicker { color: var(--lco-copper-400); justify-content: center; }

.lco-resa-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(250,244,232,0.78);
  margin-bottom: 40px;
  line-height: 1.72;
}

.lco-resa-cta { display: flex; justify-content: center; margin-bottom: 20px; }

.lco-resa-alt {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250,244,232,0.5);
  margin-top: 18px;
}
.lco-resa-alt a {
  color: var(--lco-copper-400);
  border-bottom: 1px solid rgba(217,178,126,0.35);
  transition: border-color 0.2s;
}
.lco-resa-alt a:hover { border-color: var(--lco-copper-400); opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lco-univers-grid { grid-template-columns: repeat(2, 1fr); }
  .lco-avis-grid { grid-template-columns: repeat(2, 1fr); }
  .lco-bistrot-grid { gap: 56px; }
  .lco-feu-grid { gap: 56px; }
}

@media (max-width: 768px) {
  :root { --lco-section-py: 64px; }

  .lco-container { padding: 0 20px; }

  .lco-bistrot-grid,
  .lco-feu-grid,
  .lco-banquets-grid,
  .lco-visite-grid { grid-template-columns: 1fr; gap: 40px; }

  .lco-bistrot-img-wrap { order: -1; }
  .lco-banquets-img { order: -1; aspect-ratio: 16/9; }

  .lco-univers-grid { grid-template-columns: 1fr; }
  .lco-ucard { height: 300px; }
  .lco-ucard .lco-ucard-bg { filter: blur(0) brightness(0.68); transform: scale(1); }
  .lco-ucard .lco-ucard-overlay { background: rgba(60,20,15,0.38); }
  .lco-ucard p { opacity: 1; transform: translateY(0); }

  .lco-avis-grid { grid-template-columns: 1fr; }

  .lco-hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .lco-hero-stats { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .lco-hero-stats .lco-stat {
    border-right: none;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
  }
  .lco-hero-ctas { flex-direction: column; align-items: center; }
  .lco-hero-ctas .lco-btn { width: 100%; max-width: 300px; }

  .lco-visite-map { aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
  .lco-hero-title { font-size: 2rem; }
  .lco-emporter-price { font-size: 3.5rem; }
  .lco-score-num { font-size: 2.8rem; }
}
