/* ═══════════════════════════════════════════════════════
   LA MAISON DE NARGIS — Direction Artistique Campagne
   Palette : vert olivier · beige pierre · ochre doré
   Fonts  : Playfair Display (titres) · Lato (corps)
═══════════════════════════════════════════════════════ */

:root {
  --ivoire:     #F7F4EE;
  --beige:      #E9E1D2;
  --blanc:      #FFFFFF;
  --charbon:    #2B2B2B;
  --text:       #3A3A32;
  --taupe:      #7A7A72;
  --border:     #D5CEC4;
  --vert:       #5E6B57;
  --sauge:      #A8B19A;
  --pierre:     #C8B28A;
  --or:         #D4AF37;
  --eau:        #8FB7B0;
  --radius:     3px;
  --radius-lg:  8px;
  --nav-h:      88px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--ivoire);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; image-orientation: from-image; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Typographie ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charbon);
}
h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }

.eyebrow {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--vert);
  font-weight: 400;
  margin-bottom: 10px;
}
.eyebrow-light {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  font-weight: 400;
  margin-bottom: 10px;
}

.olive-divider {
  display: block;
  margin: 16px auto 0;
  width: 140px;
  height: 20px;
}

.section-header { max-width: 680px; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 12px; }
.section-header .olive-divider { margin-bottom: 0; }
.sh-sub { font-size: .95rem; color: var(--taupe); font-weight: 300; margin-top: 12px; }

/* ── Boutons ── */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--charbon);
  color: var(--blanc);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.btn-dark::after { content: '→'; font-size: .9rem; font-weight: 400; }
.btn-dark:hover { background: var(--vert); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--charbon);
  color: var(--charbon);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--charbon); color: var(--blanc); }

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blanc);
  color: var(--charbon);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.btn-light::after { content: '→'; }
.btn-light:hover { opacity: .88; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--blanc);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.8); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blanc);
  color: var(--charbon);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: opacity .2s;
}
.btn-call:hover { opacity: .88; }

.btn-text-link {
  font-size: .8rem;
  font-weight: 400;
  color: var(--vert);
  letter-spacing: .06em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s;
}
.btn-text-link:hover { color: var(--charbon); }

.btn-submit {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--charbon);
  color: var(--blanc);
  width: 100%;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  justify-content: center;
  transition: background .2s;
  cursor: pointer;
  border: none;
}
.btn-submit::after { content: '→'; font-size: .9rem; font-weight: 300; }
.btn-submit:hover { background: var(--vert); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }

/* ── Fade-up ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94),
              transform .7s cubic-bezier(.25,.46,.45,.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background .4s, box-shadow .4s;
}
#navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,14,.55) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity .4s;
}
#navbar.scrolled {
  background: rgba(247,244,238,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
#navbar.scrolled::before { opacity: 0; }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Logo centré verticalement à gauche */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--blanc);
  transition: color .3s;
  gap: 2px;
  text-align: center;
  flex-shrink: 0;
}
.logo-icon {
  width: 52px;
  height: auto;
  margin-bottom: 2px;
}
.nav-logo-name {
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: .5rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .3s;
}
.logo-rule {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,.35);
  margin-top: 4px;
}
#navbar.scrolled .nav-logo { color: var(--charbon); }
#navbar.scrolled .nav-logo-sub { color: var(--taupe); }
#navbar.scrolled .logo-rule { background: var(--border); }

/* Nav links — centrés absolument */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--sauge);
  transition: width .25s;
}
.nav-links a:hover { color: var(--blanc); }
.nav-links a:hover::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--taupe); }
#navbar.scrolled .nav-links a:hover { color: var(--charbon); }

.nav-cta {
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.45);
  color: var(--blanc);
  padding: 9px 24px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.nav-cta:hover { background: rgba(255,255,255,.12); }
