/* ============================================================
   SEL & SUCRE TRAITEUR — STYLESHEET
   Palette  : vert olive · crème · blanc cassé · jaune doux
   Typo     : Fraunces (titres) + DM Sans (corps)
   Approche : mobile-first, sobriété premium, ancrage local
   ============================================================ */


/* =============== 1. RESET & BASE =============== */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, select, textarea, button { font-family: inherit; }


/* =============== 2. DESIGN TOKENS =============== */

:root {
  /* Couleurs */
  --olive:        #6B7B4A;   /* vert olive principal */
  --olive-deep:   #4A5733;   /* vert profond (textes sur clair, accents) */
  --olive-dark:   #2F3A1F;   /* fond sombre (section menus) */
  --olive-soft:   #A4B47E;   /* vert lumineux */
  --cream:        #F5EFE6;   /* crème, fonds alternés */
  --offwhite:     #FBF8F3;   /* blanc cassé, fond principal */
  --gold:         #E8C547;   /* jaune doux, CTA primaire */
  --gold-deep:    #C9A325;   /* jaune doux foncé (hover) */
  --ink:          #2C2A26;   /* texte profond */
  --ink-soft:     #6B6862;   /* texte secondaire */
  --line:         #E8E1D4;   /* séparateurs */

  /* Typo */
  --serif:  "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:   "DM Sans", system-ui, -apple-system, sans-serif;

  /* Espacements */
  --pad-x:  clamp(20px, 5vw, 48px);
  --gutter: clamp(16px, 3vw, 32px);

  /* Rayons & ombres */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(44, 42, 38, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 42, 38, 0.08);
  --shadow-lg: 0 24px 60px rgba(44, 42, 38, 0.12);

  /* Variables d'état */
  --bg: var(--offwhite);
  --header-h: 72px;
}


/* =============== 3. UTILS / LAYOUT =============== */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}

.section--cream { background: var(--cream); }

.section--dark {
  background: var(--olive-dark);
  color: var(--offwhite);
}

.section__head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section__head--light .section__title { color: var(--offwhite); }
.section__head--light .section__intro { color: rgba(251, 248, 243, 0.78); }


/* =============== 4. TYPOGRAPHIE =============== */

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}

.section__title em {
  font-style: italic;
  color: var(--olive-deep);
  font-weight: 400;
}

.section__intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin: 0 0 18px;
}

.eyebrow--light { color: var(--olive-soft); }

.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--olive-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap 0.25s, border-color 0.25s;
}
.link-arrow:hover { gap: 14px; border-color: var(--olive-deep); }


/* =============== 5. BOUTONS =============== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(232, 197, 71, 0.35);
}
.btn--primary:hover {
  background: var(--gold-deep);
  box-shadow: 0 10px 24px rgba(232, 197, 71, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--olive-deep);
  border-color: var(--olive-deep);
}
.btn--ghost:hover {
  background: var(--olive-deep);
  color: var(--offwhite);
}

.section--dark .btn--ghost {
  color: var(--offwhite);
  border-color: rgba(251, 248, 243, 0.4);
}
.section--dark .btn--ghost:hover {
  background: var(--offwhite);
  color: var(--olive-dark);
  border-color: var(--offwhite);
}

.btn--sm   { padding: 10px 18px; font-size: 0.9rem; }
.btn--block{ width: 100%; }


/* =============== 6. HEADER =============== */

.header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 248, 243, 0.98);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand__logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--olive);
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name-main {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand__name-sub {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}


/* Nav desktop */
.nav__list {
  display: flex;
  gap: 28px;
}

.nav__list a {
  position: relative;
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width 0.25s;
}

.nav__list a:hover { color: var(--olive-deep); }
.nav__list a:hover::after { width: 100%; }


.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--olive-deep);
  border: 1.5px solid var(--line);
  transition: border-color 0.2s, color 0.2s;
}
.btn-phone:hover { border-color: var(--olive-deep); }


/* Burger mobile */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  border-radius: 8px;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.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); }


@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--offwhite);
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.6, 0.05, 0.2, 1);
    padding: 32px var(--pad-x) 60px;
    border-bottom: 1px solid var(--line);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__list a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    font-family: var(--serif);
    font-weight: 500;
    border-bottom: 1px solid var(--line);
  }
  .nav__list a::after { display: none; }
}

