/* ============================================================
   LA BISQUINE — Styles principaux
   Restaurant & Crêperie à Pénestin, Morbihan
   Charte : Bleu profond #0D2E4E + Doré #C9A84C
   Mobile-first · Performance · SEO
   ============================================================ */

/* === VARIABLES ============================================= */
:root {
  --bleu-profond: #090942; /* #0D2E4E;*/
  --bleu-marine: #0d2e4e; /* #163D61;*/
  --bleu-clair: #163d61; /* #1E5080 */
  --bleu-pale: #eaf1f8;
  --or: #c6af7b;
  --or-clair: #d8c89c;
  --or-pale: #f3ede0;
  --blanc: #ffffff;
  --gris-clair: #f7f7f5;
  --gris-texte: #4a4a4a;
  --texte-sombre: #1a1a1a;

  --ff-titre: "Josefin Sans", sans-serif;
  --ff-corps: "Josefin Sans", sans-serif;
  --ff-ui: "Josefin Sans", sans-serif;

  --ombre-douce: 0 4px 24px rgba(13, 46, 78, 0.1);
  --ombre-medium: 0 8px 40px rgba(13, 46, 78, 0.16);
  --ombre-forte: 0 16px 60px rgba(13, 46, 78, 0.22);

  --rayon: 6px;
  --rayon-grand: 16px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --max-width: 1180px;
  --padding-h: clamp(1.25rem, 5vw, 3rem);
}

/* === RESET & BASE ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ff-corps);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: var(--gris-texte);
  background: var(--blanc);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--or);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover,
a:focus-visible {
  color: var(--or-clair);
}

:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
  border-radius: 2px;
}

ul {
  list-style: none;
}

/* Offset pour ancres avec header fixed */
:target {
  scroll-margin-top: 80px;
}

/* === TYPOGRAPHIE =========================================== */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-titre);
  color: var(--bleu-profond);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}
h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
  font-family: var(--ff-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.surtitre {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 0.8rem;
}

.or {
  color: var(--or);
}
.blanc {
  color: var(--blanc);
}

/* === LAYOUT =============================================== */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--padding-h);
}

section {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.section-presentation,
.section-histoire,
.section-contact-principal,
.mentions-legales {
  padding-top: 0;
}

.grille-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .grille-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.grille-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) {
  .grille-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .grille-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === HEADER / NAVIGATION ================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--ombre-medium);
  background: rgba(9, 9, 66, 0.85);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--padding-h);
  padding-block: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-texte {
  font-family: var(--ff-titre);
  font-size: 1.4rem;
  color: var(--blanc);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--ff-ui);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or-clair);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.logo-mark {
  width: 55px;
  height: 55px;
  fill: var(--or);
  flex-shrink: 0;
}

/* Nav principale */
.nav-principale {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-principale a {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blanc);
  padding: 0.5rem 0.86rem;
  border-radius: var(--rayon);
  position: relative;
  transition: color var(--transition);
}

.nav-principale a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-principale a:hover::after,
.nav-principale a.active::after {
  transform: scaleX(1);
}
.nav-principale a:hover {
  color: var(--or-clair);
}

.btn-reserver {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bleu-profond) !important;
  background: var(--or);
  padding: 0.6rem 1rem !important;
  margin-left: 0.87rem;
  border-radius: 50px;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition) !important;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}
.btn-reserver:hover {
  background: var(--or-clair);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
}
.btn-reserver::after {
  display: none !important;
}

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.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: 767px) {
  .burger {
    display: flex;
  }
  .nav-principale {
    position: fixed;
    inset: 0;
    background: linear-gradient(
      135deg,
      var(--bleu-profond),
      var(--bleu-marine)
    );
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 150;
    height: 100vh;
    opacity: 0.98;
  }
  .nav-principale.ouverte {
    transform: translateX(0);
  }
  .nav-principale a {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin-left: 0;
  }
  .btn-reserver {
    font-size: 1rem !important;
  }
}

