/* ─────────────────────────────────────
   TOKENS — palette boucherie artisanale
───────────────────────────────────── */
:root {
  --rouge:      #B01C2E;
  --rouge-fonce:#7E1220;
  --rouge-clair:#CC2438;
  --blanc:      #FAFAF8;
  --creme:      #F5F0E8;
  --kraft:      #E8DCC8;
  --kraft2:     #D4C4A8;
  --bois:       #6B4226;
  --bois2:      #4A2D18;
  --noir:       #1A0F08;
  --texte:      #2E1A0E;
  --texte2:     #5C3D28;
  --texte3:     #8C6E58;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', Arial, sans-serif;
  background: var(--blanc);
  color: var(--texte);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--kraft); }
::-webkit-scrollbar-thumb { background: var(--rouge); }

/* ─────────────────────────────────────
   MOTIF CARRELAGE
───────────────────────────────────── */
.tile-bg {
  background-color: var(--blanc);
  background-image:
    linear-gradient(var(--kraft2) 1px, transparent 1px),
    linear-gradient(90deg, var(--kraft2) 1px, transparent 1px);
  background-size: 40px 40px;
}
.tile-bg-rouge {
  background-color: var(--rouge);
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--rouge);
  display: flex; align-items: stretch; justify-content: space-between;
  height: 88px;
  box-shadow: 0 2px 12px rgba(112,18,28,.35);
}
.nav-logo {
  display: flex; flex-direction: row; align-items: center; gap: .6rem;
  padding: 0 1rem 0 clamp(.8rem, 3vw, 2rem);
  border-right: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}
.nav-logo img {
  height: 68px; width: auto;
  max-width: 180px;
  object-fit: contain; flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; font-style: italic;
  color: #fff; letter-spacing: .01em; line-height: 1.15; white-space: nowrap;
}
.nav-logo-since {
  font-size: .6rem; font-weight: 300; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
}
.nav-links {
  display: flex; list-style: none; margin: 0; align-items: stretch;
  gap: 0;
}
.nav-links li { display: flex; }
.nav-links a {
  display: flex; align-items: center;
  padding: 0 1.4rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(0,0,0,.12); color: #fff; }
.nav-tel-wrap {
  display: flex; align-items: center;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(255,255,255,.15);
  gap: .8rem;
}
.nav-tel {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: #fff;
  letter-spacing: .03em; white-space: nowrap;
}
.nav-tel:hover { color: var(--kraft); }
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 0 1.4rem;
  border-left: 1px solid rgba(255,255,255,.15);
}
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: .3s; }
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--rouge-fonce);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; z-index: 899;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-style: italic;
  color: rgba(255,255,255,.85); transition: color .2s;
}
.mobile-nav a:hover { color: var(--kraft); }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  padding-top: 80px;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.hero-panel {
  background-color: var(--rouge);
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem,6vw,5rem) clamp(2.5rem,7vw,7rem) clamp(3rem,6vw,5rem) clamp(2rem,8vw,8rem);
  position: relative;
}
.hero-enseigne {
  display: inline-block;
  font-size: .62rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 1.8rem;
  opacity: 0; animation: au .7s .1s forwards;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900; color: #fff; line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: .3rem;
  opacity: 0; animation: au .8s .2s forwards;
}
.hero h1 .italic-line {
  display: block; font-weight: 400; font-style: italic;
  font-size: .62em; color: var(--kraft); line-height: 1.5;
}
.hero h1 .italic-line2 {
  display: block; font-weight: 400; font-style: italic;
  font-size: .62em; color: rgba(255,255,255,.75); line-height: 1.3;
}
.hero-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2rem 0;
  opacity: 0; animation: au .7s .3s forwards;
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,.25);
}
.hero-divider-inner {
  display: flex; align-items: center; gap: 8px;
  color: var(--kraft); font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; white-space: nowrap;
}
.hero-desc {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.75);
  line-height: 1.85; max-width: 420px; margin-bottom: 2.5rem;
  opacity: 0; animation: au .7s .4s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: au .7s .5s forwards;
}
.btn-blanc {
  background: #fff; color: var(--rouge);
  font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s, color .25s, transform .2s;
  border: 2px solid #fff;
}
.btn-blanc:hover { background: var(--kraft); color: var(--rouge-fonce); transform: translateY(-2px); }
.btn-transparent {
  background: transparent; color: rgba(255,255,255,.85);
  font-size: .7rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color .25s, color .25s;
}
.btn-transparent:hover { border-color: rgba(255,255,255,.85); color: #fff; }
.hero-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
  opacity: 0; animation: au .7s .65s forwards;
}
.hero-tag {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8); font-size: .6rem; letter-spacing: .15em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 2px;
  transition: background .2s;
}
.hero-tag:hover { background: rgba(255,255,255,.2); }
.hero-photo {
  position: relative; overflow: hidden;
  background: var(--bois2);
  min-height: 65vh;
}
.hero-photo-img {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #7A4530 0%, #4A2D18 45%, #2E1A0E 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.hero-photo-ph {
  font-size: 6rem; filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
  opacity: .8;
}
.hero-photo-caption {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: rgba(255,255,255,.3); font-size: 1rem;
}
.hero-photo-hint {
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.15); margin-top: .3rem;
}
.hero-stamp {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  width: 110px; height: 110px;
  border: 3px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
}
.hero-stamp::before {
  content: ''; position: absolute; inset: 6px;
  border: 1px dashed rgba(255,255,255,.12); border-radius: 50%;
}
.hero-stamp-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: rgba(255,255,255,.2); line-height: 1;
}
.hero-stamp-text {
  font-size: .45rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.18); text-align: center;
}

