/* ============================================================
   QENTINA — Pizzeria à Louviers
   Design éditorial chaleureux · clair · épuré
   ============================================================ */

:root {
  /* Direction artistique du logo azulejo : bleu canard, crème, ocre, flamme */
  --paper: #f4ecd9;
  --paper-2: #e9dcc0;
  --card: #fbf5e7;
  --ink: #173033;
  --ink-soft: #5e6b65;
  --line: rgba(23, 48, 51, 0.13);
  --line-soft: rgba(23, 48, 51, 0.08);

  /* "--terra" conservé comme nom mais porte la couleur primaire (bleu canard) */
  --terra: #0f5460;
  --terra-deep: #0a3c46;
  --olive: #5f7a4e;
  --gold: #c8902f;
  --flame: #e07a2e;

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Grain léger pour la chaleur — très subtil, sans coût de perf notable */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--terra); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Typographie partagée ---------- */
.eyebrow {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terra);
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: .9rem 0;
}
.section-title em { font-style: italic; color: var(--terra); }
.section-lead { color: var(--ink-soft); font-size: 1.05rem; max-width: 46ch; }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head .section-lead { margin: 0 auto; }
section { position: relative; z-index: 2; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: .98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease),
              color .3s var(--ease), border-color .3s var(--ease);
}
.btn--primary { background: var(--terra); color: #fff; }
.btn--primary:hover { background: var(--terra-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem clamp(1.2rem, 5vw, 3rem);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(246, 241, 234, 0.85);
  backdrop-filter: blur(12px);
  padding-top: .85rem;
  padding-bottom: .85rem;
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav__logo { display: flex; align-items: center; gap: .55rem; }
.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  background: var(--terra);
  color: var(--paper);
  border-radius: 9px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
}
.nav__logo-img {
  width: 40px; height: 40px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 4px 12px -4px rgba(23, 48, 51, 0.4);
}
.nav__logo-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: .06em;
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: .96rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color .25s var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: var(--terra);
  transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--ink); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  padding: .55rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
  color: var(--ink) !important;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav__cta:hover { background: var(--ink); color: var(--paper) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__burger span {
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.9rem; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9rem clamp(1.2rem, 5vw, 3rem) 4.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; color: var(--terra); }
.hero__lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3rem; }
.hero__meta {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.hero__meta dt {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
}
.hero__meta dd { font-size: .85rem; color: var(--ink-soft); }

/* Visuel hero : "assiette" en CSS, élégante et légère */
.hero__visual { position: relative; display: grid; place-items: center; }
.hero__photo {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(23, 48, 51, 0.5);
  border: 1px solid var(--line-soft);
  will-change: transform;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: 55% 45%;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.03) translate(0, 0); }
  100% { transform: scale(1.13) translate(-2.5%, -2%); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero__tag {
  position: absolute;
  bottom: 6%;
  right: 2%;
  background: var(--card);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  padding: .55rem 1rem;
  border-radius: 100px;
  box-shadow: 0 12px 30px -12px rgba(33, 28, 23, 0.4);
  border: 1px solid var(--line-soft);
}

/* Badge flottant de la note Google */
.hero__rating {
  position: absolute;
  top: 5%;
  left: -6%;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .95rem .7rem .75rem;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: 0 22px 45px -18px rgba(23, 48, 51, 0.55);
  color: var(--ink);
  opacity: 0;
  transform: translateY(-8px) scale(.9);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  animation: badgefloat 5.5s ease-in-out infinite;
  z-index: 3;
}
.hero__rating.is-in { opacity: 1; transform: translateY(0) scale(1); }
.hero__rating-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--terra);
}
.hero__rating-body { display: flex; flex-direction: column; gap: .15rem; }
.hero__rating-stars { font-size: .82rem; letter-spacing: 1px; }
.hero__rating-stars .on { color: var(--gold); }
.hero__rating-stars .off { color: rgba(33, 28, 23, 0.18); }
.hero__rating-count { font-size: .72rem; color: var(--ink-soft); }
@keyframes badgefloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

/* ---------- Bandeau valeurs ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
  padding: 1rem 0;
}
.strip__track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: max-content;
  animation: slide 34s linear infinite;
}
.strip__track span {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.strip__track i { width: 4px; height: 4px; border-radius: 50%; background: var(--terra); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Spécialités ---------- */
.features {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5.5rem clamp(1.2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feature {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -30px rgba(33,28,23,0.35); }
.feature__icon {
  display: inline-grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--paper-2);
  color: var(--terra);
  margin-bottom: 1.1rem;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin-bottom: .5rem; }
.feature p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- Menu (liste éditoriale) ---------- */
.menu {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem clamp(1.2rem, 5vw, 3rem) 5rem;
}
.menu__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  max-width: 860px;
  margin: 0 auto;
}
.menu-card {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  cursor: pointer;
  box-shadow: 0 18px 40px -28px rgba(33, 28, 23, 0.4);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.menu-card img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 28px 56px -28px rgba(33, 28, 23, 0.5); }