/* === BOUTONS ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-or {
  background: var(--or);
  color: var(--bleu-profond);
  border-color: var(--or);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn-or:hover {
  background: var(--or-clair);
  border-color: var(--or-clair);
  color: var(--bleu-profond);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-contour-blanc {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-contour-blanc:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--blanc);
  color: var(--blanc);
  transform: translateY(-2px);
}

.btn-contour-bleu {
  background: transparent;
  color: var(--bleu-profond);
  border-color: var(--bleu-profond);
}
.btn-contour-bleu:hover {
  background: var(--bleu-profond);
  color: var(--blanc);
  transform: translateY(-2px);
}

.btn-groupe {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* === ICÔNES SVG =========================================== */
.icone {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex-shrink: 0;
  vertical-align: middle;
}
.icone-or {
  fill: var(--or);
}
.icone-blanc {
  fill: var(--blanc);
}

/* === HERO ================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bleu-profond);
  padding-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 9, 66, 0.55) 0%,
    rgba(9, 9, 66, 0.45) 30%,
    rgba(9, 9, 66, 0.35) 70%,
    rgba(9, 9, 66, 0.25) 100%
  );
  z-index: 1;
}

/* Placeholder image hero */
.hero-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 0;
}

/* Motif vagues décoratif */
.hero-vagues {
  position: absolute;
  width: stretch;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
}

.hero-contenu {
  position: relative;
  z-index: 3;
  padding-top: 9rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 0.8s ease both;
}

.hero h1 {
  color: var(--blanc);
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.9s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--or);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 72ch;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.9s 0.2s ease both;
  font-family: var(--ff-corps);
}

.hero .btn-groupe {
  animation: fadeSlideUp 0.9s 0.3s ease both;
}

/* Stats hero */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeSlideUp 0.9s 0.4s ease both;
}
.stat-item {
  text-align: center;
}
.stat-chiffre {
  display: block;
  font-family: var(--ff-titre);
  font-size: 2rem;
  color: var(--or);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Ligne décorative dorée */
.ligne-or {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--or), var(--or-clair));
  margin: 1.25rem 0;
}
.ligne-or.centree {
  margin-inline: auto;
}

/* Scroll indicator */
.scroll-indicator {
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1.2s 0.8s ease both;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-roue {
  width: 3px;
  height: 6px;
  background: var(--or);
  border-radius: 3px;
  animation: scrollRoue 1.8s ease infinite;
}

/* === SECTION : PRÉSENTATION =============================== */
.section-presentation {
  background: var(--blanc);
  position: relative;
  overflow: hidden;
}

.section-presentation::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.presentation-image {
  position: relative;
  border-radius: var(--rayon-grand);
  overflow: hidden;
  box-shadow: var(--ombre-forte);
}

.presentation-image img {
  width: 100%;
}

/* Placeholder image */
.img-placeholder {
  background: linear-gradient(
    135deg,
    var(--bleu-pale),
    var(--bleu-profond) 120%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 350px;
  border-radius: var(--rayon-grand);
}
.img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.35;
}

.presentation-image-cadre {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--or);
  border-radius: var(--rayon);
  opacity: 0.4;
  pointer-events: none;
}

.presentation-texte p {
  margin-bottom: 1.25rem;
  color: var(--gris-texte);
}

/* === SECTION : SPÉCIALITÉS ================================ */
.section-specialites {
  background: var(--bleu-profond);
  position: relative;
  overflow: hidden;
}

.section-specialites::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 50%,
      rgba(201, 168, 76, 0.06),
      transparent
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 50%,
      rgba(30, 80, 128, 0.4),
      transparent
    );
  pointer-events: none;
}

.section-specialites .surtitre {
  color: var(--or-clair);
}
.section-specialites h2 {
  color: var(--blanc);
}

.carte-specialite {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--rayon-grand);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.carte-specialite::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.carte-specialite:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.carte-specialite:hover::before {
  transform: scaleX(1);
}

.specialite-icone {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.carte-specialite h3 {
  color: var(--blanc);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.carte-specialite p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === SECTION : MENU PDF =================================== */
.section-menu {
  background: var(--or-pale);
  text-align: center;
  position: relative;
}

.section-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.menu-carte {
  background: var(--blanc);
  border-radius: var(--rayon-grand);
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 620px;
  margin-inline: auto;
  box-shadow: var(--ombre-forte);
  position: relative;
}

.menu-carte::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--bleu-profond),
    var(--or),
    var(--bleu-profond)
  );
  border-radius: var(--rayon-grand) var(--rayon-grand) 0 0;
}