@keyframes au { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform:none; } }

/* ─────────────────────────────────────
   BANDEAU STATS
───────────────────────────────────── */
.qualites-band {
  background: var(--bois2);
  display: flex; flex-wrap: wrap;
}
.qualite-item {
  flex: 1; min-width: 150px;
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: .3rem;
  transition: background .2s;
}
.qualite-item:last-child { border-right: none; }
.qualite-item:hover { background: rgba(255,255,255,.04); }
.qualite-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--kraft);
  line-height: 1;
}
.qualite-n sup { font-size: .85rem; vertical-align: super; }
.qualite-l {
  font-size: .62rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}

/* ─────────────────────────────────────
   MARQUEE
───────────────────────────────────── */
.marquee-wrap {
  background: var(--kraft);
  border-top: 2px solid var(--bois);
  border-bottom: 2px solid var(--bois);
  padding: 12px 0; overflow: hidden;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.m-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0 2rem;
  font-family: 'Playfair Display', serif;
  font-size: .85rem; font-style: italic; font-weight: 400;
  color: var(--bois2); white-space: nowrap;
}
.m-sep { color: var(--rouge); font-style: normal; font-size: 1.2rem; }

/* ─────────────────────────────────────
   SECTIONS utilitaires
───────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5.5rem); }
.inner { max-width: 1180px; margin: 0 auto; }
.s-eyebrow {
  font-size: .62rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--rouge); display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem;
}
.s-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--rouge); }
h2.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700; color: var(--texte);
  line-height: 1.1; letter-spacing: -.01em;
}
h2.s-title em { font-style: italic; color: var(--rouge); font-weight: 400; }
.reveal { opacity:0; transform:translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity:1; transform:none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ─────────────────────────────────────
   HISTOIRE
───────────────────────────────────── */
.histoire { background: var(--blanc); }
.histoire-grid {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: clamp(3rem, 7vw, 6rem); align-items: start;
}
.histoire-text p {
  font-size: .97rem; font-weight: 300; color: var(--texte2);
  line-height: 1.9; margin-bottom: 1.3rem;
}
.histoire-text .lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-style: italic; font-weight: 400;
  color: var(--texte); line-height: 1.65; margin-bottom: 2rem;
}
.histoire-text p strong { color: var(--texte); font-weight: 600; }
.histoire-aside { display: flex; flex-direction: column; gap: 1px; margin-top: 3.8rem; }
.aside-row {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--creme); padding: 1.4rem 1.8rem;
  border-left: 3px solid var(--rouge);
  transition: border-left-width .2s, background .2s;
}
.aside-row:hover { background: var(--kraft); border-left-width: 5px; }
.aside-row-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 100; color: var(--rouge);
  line-height: 1; flex-shrink: 0; width: 80px;
}
.aside-row-n sup { font-size: .9rem; vertical-align: super; }
.aside-row-l {
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--texte2);
}

/* ─────────────────────────────────────
   ENGAGEMENTS
───────────────────────────────────── */
.engage { background: var(--creme); }
.engage-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.engage-card {
  background: var(--blanc);
  border-top: 3px solid var(--rouge);
  padding: 2rem 1.8rem;
  transition: box-shadow .3s, transform .3s;
}
.engage-card:hover { box-shadow: 0 8px 32px rgba(112,18,28,.1); transform: translateY(-4px); }
.engage-card-icon {
  font-size: 2rem; margin-bottom: 1.2rem; display: block;
  filter: grayscale(.2);
}
.engage-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--texte);
  margin-bottom: .7rem;
}
.engage-card p {
  font-size: .88rem; font-weight: 300; color: var(--texte2); line-height: 1.85;
}

