:root{
  --gold:#C9A24D;
  --white:#FFFFFF;

  --bg:#252525;
  --panel: rgba(255,255,255,.04);
  --panel2: rgba(255,255,255,.06);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --container: 1440px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 80% 40%, rgba(201,162,77,.06), transparent 65%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}

/* ===== Typography ===== */
.gold{ color:var(--gold); }
.muted{ color:var(--muted); }
.center{ text-align:center; }

.h2, .h3{
  font-family: "Playfair Display", serif;
  letter-spacing:.4px;
}
.h2{ font-size:34px; line-height:1.15; margin:0 0 12px; }
.h3{ font-size:22px; line-height:1.2; margin:0 0 10px; }

/* ===== Header ===== */
.site-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background: linear-gradient(to bottom, rgba(11,11,12,.88), rgba(11,11,12,.68));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(201,162,77,.15);
  padding:10px 0;
}

body{
  padding-top:110px;
}

.header-inner{
  height:76px;
  display:flex;
  justify-content:space-between;
  gap:18px;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand-logo{ height:80px; width:auto; opacity:.98 }

/* ===== Navigation ===== */
.nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:16px;
}

.nav-link{
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
  position:relative;
  padding:6px 2px;
}

.nav-link:hover{
  color:var(--gold);
}

.nav-link.is-active{
  color:var(--gold);
}

/* Losanges entre les liens */
.nav-diamond{
  width:6px;
  height:6px;
  background:#C9A24D;
  transform:rotate(45deg);
  display:inline-block;
  opacity:.95;

}


/* Supprime tout soulignement ancien */
.nav-link::after{
  display:none !important;
}


.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.header-diamonds{
  display:flex;
  gap:8px;
  align-items:center;
  opacity:.95;
}
.diamond{
  width:8px;
  height:8px;
  border:1px solid rgba(201,162,77,.9);
  transform: rotate(45deg);
  box-shadow: 0 0 0 2px rgba(201,162,77,.08);
}

.burger{
  display:none;
  width:42px; height:42px;
  border:1px solid rgba(201,162,77,.25);
  border-radius:12px;
  background:rgba(255,255,255,.02);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px; height:2px;
  background:rgba(255,255,255,.86);
  margin:4px auto;
  border-radius:10px;
}

/* Mobile nav */
.mobile-nav{
  display:none;
  border-top:1px solid rgba(201,162,77,.15);
  background: rgba(10,10,11,.92);
  padding:14px 18px 18px;
  width: 100%;
}
.mobile-nav a{
  display:block;
  padding:10px 8px;
  border-radius:12px;
  color:rgba(255,255,255,.86);
}
.mobile-nav a:hover{ background:rgba(255,255,255,.04); }
.mobile-cta{
  margin-top:10px;
  border:1px solid rgba(201,162,77,.25);
  background:rgba(201,162,77,.10);
}
.mobile-nav.is-open{ display:block; width: 100%;}


/* ===== HERO under header ===== */
.hero-main{
  position: relative;
  height: 420px;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* Image de fond */
.hero-bg{
  position: absolute;
  inset: 0;
  background-image: url("images/banner_homepage.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}
.hero-restaurant-bg{
  position: absolute;
  inset: 0;
  background-image: url("images/restaurant_banner_pres.png");
  background-size: cover;
  background-position: 80% 60%;
  filter: saturate(1.05) contrast(1.05);
}
.hero-avis-bg{
  position: absolute;
  inset: 0;
  background-image: url("images/avis_banner_pres.png");
  background-size: cover;
  background-position: 80% 65%;
  filter: saturate(1.05) contrast(1.05);
}
.hero-contact-bg{
  position: absolute;
  inset: 0;
  background-image: url("images/contact_banner.png");
  background-size: cover;
  background-position: 80% 75%;
  filter: saturate(1.05) contrast(1.05);
}
.hero-menu-bg{
  position: absolute;
  inset: 0;
  background-image: url("images/menu_banner_pres.png");
  background-size: cover;
  background-position: 80% 75%;
  filter: saturate(1.05) contrast(1.05);
}

/* Overlay sombre */
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 50% 30%, rgba(0,0,0,.15), rgba(0,0,0,.75)),
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.85));
}