.menu-card:hover img { transform: scale(1.03); }
.menu-card__hint {
  position: absolute;
  left: 50%; bottom: 1rem;
  transform: translateX(-50%) translateY(8px);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(33, 28, 23, 0.82);
  color: var(--paper);
  font-size: .82rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  backdrop-filter: blur(4px);
}
.menu-card__hint svg { width: 16px; height: 16px; }
.menu-card:hover .menu-card__hint,
.menu-card:focus-visible .menu-card__hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.menu__note { text-align: center; margin-top: 2.6rem; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Visualiseur (lightbox) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(20, 16, 12, 0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__stage {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: min(92vw, 760px);
  max-height: 86vh;
  width: auto; height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  transition: opacity .2s var(--ease);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  background: rgba(246, 241, 234, 0.12);
  color: #fff;
  border: 1px solid rgba(246, 241, 234, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.lightbox__close { top: 1.2rem; right: 1.2rem; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lightbox__prev { left: clamp(.6rem, 3vw, 2rem); }
.lightbox__next { right: clamp(.6rem, 3vw, 2rem); }
.lightbox__close:hover { background: var(--terra); transform: rotate(90deg); }
.lightbox__nav:hover { background: var(--terra); }
.lightbox__prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox__counter {
  position: absolute;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(246, 241, 234, 0.8);
  font-size: .9rem;
  letter-spacing: .1em;
}

/* ---------- La maison ---------- */
.story {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem clamp(1.2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story__media { position: relative; }
.story__panel {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(30, 120, 135, 0.55), transparent 55%),
    linear-gradient(155deg, #0f5460, #093540);
  box-shadow: 0 40px 80px -40px rgba(9, 53, 64, 0.6);
}
.story__badge {
  position: absolute;
  bottom: 1.4rem; right: 1.4rem;
  background: var(--card);
  color: var(--ink);
  font-family: var(--serif);
  font-size: .95rem;
  padding: .6rem 1.1rem;
  border-radius: 100px;
  box-shadow: 0 14px 30px -12px rgba(33,28,23,0.4);
}
.story__content p { color: var(--ink-soft); margin-bottom: 1rem; }
.story__list { list-style: none; margin-top: 1.6rem; display: grid; gap: .75rem; }
.story__list li { position: relative; padding-left: 1.6rem; color: var(--ink); }
.story__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terra);
}

/* ---------- Avis Google ---------- */
.reviews { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1.2rem, 5vw, 3rem) 1rem; }
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.2rem;
  color: var(--ink-soft);
  min-height: 1.5em;
}
.reviews__score { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--ink); }
.reviews__count { font-size: .92rem; }
.stars { letter-spacing: 2px; white-space: nowrap; }
.stars .on { color: var(--gold); }
.stars .off { color: rgba(33, 28, 23, 0.18); }

.reviews__photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .8rem;
  margin-top: 2.4rem;
}
.gphoto {
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.gphoto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gphoto:hover img { transform: scale(1.08); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2.4rem;
}
.reviews__state { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); padding: 2rem 0; }
.review {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(33,28,23,0.35); }
.review__head { display: flex; align-items: center; gap: .75rem; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--paper-2);
  display: grid; place-items: center;
}
.review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review__avatar-fallback { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--terra); text-transform: uppercase; }
.review__name { font-weight: 600; font-size: .98rem; }
.review__date { font-size: .8rem; color: var(--ink-soft); }
.review__text {
  color: var(--ink-soft); font-size: .95rem;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}

/* 6e tuile : appel à laisser un avis */
.review--cta {
  justify-content: flex-start;
  align-items: flex-start;
  gap: .55rem;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 15%, rgba(200, 144, 47, 0.4), transparent 45%),
    linear-gradient(155deg, #0f5460, #093540);
  border-color: transparent;
  text-align: left;
}
.review--cta:hover { box-shadow: 0 26px 52px -28px rgba(9, 53, 64, 0.7); }
.review--cta__plus {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(246, 241, 234, 0.14);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
}
.review--cta__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-top: .3rem; }
.review--cta__text { font-size: .92rem; opacity: .85; }
.review--cta__link { margin-top: auto; font-weight: 600; color: var(--gold); font-size: .95rem; }

/* ---------- Carte de fidélité ---------- */
.loyalty {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem clamp(1.2rem, 5vw, 3rem);
}
.loyalty__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.loyalty__text > p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.loyalty__steps { list-style: none; display: grid; gap: 1rem; margin: 0 0 1.8rem; }
.loyalty__steps li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  color: var(--ink);
}
.loyalty__steps span {
  flex: none;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  font-family: var(--serif);
}
.loyalty__hint { color: var(--ink-soft); font-size: .88rem; margin-top: 1rem; }