/* ─────────────────────────────────────
   PRODUITS — onglets
───────────────────────────────────── */
.produits { background: var(--blanc); }
.tabs-bar {
  display: flex; border-bottom: 2px solid var(--rouge);
  margin: 2.5rem 0 2.5rem; gap: 0; overflow-x: auto;
}
.tab-btn {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-style: italic; font-weight: 400;
  color: var(--texte3); padding: .8rem 2rem;
  background: transparent; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  white-space: nowrap; transition: color .2s, border-color .2s, background .2s;
}
.tab-btn:hover { color: var(--texte); background: var(--creme); }
.tab-btn.active { color: var(--rouge); border-bottom-color: var(--rouge); background: var(--creme); font-weight: 700; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* grille viandes */
.viandes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.viande-card {
  background: var(--creme);
  border: 1px solid var(--kraft2);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.viande-card:hover { box-shadow: 0 10px 35px rgba(112,18,28,.12); transform: translateY(-4px); }
.viande-photo {
  height: 220px; overflow: hidden;
  background: var(--kraft);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem; position: relative;
}
.viande-photo-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: sepia(.15) contrast(1.06) brightness(.95);
  transition: transform .5s, filter .5s;
}
.viande-card:hover .viande-photo-img { transform: scale(1.04); filter: sepia(.05) contrast(1.1); }
.viande-photo-ph { font-size: 4rem; }
.viande-photo-label {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: .85rem; color: var(--texte3);
}
.viande-etiquette {
  position: absolute; top: 1rem; left: 0;
  background: var(--rouge); color: #fff;
  font-size: .58rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 14px 4px 12px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}
.viande-body { padding: 1.5rem 1.8rem 1.8rem; }
.viande-sous-tag {
  font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rouge); margin-bottom: .4rem; display: block;
}
.viande-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700; color: var(--texte);
  margin-bottom: .5rem; line-height: 1.1;
}
.viande-body p {
  font-size: .9rem; font-weight: 300; color: var(--texte2);
  line-height: 1.85; font-style: italic;
}
.viande-barre {
  width: 28px; height: 2px; background: var(--rouge);
  margin-bottom: .7rem; transition: width .4s;
}
.viande-card:hover .viande-barre { width: 50px; }

/* charcuterie */
.charc-layout { display: grid; grid-template-columns: 5fr 6fr; gap: 4rem; align-items: center; }
.charc-photo {
  aspect-ratio: 3/4; background: var(--kraft);
  border: 1px solid var(--kraft2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .8rem; position: relative;
  overflow: hidden;
}
.charc-photo-ph { font-size: 5rem; opacity: .7; }
.charc-photo-label {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--texte3); font-size: .9rem;
}
.charc-photo-hint {
  position: absolute; bottom: 1rem; font-size: .55rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--kraft2);
}
.charc-photo::after {
  content: 'ARTISANAL';
  position: absolute; top: 22px; right: -28px;
  background: var(--rouge); color: #fff;
  font-size: .5rem; font-weight: 600; letter-spacing: .2em;
  padding: 5px 40px; transform: rotate(45deg);
}
.charc-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--texte);
  line-height: 1.1; margin-bottom: 1.2rem;
}
.charc-content h3 em { color: var(--rouge); font-style: italic; font-weight: 400; }
.garantie-box {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFF3F4; border: 1px solid rgba(176,28,46,.25);
  color: var(--rouge); font-size: .65rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 16px; margin-bottom: 1.8rem;
  border-radius: 1px;
}
.charc-items { list-style: none; margin-bottom: 2rem; }
.charc-items li {
  display: flex; align-items: center; gap: 1.2rem;
  padding: .85rem 0; border-bottom: 1px solid var(--kraft2);
  font-size: .95rem; font-weight: 400; color: var(--texte2);
}
.charc-items li:last-child { border-bottom: none; }
.charc-items li::before {
  content: ''; flex-shrink: 0;
  width: 8px; height: 8px; background: var(--rouge); border-radius: 50%;
}

