/* Lagune & Saveur — feuille de style principale
   Palette et typographie reprises de la charte graphique. */

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.ttf") format("truetype");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --ivoire: #F9F6F0;
  --or: #C29E67;
  --or-clair: #E0D1B6;
  --bronze: #8D642E;
  --vert: #2C312B;
  --grey: #8B826D;
  --line: #EDE6D9;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", -apple-system, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: #4A4436;
  background: var(--ivoire);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}
h1, h2, h3 { font-family: var(--serif); color: var(--bronze); margin: 0; font-weight: 700; }
h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: 1px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head p { color: var(--grey); font-size: 16px; margin-top: 12px; }
.rule {
  width: 64px; height: 2px; background: var(--or);
  margin: 16px auto 0;
}
section { padding: 88px 0; }
section.tight { padding: 64px 0; }

/* ---------- boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; border: 1px solid transparent;
  transition: all .2s ease;
}
.btn-primary { background: var(--or); color: var(--vert); }
.btn-primary:hover { background: var(--or-clair); }
.btn-outline { border-color: rgba(249,246,240,.55); color: var(--ivoire); }
.btn-outline:hover { background: rgba(249,246,240,.12); }
.btn-dark { background: var(--vert); color: var(--ivoire); }
.btn-dark:hover { background: #3a4139; }
.btn-small { padding: 11px 22px; font-size: 12px; letter-spacing: 1.2px; }

/* ---------- header ---------- */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(44,49,43,0); transition: background .25s ease, box-shadow .25s ease;
}
header.site.scrolled { background: rgba(44,49,43,.96); box-shadow: 0 2px 18px rgba(0,0,0,.18); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
header.site .brand { display: flex; align-items: center; gap: 12px; }
header.site .brand img { height: 46px; width: auto; }
header.site .brand span {
  font-family: var(--serif); color: var(--ivoire); font-size: 20px;
  letter-spacing: 1.4px; line-height: 1.15; white-space: nowrap;
}
nav.mainnav { display: flex; align-items: center; gap: 34px; }
nav.mainnav a.navlink {
  color: var(--ivoire); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500; opacity: .88;
}
nav.mainnav a.navlink:hover { opacity: 1; color: var(--or-clair); }
.navtoggle { display: none; background: none; border: 0; color: var(--ivoire); font-size: 26px; cursor: pointer; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--vert);
}
.hero .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,32,27,.94) 0%, rgba(28,32,27,.78) 32%, rgba(28,32,27,.18) 62%, rgba(28,32,27,.05) 100%);
}
.hero .content { position: relative; z-index: 2; max-width: 620px; padding: 140px 28px 90px; }
.hero .eyebrow { color: var(--or-clair); }
.hero h1 {
  color: var(--ivoire); font-size: clamp(38px, 5.4vw, 60px); line-height: 1.12; margin: 18px 0 22px;
}
.hero h1 em { color: var(--or); font-style: normal; }
.hero p.lead { color: rgba(249,246,240,.86); font-size: 17px; max-width: 460px; margin-bottom: 34px; }
.hero .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- plats signature ---------- */
.dishgrid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.dishcard {
  background: #fff; border: 1px solid var(--line); border-radius: 3px; overflow: hidden;
  display: flex; flex-direction: column;
}
.dishcard .ph { aspect-ratio: 4 / 5; min-height: 230px; overflow: hidden; background: var(--vert); }
.dishcard .ph img { width: 100%; height: 100%; object-fit: cover; }
.dishcard .info { padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dishcard .tag { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--or); font-weight: 700; }
.dishcard h3 { font-size: 19px; color: var(--bronze); }
.dishcard p { font-size: 14px; color: var(--grey); margin: 0; flex: 1; }
.dishcard .btn { margin-top: 6px; align-self: flex-start; }

/* ---------- menu de la semaine ---------- */
.menu-week { background: var(--vert); color: var(--ivoire); }
.menu-week .section-head h2 { color: var(--ivoire); }
.menu-week .section-head p { color: rgba(249,246,240,.65); }
table.week {
  width: 100%; border-collapse: collapse; background: rgba(249,246,240,.03);
  border: 1px solid rgba(249,246,240,.14);
}
table.week th, table.week td {
  padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(249,246,240,.1);
  font-size: 14.5px;
}
table.week th {
  text-transform: uppercase; letter-spacing: 1.2px; font-size: 11.5px; color: var(--or-clair);
  font-weight: 700; border-bottom: 1px solid rgba(249,246,240,.28);
}
table.week td.day { font-family: var(--serif); color: var(--or); font-weight: 700; font-size: 16px; white-space: nowrap; }
table.week td .alt { display: block; color: rgba(249,246,240,.55); font-size: 12.5px; margin-top: 3px; }
table.week td.price { text-align: right; font-family: var(--serif); font-weight: 700; color: var(--ivoire); white-space: nowrap; }
table.week tr.today { background: rgba(194,158,103,.14); }
table.week tr.today td.day::after {
  content: "Aujourd'hui"; display: block; font-family: var(--sans); font-size: 9.5px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--or-clair); font-weight: 600; margin-top: 3px;
}
table.week td[colspan] { font-family: var(--serif); font-size: 16px; color: var(--or-clair); }
.accomp {
  margin-top: 26px; border: 1px solid rgba(249,246,240,.14); border-radius: 3px;
  background: rgba(249,246,240,.03); padding: 22px 24px; text-align: center;
}
.accomp .ac-lab {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--or-clair); font-weight: 700; margin-bottom: 10px;
}
.accomp p { margin: 0; font-size: 14.5px; color: rgba(249,246,240,.86); line-height: 1.9; }
.accomp .ac-sup { margin-top: 10px; font-size: 13px; color: var(--or); }
.menu-note {
  margin-top: 22px; font-size: 13.5px; color: rgba(249,246,240,.6); text-align: center;
}

