/* ===================================================
   LA POPOTE MOBILE — Design System
   =================================================== */

:root {
  --terracotta:  #C4603A;
  --terracotta-dark: #A04A28;
  --terracotta-light: #E8845F;
  --cream:       #F5EDD8;
  --cream-dark:  #EAD9B8;
  --dark:        #1E1208;
  --dark-mid:    #3D2B1F;
  --olive:       #5C6B3A;
  --olive-light: #7A8E4E;
  --white:       #FFFFFF;
  --text:        #2C1A0E;
  --text-light:  #7A5C44;
  --border:      rgba(196,96,58,.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --radius:  12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(30,18,8,.08);
  --shadow-md: 0 8px 32px rgba(30,18,8,.14);
  --shadow-lg: 0 20px 60px rgba(30,18,8,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --nav-h: 80px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: 96px; }
.section--dark { background: var(--dark-mid); color: var(--white); }
.section--cream { background: var(--cream); }

/* ===== SECTION HEADER ===== */
.section__header { text-align: center; margin-bottom: 60px; }
.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section__label--light { color: var(--terracotta-light); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
}
.section__title--light { color: var(--white); }
.section__title em { color: var(--terracotta); font-style: italic; }
.section__title--light em { color: var(--terracotta-light); }
.section__desc {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .8em 1.8em;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,96,58,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--secondary {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.btn--secondary:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,107,58,.35);
}
.btn--large { padding: 1em 2.4em; font-size: 1.05rem; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(30,18,8,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  align-items: center;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta-light);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link--cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: .5em 1.3em;
  border-radius: 50px;
  border: 2px solid var(--terracotta);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('../img/hero-bg.jpg') center/cover no-repeat,
    linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
  transform: scale(1.05);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,18,8,.55) 0%,
    rgba(30,18,8,.7) 60%,
    rgba(30,18,8,.88) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  text-align: center;
  color: var(--white);
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__tagline {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 20px;
  animation: fadeUp .9s .15s ease both;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  margin: 0 auto 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

/* "La" – glisse depuis la gauche */
.hero__title-la {
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-light);
  letter-spacing: .2em;
  opacity: 0;
  animation: htlSlideLeft .6s .18s ease forwards;
  margin-left: .1em;
}
@keyframes htlSlideLeft {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* "Popote" – lettres tombent une par une */
.hero__title-popote {
  font-size: clamp(4.5rem, 15vw, 10.5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: .95;
  display: flex;
  color: #fff;
}
.hero__title-popote .htl {
  display: inline-block;
  opacity: 0;
  transform: translateY(-55px) scaleY(1.15);
  animation: htlDrop .5s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(.35s + var(--i) * .07s);
}
@keyframes htlDrop {
  to { opacity: 1; transform: translateY(0) scaleY(1); }
}

/* Ligne lumineuse */
.hero__title-divider {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--terracotta-light) 25%,
    rgba(255,255,255,.9) 50%,
    var(--terracotta-light) 75%, transparent 100%
  );
  box-shadow: 0 0 8px rgba(204,95,60,.7), 0 0 20px rgba(204,95,60,.3);
  margin: 10px 0;
  align-self: stretch;
  animation: htlLine .65s .92s ease forwards;
}
@keyframes htlLine {
  to { width: 100%; }
}

/* "Mobile" – texte outline qui apparaît */
.hero__title-mobile {
  font-size: clamp(3rem, 10.5vw, 7.5rem);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgba(255,255,255,.78);
  color: transparent;
  opacity: 0;
  animation: htlFadeUp .7s 1.12s ease forwards;
  transition: color .35s ease, -webkit-text-stroke-color .35s ease;
  cursor: default;
}
.hero__title-mobile:hover {
  color: var(--terracotta-light);
  -webkit-text-stroke-color: var(--terracotta-light);
}
@keyframes htlFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 36px;
  opacity: .9;
  line-height: 1.6;
  animation: fadeUp .9s .35s ease both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp .9s .45s ease both;
}
.hero__badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .9s .55s ease both;
}
.badge {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: .4em 1em;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-icon {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  position: relative;
}
.hero__scroll-icon::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--terracotta);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about__img-badge strong {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
.about__img-badge span { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.about__text .section__title { text-align: left; }
.about__text p { color: var(--text-light); margin-bottom: 16px; }
.about__text p strong { color: var(--text); }
.about__values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 36px;
}
.about__values li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}
.about__values .icon { font-size: 1.2rem; }

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
  border-color: rgba(232,132,95,.4);
}
.service-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card__text { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.services__cta { text-align: center; margin-top: 48px; }

/* ===== CUISINES ===== */
.cuisines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cuisine-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.cuisine-item:hover {
  border-color: var(--terracotta);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.cuisine-item__emoji { font-size: 3rem; margin-bottom: 14px; }
.cuisine-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.cuisine-item p { font-size: .9rem; color: var(--text-light); }
.cuisines__cta { text-align: center; margin-top: 48px; }

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--terracotta);
  transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial__stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { font-size: .95rem; color: var(--text-light); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial cite { font-size: .85rem; font-weight: 700; color: var(--terracotta); font-style: normal; }
.testimonials__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  border: 2px solid var(--cream-dark);
}
.btn--outline-dark:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}
.testimonials__rating {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 40px;
  box-shadow: var(--shadow-sm);
}
.rating-block__score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
}
.rating-block__stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.rating-block__source { font-size: .8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; }