/* Contenu centré */
.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-main{
  position: relative;
  height: 550px;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* Bande hachée en haut */
/* .hero-main::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:-1px;
  height:58px;
  z-index: 3;
  pointer-events:none;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 V45 C80,70 160,25 240,40 C320,55 400,85 480,65 C560,45 640,15 720,30 C800,45 880,90 960,70 C1040,50 1120,20 1200,35 V0 Z' fill='%230B0B0C'/%3E%3C/svg%3E") center/100% 100% no-repeat;
} */

/* Bande hachée en bas */
.hero-main::after {
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-1px;
  height:68px;
  z-index: 3;
  pointer-events:none;

  background: url(images/divider.png) no-repeat center;
  background-size: cover;
  filter: hue-rotate(45deg) saturate(1.2) brightness(1.1) drop-shadow(0 0 0 #0B0B0C);
}

/* Texte */
.hero-content h1{
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 100px 0;
  text-shadow: 0 6px 30px rgba(0,0,0,.65);
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:.2s ease;
  white-space:nowrap;
}

.btn-primary{
  background:rgba(201,162,77,.16);
  border-color: rgba(201,162,77,.45);
  color:var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.btn-primary:hover{
  transform: translateY(-1px);
  background:rgba(201,162,77,.22);
}

.btn-outline{
  background:transparent;
  border-color: rgba(201,162,77,.35);
  color:rgba(255,255,255,.9);
}
.btn-outline:hover{ background:rgba(201,162,77,.10); }

.intro-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;

  padding: 26px 0 34px;
}

.intro-media{ display:flex; justify-content:center; }
.intro-frame{
  width: 400px;
  height: 400px;
  border: 2px solid rgba(201,162,77,.85);
  background: rgba(0,0,0,.28);
  box-shadow: var(--shadow);
}
.intro-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}

.intro-image {
  width: 100%;
  max-width: 500px;
  margin: 30px auto;
  border: 2px solid rgba(201,162,77,.85);
  background: rgba(0,0,0,.28);
  box-shadow: var(--shadow);
}

.intro-title{
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 14px;
  color: rgba(201,162,77,.92);
  letter-spacing: .3px;
}
.intro-text{
  margin: 0 0 22px;
  max-width: 560px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 15px;
  text-align: justify;
}
.intro-subtitle{
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin: 0;
  color: rgba(201,162,77,.90);
}

.intro-band{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #1C1C1C;
  border: 1px solid rgba(255,255,255,.06);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.band-item{
  padding: 25px 50px; /* Réduit de 22px/24px à 14px/16px */
  text-align: center;
}

.band-item:last-child{ border-right: none; }
.band-title{
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: rgba(201,162,77,.92);
  margin-bottom: 6px;
  font-weight: bold;
}
.band-desc{
  font-size: 15px;
  color: rgba(255,255,255,.68);
}

.intro-band2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #1C1C1C;
  border: 1px solid rgba(255,255,255,.06);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.band-separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.band-diamond {
  width: 20px;
  height: 20px;
  background-color: #caa45f; /* couleur or par exemple */
  transform: rotate(45deg);
}


/* ===== Kitchen section + perks + hours gold center ===== */
.kitchen-figma{
  padding: 20px 10px;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.kitchen-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;

  align-items:center;
  justify-items:center;
  padding-top: 24px;
}

.kitchen-title{
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: var(--gold);
  margin: 0 0 18px;
  text-align: center;
}

.kitchen-text p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.70);
  font-size: 15px;
  line-height: 1.8;
  max-width: 600px;
  text-align: justify;
}

.kitchen-media{ display:flex; justify-content:flex-start; }
.kitchen-frame{
  width: 400px;
  height: 400px;
  border: 2px solid var(--gold);
  background: rgba(0,0,0,.28);
  box-shadow: var(--shadow);
}
.kitchen-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}

/* perks */
.container-horaire{
  background: #1C1C1C;
  padding: 36px 0 42px;
}

.container.perks{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
}

.perk{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 10px;
  color:var(--gold);
  font-size: 20px;
  letter-spacing: .02em;
}