@media (min-width: 961px) {
  .burger { display: none; }
  .btn-phone { display: inline-flex; }
}


/* =============== 7. HERO =============== */

.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: clamp(80px, 14vw, 140px) 0 clamp(50px, 8vw, 90px);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(47, 58, 31, 0.25) 0%,
      rgba(47, 58, 31, 0.55) 50%,
      rgba(47, 58, 31, 0.85) 100%);
}

.hero__content {
  position: relative;
  color: var(--offwhite);
  max-width: 820px;
}

.hero .eyebrow {
  color: var(--gold);
}
.hero .eyebrow__dot { background: var(--gold); }

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--offwhite);
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: rgba(251, 248, 243, 0.92);
  max-width: 60ch;
  margin: 0 0 36px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__cta .btn--ghost {
  color: var(--offwhite);
  border-color: rgba(251, 248, 243, 0.5);
}
.hero__cta .btn--ghost:hover {
  background: var(--offwhite);
  color: var(--olive-dark);
}

.hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.92rem;
  color: rgba(251, 248, 243, 0.85);
}
.hero__proofs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(251, 248, 243, 0.5);
  border-radius: 14px;
  display: none;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 3px; height: 8px;
  background: var(--offwhite);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translate(-50%, -4px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}
@media (min-width: 768px) {
  .hero__scroll { display: block; }
}


/* =============== 8. PRÉSENTATION =============== */

.presentation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (min-width: 880px) {
  .presentation__grid { grid-template-columns: 0.95fr 1.1fr; }
}

.presentation__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.presentation__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.presentation__media:hover img { transform: scale(1.04); }

.presentation__media-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--offwhite);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
}
.tag-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tag-place {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--olive-deep);
  font-size: 1.05rem;
}

.presentation__text p { color: var(--ink-soft); }

.key-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 28px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.key-facts li {
  display: flex;
  flex-direction: column;
}
.key-facts strong {
  font-family: var(--serif);
  color: var(--olive-deep);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.key-facts span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}


/* =============== 9. PRESTATIONS =============== */

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px)  { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-soft);
}

.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }

.section--cream .card__icon { background: var(--offwhite); }

.card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}

.card__text {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0 0 22px;
  flex: 1;
}

.card__link {
  font-weight: 600;
  color: var(--olive-deep);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.card__link:hover {
  border-color: var(--olive-deep);
  color: var(--olive);
}


/* =============== 10. BOUTIQUE =============== */

.boutique__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (min-width: 920px) {
  .boutique__grid { grid-template-columns: 1.1fr 1fr; }
}

.boutique__text p { color: var(--ink-soft); margin: 0 0 22px; }

.boutique__list {
  margin: 22px 0 32px;
  display: grid;
  gap: 12px;
}
.boutique__list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 1rem;
  color: var(--ink);
}
.boutique__list span {
  color: var(--gold-deep);
  font-weight: 700;
}

.boutique__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.boutique__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1.05 / 1;
}
.boutique__pic {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.boutique__pic img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.boutique__pic--1 {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.boutique__pic--2 {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  margin-top: 32px;
}
@media (max-width: 540px) {
  .boutique__media { aspect-ratio: 1.4 / 1; }
  .boutique__pic--2 { margin-top: 16px; }
}


/* =============== 11. GALERIE =============== */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
  }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (min-width: 1100px) {
  .gallery { grid-auto-rows: 260px; }
}

.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.4s;
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(47, 58, 31, 0.25));
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover::after { opacity: 1; }


/* =============== 12. AVIS / RÉASSURANCE =============== */

.reassurance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 64px;
}

.reassurance__item {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 26px 24px;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.3s;
}
.reassurance__item:hover {
  border-color: var(--olive-soft);
  background: var(--offwhite);
}

.reassurance__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--offwhite);
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.reassurance__icon svg { width: 22px; height: 22px; }

.reassurance__item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
}
.reassurance__item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Reviews */
.reviews {
  border-top: 1px solid var(--line);
  padding-top: 56px;
}

.reviews__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

