/* ═══════════════════════════════════════════════════════════════════
   BOUCHERIE DE LA RÉPUBLIQUE — FRONTON
   Design premium · Chaud · Artisanal · Prestige — v3.0
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────────── */
:root {
  --gold:        #C8933A;
  --gold-light:  #e0a848;
  --gold-pale:   #f5e6c8;
  --gold-dark:   #9e7025;
  --dark:        #1a0d06;
  --dark-2:      #261508;
  --dark-3:      #3d2010;
  --cream:       #fdf8f2;
  --cream-2:     #f5ede0;
  --cream-3:     #ede0cc;
  --text:        #2d1a0e;
  --text-mid:    #5a3a20;
  --text-light:  #8a6444;
  --white:       #ffffff;
  --radius:      14px;
  --shadow:      0 4px 24px rgba(26,13,6,.12);
  --shadow-md:   0 8px 40px rgba(26,13,6,.18);
  --shadow-lg:   0 20px 60px rgba(26,13,6,.28);
  --transition:  .35s cubic-bezier(.4,0,.2,1);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-alt:    'Cormorant Garamond', Georgia, serif;
  --font-body:   'Lato', system-ui, sans-serif;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── TOPBAR ────────────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  font-size: 12.5px;
  letter-spacing: .05em;
  text-align: center;
  padding: 9px 20px;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.topbar a { color: var(--gold); transition: color var(--transition); }
.topbar a:hover { color: var(--gold-light); }
.topbar .sep { color: rgba(255,255,255,.2); }

/* ── NAVIGATION ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(26,13,6,.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,147,58,.18);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: 72px;
}
.nav-logo img { height: 50px; width: auto; object-fit: contain; transition: opacity var(--transition); }
.nav-logo:hover img { opacity: .82; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 8px 13px; border-radius: 6px;
  transition: all var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px; background: var(--gold);
  border-radius: 1px; transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-tel {
  color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: .04em;
  border: 1.5px solid rgba(200,147,58,.35); padding: 7px 16px; border-radius: 50px;
  transition: all var(--transition); white-space: nowrap;
}
.nav-tel:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.nav-burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all .3s; }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px; max-height: 920px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06); animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,13,6,.78) 0%, rgba(26,13,6,.52) 50%, rgba(26,13,6,.82) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: var(--white);
  padding: 0 24px; max-width: 820px;
  animation: fadeUp .9s .2s both;
}
.hero-eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(200,147,58,.38); padding: 7px 20px; border-radius: 50px;
  margin-bottom: 28px; background: rgba(200,147,58,.07);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(14px, 2vw, 17px); color: rgba(255,255,255,.78);
  margin-bottom: 42px; font-weight: 300; letter-spacing: .03em; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  animation: scrollBounce 2.2s infinite;
}
.hero-scroll::before {
  content: ''; display: block; width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35));
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── BOUTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer; border: none; font-family: var(--font-body);
}
.btn-gold { background: var(--gold); color: var(--dark); box-shadow: 0 4px 22px rgba(200,147,58,.38); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,147,58,.52); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); }

/* ── TRUST BAR ─────────────────────────────────────────────────── */
.trust-bar { background: var(--dark); border-bottom: 1px solid rgba(200,147,58,.12); }
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 22px; color: rgba(255,255,255,.72);
  font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-item .ti-icon { font-size: 15px; }

/* ── SECTIONS ──────────────────────────────────────────────────── */
.section     { padding: 90px 24px; }
.section-sm  { padding: 60px 24px; }
.container   { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub { font-size: 16.5px; color: var(--text-mid); max-width: 580px; line-height: 1.8; }
.section-sub.light { color: rgba(255,255,255,.65); }
.gold-line { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 16px 0 32px; }

/* ── AMBIANCE ──────────────────────────────────────────────────── */
.ambiance { background: var(--cream); }
.ambiance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ambiance-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.ambiance-img-wrap img { width: 100%; height: 520px; object-fit: cover; transition: transform .6s ease; }
.ambiance-img-wrap:hover img { transform: scale(1.04); }
.ambiance-badge {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--gold); color: var(--dark);
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
}
.ambiance-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 16.5px; line-height: 1.8; }

/* ── VALEURS ───────────────────────────────────────────────────── */
.valeurs { background: var(--dark-2); padding: 70px 24px; }
.valeurs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.valeur-item {
  background: rgba(255,255,255,.02); border: 1px solid rgba(200,147,58,.1);
  padding: 42px 28px; text-align: center; transition: all var(--transition);
}
.valeur-item:hover { background: rgba(200,147,58,.06); border-color: rgba(200,147,58,.28); transform: translateY(-4px); }
.valeur-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.valeur-nom { font-family: var(--font-serif); font-size: 1.12rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.valeur-desc { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ── PRODUITS ──────────────────────────────────────────────────── */
.produits { background: var(--cream-2); }
.produits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.produit-card {
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow); transition: all var(--transition);
  text-decoration: none; display: block;
}
.produit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.produit-card-img { position: relative; overflow: hidden; height: 240px; }
.produit-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.produit-card:hover .produit-card-img img { transform: scale(1.08); }
.produit-card-label {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--dark);
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 50px;
}
.produit-card-body { padding: 26px 28px; }
.produit-card-title { font-family: var(--font-serif); font-size: 1.35rem; color: var(--text); margin-bottom: 8px; font-weight: 700; }
.produit-card-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.produit-card-link {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap var(--transition);
}
.produit-card:hover .produit-card-link { gap: 10px; }
.produit-card-link::after { content: '→'; }

