/* ==========================================================
   AUX DUCS DE BOURGOGNE — Feuille de style principale
   Crêperie artisanale · Paris 7e
   ========================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --vert:         #2B4A2E;
  --vert-clair:   #3D6B41;
  --or:           #C8900A;
  --or-clair:     #E8A91A;
  --creme:        #F5F0E8;
  --creme-fonce:  #EDE5D0;
  --brun:         #3A2A1A;
  --texte:        #2A2018;
  --gris:         #6B6055;
  --blanc:        #FDFAF5;

  --font-titre: 'Playfair Display', Georgia, serif;
  --font-corps: 'Source Sans 3', sans-serif;

  --max-home:   1160px;
  --max-menu:   1000px;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(42,32,24,0.10);
  --pad-section:5rem 1.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-corps);
  background: var(--blanc);
  color: var(--texte);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* Container par défaut (pages accueil) */
.container {
  max-width: var(--max-home);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Container plus étroit pour la page menu */
.container-menu {
  max-width: var(--max-menu);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sur la page menu, les .container dans .menu-section sont plus étroits */
.menu-section .container,
.carte-cta .container,
.menu-nav-inner {
  max-width: var(--max-menu);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* Accessibilité : focus clavier visible */
:focus-visible {
  outline: 3px solid var(--or);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ==========================================================
   NAVIGATION
   ========================================================== */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--vert);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  height: 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-logo {
  font-family: var(--font-titre);
  font-size: 1rem;
  font-weight: 700;
  color: var(--creme);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-corps);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--creme);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus { color: var(--or-clair); }

.nav-links a[href="menu.html"],
.nav-links a[href="menu-en.html"] {
  border: 1px solid rgba(200,144,10,0.5);
  padding: 0.35rem 1rem;
  border-radius: var(--radius);
}

/* Bouton réserver */
.btn-reserver,
.btn-nav-reserver {
  background: var(--or);
  color: var(--blanc) !important;
  padding: 0.45rem 1.25rem !important;
  border-radius: var(--radius);
  border: none !important;
  transition: background 0.2s !important;
}
.btn-reserver:hover,
.btn-reserver:focus,
.btn-nav-reserver:hover,
.btn-nav-reserver:focus { background: var(--or-clair) !important; }

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--creme); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0;
  background: var(--vert);
  padding: 1.5rem;
  list-style: none;
  flex-direction: column; gap: 1.2rem;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--creme);
}


/* ==========================================================
   BOUTONS COMMUNS
   ========================================================== */

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-corps);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--or);
  color: var(--blanc);
  border-color: var(--or);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--or-clair);
  border-color: var(--or-clair);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,144,10,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(253,250,245,0.5);
}
.btn-outline:hover,
.btn-outline:focus {
  background: rgba(253,250,245,0.1);
  border-color: var(--blanc);
}

.btn-vert {
  background: var(--vert);
  color: var(--blanc);
  border-color: var(--vert);
}
.btn-vert:hover,
.btn-vert:focus {
  background: var(--vert-clair);
  border-color: var(--vert-clair);
  transform: translateY(-1px);
}


/* ==========================================================
   ÉLÉMENTS COMMUNS
   ========================================================== */

section { padding: var(--pad-section); }

.section-label {
  font-family: var(--font-corps);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 0.8rem;
}

.section-titre {
  font-family: var(--font-titre);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brun);
  margin-bottom: 0.6rem;
}

.section-titre em {
  font-style: italic;
  color: var(--vert);
}

.trait {
  width: 48px; height: 3px;
  background: var(--or);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}

.trait-centre {
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================
   FOOTER COMMUN
   ========================================================== */

footer {
  background: var(--vert);
  color: rgba(253,250,245,0.8);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-home);
  margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--creme);
}
.footer-brand span {
  display: block;
  font-family: var(--font-corps);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-top: 2px;
}

.footer-links {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.7);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-links a:focus { color: var(--or-clair); }

.footer-social { display: flex; gap: 0.75rem; }

.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(253,250,245,0.25);
  color: rgba(253,250,245,0.8);
  transition: all 0.2s;
}
.social-btn:hover,
.social-btn:focus {
  background: rgba(253,250,245,0.1);
  border-color: var(--or-clair);
  color: var(--or-clair);
}

