/* ---------- Tokens ---------- */
:root {
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --ink: #1E1B17;
  --ink-soft: #55504A;

  --terracotta: #1A1512;
  --mustard: #E3A93B;
  --petrol: #1F5C5B;
  --sand-line: #E8E3D8;

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;

  --max-width: 1140px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; max-width: 60ch; color: var(--ink-soft); }
a { color: var(--terracotta); }
img { display: block; max-width: 100%; }

.btn {
  display: inline-block;
  padding: 0.85em 1.8em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: #3A332C; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-full { width: 100%; text-align: center; }
.btn-small { padding: 0.55em 1.2em; font-size: 0.85rem; }

.btn-ghost { background: transparent; border-color: transparent; color: var(--ink-soft); padding: 0.55em 0.9em; font-size: 0.85rem; }
.btn-ghost:hover { color: var(--ink); text-decoration: underline; }

.room-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.intro-mark {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--mustard);
  margin-bottom: 1.2rem;
}

/* ---------- Animations d'entrée (header, hero) ---------- */
@keyframes fadeDownIn {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.site-header { animation: fadeDownIn 0.6s ease both; }
.hero-video-content > * {
  opacity: 0;
  animation: fadeUpIn 0.7s ease forwards;
}
.hero-video-content .hero-eyebrow { animation-delay: 0.15s; }
.hero-video-content h1 { animation-delay: 0.3s; }
.hero-video-content .hero-lede { animation-delay: 0.45s; }
.hero-video-content .btn { animation-delay: 0.6s; }

/* ---------- Animations au scroll (fade-up, tout le site) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--sand-line);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img { height: 46px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.main-nav a:hover { border-bottom-color: var(--terracotta); }
.main-nav a.nav-cta {
  background: var(--terracotta);
  color: var(--white);
  padding: 0.55em 1.1em;
  border-radius: var(--radius);
  border-bottom: none;
}
.main-nav a.nav-cta:hover { background: #3A332C; }

/* active page underline */
body.page-accueil .nav-accueil,
body.page-chambres .nav-chambres,
body.page-lelieu .nav-lelieu,
body.page-restaurant .nav-restaurant,
body.page-clk .nav-clk,
body.page-events .nav-events {
  border-bottom-color: var(--mustard);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); }

/* ---------- Hero video (placeholder, plein écran) ---------- */
.hero-video {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-video-media {
  position: absolute;
  inset: 0;
}
.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,27,23,0.15) 0%, rgba(30,27,23,0.1) 40%, rgba(30,27,23,0.68) 100%);
}
.hero-video-content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 0.8em;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-video-content h1 { color: var(--white); font-size: clamp(2.6rem, 5.2vw, 4.2rem); margin-bottom: 0.35em; }
.hero-lede { color: var(--white); opacity: 0.92; font-size: 1.1rem; margin-bottom: 1.6em; max-width: 42ch; }

/* ---------- Logos défilants (sous le hero) ---------- */
.logos-marquee {
  overflow: hidden;
  padding: 2rem 0;
  border-bottom: 1px solid var(--sand-line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  padding: 0 1.5rem;
  animation: logos-scroll 32s linear infinite;
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logos-track img {
  height: 42px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.75;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.logos-track img:hover { opacity: 1; filter: grayscale(0); }

/* ---------- Intro ---------- */
.intro { padding: 6rem 1.5rem; }
.intro-inner { max-width: 620px; margin: 0 auto; }
.intro h2 { font-size: 2rem; }

/* ---------- Teasers (accueil) ---------- */
.teasers {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.teaser-card {
  display: block;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s ease;
}
.teaser-card:hover { border-color: var(--terracotta); }
.teaser-media { display: block; height: 150px; overflow: hidden; }
.teaser-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.teaser-card:hover .teaser-media img { transform: scale(1.04); }
.teaser-body { padding: 1.2rem; }
.teaser-body h3 { font-size: 1.1rem; margin-bottom: 0.3em; }
.teaser-body p { font-size: 0.88rem; margin-bottom: 1rem; }

/* Quelques cartes plus grandes pour casser la grille uniforme */
@media (min-width: 700px) {
  .teaser-card-big { grid-column: span 2; }
  .teaser-card-big .teaser-media { height: 210px; }
}

/* ---------- Gallery teaser (accueil) ---------- */
.gallery-teaser {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
  text-align: center;
}
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 80px;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}
.gallery-teaser-grid a { display: block; grid-column: span 2; grid-row: span 2; }
.gallery-teaser-grid a.gallery-teaser-big { grid-column: span 3; grid-row: span 4; }
.gallery-teaser-grid a.gallery-teaser-tall { grid-column: span 1; grid-row: span 4; }
.gallery-teaser-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- FAQ ---------- */
.faq { padding: 1rem 0 5rem; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--sand-line);
  padding: 1.2rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0.8rem 0 0; font-size: 0.92rem; }

/* ---------- Trust / partenaires ---------- */
.trust { padding: 4.5rem 0; }
.trust-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.2rem;
}
.trust-logo {
  height: 90px;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.8rem;
}
.trust-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---------- Reviews ---------- */
.reviews { background: var(--off-white); padding: 5rem 0; }
.reviews-score { font-size: 1rem; }
.section-head .btn { margin-top: 0.8rem; }

.reviews-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 1.5rem;
  animation: reviews-scroll 28s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  margin: 0;
  flex: 0 0 320px;
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.review-card p { font-size: 0.92rem; font-style: italic; margin-bottom: 0.8em; }
.review-card cite { font-size: 0.78rem; color: var(--ink-soft); font-style: normal; }

/* ---------- Page header (chambres / le lieu) ---------- */
.page-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
}
.page-header h1 { font-size: 2.4rem; }

