/* === McDonald's JV Paris — Design system partagé === */
:root {
  --mcdo-vert:   #264F36;
  --mcdo-jaune:  #FFC72C;
  --mcdo-rouge:  #DA291C;
  --mcdo-noir:   #27251F;
  --mcdo-creme:  #F5F0EB;
  --vert-900: #15321F; --vert-700: #1E4029; --vert-300: #4E7A60; --vert-100: #D8E4DC;
  --jaune-700: #E0A800;
  --rouge-700: #A81F14;
  --gris-600: #4A453B; --gris-500: #6B6457; --gris-300: #CFC6BA; --gris-200: #E8E1D8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--mcdo-creme);
  color: var(--mcdo-noir);
  text-wrap: pretty;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.t-display { font-size: clamp(2.2rem, 7vw, 3.75rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }
.t-h1      { font-size: clamp(1.8rem, 5vw, 2.5rem);  font-weight: 800; line-height: 1.1;  letter-spacing: -0.02em; }
.t-h2      { font-size: clamp(1.5rem, 4vw, 2.1rem);  font-weight: 800; line-height: 1.2;  letter-spacing: -0.02em; }
.t-h3      { font-size: 1.25rem; font-weight: 700; line-height: 1.25; }
.t-overline{ font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* Header */
header.site-header {
  background: var(--mcdo-vert);
  color: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
header.site-header .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
header.site-header img.logo { height: 76px; width: auto; }
header.site-header .brand-text { font-weight: 700; font-size: .9375rem; }
header.site-header .back-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--vert-100);
  text-decoration: none;
}
header.site-header .back-link:hover { color: #fff; }
header.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
header.site-header > .lang-switch {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

header.site-header .lang-switch { display: flex; gap: 6px; }
header.site-header .lang-btn {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
header.site-header .lang-btn.active { background: var(--mcdo-jaune); color: var(--mcdo-noir); border-color: var(--mcdo-jaune); }

/* Footer */
footer.site-footer {
  background: var(--mcdo-noir);
  color: var(--gris-300);
  text-align: center;
  padding: 32px 24px 40px;
  font-size: .8125rem;
  line-height: 1.7;
}
footer.site-footer .footer-brand { color: #fff; font-weight: 700; margin-bottom: 4px; }
footer.site-footer a { text-decoration: underline; color: var(--gris-300); }
footer.site-footer a:hover { color: #fff; }
footer.site-footer .disclaimer { margin-top: 10px; color: var(--gris-500); font-size: .75rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* Buttons / pills */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: .9375rem;
  border: none;
  cursor: pointer;
  transition: opacity .15s ease;
}
.btn:hover { opacity: .85; }
.btn-jaune { background: var(--mcdo-jaune); color: var(--mcdo-noir); }
.btn-jaune:hover { background: var(--jaune-700); }
.btn-vert  { background: var(--mcdo-vert); color: #fff; }
.btn-outline { background: #fff; color: var(--mcdo-vert); border: 1px solid var(--vert-300); }

/* Prose (legal pages) */
.prose { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.prose h1 { color: var(--mcdo-vert); margin-bottom: 8px; }
.prose .updated { color: var(--gris-500); font-size: .8125rem; margin-bottom: 36px; }
.prose h2 { color: var(--mcdo-vert); font-size: 1.125rem; font-weight: 700; margin: 32px 0 10px; }
.prose p { line-height: 1.7; margin-bottom: 14px; color: var(--gris-600); }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--mcdo-vert); font-weight: 600; }
