/* ============================================================
   CHEZ IZZA — Traiteur oriental, Porto-Vecchio
   Feuille de styles — page d'accueil
   ============================================================ */

:root {
  /* Palette */
  --or:        #C8A24A;   /* or chaud — accent principal */
  --or-clair:  #E5C99B;   /* or clair — highlight de mots */
  --rouge:     #B8421E;   /* rouge tajine — CTA chaud */
  --creme:     #FAF3E0;   /* fond principal */
  --brun:      #2C1810;   /* brun profond — blocs forts */
  --beige:     #EFE6D2;   /* fond section secondaire */
  --wa:        #25D366;   /* WhatsApp */
  --google:    #4285F4;   /* Google */
  --creme-2:   #fdfaf2;

  /* Typo */
  --f-script: "Great Vibes", cursive;
  --f-titre:  "Marcellus SC", "Marcellus", serif;
  --f-titre2: "Marcellus", serif;
  --f-corps:  "Lato", system-ui, sans-serif;

  /* Mesures */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-corps);
  color: var(--brun);
  background: var(--creme);
  background-image:
    radial-gradient(120% 60% at 50% -10%, rgba(200,162,74,.28) 0%, rgba(200,162,74,0) 55%);
  background-repeat: no-repeat;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

/* ---- Helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

.script {
  font-family: var(--f-script);
  font-weight: 400;
  line-height: 1.32;
  padding-block: .12em;
  background: linear-gradient(165deg, #Ecd29a 0%, #C8A24A 32%, #9c7833 52%, #E8C987 72%, #C8A24A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  font-family: var(--f-titre);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 13px;
}

.section { padding-block: clamp(64px, 9vw, 130px); }

/* ---- Zellige (étoiles à 8 branches, raccordable) ---- */
:root {
  --zellige: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23C8A24A' stroke-width='1.1'%3E%3Crect x='12' y='12' width='40' height='40'/%3E%3Crect x='12' y='12' width='40' height='40' transform='rotate(45 32 32)'/%3E%3Crect x='-20' y='-20' width='40' height='40'/%3E%3Crect x='-20' y='-20' width='40' height='40' transform='rotate(45 0 0)'/%3E%3Crect x='44' y='-20' width='40' height='40'/%3E%3Crect x='44' y='-20' width='40' height='40' transform='rotate(45 64 0)'/%3E%3Crect x='-20' y='44' width='40' height='40'/%3E%3Crect x='-20' y='44' width='40' height='40' transform='rotate(45 0 64)'/%3E%3Crect x='44' y='44' width='40' height='40'/%3E%3Crect x='44' y='44' width='40' height='40' transform='rotate(45 64 64)'/%3E%3C/g%3E%3C/svg%3E");
}

/* bande décorative dorée (séparateur de sections) */
.zellige-band {
  height: 54px;
  background-image: var(--zellige);
  background-size: 54px 54px;
  opacity: .5;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.band-sep {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--or);
}
.band-sep::before, .band-sep::after {
  content: ""; height: 1px; flex: 1; max-width: 160px;
  background: linear-gradient(90deg, transparent, var(--or));
}
.band-sep::after { background: linear-gradient(90deg, var(--or), transparent); }
.band-sep .lozenge {
  width: 12px; height: 12px; border: 1.5px solid var(--or); transform: rotate(45deg);
}

