/* ═══════════════════════════════════════════════════════════
   CHÂTEAU DES MAUGES — Domaine privé, Proulin, Maine-et-Loire
   style.css
═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --ivory:        #f8f4ee;
  --ivory-dark:   #eee8de;
  --green:        #1c3028;
  --green-mid:    #274035;
  --green-light:  #2d4a3e;
  --gold:         #b8915a;
  --gold-light:   #d4aa76;
  --gold-pale:    #f0e4d0;
  --charcoal:     #2c2c2c;
  --gray:         #7a7368;
  --gray-light:   #ddd8cf;
  --white:        #ffffff;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Lato', system-ui, sans-serif;

  --nav-h:        80px;
  --max-w:        1280px;
  --section-py:   100px;
  --radius:       2px;

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:    0 2px 16px rgba(28,48,40,0.08);
  --shadow-md:    0 8px 40px rgba(28,48,40,0.14);
  --shadow-lg:    0 24px 80px rgba(28,48,40,0.2);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
iframe { border: none; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea, button { font-family: var(--font-sans); }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 700; }

h2 em, h1 em {
  font-style: italic;
  color: var(--gold);
}

p { line-height: 1.75; }

.body-lg {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.2rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.eyebrow--light { color: var(--gold-light); }

/* ─── LAYOUT HELPERS ────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-header h2 { margin-bottom: 1rem; }

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 0.8rem;
}

.section-desc.light { color: rgba(255,255,255,0.72); }
h2.light { color: var(--white); }
h2.light em { color: var(--gold-light); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid var(--green);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s;
  border-radius: var(--radius);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-primary--light {
  background: transparent;
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-primary--light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: background var(--transition), border-color var(--transition), transform 0.2s;
  border-radius: var(--radius);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--green);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover { color: var(--gold-light); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-monogram {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  border: 1.5px solid var(--gold);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.nav-logo:hover .logo-monogram { border-color: var(--gold-light); }

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.nav-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform 0.2s;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav panel */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--green);
  padding: 24px 40px 32px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding var(--transition);
}

.nav-mobile.open {
  max-height: 600px;
  padding: 24px 40px 32px;
}

.nav-mobile-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.nav-mobile-link:hover { color: var(--gold-light); }

.nav-mobile-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--gold);
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-align: center;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-mobile-btn:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/Designer-1.png');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 16, 0.52) 0%,
    rgba(10, 22, 16, 0.38) 40%,
    rgba(10, 22, 16, 0.68) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  animation: heroFadeUp 1.4s ease 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
  line-height: 1.0;
}

.hero-title-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  display: block;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 44px;
  letter-spacing: 0.06em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeUp 1.4s ease 1.2s both;
}

.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.4s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

.hero-distinctions {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  animation: heroFadeUp 1.2s ease 1.5s both;
}

.hero-dist-item {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-dist-sep {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════
   BOOKING BAR
═══════════════════════════════════════════════ */
.booking-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 100;
  border-top: 3px solid var(--gold);
}

.booking-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  min-height: 84px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px;
  flex: 1;
  min-width: 0;
}

.booking-field label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.booking-field input,
.booking-field select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  width: 100%;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8915a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.booking-divider {
  width: 1px;
  background: var(--gray-light);
  margin: 18px 0;
  flex-shrink: 0;
}

.booking-btn {
  background: var(--green);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 36px;
  margin: 12px 12px 12px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform 0.2s;
}

.booking-btn:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.booking-message {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 12px;
  font-size: 0.82rem;
  color: #c0392b;
  min-height: 20px;
}

.booking-message.success { color: var(--green); }

/* ═══════════════════════════════════════════════
   LE DOMAINE
═══════════════════════════════════════════════ */
.domaine { background: var(--ivory); }

.domaine-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.domaine-text h2 { margin-bottom: 1.6rem; }

.domaine-chiffres {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--gray-light);
  padding-top: 36px;
}

.chiffre {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
  border-right: 1px solid var(--gray-light);
}

.chiffre:last-child { border-right: none; padding-right: 0; }
.chiffre:not(:first-child) { padding-left: 24px; }

.chiffre-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
}

.chiffre-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.domaine-image {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.domaine-image img {
  transition: transform 0.8s ease;
}

.domaine-image:hover img { transform: scale(1.04); }

.domaine-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green);
  color: var(--white);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.domaine-image-badge span:first-child {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold-light);
}

