/* ===========================================================
   HOMEPAGE / RESTAURANT — fond terracotta unifié page entière
   =========================================================== */

/* Logo crème forcé — fond terracotta sur toute la page */
.navbar__logo-img--light { display: block !important; }
.navbar__logo-img--dark  { display: none  !important; }

/* ---- Fond unifié sur toute la page ---- */
body:not(.has-solid-nav) {
  background:
    radial-gradient(ellipse 65% 55% at 22% 38%, rgba(255,200,140,0.13), transparent 58%),
    radial-gradient(ellipse 50% 60% at 78% 18%, rgba(245,166,35,0.11),  transparent 55%),
    radial-gradient(ellipse 55% 50% at 60% 72%, rgba(80, 18, 6, 0.20),  transparent 55%),
    radial-gradient(ellipse 45% 65% at 8%  65%, rgba(60, 12, 4, 0.16),  transparent 50%),
    radial-gradient(ellipse 48% 42% at 88% 82%, rgba(100,22, 8, 0.22),  transparent 50%),
    radial-gradient(ellipse 40% 35% at 48% 52%, rgba(255,180,100,0.07), transparent 45%),
    #C0614A;
  color: var(--beige);
}

/* ---- Hero — transparent, laisse le fond page apparaître ---- */
.hero {
  position: relative;
  background: transparent;
  color: var(--beige);
  padding-top: clamp(140px, 18vw, 200px);
  padding-bottom: clamp(80px, 10vw, 140px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0,0,0,0.25), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__title {
  color: var(--beige);
  margin: 24px 0 28px;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  max-width: 18ch;
}

.hero__subtitle {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  color: var(--beige-warm);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__media {
  position: relative;
}

/* ---- Real hero image ---- */
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.08);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 8s ease;
}

.hero__img-wrap:hover .hero__img {
  transform: scale(1.04);
}

/* Subtle vignette overlay */
.hero__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%),
    linear-gradient(to right, rgba(0,0,0,0.12), transparent 40%);
  pointer-events: none;
}

.hero__gallery-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img-wrap { aspect-ratio: 16/9; }
}

/* -------- SAVEURS section — lumière dorée sur fond unifié -------- */
.saveurs {
  background: transparent;
  color: var(--beige);
  position: relative;
  overflow: hidden;
}

.saveurs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 15% 30%, rgba(245,166,35,0.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 70%, rgba(0,0,0,0.25), transparent 60%);
  z-index: 0;
}

.saveurs::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' fill='none' stroke='%23F5EDD8' stroke-width='1' opacity='0.5'><path d='M0 100 Q 200 60 400 120 T 800 80 T 1200 120'/><path d='M0 220 Q 250 180 500 240 T 1000 200 T 1200 240'/><path d='M0 340 Q 180 300 380 360 T 760 320 T 1200 360'/><path d='M0 460 Q 220 420 460 480 T 920 440 T 1200 480'/><path d='M0 580 Q 200 540 400 600 T 800 560 T 1200 600'/><path d='M0 700 Q 240 660 500 720 T 1000 680 T 1200 720'/></svg>");
  background-size: cover;
  opacity: 0.07;
  z-index: 1;
  pointer-events: none;
}

.saveurs__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
}

.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { color: var(--beige); margin-bottom: 16px; font-style: italic; }
.section-head p { color: var(--beige-warm); max-width: 640px; margin: 0 auto; opacity: 0.85; }

.saveurs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.saveurs__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.saveurs__media .placeholder { aspect-ratio: 4/5; }

/* Real image in saveurs section */
.saveurs__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 70px rgba(44,24,16,0.40);
}
.saveurs__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out);
}
.saveurs__img-wrap:hover img { transform: scale(1.04); }
.saveurs__img-wrap .placeholder__cta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}

.saveurs__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(251,246,238,0.18) 0%, rgba(251,246,238,0.04) 100%);
  border: 1px solid rgba(251,246,238,0.24);
  backdrop-filter: blur(24px) saturate(200%) contrast(1.05);
  -webkit-backdrop-filter: blur(24px) saturate(200%) contrast(1.05);
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.30),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.15),
    0 12px 28px rgba(0,0,0,0.22);
  transition: transform 350ms var(--ease-out), background 350ms var(--ease), box-shadow 350ms var(--ease);
  overflow: hidden;
  isolation: isolate;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(245,166,35,0.18), transparent 50%);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  pointer-events: none;
  z-index: -1;
}

.feature:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(251,246,238,0.16), rgba(251,246,238,0.04));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 18px 44px rgba(0,0,0,0.30),
    0 0 0 1px rgba(245,166,35,0.20);
}
.feature:hover::before { opacity: 1; }