/* ---------- Split header (restaurant / events) ---------- */
.split-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-header-media { border-radius: var(--radius); overflow: hidden; }
.split-header-media img { width: 100%; height: 420px; object-fit: cover; }
.split-header-content h1 { font-size: 2.4rem; }

/* ---------- Gallery (le lieu) — mosaïque à tailles variées ---------- */
.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 1.2rem;
}
.gallery-item { margin: 0; display: flex; flex-direction: column; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  flex: 1;
}
.gallery-item figcaption { font-size: 0.85rem; color: var(--ink-soft); }

.gallery-item-video { position: relative; cursor: pointer; }
.gallery-item-video .gallery-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 17, 13, 0.28);
  color: var(--white);
  font-size: 1.6rem;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}
.gallery-item-video:hover .gallery-play { background: rgba(20, 17, 13, 0.42); }

/* tailles : la plupart occupent 1 colonne x 2 rangées, certaines sont plus grandes */
.gallery-item { grid-column: span 1; grid-row: span 2; }
.gallery-item-big { grid-column: span 2; grid-row: span 3; }
.gallery-item-wide { grid-column: span 2; grid-row: span 2; }
.gallery-item-tall { grid-column: span 1; grid-row: span 3; }

/* ---------- Section head ---------- */
.section-head {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-bottom: 2.5rem;
}
.section-head h2 { font-size: 2rem; }

/* ---------- Rooms ---------- */
.rooms { padding: 1rem 0 5rem; }
.room-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand-line);
}
.room-visual { line-height: 0; height: 220px; position: relative; }
.room-visual img { width: 100%; height: 220px; object-fit: cover; }
.room-visual-plain {
  background: linear-gradient(135deg, var(--mustard) 0%, var(--mustard) 45%, var(--petrol) 45%, var(--petrol) 100%);
  opacity: 0.85;
}

/* Deux photos : en diptyque côte à côte sur mobile, puis superposées
   (principale + médaillon en bas à droite) à partir de 901px. */