.footer-legal {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(253,250,245,0.4);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1rem;
}


/* ==========================================================
   PAGE ACCUEIL — HERO
   ========================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

/* NOTE : remplacer l'URL Unsplash par img/hero-bg.jpg quand la photo sera prête */
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,35,15,0.45) 0%, rgba(20,35,15,0.75) 60%, rgba(20,35,15,0.92) 100%),
    url('img/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 1;
  padding: 7rem 1.5rem 5rem;
  max-width: var(--max-home);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(232,169,26,0.4);
}

.hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--or-clair);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(253,250,245,0.85);
  max-width: 520px;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.hero-horaires {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(253,250,245,0.7);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
}

/* Animations hero */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero h1      { animation: fadeUp 0.7s 0.15s ease both; }
.hero-sub     { animation: fadeUp 0.7s 0.25s ease both; }
.hero-horaires{ animation: fadeUp 0.7s 0.35s ease both; }
.hero-cta     { animation: fadeUp 0.7s 0.45s ease both; }


/* ==========================================================
   PAGE ACCUEIL — QUARTIER
   ========================================================== */

.quartier {
  background: var(--blanc);
  text-align: center;
}

.quartier p {
  max-width: 580px;
  margin: 0 auto 2rem;
  color: var(--gris);
  font-size: 1.05rem;
}

.quartier-adresse {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem 2.5rem;
  margin-top: 1.5rem;
}

.quartier-adresse span {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--gris);
}

.quartier-adresse svg { color: var(--or); flex-shrink: 0; }


/* ==========================================================
   PAGE ACCUEIL — PROMESSE
   ========================================================== */

.promesse { background: var(--creme); }

.promesse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.promesse-text p {
  color: var(--gris);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.promesse-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(43,74,46,0.2);
  color: var(--vert);
  background: rgba(43,74,46,0.06);
}

.promesse-image { position: relative; }

.promesse-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.promesse-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--vert);
  color: var(--blanc);
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-titre);
  font-size: 0.9rem;
  line-height: 1.3;
  box-shadow: var(--shadow);
  max-width: 240px;
}

.promesse-badge strong {
  display: block;
  font-size: 1.4rem;
  color: var(--or-clair);
}


/* ==========================================================
   PAGE ACCUEIL — CHARLES
   ========================================================== */

.charles { background: var(--blanc); }

.charles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.charles-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.charles-text p {
  color: var(--gris);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.charles-text .mention {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--vert);
  border-left: 3px solid var(--or);
  padding-left: 1rem;
  margin: 1.5rem 0;
}


/* ==========================================================
   PAGE ACCUEIL — AVIS
   ========================================================== */

.avis {
  background: var(--brun);
  color: var(--creme);
  text-align: center;
}

.avis .section-titre { color: var(--creme); }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.avis-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: left;
}

.etoiles {
  color: var(--or-clair);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.avis-card blockquote {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--creme);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.avis-card cite {
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--or-clair);
}


/* ==========================================================
   PAGE ACCUEIL — SERVICES (soirée + emporter)
   ========================================================== */

.services { background: var(--creme); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.service-card {
  background: var(--blanc);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(43,74,46,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--vert);
}

.service-card h3 {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--brun);
}

.service-card p {
  color: var(--gris);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}


/* ==========================================================
   PAGE ACCUEIL — INFOS PRATIQUES
   ========================================================== */

.infos { background: var(--blanc); }

.infos h2 { text-align: center; }
.infos .trait { margin: 1rem auto 3rem; }

.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.infos-col h3 {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--brun);
  margin-bottom: 1rem;
}

.infos-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.6rem;
}

.infos-col li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--gris);
}

.infos-col li svg { flex-shrink: 0; margin-top: 3px; color: var(--or); }
.infos-col strong { color: var(--texte); }

.infos-cta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}


/* ==========================================================
   PAGE MENU — EN-TÊTE
   ========================================================== */

.page-header {
  background: var(--vert);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,144,10,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(200,144,10,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-clair);
  display: block;
  margin-bottom: 0.8rem;
}