/* ===== ZONE ===== */
.zone__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.zone__text .section__title { text-align: left; }
.zone__text p { color: var(--text-light); margin-bottom: 20px; }
.zone__text p strong { color: var(--text); }
.zone__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.zone__list li { font-weight: 500; color: var(--text-light); }
.zone__map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.zone__map-embed iframe { display: block; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  padding-block: 80px;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.cta-band__text h2 em { color: var(--cream); font-style: italic; }
.cta-band__text p { color: rgba(255,255,255,.8); margin-top: 10px; max-width: 420px; }
.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-band .btn--primary {
  background: var(--white);
  color: var(--terracotta-dark);
  border-color: var(--white);
}
.cta-band .btn--primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.cta-band .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255,255,255,.55);
}
.footer__socials { display: flex; gap: 14px; }
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer__socials a:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__nav-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__contact a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--terracotta-light); }
.footer__contact p { font-size: .9rem; line-height: 1.7; margin-bottom: 8px; }
.footer__bottom {
  padding-block: 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--terracotta-light); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding-block: 140px 80px;
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero__title em { color: var(--terracotta-light); font-style: italic; }
.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-inline: auto;
}

/* ===== ANIMATIONS ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .zone__grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 1.15rem; }
  .nav__burger { display: flex; z-index: 200; }
  .nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.active span:nth-child(2) { opacity: 0; }
  .nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .about__grid, .zone__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .about__img { aspect-ratio: 16/9; }
  .cuisines__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__text p { margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .cuisines__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .hero__title-popote { font-size: clamp(3.2rem, 14vw, 5rem); }
  .hero__title-mobile { font-size: clamp(2.2rem, 10vw, 3.5rem); letter-spacing: .06em; }
  .hero__title-mobile { -webkit-text-stroke-width: 1.5px; }
  .about__img-badge { width: 80px; height: 80px; bottom: -14px; right: -14px; }
  .about__img-badge strong { font-size: 1.2rem; }
}

/* ===== AGENDA / SAISON ===== */
.agenda__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.agenda__saison h3,
.agenda__marches h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.saison-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.saison-month {
  padding: 10px 2px;
  border-radius: 6px;
  text-align: center;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--cream-dark);
  color: var(--text-light);
}
.saison-month--active {
  background: var(--terracotta);
  color: var(--white);
}
.agenda__saison p { color: var(--text-light); font-size: .9rem; font-style: italic; margin-top: 8px; }
.marche-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.marche-list li {
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: .93rem;
  color: var(--text);
  border: 2px solid var(--border);
}
.agenda__note { font-size: .9rem; color: var(--text-light); margin-bottom: 20px; font-style: italic; }
.agenda__social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.agenda__social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: .55em 1.3em;
  background: var(--dark);
  color: var(--white);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.agenda__social-link:hover { background: var(--terracotta); transform: translateY(-2px); }

@media (max-width: 768px) {
  .agenda__grid { grid-template-columns: 1fr; gap: 40px; }
  .saison-months { grid-template-columns: repeat(6, 1fr); }
}

/* ===== TARIFS ===== */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.tarif-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.tarif-card:hover { border-color: var(--terracotta); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tarif-card--featured {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}
.tarif-card--featured:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.tarif-card__type {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.tarif-card--featured .tarif-card__type { color: rgba(255,255,255,.8); }
.tarif-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 4px;
}
.tarif-card--featured .tarif-card__price { color: var(--white); }
.tarif-card__unit { font-size: .82rem; color: var(--text-light); margin-bottom: 18px; }
.tarif-card--featured .tarif-card__unit { color: rgba(255,255,255,.75); }
.tarif-card p { font-size: .9rem; color: var(--text-light); line-height: 1.55; }
.tarif-card--featured p { color: rgba(255,255,255,.88); }
.tarifs-note { text-align: center; font-size: .88rem; color: var(--text-light); font-style: italic; }

@media (max-width: 768px) { .tarifs-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--terracotta); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--dark);
  transition: color var(--transition);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--terracotta); }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
}

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin-inline: auto; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 44px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-light); margin-bottom: 12px; line-height: 1.75; }
.legal-content ul { margin: 10px 0 16px 22px; }
.legal-content ul li { color: var(--text-light); margin-bottom: 7px; line-height: 1.65; list-style: disc; }
.legal-content a { color: var(--terracotta); text-decoration: underline; }
.legal-content strong { color: var(--text); }