.menu-carte h2 {
  margin-bottom: 0.75rem;
}
.menu-carte p {
  color: var(--gris-texte);
  margin-bottom: 2rem;
}

/* === SECTION : AVIS CLIENTS =============================== */
.section-avis {
  background: var(--blanc);
  position: relative;
  overflow: hidden;
}

/* -- Score global ------------------------------------------ */
.avis-score-global {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 1.75rem 2rem;
  background: var(--gris-clair);
  border-radius: var(--rayon-grand);
  max-width: 420px;
  margin-inline: auto;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.avis-score-chiffre {
  font-family: var(--ff-titre);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bleu-profond);
  line-height: 1;
}

.avis-score-etoiles {
  display: flex;
  gap: 3px;
}

.avis-score-etoiles svg,
.avis-etoiles svg {
  width: 22px;
  height: 22px;
  fill: var(--or);
}

/* Demi-étoile : stroke et fill partiel via linearGradient */
.avis-score-etoiles .demi-etoile {
  color: var(--or);
}

.avis-score-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-ui);
}

.avis-count {
  font-size: 0.82rem;
  color: var(--gris-texte);
  letter-spacing: 0.04em;
}

.avis-lien-google {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--ff-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bleu-clair);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.avis-lien-google:hover {
  color: var(--or);
}

/* -- Grille des cartes d'avis ----------------------------- */
.avis-grille {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

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

@media (min-width: 640px) and (max-width: 999px) {
  .avis-grille {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* -- Carte avis individuelle ------------------------------ */
.avis-carte {
  background: var(--gris-clair);
  border: 1px solid rgba(13, 46, 78, 0.07);
  border-radius: var(--rayon-grand);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
  position: relative;
}

/* Guillemet décoratif */
.avis-carte::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  width: 70px;
  height: 70px;
  opacity: 0.12;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath fill='%23c6af7b' d='M38 30c-18 10-22 28-14 46 4 10 10 16 18 18 10 2 18-4 18-14 0-12-10-18-20-14-6 2-8 6-8 10 0 4 2 6 6 6 4 0 6-2 6-6 0-6-6-8-12-4M88 30c-18 10-22 28-14 46 4 10 10 16 18 18 10 2 18-4 18-14 0-12-10-18-20-14-6 2-8 6-8 10 0 4 2 6 6 6 4 0 6-2 6-6 0-6-6-8-12-4'/%3E%3C/svg%3E");
}

.avis-carte:hover {
  box-shadow: var(--ombre-medium);
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.3);
}

/* Masquer la 4e carte par défaut */
.avis-grille .avis-carte:nth-child(4) {
  display: none;
}

/* Entre 640px et 999px → afficher la 4e carte */
@media (min-width: 640px) and (max-width: 999px) {
  .avis-grille .avis-carte:nth-child(4) {
    display: flex;
  }
}

/* Étoiles */
.avis-etoiles {
  display: flex;
  gap: 2px;
}

.avis-etoiles svg {
  width: 18px;
  height: 18px;
  fill: var(--or);
  flex-shrink: 0;
}

/* Texte de l'avis */
.avis-texte {
  flex: 1;
  margin: 0;
}

.avis-texte p {
  font-family: var(--ff-corps);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--gris-texte);
  font-style: italic;

  /* Limitation longueur avis */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6; /* Nombre de lignes visibles */
  line-clamp: 6; /* Propriété standard */
  overflow: hidden;
}

/* Auteur */
.avis-auteur {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 46, 78, 0.08);
}

.avis-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bleu-profond);
  color: var(--or);
  font-family: var(--ff-titre);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avis-nom {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bleu-profond);
  font-style: normal;
  display: block;
}

.avis-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  color: var(--gris-texte);
  margin-top: 0.2rem;
  opacity: 0.75;
}

/* === SECTION : INFOS PRATIQUES ============================ */
.section-infos {
  background: var(--gris-clair);
}

.infos-grille {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .infos-grille {
    grid-template-columns: 1fr 1fr 1.3fr;
  }
}

.info-bloc {
  background: var(--blanc);
  border-radius: var(--rayon-grand);
  padding: 2rem 1.75rem;
  box-shadow: var(--ombre-douce);
}

.info-bloc-titre {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bleu-profond);
}