@media (min-width: 800px) {
  .reviews__head { grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
}

.reviews__rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews__score {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--olive-deep);
  line-height: 1;
}
.reviews__stars {
  font-size: 1.05rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.reviews__count {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.reviews__intro {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0;
}
.reviews__intro em { color: var(--olive-deep); font-style: italic; }

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 32px;
}
@media (min-width: 700px)  { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  margin: 0;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 26px 24px;
  border-left: 3px solid var(--gold);
}
.review__stars {
  color: var(--gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
}
.review footer {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: normal;
}

.placeholder-text {
  background: rgba(232, 197, 71, 0.18);
  padding: 0 4px;
  border-radius: 3px;
  color: var(--ink-soft);
}

.reviews__more { text-align: center; margin: 0; }


/* =============== 13. MENUS SAISONNIERS (DARK) =============== */

.menus {
  position: relative;
  isolation: isolate;
}
.menus::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(232, 197, 71, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(164, 180, 126, 0.1), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.menus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px)  { .menus__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .menus__grid { grid-template-columns: repeat(3, 1fr); } }

.menu-card {
  background: rgba(251, 248, 243, 0.04);
  border: 1px solid rgba(251, 248, 243, 0.12);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.menu-card:hover {
  background: rgba(251, 248, 243, 0.07);
  border-color: rgba(251, 248, 243, 0.25);
  transform: translateY(-3px);
}

.menu-card__tag {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232, 197, 71, 0.4);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}

.menu-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--offwhite);
}

.menu-card__text {
  color: rgba(251, 248, 243, 0.7);
  font-size: 0.96rem;
  margin: 0 0 14px;
  flex: 1;
}

.menu-card__meta {
  font-size: 0.86rem;
  color: var(--gold);
  margin: 0 0 22px;
  letter-spacing: 0.02em;
}


/* =============== 14. CONTACT / FORMULAIRE =============== */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
}

@media (min-width: 920px) {
  .contact__grid { grid-template-columns: 1fr 1.1fr; }
}

.contact__intro {
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.contact__list {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}
.contact__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__list strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--olive-deep);
  margin-bottom: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact__list span,
.contact__list a {
  font-size: 1rem;
  color: var(--ink);
}
.contact__list a:hover { color: var(--olive-deep); border-bottom: 1px solid var(--olive-deep); }

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* Form */
.form {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}

.form__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.form__title em { font-style: italic; color: var(--olive-deep); }
.form__intro {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0 0 26px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field > span {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  background: var(--offwhite);
  border-radius: var(--r-sm);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 4px rgba(107, 123, 74, 0.12);
}

.field textarea { resize: vertical; min-height: 110px; }

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.field--check input {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--olive-deep);
}

.form button[type="submit"] { margin-top: 8px; }

.form__status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  display: none;
}
.form__status.is-ok {
  display: block;
  background: rgba(107, 123, 74, 0.12);
  color: var(--olive-deep);
}
.form__status.is-err {
  display: block;
  background: rgba(200, 70, 50, 0.1);
  color: #b04030;
}


/* =============== 15. FOOTER =============== */

.footer {
  background: var(--olive-dark);
  color: rgba(251, 248, 243, 0.82);
  padding-top: clamp(56px, 7vw, 88px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .footer__grid { grid-template-columns: 1.5fr repeat(4, 1fr); } }

.footer__logo {
  width: 56px; height: 56px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: var(--olive);
}

.footer__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--offwhite);
  margin: 0 0 6px;
}

.footer__tagline {
  font-size: 0.92rem;
  margin: 0;
  max-width: 28ch;
  color: rgba(251, 248, 243, 0.65);
}

.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: 0.94rem; }
.footer__col a:hover { color: var(--offwhite); }

.footer__socials a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(251, 248, 243, 0.2);
  border-radius: 999px;
  font-size: 0.86rem;
  transition: border-color 0.2s, background 0.2s;
}
.footer__socials a:hover {
  border-color: var(--gold);
  background: rgba(232, 197, 71, 0.08);
}

.footer__bottom {
  border-top: 1px solid rgba(251, 248, 243, 0.1);
  padding: 22px 0;
  font-size: 0.82rem;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: rgba(251, 248, 243, 0.55);
}
.footer__bottom ul { display: flex; gap: 18px; }
.footer__bottom a:hover { color: var(--offwhite); }


/* =============== 16. STICKY CALL (mobile) =============== */

.sticky-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--olive-deep);
  color: var(--offwhite);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: 0 12px 30px rgba(74, 87, 51, 0.35);
  transition: transform 0.2s, background 0.2s;
}
.sticky-call:hover {
  background: var(--olive);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .sticky-call { display: none; }
}