.page-header h1 {
  font-family: var(--font-titre);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(253,250,245,0.75);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.page-header .trait {
  width: 48px; height: 3px;
  background: var(--or);
  margin: 1.2rem auto;
  border-radius: 2px;
}


/* ==========================================================
   PAGE MENU — NAVIGATION ANCRES
   ========================================================== */

.menu-nav {
  background: var(--creme-fonce);
  border-bottom: 1px solid rgba(58,42,26,0.1);
  position: sticky; top: 60px; z-index: 90;
}

.menu-nav-inner {
  max-width: var(--max-menu);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav-inner::-webkit-scrollbar { display: none; }

.menu-nav-inner a {
  display: block;
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.menu-nav-inner a:hover,
.menu-nav-inner a:focus {
  color: var(--vert);
  border-bottom-color: var(--or);
}


/* ==========================================================
   PAGE MENU — SECTIONS CARTE
   ========================================================== */

.menu-section {
  padding: 4rem 1.5rem;
  border-bottom: 1px solid rgba(58,42,26,0.07);
}

.menu-section:nth-child(even) { background: var(--creme); }
.menu-section:nth-child(odd)  { background: var(--blanc); }

.section-header { margin-bottom: 2.5rem; }

.section-header h2 {
  font-family: var(--font-titre);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--brun);
  line-height: 1.15;
}

.section-header .trait { margin-top: 0.8rem; }

.sous-categorie { margin-bottom: 3rem; }
.sous-categorie:last-child { margin-bottom: 0; }

.sous-categorie h3 {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--vert);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(43,74,46,0.15);
}

/* Items de menu */
.menu-items {
  display: flex; flex-direction: column; gap: 0;
  list-style: none;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(58,42,26,0.1);
}
.menu-item:last-child { border-bottom: none; }

.item-left { flex: 1; }

.item-nom {
  font-weight: 600;
  color: var(--texte);
  font-size: 0.98rem;
}

.item-desc {
  font-size: 0.85rem;
  color: var(--gris);
  margin-top: 0.1rem;
  line-height: 1.4;
}

.item-prix {
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--or);
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Fourchette de prix */
.prix-fourchette {
  display: inline-block;
  margin-top: 1.5rem;
  background: rgba(43,74,46,0.08);
  border: 1px solid rgba(43,74,46,0.15);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vert);
}

/* Boissons : 2 colonnes */
.boissons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

/* Mention bas de page carte */
.mention-bas {
  background: var(--brun);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.mention-bas p {
  color: rgba(253,250,245,0.7);
  font-size: 0.85rem;
  max-width: 600px;
  margin: 0 auto 0.5rem;
}

.mention-bas strong { color: var(--or-clair); }

/* CTA bas de page carte */
.carte-cta {
  background: var(--creme);
  padding: 4rem 1.5rem;
  text-align: center;
}

.carte-cta h2 {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  color: var(--brun);
  margin-bottom: 0.5rem;
}

.carte-cta p {
  color: var(--gris);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {
  :root { --pad-section: 3.5rem 1.5rem; }

  /* Nav */
  .nav-links  { display: none; }
  .burger     { display: flex; }

  /* Grilles accueil */
  .promesse-grid,
  .charles-grid   { grid-template-columns: 1fr; gap: 2.5rem; }

  .promesse-image { order: -1; }
  .promesse-badge { left: auto; right: 1rem; bottom: 1rem; }
  .promesse-image img,
  .charles-image img { height: 280px; }

  .avis-grid      { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .infos-grid     { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Menu carte */
  .boissons-grid  { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .infos-grid         { grid-template-columns: 1fr; }
  .footer-inner       { flex-direction: column; align-items: flex-start; }
}


/* ==========================================================
   SÉLECTEUR DE LANGUE
   ========================================================== */

.lang-switch {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: rgba(253,250,245,0.6) !important;
  border: 1px solid rgba(253,250,245,0.2) !important;
  padding: 0.25rem 0.6rem !important;
  border-radius: var(--radius) !important;
  transition: all 0.2s !important;
}
.lang-switch:hover,
.lang-switch:focus {
  color: var(--or-clair) !important;
  border-color: var(--or-clair) !important;
}


.service-offer {
  display: inline-block;
  background: var(--or);
  color: var(--blanc);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(200,144,10,0.25);
}
