:root {
  --sand: #f4e69f;
  --sand-soft: #fff9df;
  --teal: #478778;
  --teal-dark: #285f56;
  --pink: #d9184e;
  --ink: #17332e;
  --white: #fffef7;
  --shadow: 0 18px 50px rgba(20, 70, 61, 0.16);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand-soft);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--teal-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(40, 95, 86, .15);
  background: rgba(244, 230, 159, .94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img { width: 130px; height: 72px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  padding: 11px 17px;
  color: white !important;
  background: var(--teal);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  color: white;
  background: var(--teal);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: end start;
  color: white;
  background: linear-gradient(90deg, rgba(15, 42, 37, .76), rgba(15, 42, 37, .12)), url("../images/restaurant-front.webp") center 42% / cover;
}

.hero-content { padding-block: 110px 95px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--sand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 38px; height: 2px; background: currentColor; }

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero p {
  max-width: 700px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid var(--teal);
  color: white;
  background: var(--teal);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); background: var(--teal-dark); }
.button-outline { border-color: white; background: transparent; }
.button-outline:hover { color: var(--ink); background: white; }
.button-pink { border-color: var(--pink); background: var(--pink); }

.section { padding-block: 92px; }
.section-sand { background: var(--sand); }
.section-teal { color: white; background: var(--teal); }
.section-pink { color: white; background: var(--pink); }

.section-heading { max-width: 730px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 4px 0 12px; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.08; }
.section-heading p { margin: 0; font-size: 1.04rem; }

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.image-frame {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.image-frame::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 14px; pointer-events: none; }

.feature-list { display: grid; gap: 18px; margin-top: 30px; }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.feature-icon { display: grid; place-items: center; width: 44px; height: 44px; color: white; background: var(--teal); border-radius: 14px; font-weight: 800; }
.feature strong { display: block; margin-bottom: 2px; font-size: 1.02rem; }
.feature p { margin: 0; color: #45615b; }

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.menu-card { padding: clamp(25px, 5vw, 45px); background: var(--teal); border-radius: var(--radius); box-shadow: var(--shadow); }
.menu-card h3 { margin: 0 0 26px; font-size: 1.45rem; }
.menu-item { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: baseline; padding: 12px 0; }
.menu-item .dots { border-bottom: 2px dotted rgba(255,255,255,.45); }
.menu-item strong { white-space: nowrap; }
.menu-note { margin: -5px 0 10px; color: rgba(255,255,255,.8); font-size: .86rem; }

.photo-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 230px; gap: 16px; }
.photo-card { position: relative; grid-column: span 4; overflow: hidden; border: 0; padding: 0; border-radius: 18px; cursor: zoom-in; background: #ddd; }
.photo-card.wide { grid-column: span 8; }
.photo-card.tall { grid-row: span 2; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.photo-card:hover img { transform: scale(1.035); }
.photo-card::after { content: "Agrandir"; position: absolute; right: 12px; bottom: 12px; padding: 7px 11px; color: white; background: rgba(23,51,46,.72); border-radius: 999px; font-size: .75rem; opacity: 0; transition: opacity .2s; }
.photo-card:hover::after { opacity: 1; }

.hours-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hours-list { margin: 0; padding: 0; list-style: none; border: 1px solid rgba(255,255,255,.55); border-radius: 18px; overflow: hidden; }
.hours-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.35); }
.hours-list li:last-child { border-bottom: 0; }

.page-hero { padding-block: 80px; color: white; background: var(--teal); }
.page-hero h1 { margin: 5px 0 12px; font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 1; }
.page-hero p { max-width: 680px; margin: 0; font-size: 1.08rem; }

.menu-viewer {
  width: min(780px, 100%);
  margin-inline: auto;
  padding: clamp(16px, 3vw, 28px);
  color: white;
  background: var(--teal-dark);
  border-radius: 28px;
  box-shadow: var(--shadow);
  outline: none;
}

.menu-viewer:focus-visible { box-shadow: 0 0 0 4px var(--pink), var(--shadow); }

.menu-viewer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.menu-label { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.menu-counter { min-width: 58px; text-align: right; color: rgba(255,255,255,.7); }
.menu-counter strong { color: white; font-size: 1.25rem; }

.menu-stage {
  position: relative;
  height: min(66vh, 620px);
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #183f38;
  border-radius: 18px;
  touch-action: pan-y;
}

.menu-slide {
  position: absolute;
  inset: 18px 72px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateX(38px) scale(.97);
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.8,.2,1);
  cursor: zoom-in;
}

.menu-slide.active { opacity: 1; pointer-events: auto; transform: translateX(0) scale(1); }
.menu-slide img { width: auto; height: 100%; max-width: 100%; object-fit: contain; border-radius: 10px; box-shadow: 0 15px 35px rgba(0,0,0,.35); }