#navbar.scrolled .nav-cta { border-color: var(--vert); color: var(--vert); }
#navbar.scrolled .nav-cta:hover { background: var(--vert); color: var(--blanc); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--blanc); transition: background .3s; }
#navbar.scrolled .burger span { background: var(--charbon); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--ivoire);
    padding: 28px 40px 36px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    z-index: 999;
    transform: none;
    left: 0;
  }
  .nav-links.open a { color: var(--text) !important; font-size: .82rem; }
  .nav-links.open a:hover { color: var(--vert) !important; }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .nav-inner { padding: 0 20px; }
}

/* ══════════════════════════════════════════════════
   HERO — PLEIN ÉCRAN
══════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--charbon);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg,
    rgba(14,18,12,.72) 0%,
    rgba(14,18,12,.38) 42%,
    rgba(14,18,12,.08) 72%,
    transparent 100%);
}

/* Contenu texte — bas gauche */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 72px 52px;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 400;
  color: var(--blanc);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 620px;
}
.hero-h1 em { font-style: italic; }

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--vert);
  color: var(--blanc);
  padding: 15px 34px;
  border-radius: 5px;
  font-family: 'Lato', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  width: fit-content;
  transition: background .2s, transform .15s;
}
.hero-cta::after { content: '→'; font-size: .95rem; font-weight: 300; letter-spacing: 0; }
.hero-cta:hover { background: #4d5847; transform: translateY(-1px); }

/* Stats bar — barre sombre en bas */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(18,20,15,.88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: stretch;
}

.hs-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.hs-item:last-child { border-right: none; }

.hs-icon {
  color: var(--sauge);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hs-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blanc);
  white-space: nowrap;
  line-height: 1.3;
}
.hs-sub {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .58rem;
  font-weight: 300;
  color: rgba(255,255,255,.38);
  letter-spacing: .06em;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hs-item { padding: 18px 14px; gap: 10px; }
  .hs-icon svg { width: 20px; height: 20px; }
  .hs-label { font-size: .58rem; }
}
@media (max-width: 820px) {
  .hero-content { padding: 0 32px 44px; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hs-item { border-right: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 540px) {
  .hero-content { padding: 0 20px 36px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════
   DESCRIPTION / STORY
══════════════════════════════════════════════════ */
.story-section { background: var(--beige); padding: 96px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text h2 { margin-bottom: 8px; }
.story-text p { font-size: .95rem; color: var(--text); margin-bottom: 18px; line-height: 1.8; }
.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.eq-col p { font-size: .82rem; color: var(--taupe); padding: 7px 0; border-bottom: 1px solid var(--border); }
.eq-col p::before { content: '–'; margin-right: 8px; color: var(--sauge); }
.story-imgs { display: grid; grid-template-rows: 1.5fr 1fr; gap: 6px; height: 560px; }
.si-main, .si-sub { overflow: hidden; border-radius: var(--radius-lg); }
.si-main img, .si-sub img { transition: transform .7s ease; }
.si-main:hover img, .si-sub:hover img { transform: scale(1.04); }
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-imgs { height: 340px; grid-template-rows: 1fr .6fr; }
}

/* ══════════════════════════════════════════════════
   PISCINE
══════════════════════════════════════════════════ */
.pool-section { position: relative; height: 560px; display: flex; align-items: center; overflow: hidden; }
.pool-bg { position: absolute; inset: 0; }
.pool-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.pool-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,26,18,.72) 0%, rgba(20,26,18,.18) 65%);
}
.pool-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.pool-content > * { max-width: 480px; }
.pool-content h2 { color: var(--blanc); margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.pool-content p { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 32px; line-height: 1.75; }
@media (max-width: 768px) { .pool-section { height: 400px; } .pool-content { padding: 0 24px; } }

/* ══════════════════════════════════════════════════
   ESPACES
══════════════════════════════════════════════════ */
.espaces-section { background: var(--blanc); padding: 96px 0; }
.space-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}
.space-feature-rev .spf-img { order: 2; }
.space-feature-rev .spf-body { order: 1; }
.spf-img { height: 480px; overflow: hidden; border-radius: var(--radius-lg); }
.spf-img img { transition: transform .7s ease; }
.spf-img:hover img { transform: scale(1.04); }
.spf-body h3 { font-size: 1.65rem; margin-bottom: 16px; font-style: italic; }
.spf-body p { font-size: .95rem; color: var(--text); line-height: 1.78; margin-bottom: 20px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag-list li {
  font-family: 'Lato', sans-serif;
  font-size: .66rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--vert);
  padding: 5px 12px;
  border: 1px solid var(--sauge);
  border-radius: 2px;
  background: rgba(168,177,154,.07);
}

.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room-card { background: var(--ivoire); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.rc-img { height: 210px; overflow: hidden; }
.rc-img img { transition: transform .6s ease; }
.room-card:hover .rc-img img { transform: scale(1.06); }
.rc-body { padding: 20px 22px 22px; }
.rc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.rc-top h3 { font-size: 1.05rem; }
.rc-floor { font-family: 'Lato', sans-serif; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--taupe); white-space: nowrap; }
.rc-body p { font-size: .83rem; color: var(--taupe); line-height: 1.6; margin-bottom: 10px; }
.rc-tags { font-size: .72rem; color: var(--sauge); font-weight: 400; letter-spacing: .04em; }

@media (max-width: 860px) {
  .space-feature { grid-template-columns: 1fr; gap: 32px; }
  .space-feature-rev .spf-img, .space-feature-rev .spf-body { order: 0; }
  .spf-img { height: 280px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) { .rooms-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   GALERIE
══════════════════════════════════════════════════ */
.galerie-section { padding: 96px 0 0; background: var(--ivoire); }
.galerie-section .section-header { padding: 0 48px; }
@media (max-width: 768px) { .galerie-section .section-header { padding: 0 20px; } }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: row dense;
  gap: 4px;
  margin-top: 44px;
}
.gal-item { overflow: hidden; cursor: pointer; background: var(--border); }
.gal-item img { transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

@media (max-width: 900px) { .galerie-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; } }
@media (max-width: 600px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gal-tall { grid-row: span 1; }
  .gal-wide { grid-column: span 1; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(20,24,18,.95); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.lightbox.hidden { display: none; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; width: auto; height: auto; border-radius: var(--radius); }
.lb-close, .lb-prev, .lb-next { position: absolute; color: rgba(255,255,255,.65); font-size: 2rem; font-weight: 200; padding: 16px; line-height: 1; transition: color .2s; }
.lb-close { top: 16px; right: 16px; font-size: 1.8rem; }
.lb-prev  { left: 16px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--blanc); }

/* ══════════════════════════════════════════════════
   AVIS
══════════════════════════════════════════════════ */
.avis-section { background: var(--beige); padding: 96px 0; }
.avis-section .section-header h2 { font-style: italic; }
.avis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.avis-card { background: var(--blanc); border-radius: var(--radius-lg); padding: 32px 32px 28px; border: 1px solid var(--border); }
.ac-stars { color: var(--or); font-size: .8rem; letter-spacing: .05em; margin-bottom: 14px; }
.ac-quote { font-size: .9rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; font-family: 'Playfair Display', serif; font-weight: 400; }
.ac-author { display: flex; align-items: center; gap: 14px; }
.ac-init { width: 42px; height: 42px; border-radius: 50%; background: var(--vert); color: var(--blanc); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; flex-shrink: 0; }
.ac-author strong { display: block; font-size: .85rem; font-weight: 700; color: var(--charbon); font-family: 'Lato', sans-serif; }
.ac-author span   { display: block; font-size: .72rem; color: var(--taupe); margin-top: 2px; }
@media (max-width: 768px) { .avis-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   TARIFS
══════════════════════════════════════════════════ */
.tarifs-section { background: var(--ivoire); padding: 96px 0; }
.tarifs-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--blanc); }
.tt-row { display: grid; grid-template-columns: 2fr 2fr 1fr 1.2fr .8fr; padding: 18px 28px; border-bottom: 1px solid var(--border); align-items: center; }
.tt-row:last-child { border-bottom: none; }
.tt-head { background: var(--charbon); color: rgba(255,255,255,.5); font-family: 'Lato', sans-serif; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 400; }
.tt-featured { background: rgba(168,177,154,.1); }
.tt-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--charbon); }
.tt-per { font-size: .78rem; color: var(--taupe); }
.tt-badge { display: inline-block; font-family: 'Lato', sans-serif; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--vert); border: 1px solid var(--sauge); padding: 2px 8px; border-radius: 2px; margin-left: 8px; vertical-align: middle; }
.tt-row > div { font-size: .88rem; color: var(--text); }
.tt-row strong { font-weight: 700; color: var(--charbon); font-family: 'Lato', sans-serif; }
.tarifs-note { margin-top: 20px; font-size: .78rem; color: var(--taupe); text-align: center; letter-spacing: .02em; }
@media (max-width: 860px) {
  .tt-row { grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px 20px; }
  .tt-head { display: none; }
}