.loyalty__visual { display: grid; place-items: center; }
.lcard {
  width: min(100%, 380px);
  aspect-ratio: 1.6 / 1;
  border-radius: 20px;
  padding: 1.6rem 1.7rem;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 144, 47, 0.45), transparent 45%),
    linear-gradient(155deg, #0f5460, #093540);
  box-shadow: 0 30px 60px -28px rgba(9, 53, 64, 0.7);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.lcard__top {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .85;
}
.lcard__top img { width: 34px; height: 34px; border-radius: 8px; }
.lcard__name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: auto;
}
.lcard__sub { font-size: .82rem; opacity: .8; font-style: italic; }
.lcard__dots { display: flex; gap: .42rem; margin: 1rem 0 .8rem; flex-wrap: wrap; }
.lcard__dots i {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.lcard__dots i.off { background: rgba(246, 241, 234, 0.18); }
.lcard__foot { font-size: .8rem; opacity: .85; letter-spacing: .02em; }

/* ---------- Infos ---------- */
.infos { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1.2rem, 5vw, 3rem); }
.infos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.info {
  border-top: 2px solid var(--ink);
  padding-top: 1.2rem;
}
.info h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin-bottom: .5rem; }
.info p { color: var(--ink-soft); }
.info a { color: var(--terra); }
.info__closed { color: var(--terra); font-size: .9rem; }

.map {
  margin-top: 2.6rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.reviews__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  margin-top: 2.4rem;
}
.reviews__more {
  color: var(--terra);
  font-weight: 500;
  transition: opacity .25s var(--ease);
}
.reviews__more:hover { opacity: .7; }

.center-link { text-align: center; margin-top: 1.3rem; }
.center-link a { color: var(--terra); font-weight: 500; transition: opacity .25s var(--ease); }
.center-link a:hover { opacity: .7; }

/* ---------- Contact ---------- */
.contact {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 5.5rem clamp(1.2rem, 5vw, 3rem);
}
.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact__text p { color: var(--ink-soft); margin-bottom: 2rem; }
.contact__social { display: flex; gap: .8rem; flex-wrap: wrap; }
.contact__social a {
  padding: .55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.contact__social a:hover { border-color: var(--terra); color: var(--terra); }

.contact__form { display: grid; gap: 1rem; }
.field { position: relative; }
.field--row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1rem; }
.field input, .field textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.3rem 1rem .55rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color .25s var(--ease);
  resize: vertical;
}
.field textarea { padding-top: 1.5rem; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--terra); }
.field label {
  position: absolute;
  left: 1rem; top: 1rem;
  color: var(--ink-soft);
  pointer-events: none;
  transition: transform .2s var(--ease), font-size .2s var(--ease), color .2s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.label--static {
  transform: translateY(-10px);
  font-size: .7rem;
  color: var(--terra);
}
.label--static { top: .5rem; }
.contact__feedback { font-size: .92rem; color: var(--olive); min-height: 1.2em; }

/* ---------- Footer ---------- */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3.5rem clamp(1.2rem, 5vw, 3rem) 2.5rem;
  text-align: center;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}
.footer__logo {
  width: 120px; height: 120px;
  border-radius: 16px;
  box-shadow: 0 18px 40px -20px rgba(23, 48, 51, 0.45);
}
.footer__tag { color: var(--ink-soft); }
.footer__links { display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--ink-soft); font-size: .94rem; transition: color .25s var(--ease); }
.footer__links a:hover { color: var(--terra); }
.footer__copy {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  margin-top: .6rem;
  width: 100%;
  color: var(--ink-soft);
  font-size: .85rem;
}

/* ---------- Bouton flottant de réservation ---------- */
.fab {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: .6rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.fab.is-shown { opacity: 1; transform: translateY(0); pointer-events: auto; }

.fab__call,
.fab__book {
  box-shadow: 0 16px 36px -12px rgba(33, 28, 23, 0.45);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.fab__call {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--card);
  color: var(--terra);
  border: 1px solid var(--line-soft);
}
.fab__call svg { width: 24px; height: 24px; }
.fab__call:hover { transform: translateY(-3px); background: var(--ink); color: var(--paper); }

.fab__book {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 1.5rem;
  border-radius: 100px;
  background: var(--terra);
  color: #fff;
  font-weight: 500;
  font-size: .98rem;
}
.fab__book:hover { transform: translateY(-3px); background: var(--terra-deep); }

@media (max-width: 620px) {
  .fab {
    left: 1rem; right: 1rem;
    bottom: 1rem;
    gap: .7rem;
  }
  .fab__book { flex: 1; justify-content: center; }
}

/* ---------- Apparition au défilement ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .features, .infos__grid, .reviews__grid { grid-template-columns: 1fr 1fr; }
  .reviews__photos { grid-template-columns: repeat(3, 1fr); }
  .hero, .story, .contact__inner, .loyalty__inner { grid-template-columns: 1fr; }
  .hero { padding-top: 7.5rem; text-align: left; }
  .hero__visual { order: -1; max-width: 360px; }
  .hero__rating { left: 2%; top: 4%; }
  .story__media { max-width: 420px; }
}
@media (max-width: 620px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .features, .infos__grid, .reviews__grid, .menu__gallery { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.5rem; }
}

/* ---------- Accessibilité : réduction des animations ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
