/* ===== Base & tokens ===== */
/* Palette inspirée de L'Ami Pinot (vert profond + bordeaux + crème) */
:root {
  --green-900: #182d1c;
  --green-800: #224124;
  --green-700: #355538;
  --green-600: #4a6a4d;
  --green-300: #a4b5a0;
  --cream: #F4F0E8;
  --cream-deep: #e7dfcd;
  --paper: #f7f3ea;
  --ink: #1d1d1b;
  --ink-soft: #5a5a52;
  --wine: #7c000c;
  --wine-soft: #a83644;
  --sand: #c9b48a;

  --radius: 2px;
  --radius-lg: 6px;
  --max: 1320px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease), color .25s var(--ease); }
a:hover { opacity: .75; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* ===== Typography ===== */
.h2, .h3, .h4, .hero__title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  color: var(--green-900);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
.h2 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 500;
}
.h2 em, .hero__title em, .h3 em {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--wine);
}
.h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 500;
}
.h4 {
  font-size: 1.25rem;
  font-weight: 600;
}
.eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--wine);
  margin: 0 0 1.4rem;
  text-transform: none;
}
.lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
}
.section-lead {
  max-width: 56ch;
  margin: 1.6rem auto 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
p { margin: 0 0 1rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--green-800);
  color: var(--cream);
  border: 1px solid var(--green-800);
  border-radius: 2px;
  padding: 1rem 2rem;
}
.btn--primary:hover {
  background: var(--wine);
  border-color: var(--wine);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(124,0,12,.4);
}
.btn--ghost {
  color: var(--green-900);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--green-700);
  border-radius: 0;
  padding: 0.4rem 0;
}
.btn--ghost svg {
  transition: transform .3s var(--ease);
}
.btn--ghost:hover {
  color: var(--wine);
  border-bottom-color: var(--wine);
  opacity: 1;
  transform: none;
}
.btn--ghost:hover svg {
  transform: translate(3px, -3px);
}
.btn--hero {
  margin-top: 2.4rem;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 240, 232, 0.85);
  border-radius: 0;
  padding: 0.4rem 0;
  animation: fadeUp 1.2s .55s var(--ease) both;
}
.btn--hero svg { transition: transform .35s var(--ease); }
.btn--hero:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
  opacity: 1;
  transform: none;
}
.btn--hero:hover svg { transform: translate(3px, -3px); }
.cuisine__menu-btn {
  display: inline-flex;
  margin: 1.8rem auto 0;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.6rem 0;
  transition: all .35s var(--ease);
  color: var(--cream);
}
.nav.is-scrolled {
  background: var(--paper);
  color: var(--green-900);
  box-shadow: 0 1px 0 rgba(21,42,31,0.07);
  padding: 0.5rem 0;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo {
  height: 72px;
  width: auto;
  display: block;
  color: var(--cream);
  transition: height .35s var(--ease), color .35s var(--ease);
}
.nav.is-scrolled .nav__logo {
  height: 56px;
  color: var(--green-800);
}

/* Inline SVG logo styling — uses currentColor */
.logo-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  fill: currentColor;
  letter-spacing: 0.01em;
}
.logo-sub {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  fill: currentColor;
  letter-spacing: 0.32em;
}
.logo-tag {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  fill: currentColor;
  letter-spacing: 0.04em;
}
.logo-house {
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-frame {
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav__menu a:hover { opacity: 1; }
.nav__menu a:hover::after { width: 100%; }
.nav__cta {
  padding: 0.7rem 1.4rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  letter-spacing: 0.14em;
  transition: background-color .3s var(--ease);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  opacity: 1;
  background: rgba(244, 240, 232, 0.12);
}
.nav.is-scrolled .nav__cta:hover {
  background: rgba(34, 65, 36, 0.08);
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  transform: scale(1.06);
  animation: slowZoom 22s ease-out forwards;
}
.hero__video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@keyframes slowZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(24,45,28,0.55) 0%, rgba(24,45,28,0.18) 35%, rgba(24,45,28,0.78) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(8rem, 18vh, 14rem) clamp(20px, 4vw, 56px) 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.hero__eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 0 2rem;
  opacity: .92;
  color: var(--cream);
  animation: fadeUp 1s .1s var(--ease) both;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 13vw, 11rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 0.9;
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
  animation: fadeUp 1.1s .25s var(--ease) both;
}
.hero__title em {
  font-family: 'Playfair Display', serif;
  color: #e8d6a4;
  font-weight: 500;
  font-style: italic;
}
.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 400;
  margin: 0;
  max-width: 30ch;
  line-height: 1.45;
  color: var(--cream);
  animation: fadeUp 1.1s .4s var(--ease) both;
}
.hero__tagline em {
  color: #e8d6a4;
  font-weight: 500;
}