/* ══════════════════════════════════════════════════
   OCCASIONS
══════════════════════════════════════════════════ */
.occ-section { background: var(--vert); padding: 96px 0; }
.occ-section .eyebrow { color: var(--sauge); }
.occ-section h2 { color: var(--blanc); margin-bottom: 56px; }
.occ-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.occ-item { padding: 32px; border: 1px solid rgba(255,255,255,.1); transition: background .2s; }
.occ-item:hover { background: rgba(255,255,255,.06); }
.occ-item h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 400; font-style: italic; color: var(--blanc); margin-bottom: 10px; }
.occ-item p { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.65; }
@media (max-width: 860px) { .occ-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .occ-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   HÔTE
══════════════════════════════════════════════════ */
.hote-section { background: var(--charbon); padding: 80px 0; }
.hote-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 52px; align-items: center; }
.hote-monogram {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: rgba(255,255,255,.55); flex-shrink: 0;
}
.hote-text h3 { color: var(--blanc); font-size: 1.4rem; margin-bottom: 12px; font-style: italic; }
.hote-text p  { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 20px; }
.hote-badges  { display: flex; flex-wrap: wrap; gap: 8px; }
.hote-badges span { font-family: 'Lato', sans-serif; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.1); padding: 5px 12px; border-radius: 2px; }
.hote-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
@media (max-width: 900px) {
  .hote-inner { grid-template-columns: 1fr; gap: 28px; }
  .hote-cta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq-section { background: var(--blanc); padding: 96px 0; }
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 20px 0; font-size: .95rem; font-weight: 400; color: var(--charbon); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; font-family: 'Lato', sans-serif; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 200; color: var(--taupe); flex-shrink: 0; transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: .88rem; color: var(--taupe); line-height: 1.75; padding-bottom: 20px; }