/* Filigrane arabesque (très discret) */
.filigrane { position: relative; }
.filigrane > .arabesque {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image: var(--zellige);
  background-size: 92px 92px;
  z-index: 0;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 50%, #000 35%, transparent 72%);
          mask-image: radial-gradient(120% 80% at 50% 50%, #000 35%, transparent 72%);
}
.filigrane > * { position: relative; z-index: 1; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-titre);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

.btn--brun  { background: var(--brun);  color: var(--creme); }
.btn--brun:hover  { box-shadow: 0 12px 30px -12px rgba(44,24,16,.55); }
.btn--blanc { background: var(--creme); color: var(--brun); }
.btn--blanc:hover { box-shadow: 0 12px 30px -14px rgba(0,0,0,.4); }
.btn--or    { background: var(--or);    color: var(--brun); }
.btn--arrow { display: inline-flex; width: 260px; justify-content: space-between; align-items: center; }
/* Tooltip numéro de téléphone desktop */
.tel-tooltip {
  position: fixed; z-index: 9999;
  transform: translateX(-50%);
  background: var(--brun); color: var(--creme);
  font-family: var(--f-titre); font-size: 17px; letter-spacing: .06em;
  padding: 10px 20px; border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  white-space: nowrap;
  animation: fadeInUp .2s ease;
}
.tel-tooltip::before {
  content: '';
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top: none;
  border-bottom-color: var(--brun);
}
.tel-copy { cursor: pointer; font-size: 14px; opacity: .7; transition: opacity .2s; }
.tel-copy:hover { opacity: 1; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.btn__arrow { margin-left: auto; }
.btn--rouge { background: var(--rouge);  color: #fff; }
.btn--wa    { background: var(--wa);     color: #fff; }
.btn--google{ background: var(--google); color: #fff; }
.btn--ghost { background: transparent; border-color: currentColor; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: #fff;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
  padding-block: 14px 18px;
}
.site-header.scrolled {
  background: rgba(28,15,9,.96);
  box-shadow: 0 8px 30px -16px rgba(0,0,0,.7);
  padding-block: 8px 10px;
}
.topbar {
  transition: opacity .3s ease, max-height .3s ease, margin .3s ease;
  max-height: 60px;
  opacity: 1;
  overflow: hidden;
}
.site-header.scrolled .topbar {
  opacity: 0;
  max-height: 0;
  margin: 0;
  pointer-events: none;
}
.logo-img {
  transition: width .3s ease;
}
.site-header.scrolled .tagline {
  display: none;
}

/* bandeau infos */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  letter-spacing: .06em;
  width: 100%;
  padding-inline: 40px;
  box-sizing: border-box;
}
.topbar a { display: inline-flex; align-items: center; gap: 7px; opacity: .9; transition: opacity .2s, color .2s; }
.topbar a:hover { opacity: 1; color: var(--or-clair); }
.topbar .infos-droite { justify-self: end; }
.topbar svg { width: 20px; height: 20px; }

.social-row { display: flex; justify-content: center; gap: 12px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(24,13,7,.5);
  border: 1px solid rgba(200,162,74,.55);
  display: grid; place-items: center;
  color: var(--or-clair); opacity: 1;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  transition: background .2s, color .2s, transform .2s;
}
.social-row a:hover { background: var(--or); color: var(--brun); transform: translateY(-2px); opacity: 1; }
.social-row a svg { width: 16px; height: 16px; }

/* logo central (image réelle) */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 100px;
  transition: margin .4s ease;
}
.brand .logo-img {
  width: 210px; height: auto;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.45));
  transition: width .4s ease;
}
.scrolled .brand { margin-top: 4px; }
.scrolled .brand .logo-img { width: 72px; }
.tagline-br { display: none; }
.brand .tagline {
  font-family: var(--f-titre);
  letter-spacing: .36em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--or-clair);
  white-space: nowrap;
}
.scrolled .brand .tagline { font-size: 11px; }

/* médaillon logo (emblème par défaut — remplaçable) */
.medaillon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, #3c2415, #1b0f08 78%);
  border: 2px solid var(--or);
  box-shadow: inset 0 0 0 4px rgba(200,162,74,.16), 0 6px 20px -10px rgba(0,0,0,.6);
  color: var(--or); line-height: 1; overflow: hidden; flex: 0 0 auto;
}
.medaillon .med-top { font-family: var(--f-titre); font-size: 8px; letter-spacing: .32em; color: var(--or-clair); margin-bottom: 1px; }
.medaillon .med-script { font-family: var(--f-script); font-size: 31px; color: var(--or); margin-top: -1px; }
.medaillon .med-bot { font-family: var(--f-titre); font-size: 5.5px; letter-spacing: .22em; color: var(--or-clair); margin-top: 2px; opacity: .85; }
.scrolled .brand .medaillon .med-top,
.scrolled .brand .medaillon .med-bot { display: none; }
.scrolled .brand .medaillon .med-script { font-size: 19px; margin: 0; }