.room-visual-duo {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.room-visual-duo .room-visual-main,
.room-visual-duo .room-visual-thumb {
  display: block;
  flex: 1;
  height: 170px;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(20, 17, 13, 0.16);
}
@media (min-width: 901px) {
  .room-visual-duo {
    display: block;
    overflow: visible;
    margin-bottom: 1.6rem;
  }
  .room-visual-duo .room-visual-main {
    width: 100%;
    height: 300px;
    box-shadow: 0 10px 26px rgba(20, 17, 13, 0.14);
  }
  .room-visual-duo .room-visual-thumb {
    position: absolute;
    width: 48%;
    height: 150px;
    bottom: -1.4rem;
    right: 1rem;
    box-shadow: 0 10px 24px rgba(20, 17, 13, 0.22);
  }
}
.room-info { padding: 1.5rem; }
.room-info h3 { font-size: 1.2rem; margin-bottom: 0.2em; }
.room-price { color: var(--terracotta); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.6em; }
.room-note {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.85rem;
  font-style: italic;
}

/* ---------- Room video modal ---------- */
.room-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.room-modal.is-open { display: flex; }
.room-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 13, 0.82);
}
.room-modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
}
.room-modal-media {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
/* La vidéo garde son orientation native (portrait ou paysage) au lieu
   d'être forcée dans un cadre 16:9 qui la recadrait/déformait. */
.room-modal-media.is-video { background: var(--ink); text-align: center; }
.room-modal-media.is-video video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72vh;
  margin: 0 auto;
}
.room-modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem;
}
.room-modal-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.room-modal-panel h3 { margin: 0; font-size: 1.2rem; }
.room-modal-close {
  position: absolute;
  top: -0.6rem;
  right: -0.6rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Renvoi CLK (sur la page Restaurant) ---------- */
.clk-banner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.clk-banner-media { border-radius: var(--radius); overflow: hidden; }
.clk-banner-media img { width: 100%; height: 300px; object-fit: cover; }
.clk-banner-content h2 { font-size: 1.8rem; }

/* ---------- Menu (restaurant) ---------- */
.menu { padding: 3rem 0 5rem; background: var(--off-white); }
.menu-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.menu-grid-wide { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem 2.5rem; }
.menu-block h3 {
  font-size: 1.1rem;
  border-bottom: 1px solid var(--sand-line);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--sand-line);
}
.menu-list li span:last-child { color: var(--terracotta); font-weight: 600; white-space: nowrap; }

/* ---------- Events ---------- */
.events-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.event-card { border: 1px solid var(--sand-line); border-radius: var(--radius); overflow: hidden; padding: 0; }
.event-card-img { width: 100%; height: 160px; object-fit: cover; }
.event-card h3, .event-card p { padding-left: 1.8rem; padding-right: 1.8rem; }
.event-card h3 { margin-top: 1.8rem; font-size: 1.15rem; }
.event-card p { padding-bottom: 1.8rem; font-size: 0.92rem; margin-bottom: 0; }

.spaces { max-width: var(--max-width); margin: 0 auto; padding: 1rem 1.5rem 5rem; }
.spaces-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.space-card { text-align: left; }
.space-media { height: 200px; border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.space-media img { width: 100%; height: 100%; object-fit: cover; }
.space-media-plain {
  background: linear-gradient(135deg, var(--mustard) 0%, var(--mustard) 45%, var(--petrol) 45%, var(--petrol) 100%);
  opacity: 0.85;
}
.space-card h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.space-card p { font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
}
.cta-band h2 { font-size: 1.8rem; }
.cta-band p { margin-left: auto; margin-right: auto; }

/* ---------- Reservation ---------- */
.reservation { padding: 4rem 1.5rem 6rem; }
.reservation-page { padding-top: 3rem; }
.reservation-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.reservation-text h1, .reservation-text h2 { font-size: 2rem; }
.reservation-note {
  font-size: 0.88rem;
  border-left: 2px solid var(--mustard);
  padding-left: 1em;
}
.reservation-form {
  background: var(--off-white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--sand-line);
}
.form-row { margin-bottom: 1.2rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4em; color: var(--ink); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.7em 0.8em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
}
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.form-actions .btn { flex: 1; text-align: center; white-space: nowrap; }

.form-status { margin-top: 1rem; font-size: 0.9rem; font-weight: 600; min-height: 1.2em; }
.form-status.success { color: var(--petrol); }
.form-status.error { color: var(--terracotta); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--sand-line); padding: 3rem 1.5rem 1.5rem; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin-bottom: 0.3em; }
.footer-inner a { text-decoration: none; }
.footer-inner .btn-outline { margin-top: 0.4rem; }
.footer-copy {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .hero-video-content > *, .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-video { height: 80vh; min-height: 460px; }
  .hero-video-content { padding-bottom: 3rem; }
  .logos-track { gap: 2rem; }
  .logos-track img { height: 34px; }

  .teasers { grid-template-columns: repeat(2, 1fr); }
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .gallery-teaser-grid a.gallery-teaser-big { grid-column: span 2; grid-row: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery-item-big { grid-column: span 2; grid-row: span 2; }
  .gallery-item-wide { grid-column: span 2; }
  .review-card { flex-basis: 260px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .room-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; gap: 2rem; }
  .events-list { grid-template-columns: 1fr; }
  .spaces-grid { grid-template-columns: 1fr; }
  .split-header { grid-template-columns: 1fr; }
  .split-header-media img { height: 260px; }
  .clk-banner { grid-template-columns: 1fr; }
  .clk-banner-media img { height: 220px; }
  .reservation-inner { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }

  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .teasers { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; }
}

.main-nav.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid var(--sand-line);
}