/* ══════════════════════════════════════════════════
   RÉSERVATION
══════════════════════════════════════════════════ */
.resa-section { background: var(--beige); padding: 96px 0; }
.resa-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.resa-form { background: var(--blanc); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: 'Lato', sans-serif; font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--taupe); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; font: inherit; font-family: 'Lato', sans-serif;
  font-size: .9rem; font-weight: 300; color: var(--text); background: var(--blanc);
  transition: border-color .2s; outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--vert); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #b94040; }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-note { font-size: .68rem; color: var(--taupe); text-align: center; margin-top: 12px; }
.form-success { background: #f0f4f0; border: 1px solid var(--sauge); color: var(--vert); padding: 14px 18px; border-radius: var(--radius); font-size: .85rem; margin-top: 14px; text-align: center; }
.form-success.hidden { display: none; }

/* Calendrier */
.cal-wrapper { background: var(--blanc); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: calc(var(--nav-h) + 24px); }
.cal-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-legend { display: flex; align-items: center; gap: 10px; }
.leg { font-family: 'Lato', sans-serif; font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--taupe); display: flex; align-items: center; gap: 5px; }
.leg::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; }
.leg-free::before   { background: var(--vert); }
.leg-booked::before { background: #b94040; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-month-label { font-family: 'Lato', sans-serif; font-size: .85rem; font-weight: 700; color: var(--charbon); letter-spacing: .04em; }
.cal-btn-prev, .cal-btn-next { font-size: 1.4rem; font-weight: 200; color: var(--taupe); padding: 4px 8px; border-radius: var(--radius); line-height: 1; transition: color .2s, background .2s; }
.cal-btn-prev:hover, .cal-btn-next:hover { color: var(--vert); background: var(--ivoire); }
.cal-days-header { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.cal-day-name { text-align: center; font-family: 'Lato', sans-serif; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe); padding: 4px 0; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-family: 'Lato', sans-serif; font-size: .75rem; border-radius: var(--radius); font-weight: 300; color: var(--text); }
.cal-day.empty  { opacity: 0; pointer-events: none; }
.cal-day.past   { color: var(--border); }
.cal-day.free   { background: rgba(94,107,87,.12); color: var(--vert); font-weight: 700; }
.cal-day.today  { outline: 2px solid var(--or); outline-offset: -2px; font-weight: 700; color: var(--or); }
.cal-day.booked { background: rgba(185,64,64,.1); color: #922; }
.cal-day.booked-start  { border-radius: var(--radius) 0 0 var(--radius); }
.cal-day.booked-end    { border-radius: 0 var(--radius) var(--radius) 0; }
.cal-day.booked-middle { border-radius: 0; }
.cal-note { font-size: .65rem; color: var(--taupe); text-align: center; margin-top: 10px; letter-spacing: .04em; }

@media (max-width: 1100px) { .resa-grid { grid-template-columns: 1fr; } .cal-wrapper { position: static; } }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } .resa-form { padding: 24px 20px; } }