/* navigation */
.mainnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2.6vw, 40px);
  margin-top: 14px;
}
.mainnav a {
  font-family: var(--f-titre);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 16px;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.mainnav a:hover { color: var(--or-clair); }
.mainnav a.actif { border-color: var(--or); color: #fff; }
.scrolled .mainnav { margin-top: 8px; }

/* burger (mobile) */
.burger { display: none; }

/* ============================================================
   HERO — tryptique diagonal
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--brun);
  overflow: hidden;
}
.hero__panels { position: absolute; inset: 0; }

/* 2 sets de photos superposés, cross-fade synchronisé */
.hero__set {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
}
.hero__set.actif { opacity: 1; }

/* Panneaux : chaque div couvre sa colonne, clip-path + img dedans */
.hero__panel {
  position: absolute;
  top: 0; bottom: 0;
  overflow: hidden;
}
.hero__panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Colonnes : left=0→40%, center=28→72%, right=60→100% (chevauchement pour les diagonales) */
.hero__panel.p-left   { left: 0;   right: 60%; clip-path: polygon(0 0, 92.4% 0, 77.5% 100%, 0 100%); }
.hero__panel.p-center { left: 28%; right: 28%; clip-path: polygon(20.5% 0, 95.5% 0, 81.8% 100%, 6.8% 100%); filter: brightness(.62); }
.hero__panel.p-right  { left: 60%; right: 0;   clip-path: polygon(25% 0, 100% 0, 100% 100%, 10% 100%); }

.hero__overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(28,15,9,.55) 0%, rgba(28,15,9,.2) 30%, rgba(28,15,9,.32) 65%, rgba(28,15,9,.62) 100%);
}
/* Lignes de séparation : polygones qui suivent exactement les bords des clip-paths */
.hero__seam {
  position: absolute; inset: 0;
  pointer-events: none;
  background: var(--creme);
  opacity: .85;
}
/* Seam 1 : jonction gauche/centre — de (37%, haut) à (31%, bas) */
.hero__seam.s1 {
  clip-path: polygon(
    calc(37% - 1.5px) 0, calc(37% + 1.5px) 0,
    calc(31% + 1.5px) 100%, calc(31% - 1.5px) 100%
  );
}
/* Seam 2 : jonction centre/droite — de (70%, haut) à (64%, bas) */
.hero__seam.s2 {
  clip-path: polygon(
    calc(70% - 1.5px) 0, calc(70% + 1.5px) 0,
    calc(64% + 1.5px) 100%, calc(64% - 1.5px) 100%
  );
}

/* ============================================================
   SECTION 2 — accroche cursive
   ============================================================ */
/* ============================================================
   SPÉCIALITÉS INTRO
   ============================================================ */
.specialites-intro { background: var(--creme); color: var(--brun); padding-block: 38px; }
.sp__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.sp__image { border-radius: 12px; overflow: hidden; aspect-ratio: 2/3; background: rgba(255,255,255,.06); max-width: 360px; }
.sp__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp__texte { color: var(--brun); display: flex; flex-direction: column; gap: 4px; }
.sp__texte .btn { margin-top: 16px; }
.sp__titre { font-size: clamp(36px, 4.5vw, 64px); line-height: 1.0; margin: 0; }
.sp__desc { font-size: 16px; line-height: 1.8; color: var(--brun); margin: 0; }
@media (max-width: 720px) {
  .sp__wrap { grid-template-columns: 1fr; }
  .sp__image { aspect-ratio: 2/3; }
  .sp__titre { font-size: clamp(38px, 10vw, 52px); line-height: 1.05; }
}