.info-icone {
  width: 38px;
  height: 38px;
  background: var(--bleu-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icone svg {
  width: 18px;
  height: 18px;
  fill: var(--bleu-profond);
}

.horaires-liste {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.horaire-ligne {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gris-clair);
}
.horaire-ligne:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.horaire-jour {
  font-weight: 600;
  color: var(--bleu-profond);
}
.horaire-heure {
  color: var(--gris-texte);
  font-size: 0.88rem;
  text-align: end;
}
.horaire-highlight {
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0)
  );
  border-left: 3px solid var(--or-clair);
  color: var(--bleu-profond);
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  margin: 1rem 0 1.2rem;
  font-size: 0.95rem;
}
.horaire-highlight span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.2rem;
}
.ferme {
  color: #c0392b;
  font-size: 0.85rem;
}

.adresse-texte {
  line-height: 1.8;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--bleu-profond);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gris-clair);
}

.info-bloc a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: normal;
  color: var(--bleu-profond);
  margin-top: 0.5rem;
  transition: color var(--transition);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gris-clair);
}
.info-bloc a:last-child {
  border-bottom: none;
}
.info-bloc a:hover {
  color: var(--or);
}
.info-bloc svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Carte Maps intégrée */
.maps-wrapper {
  border-radius: var(--rayon-grand);
  overflow: hidden;
  box-shadow: var(--ombre-medium);
}
.maps-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
}

/* === FOOTER =============================================== */
.site-footer {
  background: var(--bleu-profond);
  color: rgba(255, 255, 255, 0.85);
  padding-block: 3rem 1.5rem;
}