/* ══════════════════════════════════════════════════
   RÉSERVATION — TÉLÉPHONE
══════════════════════════════════════════════════ */
.resa-section { background: var(--beige); padding: 96px 0; }

.resa-phone-wrap {
  max-width: 560px;
}

.resa-phone-num {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--charbon);
  letter-spacing: .04em;
  margin-bottom: 24px;
  transition: color .2s;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 20px;
}
.resa-phone-num svg { color: var(--vert); flex-shrink: 0; width: 28px; height: 28px; }
.resa-phone-num:hover { color: var(--vert); }

.resa-phone-note {
  font-size: .82rem;
  color: var(--taupe);
  font-weight: 300;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   LOCALISATION
══════════════════════════════════════════════════ */
.loc-section { background: var(--blanc); padding: 96px 0; }
.loc-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.loc-item { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.loc-item span:first-child { font-weight: 700; color: var(--charbon); font-family: 'Lato', sans-serif; }
.loc-item span:last-child  { font-weight: 300; color: var(--taupe); font-size: .82rem; }
.loc-map { height: 380px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.loc-map iframe { width: 100%; height: 100%; border: none; display: block; }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } .loc-map { height: 280px; } }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer { background: var(--charbon); padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 28px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--blanc); margin-bottom: 12px; }
.footer-brand p { font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.7; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-family: 'Lato', sans-serif; font-size: .78rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-nav a:hover { color: var(--sauge); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-family: 'Lato', sans-serif; font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact a:hover { color: var(--blanc); }
.footer-contact p { font-size: .72rem; color: rgba(255,255,255,.25); margin-top: 4px; }
.footer-bottom p { font-size: .68rem; color: rgba(255,255,255,.2); letter-spacing: .06em; text-transform: uppercase; }
.footer-rules { font-family: 'Lato', sans-serif; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 12px; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* ══════════════════════════════════════════════════
   STICKY BAR MOBILE
══════════════════════════════════════════════════ */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--blanc); border-top: 1px solid var(--border); padding: 12px 20px; align-items: center; justify-content: space-between; gap: 16px; box-shadow: 0 -4px 24px rgba(0,0,0,.08); }
.sticky-bar strong { font-size: 1rem; color: var(--charbon); font-family: 'Lato', sans-serif; }
.sticky-bar span { font-size: .82rem; color: var(--taupe); }
.sb-cta { background: var(--vert); color: var(--blanc); padding: 11px 24px; border-radius: var(--radius); font-family: 'Lato', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
@media (max-width: 768px) { .sticky-bar { display: flex; } }

/* ── Utilitaires ── */
.hidden { display: none !important; }