/* Dual split CTA bar at bottom of hero (inspired by Le 203) */
.hero__split {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border-top: 1px solid rgba(244,240,232,0.25);
  animation: fadeUp 1.2s .65s var(--ease) both;
}
.hero__half {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem 2.4rem;
  text-align: center;
  color: var(--cream);
  background: rgba(24,45,28,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all .45s var(--ease);
  text-decoration: none;
  overflow: hidden;
}
.hero__half + .hero__half {
  border-left: 1px solid rgba(244,240,232,0.2);
}
.hero__half-eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-bottom: 0.6rem;
  display: block;
}
.hero__half-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  display: block;
}
.hero__half-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #e8d6a4;
  font-weight: 500;
}
.hero__half-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.4rem;
  transform: translateX(0);
  transition: transform .4s var(--ease);
  opacity: 0.85;
}
.hero__half:hover {
  background: var(--cream);
  color: var(--green-900);
  opacity: 1;
}
.hero__half:hover .hero__half-title em {
  color: var(--wine);
}
.hero__half:hover .hero__half-arrow {
  transform: translateX(8px);
}

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

/* ===== Intro ===== */
.intro { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--paper); }
.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro__text .lead { margin-bottom: 1.5rem; }
.intro__text p:last-child { color: var(--ink-soft); }
.intro__image {
  position: relative;
}
.intro__image img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 1.2s var(--ease);
}
.intro__image:hover img { transform: scale(1.02); }
.intro__caption {
  display: block;
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: right;
}

/* ===== Section heads ===== */
.section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.section-head .eyebrow { margin-bottom: 1rem; }

/* ===== Histoire ===== */
.histoire {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
  position: relative;
}
.histoire__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 6rem);
}
.histoire__card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.histoire__card--reverse { direction: rtl; }
.histoire__card--reverse > * { direction: ltr; }
.histoire__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.histoire__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.histoire__img:hover img { transform: scale(1.04); }
.histoire__body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.histoire__body .h3 { margin-bottom: 1.2rem; }
.histoire__quote {
  text-align: center;
  margin-top: clamp(4rem, 8vw, 6rem);
  padding: 0 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.histoire__quote::before {
  content: '— § —';
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--wine);
  letter-spacing: 0.4em;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.histoire__quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--green-900);
  line-height: 1.5;
  margin: 0;
}
.histoire__quote em {
  font-weight: 500;
  font-style: italic;
  color: var(--wine);
}

/* ===== Soirée / Éditorial ===== */
.soiree {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--paper);
  position: relative;
}
.soiree__head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.soiree__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
  counter-reset: step;
}
.soiree__step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
}
.soiree__step:nth-child(even) { direction: rtl; }
.soiree__step:nth-child(even) > * { direction: ltr; }

.soiree__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--wine);
  line-height: 1;
  min-width: 4ch;
  opacity: 0.85;
}
.soiree__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}
.soiree__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.soiree__media:hover img { transform: scale(1.05); }
.soiree__body .h3 {
  margin-bottom: .8rem;
  color: var(--green-900);
}
.soiree__body p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 44ch;
}

/* ===== Cuisine ===== */
.cuisine {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--paper);
}
.cuisine__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin: clamp(1rem, 2vw, 2rem) 0 clamp(4rem, 7vw, 6rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(34,65,36,0.18);
  border-bottom: 1px solid rgba(34,65,36,0.18);
}
.feature {
  text-align: center;
  padding: 0 .5rem;
  position: relative;
}
.feature + .feature::before {
  content: '';
  position: absolute;
  left: clamp(-1rem, -2.5vw, -2rem);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(34,65,36,0.12);
}
.feature__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.4rem;
  color: var(--wine);
}
.feature__icon svg { width: 100%; height: 100%; }
.feature .h4 {
  margin-bottom: .8rem;
  color: var(--green-900);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
}
.feature p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0;
  max-width: 30ch;
  margin-inline: auto;
}

/* Gallery - asymmetric grid */
.cuisine__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.cuisine__shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  grid-row: span 2;
}
.cuisine__shot--tall { grid-row: span 3; }
.cuisine__shot--wide { grid-column: span 2; grid-row: span 2; }
.cuisine__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.cuisine__shot:hover img { transform: scale(1.06); }