.domaine-image-badge span:last-child {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ═══════════════════════════════════════════════
   CHAMBRES & SUITES
═══════════════════════════════════════════════ */
.chambres { background: var(--white); }

.chambres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.chambre-card {
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.chambre-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.chambre-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.chambre-img img {
  transition: transform 0.7s ease;
}

.chambre-card:hover .chambre-img img { transform: scale(1.06); }

.chambre-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--radius);
}

.chambre-tag--prestige { background: var(--gold); color: var(--green); }

.chambre-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chambre-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.dot { color: var(--gold); }

.chambre-body h3 {
  font-size: 1.2rem;
  color: var(--green);
  margin: 0;
}

.chambre-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  flex: 1;
}

.chambre-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
  transition: color var(--transition), gap var(--transition);
}

.chambre-link:hover { color: var(--gold); gap: 12px; }

.chambre-link span {
  transition: transform var(--transition);
}

.chambre-card:hover .chambre-link span { transform: translateX(3px); }

.chambres-cta {
  text-align: center;
  margin-top: 56px;
}

/* ═══════════════════════════════════════════════
   LA TABLE
═══════════════════════════════════════════════ */
.table-section { background: var(--ivory); overflow: hidden; }

.table-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.table-image {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-right: 80px;
}

.table-image img { transition: transform 0.8s ease; }
.table-image:hover img { transform: scale(1.04); }

.table-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,22,16,0.85));
  color: rgba(255,255,255,0.75);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  text-align: center;
  padding: 40px 20px 20px;
}

.table-content h2 { margin-bottom: 1.4rem; }
.table-content p { color: #555; margin-bottom: 1rem; }
.table-content .body-lg { color: #3a3a3a; }

.table-menus {
  margin: 32px 0;
  border-top: 1px solid var(--gray-light);
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
  gap: 16px;
}

.menu-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green);
}

.menu-courses {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.menu-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.table-infos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.table-info-item {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  color: #555;
}

.table-info-item strong {
  color: var(--green);
  min-width: 100px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════
   SPA
═══════════════════════════════════════════════ */
.spa {
  position: relative;
  overflow: hidden;
}

.spa-bg {
  position: absolute;
  inset: 0;
  background-image: url('/Designer-7.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.spa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,28,20,0.88) 0%, rgba(28,48,40,0.80) 100%);
}

.spa-inner {
  position: relative;
  z-index: 2;
}

.spa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
  background: rgba(255,255,255,0.06);
}

.spa-card {
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}

.spa-card:hover { background: rgba(255,255,255,0.08); }

.spa-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.spa-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.spa-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.spa-cta { text-align: center; }

/* ═══════════════════════════════════════════════
   EXPÉRIENCES
═══════════════════════════════════════════════ */
.experiences { background: var(--white); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.exp-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--ivory);
}

.exp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.exp-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.exp-img img { transition: transform 0.7s ease; }
.exp-card:hover .exp-img img { transform: scale(1.07); }

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10,22,16,0.6) 100%);
}

.exp-cat {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  z-index: 1;
}

.exp-body {
  padding: 22px 20px 24px;
}

.exp-body h4 {
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.exp-body p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.exp-duration {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   GALERIE
═══════════════════════════════════════════════ */
.galerie { background: var(--ivory); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px 280px;
  grid-template-areas:
    "facade  facade  domaine  suite-p"
    "facade  facade  spa      vigno"
    "jardins mont    chambre  foret";
  gap: 6px;
  margin-top: 10px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.gal-item img {
  transition: transform 0.6s ease;
}

.gal-item:hover img { transform: scale(1.08); }

.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

.gal-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,22,16,0.75));
  color: rgba(255,255,255,0.85);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  padding: 28px 16px 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gal-item:hover .gal-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════ */
.temoignages { background: var(--green); }
.temoignages .section-header .eyebrow { color: var(--gold-light); }
.temoignages h2 { color: var(--white); }
.temoignages h2 em { color: var(--gold-light); }

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 56px;
}

.temoignage {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 36px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.temoignage:hover { background: rgba(255,255,255,0.09); }

.temo-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.temoignage blockquote p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 28px;
}