/* ── PRESTIGE ──────────────────────────────────────────────────── */
.prestige { background: var(--dark); position: relative; overflow: hidden; }
.prestige::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(200,147,58,.07) 0%, transparent 68%);
  pointer-events: none;
}
.prestige-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.prestige-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.prestige-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.prestige-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,147,58,.12) 0%, transparent 55%);
}
.prestige-tag {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  background: rgba(26,13,6,.9); border: 1px solid rgba(200,147,58,.4);
  color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
}
.prestige-text { color: var(--white); }
.prestige-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.prestige-list-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,147,58,.1); border-radius: 10px; transition: all var(--transition);
}
.prestige-list-item:hover { background: rgba(200,147,58,.06); border-color: rgba(200,147,58,.28); }
.prestige-list-icon { font-size: 1.4rem; flex-shrink: 0; }
.prestige-list-content h4 { font-family: var(--font-serif); color: var(--gold); margin-bottom: 3px; font-size: 1rem; }
.prestige-list-content p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ── FERMIERS ──────────────────────────────────────────────────── */
.fermiers-section {
  position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden;
}
.fermiers-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fermiers-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,13,6,.93) 42%, rgba(26,13,6,.28) 100%);
}
.fermiers-content { position: relative; z-index: 2; max-width: 560px; color: var(--white); padding: 80px 24px; }
.fermiers-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,147,58,.13); border: 1px solid rgba(200,147,58,.38);
  color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 50px; margin-top: 26px;
}

/* ── TÉMOIGNAGES ───────────────────────────────────────────────── */
.temoignages { background: var(--cream); }
.temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.temoignage-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 30px;
  box-shadow: var(--shadow); position: relative; border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.temoignage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.temoignage-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.temoignage-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.temoignage-quote { font-size: 3rem; line-height: .8; color: var(--gold-pale); font-family: var(--font-serif); margin-bottom: 10px; display: block; }
.temoignage-auteur { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .06em; }
.temoignage-lieu { font-size: 12px; color: var(--text-light); margin-top: 3px; }

/* ── HORAIRES CONTACT ──────────────────────────────────────────── */
.horaires-contact { background: var(--dark-2); }
.horaires-contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.hc-block { background: rgba(255,255,255,.02); border: 1px solid rgba(200,147,58,.08); padding: 48px 38px; }
.hc-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(200,147,58,.18); }
.hc-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.04); }
.hc-row:last-child { border-bottom: none; }
.hc-day { color: rgba(255,255,255,.55); }
.hc-hours { color: var(--white); font-weight: 700; font-size: 13px; }
.hc-ferme { color: rgba(255,255,255,.28); }
.hc-info { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; font-size: 15px; }
.hc-info-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.hc-info-text { color: rgba(255,255,255,.65); line-height: 1.6; }
.hc-info-text a { color: var(--gold); transition: color var(--transition); }
.hc-info-text a:hover { color: var(--gold-light); }
.hc-fermetures {
  margin-top: 16px; padding: 13px 15px;
  background: rgba(200,147,58,.06); border: 1px solid rgba(200,147,58,.14);
  border-radius: 8px; font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65;
}
.hc-social { display: flex; gap: 10px; margin-top: 22px; }
.hc-social a {
  width: 40px; height: 40px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: 16px; transition: all var(--transition);
}
.hc-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* ── MAP ───────────────────────────────────────────────────────── */
.map-section iframe { width: 100%; height: 360px; border: none; display: block; filter: sepia(.25) brightness(.85); }

/* ── CTA BANNER ────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  padding: 64px 24px; text-align: center;
}
.cta-banner-title { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.5rem); color: var(--dark); font-weight: 700; margin-bottom: 12px; }
.cta-banner-sub { font-size: 16px; color: rgba(26,13,6,.68); margin-bottom: 28px; }

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid rgba(200,147,58,.12); padding: 60px 24px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo { height: 46px; width: auto; margin-bottom: 16px; opacity: .88; }
.footer-desc { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,.38); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 14px; transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-col-title { font-family: var(--font-serif); font-size: 1rem; color: var(--white); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(200,147,58,.18); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: all var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 16px; line-height: 1; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-certifs { display: flex; flex-direction: column; gap: 8px; }
.footer-certif { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,.42); padding: 8px 12px; border: 1px solid rgba(255,255,255,.06); border-radius: 6px; }
.footer-partenaire { margin-top: 14px; padding: 14px; background: rgba(200,147,58,.05); border: 1px solid rgba(200,147,58,.14); border-radius: 8px; }
.footer-partenaire a { color: var(--gold); font-size: 13px; font-weight: 700; transition: color var(--transition); }
.footer-partenaire a:hover { color: var(--gold-light); }
.footer-partenaire p { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 3px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,.22);
}

/* ── PAGE HERO (intérieur) ─────────────────────────────────────── */
.page-hero {
  position: relative; height: 420px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,13,6,.88) 0%, rgba(26,13,6,.38) 60%, rgba(26,13,6,.18) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; color: var(--white);
  padding: 50px 24px; max-width: 1200px; margin: 0 auto; width: 100%;
}
.page-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.page-hero-title { font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 700; margin-bottom: 10px; }
.page-hero-sub { font-size: 15px; color: rgba(255,255,255,.65); letter-spacing: .03em; }