/* ---------- teaser Le Jardin ---------- */
.jardin-teaser { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.jt-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.jt-text .eyebrow { display: block; margin-bottom: 12px; }
.jt-text h2 { font-size: 34px; margin-bottom: 16px; }
.jt-text p { color: var(--grey); font-size: 15.5px; margin-bottom: 28px; }
.jt-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.jt-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.jt-visual img { border-radius: 3px; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.btn-outline-dark { border-color: var(--or); color: var(--bronze); }
.btn-outline-dark:hover { background: rgba(194,158,103,.12); }

/* ---------- page Le Jardin ---------- */
.jardin-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; }
.jardin-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.jardin-hero .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,49,43,.55) 0%, rgba(44,49,43,.30) 40%, rgba(44,49,43,.88) 100%); }
.jardin-hero .content { position: relative; padding: 0 0 64px; }
.jardin-hero h1 { font-family: var(--serif); font-weight: 400; font-size: 52px; color: var(--ivoire); line-height: 1.15; margin: 0 0 16px; }
.jardin-hero h1 em { font-style: italic; color: var(--or); }
.jardin-hero .lead { color: rgba(249,246,240,.86); font-size: 16.5px; max-width: 640px; margin-bottom: 26px; }

.usages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.usage { background: #fff; border: 1px solid var(--line); border-radius: 3px; padding: 26px 24px; }
.usage h3 { font-family: var(--serif); font-size: 18px; color: var(--bronze); margin: 0 0 8px; }
.usage p { color: var(--grey); font-size: 14px; margin: 0; }

.galerie { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.galerie img { border-radius: 3px; aspect-ratio: 1/1; object-fit: cover; }

.jfacts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.jfact { background: var(--vert); border-radius: 3px; padding: 28px 22px; text-align: center; }
.jfact .k { font-family: var(--serif); font-size: 30px; color: var(--or); line-height: 1.2; }
.jfact .l { color: var(--or-clair); font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; margin-top: 8px; }

.jcta { background: var(--vert); border-radius: 3px; padding: 56px 48px; text-align: center; }
.jcta h2 { color: var(--ivoire); font-size: 30px; margin-bottom: 14px; }
.jcta p { color: rgba(249,246,240,.72); font-size: 15px; max-width: 560px; margin: 0 auto 28px; }

/* ---------- comment commander ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; }
.step .num {
  width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--or);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-family: var(--serif); color: var(--or); font-size: 20px;
}
.step h3 { font-size: 17px; color: var(--bronze); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--grey); margin: 0; }

/* ---------- à propos ---------- */
.apropos { background: var(--vert); color: var(--ivoire); text-align: center; }
.apropos .wrap { max-width: 720px; }
.apropos .eyebrow { color: var(--or-clair); }
.apropos h2 { color: var(--ivoire); margin: 16px 0 22px; }
.apropos p { color: rgba(249,246,240,.82); font-size: 16.5px; }

/* ---------- footer ---------- */
footer.site {
  background: #21251F; color: rgba(249,246,240,.7); padding: 56px 0 30px;
}
footer.site .top {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(249,246,240,.12);
}
footer.site .brand { display: flex; align-items: center; gap: 12px; }
footer.site .brand img { height: 44px; }
footer.site .brand div { font-family: var(--serif); color: var(--ivoire); font-size: 20px; }
footer.site .brand small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; color: var(--or-clair); margin-top: 4px; }
footer.site .cols { display: flex; gap: 60px; flex-wrap: wrap; }
footer.site .col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--or-clair); margin: 0 0 14px; }
footer.site .col a, footer.site .col span { display: block; font-size: 14px; margin-bottom: 8px; color: rgba(249,246,240,.75); }
footer.site .col a:hover { color: var(--or); }
footer.site .bottom {
  display: flex; justify-content: space-between; padding-top: 24px; font-size: 12.5px; color: rgba(249,246,240,.45); flex-wrap: wrap; gap: 10px;
}

/* ---------- flottant mobile whatsapp ---------- */
.floatwa {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  background: var(--or); color: var(--vert); border-radius: 50px;
  padding: 14px 22px; font-size: 13px; font-weight: 700; letter-spacing: .5px;
  box-shadow: 0 8px 24px rgba(0,0,0,.28); display: flex; align-items: center; gap: 8px;
}
.floatwa:hover { background: var(--or-clair); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .dishgrid { grid-template-columns: repeat(2, 1fr); }
  .jt-grid { grid-template-columns: 1fr; gap: 32px; }
  .usages { grid-template-columns: 1fr; }
  .galerie { grid-template-columns: repeat(2, 1fr); }
  .jfacts { grid-template-columns: repeat(2, 1fr); }
  .jardin-hero h1 { font-size: 38px; }
  .jcta { padding: 42px 26px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  nav.mainnav { position: fixed; top: 84px; left: 0; right: 0; background: var(--vert);
    flex-direction: column; align-items: flex-start; padding: 24px 28px; gap: 20px;
    transform: translateY(-130%); transition: transform .25s ease; }
  nav.mainnav.open { transform: translateY(0); }
  .navtoggle { display: block; }
  table.week th:nth-child(1), table.week td:nth-child(1) { position: sticky; left: 0; background: var(--vert); }
  table.week { display: block; overflow-x: auto; }
}
@media (max-width: 560px) {
  .dishgrid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
  .hero .content { padding-top: 120px; }
  footer.site .cols { gap: 34px; }
}