.accroche { text-align: center; background: var(--creme); }
.accroche .script { font-size: clamp(52px, 9vw, 116px); line-height: 1.28; }
.accroche .sous {
  font-family: var(--f-titre);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--rouge);
  margin-top: 6px;
}

/* ============================================================
   SECTION — Comment commander
   ============================================================ */
.comment-commander { background: var(--creme); color: var(--brun); text-align: center; padding-block: clamp(24px, 3vw, 48px); padding-bottom: 16px !important; }
.cc__script { font-size: clamp(40px, 6vw, 80px); line-height: 1.2; margin-top: 0; margin-bottom: 14px; }
.cc__sous { font-size: 17px; color: var(--or); letter-spacing: .04em; margin-top: 0; margin-bottom: 36px; }
.cc__etapes {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(12px, 2vw, 28px);
  margin-bottom: 56px;
}
.cc__etape {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 28px);
  border: 1px solid rgba(200,162,74,.35);
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.cc__etape::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, .75);
  border-radius: inherit;
  z-index: 0;
  transition: background .3s;
}
.cc__etape:hover::before { background: rgba(20, 10, 5, .5); }
.cc__etape > * { position: relative; z-index: 1; }
.cc__etape:nth-child(1) { background-image: url("assets/etape-1.jpg"); }
.cc__etape:nth-child(3) { background-image: url("assets/etape-2.jpg"); }
.cc__etape:nth-child(5) { background-image: url("assets/etape-3.jpg"); }
.cc__arrow {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--or);
  opacity: .8;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.cc__ico { color: var(--or); }
