/* ═══════════════════════════════════════════════════════
   LES POÈTES DISPARUS — Design System & Shared Styles
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --vert:         #4E6B5E;
  --vert-fonce:   #384F45;
  --vert-pale:    #D6E4DF;
  --moutarde:     #C8911A;
  --moutarde-cl:  #D9A82A;
  --creme:        #F8F3EB;
  --sable:        #EAE0D2;
  --brun:         #8B7058;
  --charbon:      #1A1916;
  --gris:         #7A7068;
  --blanc:        #FEFCF8;

  --ff-titre: 'Cormorant Garamond', Georgia, serif;
  --ff-corps: 'Jost', system-ui, sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-corps);
  color: var(--charbon);
  background: var(--creme);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
#nav.solid {
  background: rgba(248, 243, 235, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-color: var(--sable);
}

.nav-logo {
  font-family: var(--ff-titre);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color .4s;
}
#nav.solid .nav-logo { color: var(--vert); }

/* Pages without hero: nav starts solid */
body.page-inner #nav {
  background: rgba(248, 243, 235, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-color: var(--sable);
}
body.page-inner .nav-logo { color: var(--vert); }
body.page-inner .nav-links a { color: var(--charbon); }
body.page-inner .burger span { background: var(--charbon); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .3s;
}
#nav.solid .nav-links a { color: var(--charbon); }
.nav-links a:hover { color: var(--moutarde) !important; }
.nav-links a.active { color: var(--moutarde) !important; }

.nav-cta {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charbon);
  background: var(--moutarde);
  padding: .65rem 1.5rem;
  transition: background .3s, transform .2s;
}
.nav-cta:hover { background: var(--moutarde-cl); transform: translateY(-1px); }

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: #fff;
  transition: .4s var(--ease);
}
#nav.solid .burger span { background: var(--charbon); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charbon);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--ff-titre);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
.mob-menu a:hover { color: var(--moutarde); }

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: .35; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ═══════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════ */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 7rem 0; }

.eyebrow {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moutarde);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-titre);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charbon);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; }

/* ═══════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,25,22,.35) 0%, rgba(26,25,22,.60) 100%);
}
.page-hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.page-hero-body .eyebrow {
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.page-hero-title {
  font-family: var(--ff-titre);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: #fff;
}

/* ═══════════════════════════════════
   HERO (index)
═══════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10% 0;
  background: url('images/IMG_2086.jpg') center 40% / cover no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,25,22,.30) 0%, rgba(26,25,22,.55) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.hero-label {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroUp 1s .5s forwards;
}
.hero-title {
  font-family: var(--ff-titre);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.01em;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroUp 1s .75s forwards;
}
.hero-title em { font-style: italic; font-weight: 300; opacity: .85; }

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--moutarde);
  margin: 0 auto 1.75rem;
  opacity: 0;
  animation: heroIn 1s 1.1s forwards;
}
.hero-sub {
  font-family: var(--ff-titre);
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255,255,255,.78);
  opacity: 0;
  animation: heroIn 1s 1.3s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: heroIn 1s 1.8s forwards;
}
.hero-scroll-label {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

/* ═══════════════════════════════════
   À PROPOS (index)
═══════════════════════════════════ */
#apropos { background: var(--blanc); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-pull {
  font-family: var(--ff-titre);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--vert);
  line-height: 1.55;
  border-left: 2px solid var(--moutarde);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.about-text p {
  font-size: .925rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--gris);
  margin-bottom: 1.25rem;
}