/* =============== 17. ANIMATIONS AU SCROLL =============== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* =============== 18. LIGHTBOX =============== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(47, 58, 31, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: var(--offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--olive-dark);
}


/* ============================================================
   CORRECTIF DESIGN — HERO PLUS PROPRE / PREMIUM
   Objectif : supprimer l'effet vert sombre, calmer la typo,
   rendre le texte lisible et redonner un aspect traiteur moderne.
   ============================================================ */

:root {
  --olive:        #6f7f45;
  --olive-deep:   #495b2e;
  --olive-dark:   #263218;
  --olive-soft:   #b4c284;
  --cream:        #f7f1e7;
  --offwhite:     #fffaf2;
  --gold:         #f0c83d;
  --gold-deep:    #d3a916;
  --ink:          #28251f;
  --ink-soft:     #69645b;
  --line:         #ebe1d2;
  --header-h:     70px;
}

.header {
  background: rgba(255, 250, 242, 0.98);
  border-bottom: 1px solid rgba(235, 225, 210, 0.9);
  box-shadow: 0 8px 30px rgba(40, 37, 31, 0.06);
}

.header__inner {
  gap: 18px;
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand__name-main {
  font-size: 1.2rem;
}

.brand__name-sub {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.nav__list {
  gap: 20px;
}

.nav__list a {
  font-size: 0.9rem;
}

.btn {
  box-shadow: none;
}

.btn--primary {
  background: var(--gold);
  color: #292414;
  box-shadow: 0 8px 18px rgba(211, 169, 22, 0.18);
}

.btn--primary:hover {
  background: var(--gold-deep);
  box-shadow: 0 10px 24px rgba(211, 169, 22, 0.22);
}

.hero {
  min-height: clamp(560px, 76vh, 720px);
  align-items: center;
  padding: calc(var(--header-h) + 58px) 0 clamp(56px, 7vw, 82px);
  background: var(--cream);
}

.hero__media img {
  object-position: center center;
  filter: saturate(0.96) contrast(0.98) brightness(1.02);
}

.hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(255, 250, 242, 0.96) 0%,
      rgba(255, 250, 242, 0.90) 34%,
      rgba(255, 250, 242, 0.52) 60%,
      rgba(38, 50, 24, 0.20) 100%),
    linear-gradient(180deg,
      rgba(255, 250, 242, 0.12) 0%,
      rgba(38, 50, 24, 0.08) 100%);
}

.hero__content {
  color: var(--ink);
  max-width: 690px;
  margin-left: 0;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: -28px -34px;
  z-index: -1;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(40, 37, 31, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero .eyebrow {
  color: var(--olive-deep);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.hero__title {
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  line-height: 1.02;
  max-width: 11ch;
  margin-bottom: 22px;
}

.hero__title em {
  color: var(--olive-deep);
  font-style: italic;
}

.hero__subtitle {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  max-width: 54ch;
  margin-bottom: 28px;
}

.hero__cta {
  margin-bottom: 24px;
}

.hero__cta .btn--ghost {
  color: var(--olive-deep);
  border-color: rgba(73, 91, 46, 0.28);
  background: rgba(255, 250, 242, 0.62);
}

.hero__cta .btn--ghost:hover {
  background: var(--olive-deep);
  color: var(--offwhite);
  border-color: var(--olive-deep);
}

.hero__proofs {
  gap: 10px;
  color: var(--ink-soft);
}

.hero__proofs li {
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(235, 225, 210, 0.8);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.86rem;
}

.hero__scroll {
  display: none !important;
}

@media (max-width: 1050px) {
  .header__actions .btn--primary {
    display: none;
  }
  .nav__list {
    gap: 16px;
  }
}

@media (max-width: 960px) {
  .header__actions .btn--primary {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 44px) 0 58px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(255, 250, 242, 0.88) 0%,
        rgba(255, 250, 242, 0.92) 42%,
        rgba(255, 250, 242, 0.98) 100%);
  }

  .hero__content::before {
    inset: -20px;
    border-radius: 24px;
  }

  .hero__title {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .brand__name-sub {
    display: none;
  }

  .hero__content::before {
    inset: -16px;
  }

  .hero__cta {
    display: grid;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__proofs {
    display: none;
  }
}