.cc__ico svg { width: 44px; height: 44px; }
.cc__etape h3 {
  font-family: var(--f-titre);
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  color: var(--creme);
}
.cc__etape p { margin: 0; font-size: 15px; color: #e8ddd0; line-height: 1.6; }
.cc__etape p strong { color: inherit; }
.cc__ctas { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .cc__etapes { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .cc__arrow { font-size: 22px; transform: rotate(90deg); }
  .cc__ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ============================================================
   SECTION 3 — À propos (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split__media { position: relative; min-height: 400px; }
.split__media > image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }

/* photo plein cadre gauche (desktop) */
.apropos .split__media {
  background: var(--creme);
  padding: 0;
  min-height: 0;
  overflow: hidden;
}
.apropos .split__media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* arche mihrab sur mobile uniquement */
@media (max-width: 960px) {
  .apropos .split__media {
    display: grid; place-items: center;
    padding: clamp(26px, 4vw, 58px);
    background: var(--creme);
  }
  .apropos .split__media > img {
    position: relative; inset: auto;
    width: auto; height: auto;
    max-height: 60vh; max-width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 220px 220px 16px 16px;
    object-fit: cover;
    box-shadow: 0 0 0 4px var(--creme), 0 0 0 10px var(--or),
                0 0 0 11px rgba(255,255,255,.25), 26px 30px 60px -30px rgba(44,24,16,.55);
  }
}

.apropos__txt {
  background: var(--brun);
  color: var(--creme);
  align-items: center;
  text-align: center;
  padding: clamp(40px, 6vw, 84px) clamp(28px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.apropos__txt h2 {
  font-family: var(--f-titre2);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  margin: 0;
}
.apropos__txt h2 em { color: var(--or-clair); font-style: normal; }
.apropos__txt p { margin: 0; color: #e7ddcb; font-size: 16px; }
.apropos__txt p b { color: #fff; font-weight: 700; }
.apropos__txt .btn { align-self: center; margin-top: 8px; }
.horaires { border-collapse: collapse; font-size: 15px; color: #e7ddcb; }
.horaires td { padding: 5px 18px 5px 0; }
.horaires td:last-child { color: #fff; font-weight: 600; padding-right: 0; white-space: nowrap; }
.horaires tr:first-child td { padding-top: 2px; }

/* ============================================================
   SECTION 4 — 3 colonnes icônes
   ============================================================ */
.trio { background: var(--creme); text-align: center; padding-top: 10px !important; padding-bottom: 28px !important; overflow: visible; }
.trio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 48px);
  max-width: 760px;
  margin: 0 auto;
  overflow: visible;
}
.trio__col {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px 32px;
  border-radius: 10px;
  overflow: visible;
  transition: transform .3s ease;
}
.trio__col:hover { transform: translateY(-5px); }
.trio__ico { width: 44px; height: 44px; color: var(--or); transition: color .3s ease, transform .3s ease; }
.trio__col:hover .trio__ico { color: var(--rouge); transform: scale(1.06); }
.trio__col .script { font-size: clamp(26px, 3vw, 38px); padding: 4px 20px; display: inline-block; }
.trio__col:hover .script {
  background: none;
  -webkit-text-fill-color: var(--rouge);
  color: var(--rouge);
}
.trio__sep { width: 34px; height: 1px; background: var(--or); opacity: .6; }

/* ============================================================
   SECTION 5 — spécialités (fond beige)
   ============================================================ */
.specialites { background: var(--beige); }
.specialites .split { align-items: stretch; }
.spec__txt {
  padding: clamp(40px, 6vw, 90px) clamp(28px, 5vw, 76px);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.spec__txt h2 {
  font-family: var(--f-titre);
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--rouge);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  margin: 0 0 6px;
}
.spec__txt p { margin: 0; font-size: 16px; color: #4a3528; }
.spec__txt p b { color: var(--or); font-weight: 700; }
.spec__txt .btn { align-self: flex-start; margin-top: 12px; }

/* ============================================================
   SECTION 6 — Instagram (maquette)
   ============================================================ */
.insta { background: var(--creme); padding-top: 10px !important; }
.insta__head {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; margin-bottom: 44px; text-align: center;
}
.insta__top-row {
  display: flex; align-items: center; gap: 24px;
}
.insta__right {
  display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
}
.insta__avatar {
  width: 130px; height: 130px; border-radius: 50%;
}
.insta__avatar image-slot { width: 100%; height: 100%; border: 3px solid var(--creme); border-radius: 50%; }
.insta__avatar img { width: 100%; height: 100%; object-fit: contain; display: block; }
.insta__meta h3 { margin: 0; font-family: var(--f-titre2); font-size: 24px; font-weight: 400; }
.insta__right h3 { margin: 0; font-family: var(--f-titre2); font-size: 24px; font-weight: 400; }
.counts { display: flex; gap: 28px; font-size: 14px; color: #6a584a; }
.counts span { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.counts b { color: var(--brun); font-size: 18px; }
.counts small { font-size: 12px; }
.btn--insta {
  background: linear-gradient(45deg,#feda75,#d62976 45%,#962fbf 80%,#4f5bd5);
  color: #fff; font-size: 12px; padding: 11px 26px;
}
.insta__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.insta__post {
  background: #000; overflow: hidden;
  position: relative;
}
.insta__post a { display: block; position: relative; }
.insta__post img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; display: block; transition: opacity .25s; }
.insta__post a:hover img { opacity: .85; }
.insta__post a::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .25s;
}
.insta__post a:hover::after { background: rgba(0,0,0,.45); }
.insta__overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity .25s;
  pointer-events: none;
}
.insta__post a:hover .insta__overlay { opacity: 1; }
.insta__stats {
  display: flex; gap: 20px;
  color: #fff; font-size: 16px; font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.insta__cta {
  color: #fff; font-size: 12px; font-family: var(--f-corps);
  letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.7); border-radius: 20px;
  padding: 6px 14px;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.insta__post--video a::before {
  content: '';
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='2' y='6' width='11' height='12' rx='2'/%3E%3Cpath d='M15 9l5-3v12l-5-3V9z'/%3E%3C/svg%3E") center/contain no-repeat;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
}
.insta__post .pb { padding: 12px 14px 14px; }
.insta__post .pb .date { font-size: 11px; color: #9b8b7c; letter-spacing: .04em; }
.insta__post .pb p { margin: 6px 0 10px; font-size: 13px; line-height: 1.5; color: #4a3528; }
.insta__post .pb .stats { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: #6a584a; }
.insta__post .pb .stats span { display: inline-flex; align-items: center; gap: 5px; }
.insta__post .pb .stats svg { width: 15px; height: 15px; }

/* ============================================================
   SECTION 7 — Avis Google (maquette)
   ============================================================ */
.avis { background: var(--brun); padding-block: 20px; }
.avis__header { text-align: center; margin-bottom: 20px; display: flex; flex-direction: column; gap: 0; }
.avis__titre { font-size: clamp(36px, 5vw, 68px); line-height: 0.85; margin: 0; padding-top: 12px; color: var(--creme); }
.avis__note { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.avis__stars { color: var(--or); font-size: 30px; letter-spacing: 2px; }
.avis__stars--sm { color: var(--or); font-size: 14px; letter-spacing: 1px; }
.avis__score { font-size: 20px; font-weight: 600; color: var(--creme); font-family: var(--f-titre2); line-height: 1; }
.avis__score small { font-size: 18px; font-weight: 400; color: #c9bfb0; }
.avis__count { font-size: 18px; color: #c9bfb0; display: flex; align-items: center; line-height: 1; }
.avis__carousel-wrap { position: relative; display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.avis__carousel { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; flex: 1; }
.avis__carousel::-webkit-scrollbar { display: none; }
.avis__arrow { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(200,162,74,.4); background: rgba(255,255,255,.06); color: var(--or); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.avis__arrow:hover { background: rgba(200,162,74,.15); border-color: var(--or); }
.avis__card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(200,162,74,.2);
  border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .3s, background .3s;
}
.avis__card:hover { border-color: rgba(200,162,74,.5); background: rgba(255,255,255,.09); }
.avis__top { display: flex; align-items: center; gap: 12px; }
.avis__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px; color: #fff;
}
.avis__nom { display: block; font-weight: 700; font-size: 14px; color: var(--creme); }
.avis__date { font-size: 12px; color: #9b8b7c; }
.avis__texte { margin: 0; font-size: 14px; line-height: 1.65; color: #c9bfb0; font-style: italic; }
.avis__photo-wrap { height: 200px; overflow: hidden; border-radius: 8px; margin-top: 4px; margin-bottom: 4px; flex-shrink: 0; }
.avis__photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.avis__cta { text-align: center; margin-top: 20px; margin-bottom: 19px; }

/* ============================================================
   SECTION 8 — transition + CTA final
   ============================================================ */
.final { background: var(--creme); text-align: center; }
.final p.lead {
  max-width: 720px; margin: 0 auto 32px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-family: var(--f-titre2);
  line-height: 1.5; color: var(--brun);
}
.final .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--brun); color: #e7ddcb; text-align: center; }
.site-footer .inner { padding-block: clamp(48px, 7vw, 84px); }
.site-footer .logo-img { width: 116px; height: auto; margin: 0 auto 26px; display: block; filter: drop-shadow(0 6px 16px rgba(0,0,0,.5)); }
.foot-links { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 18px; }
.foot-links a { font-family: var(--f-titre); text-transform: uppercase; letter-spacing: .16em; font-size: 13px; color: var(--creme); transition: color .2s; }
.foot-links a:hover { color: var(--or); }
.foot-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.foot-social a { color: var(--or-clair); transition: color .2s, transform .2s; }
.foot-social a:hover { color: var(--or); transform: translateY(-2px); }
.foot-social svg { width: 20px; height: 20px; }
.foot-rule { width: 100%; max-width: 520px; height: 1px; background: linear-gradient(90deg, transparent, var(--or), transparent); margin: 0 auto 24px; opacity: .5; }
.foot-legal { font-size: 12.5px; color: #b6a591; line-height: 1.9; letter-spacing: .03em; }
.foot-legal a { color: var(--or-clair); }

/* ============================================================
   Barre sticky téléphone (desktop uniquement)
   ============================================================ */
.sticky-call {
  display: none;
}
@media (min-width: 960px) {
  .sticky-call {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: #3b1a08;
    color: #f5e6c8;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    justify-content: center;
    padding: 7px 20px;
    letter-spacing: 0.02em;
  }
  .sticky-call svg { flex-shrink: 0; fill: #c9973a; width: 15px; height: 15px; }
  .sticky-call__sep { color: #c9973a; margin: 0 4px; }
  .sticky-call__logo {
    height: 28px;
    width: auto;
    margin-left: 18px;
    flex-shrink: 0;
    animation: logo-bounce 0.6s ease-in-out infinite alternate;
  }
  @keyframes logo-bounce {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-6px); }
  }
}

/* ============================================================
   Boutons flottants
   ============================================================ */
.floaters { position: fixed; right: 18px; bottom: 18px; z-index: 200; display: flex; flex-direction: column; gap: 12px; }
.floaters a {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.45);
  transition: transform .2s;
}
.floaters a:hover { transform: scale(1.12); animation: none; }
.floaters svg { width: 28px; height: 28px; }

/* Bouton téléphone flottant : vert, visible sur toutes les tailles, animation pulse */
@media (min-width: 960px) { .fl-call { display: none !important; } }
.fl-call {
  background: #c9973a;
  box-shadow: 0 0 0 0 rgba(201, 151, 58, 0.7);
  animation: pulse-call 2.2s ease-in-out infinite;
}

@keyframes pulse-call {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(201,151,58,.9); }
  50%  { transform: scale(1.18); box-shadow: 0 0 0 20px rgba(201,151,58,0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(201,151,58,0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 380px; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .avis__card { flex: 0 0 280px; }
  .trio__grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar { grid-template-columns: 1fr; justify-items: center; }
  .topbar .infos-gauche { display: none; }
  .topbar .infos-droite { display: none; }
  .social-row { gap: 14px; }
  .brand .tagline {
    white-space: normal;
    text-align: center;
    line-height: 1.6;
    background: rgba(0,0,0,.45);
    padding: 6px 16px;
    border-radius: 4px;
  }
  .tagline-br { display: inline; }
  .tagline-sep { display: none; }
  .mainnav {
    display: flex; flex-direction: row; flex-wrap: wrap;
    justify-content: center; gap: 6px 10px; margin-top: 12px;
  }
  .mainnav a {
    font-size: 15px;
    letter-spacing: .18em;
    font-weight: 700;
    padding: 10px 16px;
    text-shadow: 0 1px 6px rgba(0,0,0,.7);
  }
  .burger { display: none; }
  /* Mobile : seulement 2 panneaux, centre masqué */
  .hero__panel.p-left   { right: 47%; clip-path: polygon(0 0, 94.3% 0, 83% 100%, 0 100%); }
  .hero__panel.p-center { display: none; }
  .hero__panel.p-right  { left: 44%; clip-path: polygon(10.7% 0, 100% 0, 100% 100%, 0 100%); }
  .hero__seam.s2 { display: none; }
  .hero__seam.s1 {
    clip-path: polygon(
      calc(50% - 1.5px) 0, calc(50% + 1.5px) 0,
      calc(44% + 1.5px) 100%, calc(44% - 1.5px) 100%
    );
  }
  .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .avis__card { flex: 0 0 54vw; }
  /* Layout Instagram mobile */
  .insta__head { margin-bottom: 20px; text-align: left; align-items: center; }
  .insta__top-row { gap: 16px; }
  .insta__avatar { width: 72px; height: 72px; flex-shrink: 0; }
  .insta__meta h3 { font-size: 14px; font-weight: 700; }
  .insta__right h3 { font-size: 15px; }
  .counts { gap: 16px; }
  .counts b { font-size: 15px; }
  .btn--insta { font-size: 13px; padding: 8px 16px; width: 100%; text-align: center; }
  .avis__arrow { display: none; }
  .avis__titre { font-size: clamp(38px, 10vw, 52px); line-height: 1.05; padding-top: 0; margin-top: -22px; }
  /* fl-call déjà visible globalement, rien à forcer ici */
  .final .ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
}