/* hours gold box */
.hours-figma-wrap{
  padding-top: 20px;
  display:flex;
  justify-content:center;
}
.hours-figma{
  width: 380px;
  height: auto;
  background: rgba(201,162,77,.88);
  border: 2px solid rgba(201,162,77,.95);
  box-shadow: var(--shadow);
  padding: 12px;
}
.hours-figma-head{
  text-align:center;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  padding: 10px 8px;
  border: 1px solid rgba(255,255,255,.28);
  margin-bottom: 10px;
  background: rgba(0,0,0,.08);
}
.hours-rows{
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.08);
}
.hrow{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 13px 10px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hrow:first-child{ border-top:none; }
.hrow span:first-child{
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 15px;
  color: rgba(255,255,255,.92);
}
.hrow span:last-child{
  color: rgba(255,255,255,.90);
  font-size: 15px;
}

/* ===== Seasonal CTA band ===== */
.season-cta{
  position: relative;
  min-height: 320px;
  display:flex;
  align-items:center;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}

.season-bg{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  filter: saturate(1.05) contrast(1.05);
}

.season-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 50% 30%, rgba(0,0,0,.15), rgba(0,0,0,.72)),
    linear-gradient(to bottom, rgba(11,11,12,.25), rgba(11,11,12,.78));
}

.season-inner{
  position: relative;
  z-index: 1;
  padding: 64px 0;
  text-align:center;
  max-width: 900px;
}

.season-title{
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: rgba(201,162,77,.92);
  margin: 0 0 10px;
}

.season-sep{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin: 10px 0 14px;
}
.season-line{
  width: 150px;
  height: 2px;
  background: rgba(201,162,77,.45);
}
.season-diamond{
  width: 8px;
  height: 8px;
  border: 1px solid rgba(201,162,77,.85);
  transform: rotate(45deg);
}

.season-text{
  margin: 0 auto 18px;
  max-width: 760px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
}

.season-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;  
  font-weight: 600;
  padding: 14px 40px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: .02em;

  background: linear-gradient(
    135deg,
    #d8b15a 0%,
    #c9a24d 50%,
    #b8933f 100%
  );

  border: none;
  cursor: pointer;
  text-decoration: none;

  /* 🔥 forme cartouche taillée */
  clip-path: polygon(
    6% 0%,
    94% 0%,
    100% 50%,
    94% 100%,
    6% 100%,
    0% 50%
  );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 18px 40px rgba(0,0,0,.45);

  transition: transform .2s ease, box-shadow .2s ease;
}

/* relief intérieur très léger */
.season-btn::before{
  content:"";
  position:absolute;
  inset:2px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,.02)
  );
  clip-path: inherit;
  z-index:-1;
}

/* hover subtil */
.season-btn:hover{
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 22px 50px rgba(0,0,0,.55);
}