.about-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.pill {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--vert);
  border: 1px solid var(--vert-pale);
  background: var(--vert-pale);
  padding: .45rem 1rem;
  border-radius: 100px;
}

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 180px;
  gap: .75rem;
}
.about-img {
  overflow: hidden;
}
.about-img:first-child {
  grid-column: 1 / -1;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.about-img:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════
   PREVIEW CARDS (index)
═══════════════════════════════════ */
.preview-section { background: var(--creme); }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.preview-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  display: block;
}
.preview-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.preview-card:hover img { transform: scale(1.06); }
.preview-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,25,22,.72) 0%, transparent 55%);
}
.preview-card-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: #fff;
}
.preview-card-info .eyebrow { color: var(--moutarde-cl); margin-bottom: .5rem; }
.preview-card-name {
  font-family: var(--ff-titre);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
}
.preview-card-desc {
  font-size: .8rem;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  margin-top: .5rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════
   PHILOSOPHY BAND
═══════════════════════════════════ */
.philosophy {
  background: var(--vert-fonce);
  padding: 6rem 0;
  text-align: center;
}
.philosophy blockquote {
  font-family: var(--ff-titre);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.88);
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
  line-height: 1.5;
}
.philosophy blockquote strong {
  font-style: normal;
  font-weight: 500;
  color: var(--moutarde-cl);
}
.philosophy cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--ff-corps);
  font-size: .65rem;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════
   ESPACES
═══════════════════════════════════ */
#espaces { background: var(--creme); }

.espaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.espace-card {
  position: relative;
  overflow: hidden;
  height: 520px;
}
.espace-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.espace-card:hover img { transform: scale(1.06); }
.espace-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,25,22,.72) 0%, transparent 55%);
}
.espace-info {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  color: #fff;
}
.espace-num {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moutarde-cl);
  margin-bottom: .5rem;
}
.espace-name {
  font-family: var(--ff-titre);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
}
.espace-desc {
  font-size: .8rem;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  margin-top: .5rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════
   LA CARTE (menu.html)
═══════════════════════════════════ */
#lacarte { background: var(--blanc); }

.carte-header {
  text-align: center;
  margin-bottom: 4rem;
}
.carte-header p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--gris);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.85;
}

/* tabs */
.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--sable);
  margin-top: 3rem;
}
.tab-btn {
  font-family: var(--ff-corps);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gris);
  background: none;
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  position: relative;
  transition: color .3s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--vert);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.tab-btn.on { color: var(--charbon); }
.tab-btn.on::after { transform: scaleX(1); }

.tab-pane { display: none; }
.tab-pane.on { display: block; }

/* formula notice */
.formula-notice {
  text-align: center;
  padding: 3rem 0 2.5rem;
}
.formula-price {
  font-family: var(--ff-titre);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--vert);
}
.formula-price span {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gris);
}
.formula-when {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--moutarde);
  margin-top: .4rem;
}

/* menu body */
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5rem;
}

.menu-cat {
  margin-top: 3.5rem;
}
.menu-cat-label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gris);
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--sable);
  margin-bottom: 1.75rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(234,224,210,.6);
}
.menu-item:last-child { border-bottom: none; }

.mi-left { flex: 1; }
.mi-name {
  font-family: var(--ff-titre);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charbon);
  margin-bottom: .2rem;
}
.mi-desc {
  font-size: .78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gris);
  line-height: 1.65;
}
.mi-price {
  font-family: var(--ff-titre);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--vert);
  white-space: nowrap;
}

/* share box */
.share-box {
  background: var(--sable);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}
.share-box .sb-label {
  font-family: var(--ff-titre);
  font-size: .95rem;
  font-style: italic;
  color: var(--vert);
  margin-bottom: 1.25rem;
}

/* menu photo accent */
.menu-photo-accent {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.menu-photo-accent img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* midi note */
.midi-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--vert-pale);
  border-left: 3px solid var(--vert);
}
.midi-note p {
  font-family: var(--ff-titre);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--vert-fonce);
  line-height: 1.6;
}

/* ═══════════════════════════════════
   GALERIE
═══════════════════════════════════ */
#galerie { background: var(--creme); }

.gallery-intro { max-width: 560px; margin-bottom: 4rem; }
.gallery-intro p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.85;
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: .75rem;
}