.footer-grille {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grille {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .footer-bas {
    flex-direction: column;
    align-items: start !important;
  }
}
@media (min-width: 960px) {
  .footer-grille {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.footer-titre {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.25rem;
}

.footer-liens {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-liens a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.footer-liens a:hover {
  color: var(--or-clair);
}

.footer-contact-ligne {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}
.footer-contact-ligne svg {
  width: 16px;
  height: 16px;
  fill: var(--or);
  flex-shrink: 0;
  margin-top: 0.15em;
}
.footer-contact-ligne a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-contact-ligne a:hover {
  color: var(--or-clair);
}

.footer-bas {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}
.footer-bas a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-bas a:hover {
  color: var(--or);
}

/* === PAGE RESTAURANT ====================================== */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(9, 9, 66, 0.85) 0%,
      rgba(9, 9, 66, 0.75) 30%,
      rgba(9, 9, 66, 0.65) 70%,
      rgba(9, 9, 66, 0.55) 100%
    ),
    url("../images/hero-bisquine.png");
  /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--blanc);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  color: var(--blanc);
}
.page-hero .surtitre {
  color: var(--or-clair);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 58ch;
  margin: 1rem auto 0;
}

/* Histoire */
.section-histoire {
  background: var(--blanc);
}

/* Galerie */
.section-galerie {
  background: var(--blanc);
}

.galerie-grille {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .galerie-grille {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .galerie-grille {
    grid-template-columns: repeat(4, 1fr);
  }
  .galerie-grille .galerie-principal {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.galerie-item {
  border-radius: var(--rayon);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.galerie-item .img-placeholder {
  min-height: 0;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}
.galerie-item:hover .img-placeholder {
  filter: brightness(1.05);
}

/* Valeurs */
.valeurs-grille {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .valeurs-grille {
    grid-template-columns: repeat(2, 1fr);
  }
}

.valeur-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.valeur-icone-wrapper {
  width: 48px;
  height: 48px;
  background: var(--bleu-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.valeur-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.valeur-item p {
  font-size: 0.92rem;
  color: var(--gris-texte);
}

/* A emporter */
.section-emporter {
  background: var(--gris-clair);
}

.emporter-image {
  position: relative;
  border-radius: var(--rayon-grand);
  overflow: hidden;
  box-shadow: var(--ombre-forte);
}

.emporter-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* === PAGE CONTACT ========================================= */
.section-contact-principal {
  background: var(--blanc);
}

.contact-grille {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-grille {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* Formulaire */
.formulaire {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.champ-groupe {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.champ-groupe-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-family: var(--ff-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bleu-profond);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  font-family: var(--ff-corps);
  font-size: 1rem;
  color: var(--texte-sombre);
  background: var(--gris-clair);
  border: 1.5px solid #ddd;
  border-radius: var(--rayon);
  padding: 0.75rem 1rem;
  width: 100%;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--bleu-clair);
  background: var(--blanc);
  box-shadow: 0 0 0 3px rgba(30, 80, 128, 0.12);
}

textarea {
  min-height: 186px;
  resize: vertical;
}

.btn-submit {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bleu-profond);
  color: var(--blanc);
  border: 2px solid var(--bleu-profond);
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
  align-self: flex-start;
}
.btn-submit:hover {
  background: var(--bleu-clair);
  border-color: var(--bleu-clair);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 46, 78, 0.3);
}
.btn-submit svg {
  width: 18px;
  height: 18px;
  fill: var(--blanc);
}

.contact-infos-carte {
  background: var(--bleu-profond);
  border-radius: var(--rayon-grand);
  padding: 1.25rem 2.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-style: normal;
}
.contact-infos-carte h3 {
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-icone {
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icone svg {
  width: 20px;
  height: 20px;
  fill: var(--or);
}
.contact-info-label {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.3rem;
}
.contact-info-texte {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.contact-info-texte a {
  color: rgba(255, 255, 255, 0.8);
}
.contact-info-texte a:hover {
  color: var(--or-clair);
}

.contact-horaires {
  flex: 1;
}
.contact-horaires-liste {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-horaire-ligne {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.contact-horaire-jour {
  font-weight: 600;
}
.contact-horaire-heure {
  text-align: right;
}
.contact-horaire-note {
  margin-top: 0.8rem;
  font-size: 0.85em;
  opacity: 0.7;
  font-style: italic;
}
.contact-horaire-highlight {
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.15),
    rgba(212, 175, 55, 0)
  );
  border-left: 3px solid var(--or-clair);
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  margin: 0.8rem 0 1.2rem;
}
.contact-horaire-highlight span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* === PAGE MENTIONS LÉGALES ================================ */
.mentions-legales {
  background: var(--blanc);
}
.mentions-legales h2 {
  font-size: 1.4rem;
  margin-block: 2rem 0.75rem;
  color: var(--bleu-profond);
}
.mentions-legales h2:first-child {
  margin-top: 0;
}
.mentions-legales p,
.mentions-legales address {
  margin-bottom: 1rem;
  font-style: normal;
  color: var(--gris-texte);
}
.mentions-legales a {
  color: var(--bleu-clair);
}

/* === POP-UP INFO (fermeture exceptionnelle, etc.) ================================ */
.popup-info {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  z-index: 999;
  padding: 1.25rem;
}

.popup-info-card {
  width: min(560px, 100%);
  background: var(--blanc);
  border-radius: var(--rayon-grand);
  padding: 1.75rem;
  box-shadow: var(--ombre-forte);
}

.popup-info[hidden] {
  display: none;
}

/* === ANIMATIONS =========================================== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollRoue {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    transform: translateY(10px);
    opacity: 0;
  }
  76% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Reveal au scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* === UTILITAIRES =========================================== */
.text-center {
  text-align: center;
}
.mb-sm {
  margin-bottom: 1rem;
}
.mb-md {
  margin-bottom: 1.75rem;
}
.mb-lg {
  margin-bottom: 2.5rem;
}
.mt-lg {
  margin-top: 0.75rem;
}

/* Séparateur décoratif */
.separateur {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 2.5rem;
}
.separateur::before,
.separateur::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
}
.separateur-diamant {
  width: 8px;
  height: 8px;
  background: var(--or);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* === ACCESSIBILITÉ ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip to main */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--or);
  color: var(--bleu-profond);
  padding: 0.5rem 1rem;
  border-radius: var(--rayon);
  font-weight: 700;
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* === RESPONSIVE FINE TUNING ================================ */
@media (max-width: 1023px) {
  .hero-contenu {
    padding-bottom: 15px;
  }
  .hero-vagues {
    width: auto;
  }
}

@media (max-width: 767px) {
  .hero-contenu {
    padding-bottom: 30px;
  }
}

@media (max-width: 599px) {
  .champ-groupe-2 {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.25rem;
  }
  .stat-chiffre {
    font-size: 1.6rem;
  }
}

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

/* Print */
@media print {
  .site-header,
  .site-footer,
  .scroll-indicator,
  .btn-groupe {
    display: none;
  }
  body {
    color: #000;
  }
}