/* ===== Atmosphere section ===== */
.atmos{
  background: rgba(255,255,255,.02);
  padding: 54px 0 58px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.atmos-inner{
  text-align:center;
  max-width: 1280px;
  margin: 0 auto;
}

.atmos-title{
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin: 0 0 10px;
  color: var(--gold);
}

.atmos-sep{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin: 10px 0 14px;
  opacity: .95;
}
.atmos-line{
  width: 170px;
  height: 1px;
  background: var(--gold);
}
.atmos-diamond{
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.atmos-text{
  margin: 0 auto 26px;
  color: rgba(255,255,255,.70);
  font-size: 15px;
  line-height: 1.7;
}

.atmos-icons{
  display: flex;
  justify-content: space-between; /* Change to space-between for equal spacing */
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.a-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
}

.a-item i{
  color: var(--gold);
  font-size: 26px;
}


/* ===== footer (simple, if used) ===== */
.footer{
  border-top:1px solid rgba(201,162,77,.14);
  background: #1C1C1C;
}
.footer-inner{
  padding:30px 0;
  display:grid;
  grid-template-columns: 1.2fr .9fr 1fr;
  gap:18px;
  align-items:start;
}
.footer-logo{ height:50px; width:auto; opacity:.98; }

.footer-hours{
  padding-top: 20px;
  display:flex;
  flex-direction:column;
}

.footer-item-hours{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:8px 0;
  color: var(--gold);
}

.footer-link{
  display:block;
  padding:8px 0;
  color:rgba(255,255,255,.74);
}
.footer-link:hover{ color:rgba(255,255,255,.92); }
.footer-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:8px 0;
  color:rgba(255,255,255,.74);
}
.footer-item i{ color:var(--gold); margin-top:3px; }

.footer-socials{
  padding-top: 20px;
  display:flex;
  gap:14px;
  margin-top:10px;
  color: var(--gold);
}

.footer-bottom{
  padding: 20px 0;
  border-top: 1px solid rgba(201,162,77,.14);
  text-align:center;
  font-size:15px;
}

.presentation-title{
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin: 0 0 18px;
  color: var(--gold);
  text-align: center;
}

/* ---------------------------------------------------------------------*/
/* PAGE RESTAURANT */
.reservations-banner{
  height: 350px;

  display: grid;
  grid-template-columns: 0.7fr 1.3fr;

  border: 1px solid rgba(255,255,255,.08);
  background: #0b0b0c;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Left photo */
.resv-left{
  background-image: url("images/restaurant_bannerleft.png"); /* <-- mets ta photo */
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}

/* Right photo + dark overlay */
.resv-right{
  position: relative;
  background-image: url("images/restaurant_banner.png"); 
  background-size: cover;
  background-position: center;
}

/* Dark overlay */
.resv-right::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(10,10,11,.15);
}

/* Content container (centered) */
.resv-glass{
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 34px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* subtil effet “panel” */
  background: rgba(10,10,11,.35);
  backdrop-filter: blur(2px);
}

/* Title */
.resv-title{
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 26px;
  color: var(--gold);
  text-shadow: 0 6px 30px rgba(0,0,0,.55);
}

/* Lines */
.resv-line{
  margin: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  letter-spacing: .02em;
}

/* Button (style “cartouche” comme ton site) */
.resv-btn{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 28px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  text-decoration: none;

  background: linear-gradient(135deg, #d8b15a 0%, #c9a24d 50%, #b8933f 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 18px 40px rgba(0,0,0,.45);

  clip-path: polygon(6% 0%, 94% 0%, 100% 50%, 94% 100%, 6% 100%, 0% 50%);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.resv-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 22px 50px rgba(0,0,0,.55);
}


/* ---------------------------------------------------------------------*/
/* PAGE MENU */
.hero-menu-bg{
  position: absolute;
  inset: 0;
  background-image: url("images/menu_banner.png");
  background-size: cover;
  background-position: 50% 60%;
  filter: saturate(1.05) contrast(1.05);
}

.menu-page{
  padding: 28px 0 46px;
}

.menu-wrap{
  padding-top: 18px;
}

.menu-intro{
  text-align: center;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto 18px;
}

.menu-feature{
  width: 200px;
  margin: 12px auto 28px;
  border: 2px solid rgba(201,162,77,.85);
  background: rgba(0,0,0,.28);
  box-shadow: var(--shadow);
  padding: 8px;
}
.menu-feature img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.menu-section{
  margin-top: 26px;
}

.menu-title{
  text-align: center;
  font-family: "Playfair Display", serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
  font-size: 26px;
}

.menu-sep{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin: 10px 0 18px;
  opacity: .95;
}
.menu-line{
  width: 180px;
  height: 1px;
  background: rgba(201,162,77,.55);
}
.menu-diamond{
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.menu-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.menu-item{
  display: grid;
  grid-template-columns: 250px minmax(0,1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
}


.menu-thumb{
  width: 100%;
  height: 250px;
  border: 2px solid rgba(201,162,77,.85);
  overflow: hidden;
  border-radius: 4px;
}


.menu-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-text{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.menu-name{
  color: rgba(255,255,255,.86);
  font-weight: 600;
  font-size: 18px;
}
.menu-desc{
  font-size: 16px;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.menu-price{
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 25px;
  font-weight: bold;
  letter-spacing: .04em;
  white-space: nowrap;
}

.menu-footnote{
  margin-top: 16px;
  text-align: center;
  color: rgba(255,255,255,.50);
  line-height: 1.6;
}

/* ---------------------------------------------------------------------*/
/* PAGE AVIS */
.reviews-content{
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-title{
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 26px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.reviews-intro{
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
  max-width: 80%;
}

.review-card{
  margin-top: 24px;
  padding: 28px 34px;
  border: 2px solid var(--gold);
  background: rgb(20,20,22);
  backdrop-filter: blur(2px);
  max-width: 80%;
}

.quote{
  color: var(--gold);
  font-size: 32px;
  text-align: center;
}

.review-text{
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  text-align: justify;
}

.review-author{
  margin-top: 12px;
  color: var(--gold);
  text-align: center;
}

.reviews-stack{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 34px; /* espace entre les blocs */
  margin: 60px 0;
}

/* Un bloc */
.review-row{
  width: 100vw;
  margin-left: calc(50% - 50vw);

  display: grid;
  grid-template-columns: 1.3fr 0.7fr; /* texte + image */
  min-height: 340px;

  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #0b0b0c;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ✅ Alternance (le 2e, 4e, 6e... inverse) */
.review-row:nth-child(even){
  grid-template-columns: 0.7fr 1.3fr; /* image + texte */
}

/* Panneau texte */
.review-panel{
  position: relative;
  background-image: url("images/avis_banner.png"); /* optionnel */
  background-size: cover;
  background-position: center;
}
.review-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(10,10,11,.8);
}

/* Contenu texte */
.reviews-content{
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 44px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Image */
.review-photo{
  background-image: url("images/avis_banner2.png");
  background-size: cover;
  background-position: center;
}

.review-row:nth-child(even) .review-photo{
  background-position: 30% center; /* décale le sujet si besoin */
}


/* ---------------------------------------------------------------------*/
/* PAGE CONTACT */
.contact-booking{
  margin-left: calc(50% - 50vw);
  padding: 20px 0;
  background: linear-gradient(180deg, #2b2b2b 0%, #242424 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.contact-inner{
  margin: 10px;
  margin: 0 auto;
  text-align: center;
}

.contact-title{
  font-family: "Playfair Display", serif;
  color: var(--gold);
  letter-spacing: .02em;
  line-height: 1.6;
  margin: 0 0 32px;
}

/* 3 cards */
.contact-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  justify-items: center;
  margin-bottom: 26px;
}

.contact-card{
  width: 100%;
  max-width: 300px;
  min-height: 150px;
  border: 2px solid var(--gold);
  background: rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 14px;
}

.contact-icon{
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: .95;
}

.contact-card p{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
}

/* note text */
.contact-note{
  line-height: 1.6;
}

/* form */
.booking-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #1C1C1C;
  padding: 10px 160px 50px 160px;
}

.form-grid{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-form input{
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
    padding-left: 10px;
  font-size: 15px;

}

.booking-form input::placeholder{
  color: rgba(255,255,255,.45);
}

.form-wide{
  width: 100%;
  padding-left: 10px;
  font-size: 15px;
}

/* button like your golden capsule */
.booking-btn{
  margin-top: 12px;
  padding: 12px 28px;
  font-family: "Playfair Display", serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
  border: none;
  cursor: pointer;
  background: var(--gold);
  clip-path: polygon(6% 0%, 94% 0%, 100% 50%, 94% 100%, 6% 100%, 0% 50%);
  transition: transform .2s ease, filter .2s ease;
}

.booking-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.season-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  color: var(--gold);
  font-weight: bold;
  margin: 30px;
}

/* responsive */
@media (max-width: 900px){
  .contact-cards{
    grid-template-columns: 1fr;
  }
  .form-grid{
    grid-template-columns: 1fr;
  }
}


/* Mobile */
@media (max-width: 900px){
  .review-row{
    grid-template-columns: 1fr;
  }
  .review-row:nth-child(even){
    grid-template-columns: 1fr;
  }
  .review-photo{ min-height: 240px; }
  .reviews-content{ padding: 34px 20px; }
}


/* Responsive */
@media (max-width: 900px){
  .reservations-banner{
    grid-template-columns: 1fr;
    height: auto;
  }
  .resv-left{ min-height: 220px; }
  .resv-glass{ padding: 40px 20px; }
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  .site-header {
    padding: 10px 24px;
  }
  .header-inner {
    height: auto;
    padding: 8px 0;
  }

  .nav {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .hero-main {
    height: 350px;
  }

  .hero-main::after {
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-12px;
  height:68px;
  z-index: 3;
  pointer-events:none;

  background: url(images/divider.png) no-repeat center;
  background-size: cover;
  filter: hue-rotate(45deg) saturate(1.2) brightness(1.1) drop-shadow(0 0 0 #0B0B0C);
} 

  .intro-grid,
  .kitchen-grid {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .intro-subtitle {
    font-size: 25px;
    text-align: center;
  }

  .intro-frame,
  .kitchen-frame {
    width: 100%;
    height: 300px;
  }

  .intro-title {
    font-size: 25px;
    text-align: center;
    padding-top: 10px;
  }

  .kitchen-title {
    font-size: 25px;
  }

  .kitchen-media {
    justify-content: center;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .band-item {
    padding: 20px 15px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .band-item:last-child {
    border-bottom: none;
  }

  .container.perks {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 10px;
  }

  .season-cta {
    min-height: auto;
  }

  .season-inner {
    padding: 40px 20px;
  }

  .season-title {
    font-size: 26px;
  }

  .atmos {
    padding: 20px 0 40px;
  }

  .atmos-title {
    font-size: 26px;
  }

  .atmos-icons {
    justify-content: center;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-link, .footer-item {
    padding: 8px 0;
    text-align: center;
  }

   .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .h2 {
    font-size: 26px;
  }

  .h3 {
    font-size: 18px;
  }

  .intro-title,
  .kitchen-title {
    font-size: 22px;
  }

  .intro-text,
  .kitchen-text p {
    font-size: 14px;
  }

  .season-title,
  .atmos-title {
    font-size: 22px;
  }

  .season-text {
    font-size: 14px;
  }

  .atmos-text {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .container-horaire {
    padding: 20px 0;
  }
  .container.perks {
    grid-template-columns: 1fr;
  }

  .perk {
    font-size: 16px;
    padding: 12px 8px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .footer-logo {
    margin: 0 auto;
    padding-top: 20px;
    height: 75px;
  }

  .footer-bottom {
    margin-top: 20px;
  }

}

/* PAGE AVIS */
@media (max-width: 900px){
  .reviews-banner{
    grid-template-columns: 1fr;
    height: auto;
  }

  .reviews-right{
    min-height: 240px;
  }

  .reviews-content{
    padding: 40px 20px;
  }
}

/* PAGE RESTAURANT */
@media (max-width: 900px) {
  .reservations-banner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .presentation-title {
    font-size: 20px;
  }

  .resv-left {
    min-height: 220px;
  }

  .resv-glass {
    padding: 30px 20px;
  }

  .resv-title {
    font-size: 22px;
  }

  .resv-line {
    font-size: 13px;
  }

  .resv-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {

  .intro-band2 {
    grid-template-columns: 1fr;
  }

   .band-separator {
    justify-content: center;
    margin: 20px 0;
  }

   .band-line {
    width: 100px;
  }

   .season-cta {
    min-height: auto;
  }

   .season-inner {
    padding: 40px 20px;
  }

   .season-title {
    font-size: 26px;
  }

   .atmos {
    padding: 20px 0 40px;
  }

   .atmos-title {
    font-size: 26px;
  }

   .atmos-icons {
    justify-content: center;
    gap: 20px;
  }

   .hero-content h1 {
    font-size: 32px;
    margin-bottom: 60px;
  }

   .reservations-banner {
    grid-template-columns: 1fr;
    height: auto;
  }

   .presentation-title {
    font-size: 20px;
  }

  .kitchen-frame {
   margin-bottom: 20px;
  }

   .resv-left {
    display: none;
  }
  .resv-glass {
    padding: 25px 15px;
    height: 250px;
  }

  .resv-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .resv-line {
    font-size: 16px;
    margin: 4px 0;
  }

  .resv-btn {
    margin-top: 14px;
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .reservations-banner {
    height: auto;
  }

  .resv-left {
    min-height: 180px;
  }

  .resv-glass {
    padding: 20px 12px;
  }

  .resv-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .resv-line {
    font-size: 15px;
    margin: 3px 0;
  }

  .resv-btn {
    margin-top: 12px;
    padding: 8px 16px;
    font-size: 16px;
  }
}


/* AVIS CLIENT */
/* PAGE AVIS - Responsive */
@media (max-width: 900px) {
  .reviews-stack {
    gap: 20px;
    margin: 40px 0;
  }

  .review-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .review-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .review-panel {
    min-height: 280px;
  }

  .reviews-content {
    padding: 50px 40px;
  }

  .review-photo {
    display: none;
  }
}

@media (max-width: 768px) {
  .reviews-title {
    font-size: 22px;
  }

  .reviews-intro {
    max-width: 100%;
    font-size: 14px;
  }

  .review-card {
    max-width: 100%;
    padding: 20px 20px;
    margin-top: 20px;
  }

  .review-text {
    font-size: 13px;
  }

  .quote {
    font-size: 28px;
  }

  .review-author {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .reviews-title {
    font-size: 20px;
  }

  .reviews-intro {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .review-card {
    padding: 16px 14px;
    margin-top: 16px;
  }

  .quote {
    font-size: 24px;
  }

  .review-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .review-author {
    margin-top: 10px;
    font-size: 12px;
  }

  .review-panel {
    min-height: 200px;
  }

  .review-photo {
    min-height: 200px;
  }

  .reviews-content {
    padding: 20px 14px;
  }
}

/* PAGE CONTACT - Responsive */
@media (max-width: 900px) {
  .contact-booking {
    padding: 15px 0;
  }

  .contact-inner {
    margin: 0 15px;
  }

  .contact-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    max-width: 100%;
    min-height: 120px;
    padding: 20px;
  }

  .booking-form {
    padding: 10px 40px 40px 40px;
  }

  .form-grid {
    gap: 16px;
  }

  .booking-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .season-phone {
    font-size: 20px;
    margin: 20px;
  }
}

@media (max-width: 768px) {
  .contact-booking {
    padding: 12px 0;
  }

  .contact-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contact-card {
    min-height: 110px;
    padding: 16px 12px;
  }

  .contact-icon {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .contact-card p {
    font-size: 14px;
  }

  .booking-form {
    padding: 10px 20px 30px 20px;
  }

  .form-grid {
    gap: 14px;
  }

  .booking-form input {
    height: 38px;
    font-size: 14px;
  }

  .booking-btn {
    padding: 11px 22px;
    font-size: 12px;
    margin-top: 10px;
  }

  .season-phone {
    font-size: 18px;
    margin: 15px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .contact-cards {
    gap: 12px;
  }

  .contact-card {
    min-height: 100px;
    padding: 14px 10px;
  }

  .contact-icon {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .contact-card p {
    font-size: 13px;
  }

  .booking-form {
    padding: 10px 16px 24px 16px;
    gap: 16px;
  }

  .form-grid {
    gap: 12px;
  }

  .booking-form input {
    height: 36px;
    font-size: 13px;
  }

  .booking-btn {
    padding: 10px 20px;
    font-size: 11px;
    margin-top: 8px;
  }

  .season-phone {
    font-size: 16px;
    margin: 12px;
  }
}

/* PAGE MENU - Responsive */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .menu-thumb {
    height: 200px;
  }

  .menu-title {
    font-size: 22px;
  }

  .menu-name {
    font-size: 16px;
  }

  .menu-price {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .menu-page {
    padding: 20px 0 30px;
  }

  .menu-intro {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .menu-feature {
    width: 160px;
    margin: 10px auto 20px;
  }

  .menu-title {
    font-size: 20px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .menu-thumb {
    height: 180px;
  }

  .menu-name {
    font-size: 15px;
  }

  .menu-desc {
    font-size: 14px;
  }

  .menu-price {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .menu-page {
    padding: 16px 0 24px;
  }

  .menu-intro {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .menu-feature {
    width: 140px;
    margin: 8px auto 16px;
    padding: 6px;
  }

  .menu-feature img {
    height: 100px;
  }

  .menu-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
    text-align: center;
  }

  .menu-thumb {
    height: 150px;
  }

  .menu-name {
    font-size: 18px;
    padding-top: 5px;
  }

  .menu-desc {
    font-size: 16px;
  }

  .menu-price {
    font-size: 26px;
  }

  .menu-footnote {
    font-size: 12px;
    margin-top: 12px;
  }
}