.gi { overflow: hidden; cursor: pointer; position: relative; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gi:hover img { transform: scale(1.07); }

/* gallery spans — desktop */
.gi:nth-child(1)  { grid-column: span 5; grid-row: span 2; }
.gi:nth-child(2)  { grid-column: span 4; }
.gi:nth-child(3)  { grid-column: span 3; }
.gi:nth-child(4)  { grid-column: span 4; }
.gi:nth-child(5)  { grid-column: span 3; }
.gi:nth-child(6)  { grid-column: span 4; grid-row: span 2; }
.gi:nth-child(7)  { grid-column: span 4; }
.gi:nth-child(8)  { grid-column: span 4; }
.gi:nth-child(9)  { grid-column: span 3; grid-row: span 2; }
.gi:nth-child(10) { grid-column: span 5; }
.gi:nth-child(11) { grid-column: span 4; }
.gi:nth-child(12) { grid-column: span 5; }
.gi:nth-child(13) { grid-column: span 4; }
.gi:nth-child(14) { grid-column: span 3; }
.gi:nth-child(15) { grid-column: span 4; grid-row: span 2; }
.gi:nth-child(16) { grid-column: span 4; }
.gi:nth-child(17) { grid-column: span 4; }
.gi:nth-child(18) { grid-column: span 3; }
.gi:nth-child(19) { grid-column: span 5; }
.gi:nth-child(20) { grid-column: span 4; }
.gi:nth-child(21) { grid-column: span 5; grid-row: span 2; }
.gi:nth-child(22) { grid-column: span 4; }
.gi:nth-child(23) { grid-column: span 3; }
.gi:nth-child(24) { grid-column: span 4; }
.gi:nth-child(25) { grid-column: span 4; }
.gi:nth-child(26) { grid-column: span 4; }
.gi:nth-child(27) { grid-column: span 6; }
.gi:nth-child(28) { grid-column: span 6; }

/* gallery filter tabs */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
}
.gallery-filter-btn {
  font-family: var(--ff-corps);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gris);
  background: none;
  border: 1px solid var(--sable);
  padding: .5rem 1.25rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .3s;
}
.gallery-filter-btn.on {
  background: var(--vert);
  border-color: var(--vert);
  color: #fff;
}

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

.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.histoire-grid.reverse { direction: rtl; }
.histoire-grid.reverse > * { direction: ltr; }

.histoire-text h3 {
  font-family: var(--ff-titre);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charbon);
  margin-bottom: 1.5rem;
}
.histoire-text p {
  font-size: .925rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--gris);
  margin-bottom: 1.25rem;
}
.histoire-img {
  overflow: hidden;
  height: 480px;
}
.histoire-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.histoire-full-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.histoire-full-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════
   RESERVATION
═══════════════════════════════════ */
.resa-section {
  background: var(--blanc);
  text-align: center;
}

.resa-phone {
  font-family: var(--ff-titre);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--vert);
  letter-spacing: .04em;
  margin: 2rem 0;
}
.resa-phone a {
  color: var(--vert);
  transition: color .3s;
}
.resa-phone a:hover { color: var(--moutarde); }

.resa-cta {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charbon);
  background: var(--moutarde);
  padding: 1.2rem 3.5rem;
  transition: background .3s, transform .2s;
  margin-bottom: 3rem;
}
.resa-cta:hover { background: var(--moutarde-cl); transform: translateY(-2px); }

.resa-note {
  font-size: .88rem;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

.resa-hours {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--sable);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.resa-hours-title {
  font-family: var(--ff-titre);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--charbon);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════
   INFOS PRATIQUES / CONTACT
═══════════════════════════════════ */
#infos {
  background: var(--charbon);
  color: #fff;
}

.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

#infos .eyebrow { color: var(--moutarde); }
#infos .section-title { color: #fff; }

.info-block { margin-bottom: 3rem; }
.info-block-head {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moutarde);
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.25rem;
}

/* hours */
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.72);
}
.hour-day {
  font-family: var(--ff-titre);
  font-size: 1rem;
  font-style: italic;
  color: #fff;
}
.hour-row.ferme { opacity: .3; }
.hour-row.ferme .hour-day { color: inherit; }