.menu-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  color: white;
  background: rgba(9,36,31,.72);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.menu-arrow:hover { background: var(--pink); transform: translateY(-50%) scale(1.06); }
.menu-arrow-prev { left: 14px; }
.menu-arrow-next { right: 14px; }

.menu-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 4px 2px 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.menu-thumb {
  flex: 0 0 66px;
  height: 72px;
  padding: 3px;
  border: 2px solid transparent;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  opacity: .62;
  cursor: pointer;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.menu-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.menu-thumb:hover, .menu-thumb.active { border-color: var(--sand); opacity: 1; transform: translateY(-2px); }
.menu-swipe-hint { display: none; margin: 6px 0 0; color: rgba(255,255,255,.72); text-align: center; font-size: .82rem; }

.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: start; }
.info-panel { padding: 34px; color: white; background: var(--teal); border-radius: var(--radius); position: sticky; top: 120px; }
.info-panel h2 { margin-top: 0; }
.info-panel a { color: white; }
.info-line { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.info-line:last-child { border-bottom: 0; }

.form-card { padding: clamp(25px, 5vw, 46px); background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-card h2 { margin-top: 0; font-size: 2rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #b5c7c2;
  color: var(--ink);
  background: #fffef9;
  border-radius: 12px;
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(71,135,120,.16); }
.required { color: var(--pink); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; margin: 18px 0 0; padding: 14px 16px; border-radius: 12px; }
.form-status.show { display: block; }
.form-status.success { color: #174c37; background: #dff5e8; }
.form-status.error { color: #7c1733; background: #ffe1e9; }
.form-footnote { margin: 14px 0 0; color: #62726e; font-size: .84rem; }

.lightbox { position: fixed; inset: 0; z-index: 500; display: none; place-items: center; padding: 30px; background: rgba(7,24,21,.92); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; object-fit: contain; border-radius: 10px; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.5); color: white; background: transparent; border-radius: 50%; font-size: 1.7rem; cursor: pointer; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  color: white;
  background: rgba(23,51,46,.82);
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.lightbox.menu-navigation .lightbox-nav { display: grid; }
.lightbox-nav:hover { background: var(--pink); transform: translateY(-50%) scale(1.06); }
.lightbox-prev { left: max(18px, calc(50% - 590px)); }
.lightbox-next { right: max(18px, calc(50% - 590px)); }
.lightbox-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  display: none;
  min-width: 74px;
  padding: 8px 14px;
  color: white;
  background: rgba(23,51,46,.82);
  border-radius: 999px;
  text-align: center;
  transform: translateX(-50%);
}
.lightbox.menu-navigation .lightbox-counter { display: block; }

.site-footer { padding-block: 52px; color: rgba(255,255,255,.9); background: var(--teal-dark); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.footer-brand img { width: 130px; filter: brightness(0) invert(1); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { text-decoration: none; }
.copyright { margin: 20px 0 0; color: rgba(255,255,255,.65); font-size: .84rem; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { position: fixed; top: 92px; left: 0; right: 0; display: grid; gap: 0; padding: 18px 20px 28px; background: var(--sand); box-shadow: 0 20px 30px rgba(20,70,61,.18); transform: translateY(-140%); transition: transform .25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 13px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero { min-height: 620px; }
  .intro-grid, .hours-layout, .form-layout { grid-template-columns: 1fr; gap: 38px; }
  .info-panel { position: static; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .photo-card, .photo-card.wide { grid-column: span 1; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding-block: 65px; }
  .brand img { width: 108px; }
  .hero { min-height: 660px; background-position: 58% center; }
  .hero-content { padding-block: 90px 65px; }
  .menu-grid, .field-grid, .photo-grid { grid-template-columns: 1fr; }
  .menu-stage { height: min(64svh, 540px); min-height: 390px; }
  .menu-slide { inset: 14px 48px; }
  .menu-arrow { width: 40px; height: 40px; font-size: 1.7rem; }
  .menu-arrow-prev { left: 7px; }
  .menu-arrow-next { right: 7px; }
  .menu-swipe-hint { display: block; }
  .lightbox { padding: 68px 10px 64px; }
  .lightbox img { max-width: 96vw; max-height: 78vh; }
  .lightbox-nav { top: auto; bottom: 12px; width: 46px; height: 46px; transform: none; }
  .lightbox-nav:hover { transform: scale(1.04); }
  .lightbox-prev { left: 14px; }
  .lightbox-next { right: 14px; }
  .lightbox-counter { bottom: 16px; }
  .photo-card, .photo-card.wide { grid-column: 1; min-height: 280px; }
  .photo-card.tall { grid-row: span 1; }
  .image-frame { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