/* ===== Chambres ===== */
.chambres {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--green-900);
  color: var(--cream);
  position: relative;
}
.chambres .eyebrow { color: #e8d6a4; }
.chambres .h2, .chambres .h3 { color: var(--cream); }
.chambres .h2 em, .chambres .h3 em { color: #e8d6a4; }
.chambres .section-lead { color: rgba(244,240,232,0.75); }

.chambres__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.room {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.room:hover { transform: translateY(-4px); }
.room__gallery {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-800);
}
.room__gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.room__gallery img.is-active { opacity: 1; }
.room__nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.room__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all .3s var(--ease);
  padding: 0;
}
.room__dot.is-active { background: var(--cream); transform: scale(1.3); }
.room__dot:hover { background: rgba(255,255,255,0.8); }

.room__body {
  padding: 2rem 2rem 2.4rem;
}
.room__body .h3 { margin-bottom: .8rem; }
.room__body p {
  color: rgba(245,241,230,0.75);
  margin-bottom: 1.8rem;
}
.room .btn--primary {
  background: var(--cream);
  color: var(--green-900);
  border-color: var(--cream);
}
.room .btn--primary:hover {
  background: #fff;
  color: var(--green-900);
}

/* ===== Privatisation ===== */
.privatisation {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--paper);
  position: relative;
}
.privatisation .section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.privatisation .section-lead {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.privatisation__main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.privatisation__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(24, 45, 28, 0.35);
}
.privatisation__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.privatisation__img:hover img { transform: scale(1.05); }

.privatisation__body .h3 {
  margin-bottom: 1.5rem;
}
.privatisation__body p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  max-width: 50ch;
}
.privatisation__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--green-800);
}
.privatisation__tags li {
  position: relative;
}
.privatisation__tags li + li::before {
  content: '·';
  position: absolute;
  left: -0.95rem;
  color: var(--sand);
  font-style: normal;
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.privatisation__alt {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--cream);
  border-radius: var(--radius-lg);
  position: relative;
}
.privatisation__alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(2rem, 4vw, 3rem);
  width: 48px;
  height: 2px;
  background: var(--wine);
  transform: translateY(-1px);
}
.privatisation__alt-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.privatisation__alt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.privatisation__alt-img:hover img { transform: scale(1.05); }
.privatisation__alt-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.privatisation__alt-body .eyebrow {
  margin-bottom: 0.6rem;
}
.privatisation__alt-body .h3 {
  margin-bottom: 1.2rem;
}
.privatisation__alt-body p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  max-width: 48ch;
}

/* ===== Galerie strip ===== */
.galerie {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--cream);
  overflow: hidden;
}
.galerie__strip {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.galerie__track {
  display: flex;
  gap: 16px;
  animation: slide 80s linear infinite;
  width: max-content;
}
.galerie__track figure {
  margin: 0;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.galerie__track figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.galerie__strip:hover .galerie__track { animation-play-state: paused; }

/* ===== Contact ===== */
.contact {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--paper);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  border-top: 1px solid rgba(21,42,31,0.12);
}
.contact__list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(21,42,31,0.12);
  align-items: start;
}
.contact__label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--wine);
  padding-top: 2px;
}
.contact__list a { border-bottom: 1px solid rgba(21,42,31,0.3); }
.contact__sub {
  display: block;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  font-style: italic;
}
.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.contact__image {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: var(--radius);
}
.contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-900);
  color: rgba(245,241,230,0.85);
  padding: clamp(4rem, 7vw, 6rem) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,241,230,0.12);
}
.footer__logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  color: var(--cream);
  opacity: 0.94;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: #e8d6a4;
  margin: 0 0 1.2rem;
}
.footer__cols a, .footer__cols span {
  display: block;
  font-size: 0.95rem;
  padding: .35rem 0;
  color: rgba(245,241,230,0.7);
}
.footer__cols a:hover { color: var(--cream); opacity: 1; }
.footer__bottom {
  padding: 1.8rem 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(245,241,230,0.5);
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .hero__split { grid-template-columns: 1fr; }
  .hero__half + .hero__half {
    border-left: 0;
    border-top: 1px solid rgba(244,240,232,0.2);
  }
  .hero__half { padding: 1.4rem 1rem; }
}