/* hours light variant (for reservation & contact pages) */
.hours-light .hour-row {
  border-bottom-color: var(--sable);
  color: var(--gris);
}
.hours-light .hour-day {
  color: var(--charbon);
}
.hours-light .hour-row.ferme { opacity: .35; }

/* contact */
.contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
}
.contact-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-line a { color: inherit; transition: color .3s; }
.contact-line a:hover { color: var(--moutarde); }

/* contact light variant */
.contact-light .contact-line {
  color: var(--gris);
}
.contact-light .contact-icon {
  border-color: var(--sable);
}
.contact-light .contact-line a { color: var(--charbon); }
.contact-light .contact-line a:hover { color: var(--moutarde); }

.btn-reserve {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charbon);
  background: var(--moutarde);
  padding: 1.1rem 2.8rem;
  transition: background .3s, transform .2s;
}
.btn-reserve:hover { background: var(--moutarde-cl); transform: translateY(-2px); }

.infos-img {
  height: 580px;
  overflow: hidden;
}
.infos-img img { width: 100%; height: 100%; object-fit: cover; }

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 3rem;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* contact page grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: #111;
  padding: 3.5rem 0;
  text-align: center;
}
.footer-logo-img {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto 1.25rem;
  border-radius: 4px;
}
.footer-logo {
  font-family: var(--ff-titre);
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  margin-bottom: .35rem;
}
.footer-tagline {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-bottom: 1.75rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  margin-bottom: 2rem;
}
.footer-nav a {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--moutarde); }
.footer-copy {
  font-size: .7rem;
  color: rgba(255,255,255,.13);
}

/* ═══════════════════════════════════
   LIGHTBOX
═══════════════════════════════════ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.lb-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255,255,255,.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.lb-close:hover { color: #fff; }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: rgba(255,255,255,.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  transition: color .2s;
}
.lb-nav:hover { color: #fff; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ═══════════════════════════════════
   RESPONSIVE — Tablet (768px)
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .menu-cols { gap: 0 3rem; }
  .about-grid { gap: 4rem; }
  .infos-grid { gap: 4rem; }
  .histoire-grid { gap: 3rem; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 860px) {
  #nav { padding: 1.25rem 1.5rem; }
  #nav.solid { padding: .875rem 1.5rem; }
  body.page-inner #nav { padding: .875rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .about-grid  { grid-template-columns: 1fr; }
  .about-imgs  { grid-template-rows: 280px 180px; }
  .espaces-grid { grid-template-columns: 1fr; }
  .espace-card  { height: 380px; }
  .menu-cols   { grid-template-columns: 1fr; gap: 0; }
  .infos-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .infos-img   { height: 320px; order: -1; }

  .preview-grid { grid-template-columns: 1fr; }
  .preview-card { height: 300px; }

  .histoire-grid { grid-template-columns: 1fr; }
  .histoire-grid.reverse { direction: ltr; }
  .histoire-img { height: 320px; }

  .contact-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gi:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gi:nth-child(1), .gi:nth-child(6), .gi:nth-child(9),
  .gi:nth-child(15), .gi:nth-child(21) { grid-column: span 2; }

  .menu-photo-accent { grid-template-columns: 1fr; }
  .menu-photo-accent img { height: 200px; }

  section { padding: 5rem 0; }
  .page-hero { height: 40vh; min-height: 280px; }
}

@media (max-width: 580px) {
  .hero-title { font-size: clamp(3rem, 13vw, 4.5rem); }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gi:nth-child(n) { grid-column: span 1; }
  .about-imgs { display: block; height: 280px; }
  .about-img:not(:first-child) { display: none; }
  .about-img { height: 100%; }

  .tabs { flex-direction: column; align-items: stretch; }
  .tab-btn { text-align: center; }

  .map-container { height: 300px; }

  .gallery-filters { justify-content: center; }
}