.feature__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,237,216,0.18), rgba(245,237,216,0.04));
  border: 1px solid rgba(251,246,238,0.22);
  display: grid; place-items: center;
  color: var(--beige-warm);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), 0 4px 12px rgba(0,0,0,0.20);
  transition: transform 350ms var(--ease-out), color 300ms var(--ease);
}

.feature:hover .feature__icon {
  transform: rotate(-6deg) scale(1.08);
  color: #f5a623;
}
.feature__icon svg { width: 28px; height: 28px; }

.feature h3 { color: var(--beige); font-size: 20px; margin-bottom: 6px; }
.feature p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

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

/* -------- ÉTOILES / Reviews section -------- */
.etoiles {
  position: relative;
  color: var(--beige);
  padding-block: var(--section-py);
  overflow: hidden;
}

.etoiles::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 50%, rgba(245,166,35,0.08), transparent 65%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(0,0,0,0.20), transparent 60%);
  z-index: 0;
}

.etoiles .aurora { z-index: 1; opacity: 1; }
.etoiles .aurora__blob { filter: blur(100px); }

.etoiles .aurora__blob--1 {
  top: -10%; left: -8%;
  background: radial-gradient(circle, rgba(245,237,216,0.45) 0%, transparent 65%);
  opacity: 0.7;
}
.etoiles .aurora__blob--2 {
  bottom: -10%; right: -8%;
  background: radial-gradient(circle, rgba(122,60,42,0.85) 0%, transparent 65%);
  opacity: 0.9;
}
.etoiles .aurora__blob--3 {
  top: 30%; right: 25%;
  background: radial-gradient(circle, rgba(245,166,35,0.50) 0%, transparent 65%);
  opacity: 0.7;
}

.etoiles__inner { position: relative; z-index: 2; }

.etoiles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' fill='none' stroke='%23F5EDD8' stroke-width='1' opacity='0.6'><path d='M0 100 Q 200 60 400 120 T 800 80 T 1200 120'/><path d='M0 200 Q 250 160 500 220 T 1000 180 T 1200 220'/><path d='M0 300 Q 180 260 380 320 T 760 280 T 1200 320'/><path d='M0 400 Q 220 360 460 420 T 920 380 T 1200 420'/><path d='M0 500 Q 200 460 400 520 T 800 480 T 1200 520'/><path d='M0 600 Q 240 560 500 620 T 1000 580 T 1200 620'/><path d='M0 700 Q 200 660 400 720 T 800 680 T 1200 720'/></svg>");
  background-size: cover;
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
}

.etoiles__inner {
  position: relative;
  z-index: 2;
  width: min(900px, 92vw);
  margin: 0 auto;
}

.review-card {
  padding: clamp(28px, 3.4vw, 40px);
  position: relative;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease);
}

.review-card:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.45),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.25),
    0 32px 70px rgba(44,24,16,0.45),
    0 0 0 1px rgba(245,166,35,0.22);
}

.review-card__avatar {
  transition: transform 400ms var(--ease-out);
}
.review-card:hover .review-card__avatar { transform: rotate(-8deg) scale(1.08); }

/* ============================================================
   TESTIMONIALS MARQUEE — 21st-dev pattern adapted to vanilla
   2 vertical columns, infinite loop, fade mask top/bottom.
   ============================================================ */
.reviews-marquee {
  position: relative;
  margin-top: 60px;
  height: clamp(560px, 64vh, 720px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.reviews-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: reviews-scroll 28s linear infinite;
  will-change: transform;
}

.reviews-col--reverse {
  animation: reviews-scroll-reverse 32s linear infinite;
}

.reviews-marquee:hover .reviews-col {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes reviews-scroll-reverse {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.reviews-col .review-card {
  flex-shrink: 0;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .reviews-marquee { grid-template-columns: 1fr; height: 600px; }
  .reviews-col--reverse { display: none; }
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--beige-warm);
}

.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--beige);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--beige-warm);
}

.review-card__stars { color: var(--gold-star); letter-spacing: 0.1em; font-size: 16px; }

.review-card__body {
  color: var(--beige);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
}

.etoiles__cta { text-align: center; margin-top: 40px; }

/* -------- CTA bottom block — reste dans la famille terracotta -------- */
.home-cta {
  background: transparent;
  color: var(--beige);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(245,166,35,0.08), transparent 65%);
  pointer-events: none;
}
.home-cta .topo-pattern { color: var(--beige); opacity: 0.05; }
.home-cta__inner { position: relative; z-index: 2; width: var(--container); margin: 0 auto; }
.home-cta h2 { color: var(--beige); margin-bottom: 20px; font-style: italic; }
.home-cta p { color: var(--beige-warm); opacity: 0.85; max-width: 560px; margin: 0 auto 32px; font-size: 17px; }