/* Small iPhone screens */
@media (max-height: 850px) {
  .btn--hero { margin-top: 0.6rem; }
  .hero__half { padding: 0.5rem 0.8rem; }
  .hero__half-eyebrow { margin-bottom: 0.2rem; font-size: 0.75rem; }
  .hero__half-title { font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
  .hero__tagline { font-size: clamp(0.95rem, 1.6vw, 1.3rem); margin: 0; }
  .hero__content { padding: 2rem clamp(20px, 4vw, 56px) 1.5rem; }
}

@media (max-width: 960px) {
  .hero__video.is-ready { display: block; }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 201;
  }
  .nav__brand {
    position: relative;
    z-index: 201;
  }
  .nav.menu-open .nav__logo { color: var(--green-900); }
  .nav.menu-open .nav__toggle { color: var(--green-900); }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--paper);
    color: var(--green-900);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform .42s var(--ease);
    z-index: 200;
    padding: 6rem 2rem 3rem;
  }
  .nav__menu.is-open { transform: translateX(0); }

  .nav__menu a {
    font-size: 1.15rem;
    letter-spacing: 0.16em;
    padding: 1.1rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--cream-deep);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), color .25s var(--ease);
  }
  .nav__menu a:first-child { border-top: none; }
  .nav__menu a:nth-last-child(2) { border-bottom: none; }
  .nav__menu.is-open a {
    opacity: 1;
    transform: translateX(0);
  }
  .nav__menu.is-open a:nth-child(1) { transition-delay: .05s; }
  .nav__menu.is-open a:nth-child(2) { transition-delay: .10s; }
  .nav__menu.is-open a:nth-child(3) { transition-delay: .15s; }
  .nav__menu.is-open a:nth-child(4) { transition-delay: .20s; }
  .nav__menu.is-open a:nth-child(5) { transition-delay: .25s; }
  .nav__menu.is-open a:nth-child(6) { transition-delay: .30s; }
  .nav__menu.is-open a:nth-child(7) { transition-delay: .35s; }
  .nav__cta {
    background: var(--green-800);
    color: var(--cream);
    border: none;
    border-radius: 2px;
    padding: 1rem 3rem;
    margin-top: 2.5rem;
    width: auto;
    border-bottom: none;
    letter-spacing: 0.18em;
  }
  .nav__cta:hover { background: var(--wine); opacity: 1; }

  .intro__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .intro__image, .contact__image { aspect-ratio: 4 / 3; }

  .histoire__card,
  .histoire__card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .histoire__img { aspect-ratio: 4 / 3; }

  .privatisation__main,
  .privatisation__alt {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .privatisation__img,
  .privatisation__alt-img { aspect-ratio: 4 / 3; }
  .privatisation__alt { padding: 1.8rem; }
  .privatisation__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .privatisation__tags {
    justify-content: center;
  }

  .cuisine__features { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature + .feature::before { display: none; }

  .cuisine__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .cuisine__shot--wide { grid-column: span 2; }
  .cuisine__shot--tall { grid-row: span 2; }

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

  .soiree__step,
  .soiree__step:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: left;
    gap: 1.2rem;
  }
  .soiree__num { font-size: 3rem; }
  .soiree__media { aspect-ratio: 4 / 3; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__logo { margin: 0 auto; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }

  .hero__content { padding-top: 7rem; }

  .contact__list li {
    grid-template-columns: 1fr;
    gap: .4rem;
  }
}

@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr; }
  .galerie__track figure { width: 220px; height: 300px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: auto; }
}

/* ===== Event Modal ===== */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(24, 45, 28, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s var(--ease), visibility 0.38s var(--ease);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.event-modal[hidden] { display: none; }
.event-modal.is-visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.event-modal__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: min(440px, 92vw);
  max-height: 92vh;
  width: 100%;
}
.event-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.5s var(--ease) 0.08s, opacity 0.5s var(--ease) 0.08s;
}
.event-modal.is-visible .event-modal__head {
  transform: translateY(0);
  opacity: 1;
}
.event-modal__eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.event-modal__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  position: relative;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(201, 180, 138, 0.6);
  animation: eventPulse 2.2s infinite ease-out;
}
@keyframes eventPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 180, 138, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(201, 180, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 180, 138, 0); }
}
.event-modal__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.06);
  transform: scale(0.94) translateY(10px);
  transition: transform 0.45s var(--ease);
  background: var(--cream);
  min-height: 0;
}
.event-modal.is-visible .event-modal__card {
  transform: scale(1) translateY(0);
}
.event-modal__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(92vh - 56px);
  object-fit: contain;
}
.event-modal__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.3s var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  flex-shrink: 0;
}
.event-modal__close:hover {
  background: var(--cream);
  color: var(--green-900);
  transform: rotate(90deg);
}
.event-modal__close:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .galerie__track { animation: none; }
  .hero__media img { animation: none; transform: none; }
}