/* ── GALERIE ───────────────────────────────────────────────────── */
.galerie-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.galerie-item { aspect-ratio: 1; overflow: hidden; border-radius: 10px; }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.galerie-item:hover img { transform: scale(1.08); }

/* ── SPLIT ─────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); }
.split-img img { width: 100%; height: 480px; object-fit: cover; transition: transform .5s ease; }
.split-img:hover img { transform: scale(1.04); }

/* ── RACES ─────────────────────────────────────────────────────── */
.races-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.race-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(200,147,58,.13);
  border-radius: 12px; padding: 22px; transition: all var(--transition);
}
.race-card:hover { background: rgba(200,147,58,.06); border-color: rgba(200,147,58,.3); transform: translateY(-3px); }
.race-icon { font-size: 1.7rem; margin-bottom: 9px; }
.race-nom { font-family: var(--font-serif); font-size: 1.02rem; color: var(--gold); margin-bottom: 5px; }
.race-desc { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.55; }

/* ── PLATEAUX ──────────────────────────────────────────────────── */
.plateaux-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.plateau-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition); display: flex; flex-direction: column;
}
.plateau-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plateau-img { height: 220px; overflow: hidden; }
.plateau-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.plateau-card:hover .plateau-img img { transform: scale(1.06); }
.plateau-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.plateau-prix { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); font-weight: 700; margin-bottom: 3px; }
.plateau-pers { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 13px; }
.plateau-titre { font-family: var(--font-serif); font-size: 1.2rem; color: var(--text); margin-bottom: 9px; font-weight: 700; }
.plateau-texte { font-size: 14px; color: var(--text-mid); line-height: 1.65; flex: 1; }

/* ── CONTACT ───────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info-block { background: var(--dark); border-radius: 20px; padding: 40px; color: var(--white); }
.contact-form-block { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 7px; }
.form-input, .form-textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--cream-3); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--cream);
  outline: none; transition: border-color var(--transition); resize: vertical;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); background: var(--white); }
.form-textarea { min-height: 130px; }

/* ── ADMIN LOGIN ───────────────────────────────────────────────── */
.admin-login { min-height: 100vh; background: var(--dark); display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-card { background: var(--dark-2); border: 1px solid rgba(200,147,58,.2); border-radius: 20px; padding: 50px 44px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); text-align: center; }
.admin-logo { height: 54px; margin: 0 auto 28px; }
.admin-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }
.admin-sub { font-size: 13px; color: rgba(255,255,255,.38); margin-bottom: 30px; }
.admin-input { width: 100%; padding: 14px 18px; border: 1.5px solid rgba(200,147,58,.28); border-radius: 10px; background: rgba(0,0,0,.28); color: var(--white); font-size: 16px; outline: none; transition: border-color var(--transition); margin-bottom: 14px; font-family: var(--font-body); }
.admin-input:focus { border-color: var(--gold); }
.admin-error { background: rgba(180,40,40,.14); border: 1px solid rgba(180,40,40,.28); color: #f08080; padding: 10px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; }

/* ── ANIMATIONS ────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ambiance-grid, .prestige-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .valeurs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .horaires-contact-grid { grid-template-columns: 1fr; }
  .races-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  .nav-links, .nav-tel { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { height: 62px; }
  .hero { height: 88vh; min-height: 500px; }
  .produits-grid, .temoignages-grid, .plateaux-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  .ambiance-img-wrap img, .split-img img { height: 300px; }
  .prestige-img-wrap img { height: 260px; }
  .races-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .page-hero { height: 320px; }
}
@media (max-width: 480px) {
  .trust-bar-inner { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); width: 100%; justify-content: center; padding: 10px; }
  .trust-item:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile nav open */
@media (max-width: 768px) {
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 62px; left: 0; right: 0;
    background: rgba(26,13,6,.98); padding: 20px; gap: 4px;
    border-bottom: 1px solid rgba(200,147,58,.18);
    z-index: 999;
  }
  .nav.open .nav-tel {
    display: block; margin: 0 20px 16px; text-align: center; position: relative; z-index: 999;
  }
}