.temo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.temo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.temo-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.temo-info strong {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.temo-info span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.temo-note {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 0;
}

.temo-note p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   DISTINCTIONS
═══════════════════════════════════════════════ */
.distinctions {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}

.distinctions-bg {
  position: absolute;
  inset: 0;
  background-image: url('/Designer-12.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.distinctions-inner { position: relative; z-index: 1; }

.distinctions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.distinction-item {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.distinction-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-pale);
}

.distinction-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.distinction-icon svg { width: 100%; height: 100%; }

.distinction-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 12px;
}

.distinction-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact { background: var(--white); }

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 { margin-bottom: 2rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item address {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

.contact-info-item a {
  color: var(--green);
  transition: color var(--transition);
}

.contact-info-item a:hover { color: var(--gold); }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--ivory);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8915a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28,48,40,0.07);
}

.form-group textarea { resize: vertical; line-height: 1.65; }

.form-success {
  font-size: 0.88rem;
  color: var(--green);
  font-family: var(--font-serif);
  font-style: italic;
  min-height: 20px;
  text-align: center;
}

/* Contact right */
.contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  border: 1px solid var(--gray-light);
}

.contact-map iframe { width: 100%; height: 100%; }

.contact-acces {
  background: var(--ivory);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}

.contact-acces h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-acces ul { display: flex; flex-direction: column; gap: 12px; }

.contact-acces li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #555;
}

.contact-acces li strong {
  color: var(--green);
  font-weight: 700;
  min-width: 90px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: var(--green); color: rgba(255,255,255,0.7); }

.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  padding-top: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-mono {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  border: 1.5px solid var(--gold);
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 400;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,145,90,0.08);
}

.footer-socials svg { width: 16px; height: 16px; }

.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: none;
  padding: 10px 14px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  min-width: 0;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form button {
  background: var(--gold);
  border: none;
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  white-space: nowrap;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--gold-light); }

/* Footer links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h5 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  line-height: 1.3;
}

.footer-col a:hover { color: var(--gold-light); }

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.footer-legal {
  font-size: 0.7rem !important;
  color: rgba(255,255,255,0.28) !important;
}

/* ═══════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1100px)
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --section-py: 80px; }

  .nav-left, .nav-right { gap: 24px; }

  .domaine-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .domaine-chiffres { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .chiffre { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }

  .chambres-grid { grid-template-columns: repeat(2, 1fr); }

  .table-inner { gap: 0; padding: 0 40px; }
  .table-image { margin-right: 48px; }

  .exp-grid { grid-template-columns: repeat(2, 1fr); }

  .galerie-grid { grid-template-columns: repeat(3, 1fr); }

  .temoignages-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .temoignage:last-child { display: none; }

  .distinctions-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .contact-inner { grid-template-columns: 1fr 1fr; gap: 48px; }

  .footer-top { grid-template-columns: 280px 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --section-py: 64px;
  }

  .container { padding: 0 20px; }

  /* Nav mobile */
  .nav-inner { padding: 0 20px; }
  .nav-left, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  /* Hero */
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-distinctions { display: none; }
  .hero-scroll { bottom: 70px; }

  /* Booking */
  .booking-inner {
    flex-direction: column;
    padding: 0;
    align-items: stretch;
  }
  .booking-field { padding: 16px 20px; border-bottom: 1px solid var(--gray-light); }
  .booking-divider { display: none; }
  .booking-btn { margin: 0; padding: 18px; border-radius: 0; font-size: 0.72rem; }
  .booking-message { padding: 8px 20px; }

  /* Domaine */
  .domaine-inner { grid-template-columns: 1fr; gap: 40px; }
  .domaine-image { max-height: 420px; }
  .domaine-chiffres { grid-template-columns: repeat(2, 1fr); }

  /* Chambres */
  .chambres-grid { grid-template-columns: 1fr; gap: 24px; }
  .chambres-cta { margin-top: 32px; }

  /* Table */
  .table-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .table-image {
    margin-right: 0;
    margin-bottom: 40px;
    aspect-ratio: 16/9;
  }
  .table-menus { margin: 24px 0; }

  /* Spa */
  .spa-bg { background-attachment: scroll; }
  .spa-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Experiences */
  .exp-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .galerie-grid .gal-item[style] {
    grid-area: auto !important;
  }

  /* Distinctions */
  .distinctions-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .distinction-item { padding: 28px 16px; }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 20px 40px;
  }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { padding: 20px; }
}

@media (max-width: 480px) {
  .galerie-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .galerie-grid .gal-item[style] {
    grid-area: auto !important;
  }
  .distinctions-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