/* traiteur */
.traiteur-bloc {
  border: 1px solid var(--kraft2); overflow: hidden;
}
.traiteur-top {
  background: var(--rouge);
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: 3rem clamp(2rem, 5vw, 4rem);
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-end; justify-content: space-between;
}
.traiteur-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; font-style: italic;
  color: #fff; line-height: 1.1;
}
.traiteur-top h3 span {
  display: block; font-size: .55em; font-style: normal; font-weight: 300;
  color: rgba(255,255,255,.6); letter-spacing: .2em; text-transform: uppercase; margin-bottom: .4rem;
}
.traiteur-top-desc {
  font-size: .97rem; font-weight: 300; color: rgba(255,255,255,.75);
  max-width: 380px; line-height: 1.85;
}
.traiteur-photo {
  height: 240px; background: var(--bois2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .6rem; position: relative;
}
.traiteur-photo-ph { font-size: 5rem; opacity: .6; }
.traiteur-photo-label {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: rgba(255,255,255,.3); font-size: .9rem;
}
.traiteur-menu {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--kraft2);
}
.traiteur-cat {
  padding: 1.8rem 2rem; border-right: 1px solid var(--kraft2);
  background: var(--creme); transition: background .2s;
}
.traiteur-cat:last-child { border-right: none; }
.traiteur-cat:hover { background: var(--kraft); }
.traiteur-cat-eye {
  font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rouge); margin-bottom: .6rem;
}
.traiteur-cat h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--texte); margin-bottom: .7rem;
}
.traiteur-cat ul { list-style: none; }
.traiteur-cat ul li {
  font-size: .85rem; font-weight: 300; color: var(--texte2);
  padding: .3rem 0; border-bottom: 1px solid rgba(0,0,0,.06);
}
.traiteur-cat ul li:last-child { border-bottom: none; }
.traiteur-footer {
  background: var(--blanc); padding: 1.5rem 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; border-top: 1px solid var(--kraft2);
}
.traiteur-footer p { font-size: .88rem; font-style: italic; color: var(--texte3); }

/* ─────────────────────────────────────
   BOUTONS ROUGE
───────────────────────────────────── */
.btn-rouge {
  background: var(--rouge); color: #fff;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s, transform .2s;
  border: none; cursor: pointer;
}
.btn-rouge:hover { background: var(--rouge-clair); transform: translateY(-2px); }

/* ─────────────────────────────────────
   BANDEAU CTA
───────────────────────────────────── */
.cta-strip {
  background: var(--bois2);
  padding: clamp(3.5rem, 6vw, 5rem) clamp(2rem, 6vw, 6rem);
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.cta-strip::after {
  content: '';
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06); pointer-events: none;
}
.cta-strip-text p {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--kraft); opacity: .7; margin-bottom: .7rem;
}
.cta-strip-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-style: italic;
  font-weight: 400; color: #fff; line-height: 1.2;
}
.btn-kraft {
  background: var(--kraft); color: var(--bois2);
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  transition: background .25s, transform .2s;
}
.btn-kraft:hover { background: var(--kraft2); transform: translateY(-2px); }

/* ─────────────────────────────────────
   CONTACT
───────────────────────────────────── */
.contact-s { background: var(--creme); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: start;
}
.horaires-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.horaires-table tr { border-bottom: 1px solid var(--kraft2); }
.horaires-table tr:first-child { border-top: 1px solid var(--kraft2); }
.horaires-table td { padding: .85rem .5rem; font-size: .92rem; }
.horaires-table .col-jour {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: .92rem; color: var(--texte); width: 110px;
}
.horaires-table .col-heures { color: var(--texte2); }
.horaires-table tr.ferme .col-jour,
.horaires-table tr.ferme .col-heures { color: var(--texte3); font-style: italic; }
.badge-ouvert {
  font-size: .55rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 2px;
  background: #E8F5EC; color: #2D7A42;
}
.badge-ferme {
  font-size: .55rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 2px;
  background: #FFF0F1; color: var(--rouge);
}
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-card {
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--blanc); border: 1px solid var(--kraft2);
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--rouge);
  transition: border-left-width .2s;
}
.contact-card:hover { border-left-width: 5px; }
.contact-card-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-card strong {
  display: block; font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rouge); margin-bottom: .2rem;
}
.contact-card span, .contact-card a {
  font-size: .93rem; color: var(--texte2); font-weight: 400; transition: color .2s;
}
.contact-card a:hover { color: var(--rouge); }
.map-wrap {
  height: 230px; border: 1px solid var(--kraft2);
  overflow: hidden; margin-top: 1.2rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--rouge-fonce);
  padding: 2.5rem clamp(1.5rem, 6vw, 5.5rem);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.5rem;
  border-top: 4px solid var(--rouge);
}
.footer-brand {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.15rem; font-weight: 700; color: #fff;
}
.footer-brand small {
  display: block; font-family: 'Source Sans 3', sans-serif;
  font-style: normal; font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 3px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; transition: color .2s;
}
.footer-links a:hover { color: var(--kraft); }
.footer-copy {
  font-size: .65rem; color: #fff; text-align: right;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-tel-wrap { display: none; }
  .burger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 55vw; order: -1; }
  .histoire-grid { grid-template-columns: 1fr; }
  .charc-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .traiteur-menu { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}
@media (max-width: 600px) {
  .viandes-grid { grid-template-columns: 1fr; }
  .qualites-band { flex-direction: column; }
  .qualite-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .qualite-item:last-child { border-bottom: none; }
  .traiteur-menu { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; align-items: center; gap: 1rem; }
  .traiteur-top { flex-direction: column; }
}
