/* ============================================================
   LA GROTTE BLEUE — feuille de style
   DA : jazz club moderne · bleu Klein · bois, métal noir, blanc
   Édition visuelle prévue dans Pinegrow. Tokens en haut.
   ============================================================ */

:root {
  /* — Couleurs signature — */
  --klein:        #1d27a8;   /* bleu Klein dominant */
  --klein-deep:   #141b78;   /* bleu profond (hover, fonds) */
  --klein-soft:   #2a35c4;   /* bleu vif (accents) */
  --ink:          #0e0f12;   /* noir métal / texte */
  --ink-soft:     #1a1c20;   /* fonds sombres alternatifs */
  --bone:         #f6f4ee;   /* blanc cassé chaud */
  --paper:        #fbfaf6;   /* blanc papier */
  --wood:         #c9a87c;   /* bois clair, touches chaleur */
  --wood-deep:    #a07f54;
  --brass:        #d8a93a;   /* laiton / doré (rappel buffet) */
  --line:         rgba(14,15,18,.14);
  --line-light:   rgba(246,244,238,.18);

  --text:         #16181d;
  --text-muted:   #5c5f68;
  --text-invert:  #f2f1ec;

  /* — Typo — */
  --font-display: "Zodiak", Georgia, serif;     /* titres : serif contemporain */
  --font-body:    "General Sans", system-ui, -apple-system, sans-serif;

  /* — Échelle — */
  --text-xs:   clamp(.75rem, .72rem + .15vw, .8125rem);
  --text-sm:   clamp(.875rem, .84rem + .2vw, .9375rem);
  --text-base: clamp(1rem, .96rem + .2vw, 1.0625rem);
  --text-lg:   clamp(1.125rem, 1.05rem + .4vw, 1.375rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  --text-2xl:  clamp(2.25rem, 1.6rem + 3vw, 3.5rem);
  --text-hero: clamp(2.75rem, 1.6rem + 6vw, 6rem);

  /* — Espace — */
  --space-2: .5rem; --space-3: .75rem; --space-4: 1rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-12: 3rem; --space-16: 4rem; --space-24: 6rem;
  --space-32: 8rem;

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px -24px rgba(14,15,18,.5);
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset léger ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--klein);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .85rem 1.6rem;
  font-size: var(--text-sm); font-weight: 600; letter-spacing: .02em;
  border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--klein); color: #fff; }
.btn--solid:hover { background: var(--klein-deep); }
.btn--line { border-color: currentColor; color: #fff; }
.btn--line:hover { background: #fff; color: var(--ink); }
.btn--ghost { border-color: var(--line); color: var(--ink); padding: .6rem 1.25rem; }
.btn--ghost:hover { background: var(--klein); color: #fff; border-color: var(--klein); }
.btn--block { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,246,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.brand__mark { color: var(--ink); flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -.01em; }
.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav a { font-size: var(--text-sm); font-weight: 500; color: var(--text); position: relative; }
.nav a:not(.btn)::after {
  content:""; position:absolute; left:0; bottom:-4px; width:0; height:1.5px;
  background: var(--klein); transition: width .3s var(--ease);
}
.nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav-mobile { display: none; flex-direction: column; gap: var(--space-4); padding: var(--space-6) 1.25rem var(--space-8); background: var(--paper); border-bottom: 1px solid var(--line); }
.nav-mobile a { font-size: var(--text-lg); font-family: var(--font-display); }

/* ============ SÉLECTEUR DE LANGUE ============ */
.lang { position: relative; }
.lang__toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  background: none; border: 1px solid var(--line); border-radius: 100px;
  padding: .42rem .7rem; color: var(--ink); cursor: pointer;
  font-size: var(--text-sm); font-weight: 500; letter-spacing: .03em;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.lang__toggle:hover { border-color: var(--klein); color: var(--klein); }
.lang__toggle svg { flex: none; opacity: .8; }
.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 168px; padding: .35rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow);
  display: none; flex-direction: column; gap: 1px; z-index: 60;
}
.lang__menu.is-open { display: flex; animation: langIn .22s var(--ease); }
@keyframes langIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.lang__menu button {
  text-align: left; background: none; border: none; cursor: pointer;
  padding: .5rem .7rem; border-radius: 9px; color: var(--text);
  font-size: var(--text-sm); font-weight: 500;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.lang__menu button:hover { background: var(--bone); color: var(--ink); }
.lang__menu button.is-active { color: var(--klein); background: rgba(29,39,168,.07); }
.lang__menu button.is-active::after { content: "\2713"; float: right; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Slideshow hero — fondu enchaîné */
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.6s var(--ease), transform 7s linear;
  will-change: opacity, transform;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: opacity .6s linear; transform: none; }
  .hero__slide.is-active { transform: none; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,15,18,.15) 0%, rgba(14,15,18,.05) 35%, rgba(20,27,120,.55) 100%),
    radial-gradient(120% 80% at 20% 100%, rgba(29,39,168,.5), transparent 60%);
}
.hero__content { padding-block: var(--space-16) var(--space-24); position: relative; }
.hero__content .eyebrow { color: #cdd2ff; }
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--text-hero); line-height: .98; letter-spacing: -.02em;
  margin-bottom: var(--space-6); max-width: 16ch;
}
.hero__title em { font-style: italic; color: #aeb6ff; }
.hero__lede { max-width: 52ch; font-size: var(--text-lg); color: rgba(255,255,255,.92); margin-bottom: var(--space-8); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.55); border-radius: 100px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 4px; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} 100%{opacity:0} }

/* ============ MANIFESTE ============ */
.manifesto { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }
.manifesto__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(var(--space-8), 5vw, var(--space-24)); align-items: center; }
.manifesto__text p { color: var(--text-muted); margin-top: var(--space-4); max-width: 52ch; }
.manifesto__text .section-title { margin-bottom: var(--space-6); }
.facts { list-style: none; padding: 0; margin-top: var(--space-8); display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-6); }
.facts li { display: flex; flex-direction: column; gap: .15rem; border-left: 2px solid var(--klein); padding-left: var(--space-4); }
.facts strong { font-family: var(--font-display); font-size: var(--text-xl); color: var(--ink); line-height: 1; }
.facts span { font-size: var(--text-sm); color: var(--text-muted); }
.manifesto__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.manifesto__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ============ FULL BLEED ============ */
.fullbleed { position: relative; height: clamp(360px, 60vh, 620px); overflow: hidden; display: flex; align-items: center; }
.fullbleed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fullbleed::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(20,27,120,.78), rgba(14,15,18,.35) 70%); }
.fullbleed__quote { position: relative; z-index: 1; color: #fff; }
.fullbleed__quote blockquote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: var(--text-xl); line-height: 1.25; max-width: 22ch; }
.fullbleed__quote cite { display: block; margin-top: var(--space-4); font-style: normal; font-size: var(--text-sm); color: #cdd2ff; letter-spacing: .08em; text-transform: uppercase; }

/* ============ ROOMS ============ */
.rooms { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); background: var(--bone); }
.rooms .eyebrow { margin-top: 0; }
.rooms .section-title { margin-bottom: var(--space-12); }
.rooms__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-8); }
.room-card { background: var(--paper); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card__img { overflow: hidden; }
.room-card__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s var(--ease); }
.room-card:hover .room-card__img img { transform: scale(1.05); }
.room-card__body { padding: var(--space-6); }
.room-card__body h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--text-lg); margin-bottom: var(--space-2); }
.room-card__body p { font-size: var(--text-sm); color: var(--text-muted); }

/* ============ EVIAN ============ */
.evian { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); background: var(--ink); color: var(--text-invert); }
.evian__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(var(--space-8), 5vw, var(--space-24)); align-items: center; }
.evian .eyebrow { color: #aeb6ff; }
.evian .section-title { color: #fff; margin-bottom: var(--space-8); }
.evian__img { border-radius: var(--radius); overflow: hidden; }
.evian__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.seasons { display: grid; gap: var(--space-6); }
.season { padding-bottom: var(--space-6); border-bottom: 1px solid var(--line-light); }
.season:last-child { border-bottom: none; padding-bottom: 0; }
.season h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--text-lg); margin-bottom: var(--space-2); color: #fff; }
.season p { font-size: var(--text-sm); color: rgba(242,241,236,.72); max-width: 56ch; }

/* ============ GALLERY ============ */
.gallery { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }
.gallery .section-title { margin-bottom: var(--space-12); }
.gallery__grid {
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: var(--space-4);
}
.gallery__item { overflow: hidden; border-radius: var(--radius-sm); position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============ BOOKING ============ */
.booking {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  color: #fff;
  position: relative;
  background: var(--klein) url('/assets/img/booking-bg.jpg') center 40% / cover no-repeat;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 55, 0.60);
  pointer-events: none;
}
.booking > .container { position: relative; z-index: 1; }
.booking .eyebrow { color: #cdd2ff; }
.booking .section-title { color: #fff; }
.booking__header { text-align: center; margin-bottom: var(--space-10); }

/* Grille 2×2 */
.booking__4grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.booking__block {
  background: var(--paper);
  color: var(--text);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow);
  display: grid;
  gap: var(--space-4);
  align-content: start;
}
.bk-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--klein);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(29,39,168,.18);
  margin-bottom: var(--space-1);
}
/* Labels et inputs à l'intérieur des blocs */
.booking__block label { display: grid; gap: .35rem; font-size: var(--text-sm); font-weight: 600; color: var(--ink); }
.booking__block input:not([type=radio]), .booking__block select, .booking__block textarea {
  font: inherit; font-weight: 400; padding: .7rem .85rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.booking__block input:focus, .booking__block select:focus, .booking__block textarea:focus {
  outline: none; border-color: var(--klein); box-shadow: 0 0 0 3px rgba(29,39,168,.12);
}
/* Méthodes de paiement */
.payment-methods { display: flex; flex-direction: column; gap: var(--space-2); }
.payment-methods__label { font-size: var(--text-xs); font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.payment-badges { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.pay-badge { padding: .22rem .55rem; border: 1px solid var(--line); border-radius: 4px; font-size: .72rem; font-weight: 600; color: var(--text-muted); background: #fff; }

/* Calendrier */
.availability__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }
.cal-title { font-family: var(--font-display); font-weight: 500; font-size: var(--text-lg); text-transform: capitalize; }
.cal-nav { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 1.25rem; line-height: 1; transition: .25s var(--ease); }
.cal-nav:hover { background: var(--klein); color: #fff; border-color: var(--klein); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 6px; }
.cal-weekdays span { text-align: center; font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; min-height: 230px; }
.cal-loading { grid-column: 1/-1; align-self: center; text-align: center; color: var(--text-muted); font-size: var(--text-sm); }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: var(--text-sm); border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line); color: var(--ink); }
.cal-day.is-empty { background: transparent; border: none; }
.cal-day.is-busy { background: repeating-linear-gradient(45deg, #ececea, #ececea 4px, #e3e3e1 4px, #e3e3e1 8px); color: var(--text-muted); text-decoration: line-through; }
.cal-day.is-past { opacity: .35; }
.cal-day.is-free { cursor: pointer; }
.cal-day.is-free:hover { background: rgba(29,39,168,.1); border-color: rgba(29,39,168,.3); }
.cal-day.is-sel-start,
.cal-day.is-sel-end { background: var(--klein); color: #fff; border-color: var(--klein); font-weight: 600; }
.cal-day.is-sel-end-preview { background: rgba(29,39,168,.25); border-color: rgba(29,39,168,.4); }
.cal-day.is-in-range { background: rgba(29,39,168,.08); border-color: rgba(29,39,168,.15); border-radius: 2px; }
.cal-day.is-range-blocked { background: rgba(179,38,30,.07); border-color: rgba(179,38,30,.2); color: #b3261e; cursor: not-allowed; }
.cal-legend { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-4); font-size: var(--text-xs); color: var(--text-muted); }
.cal-hint { font-size: var(--text-xs); color: var(--text-muted); margin-top: var(--space-2); min-height: 1.4em; text-align: center; font-style: italic; }
.dot { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; }
.dot--free { background: #fff; border: 1px solid var(--line); }
.dot--busy { background: repeating-linear-gradient(45deg, #ececea, #ececea 3px, #e3e3e1 3px, #e3e3e1 6px); }

/* Formulaire */
.booking-form { margin-top: var(--space-8); display: grid; gap: var(--space-4); }
.booking-form label { display: grid; gap: .35rem; font-size: var(--text-sm); font-weight: 600; color: var(--ink); }
.booking-form input, .booking-form select, .booking-form textarea {
  font: inherit; font-weight: 400; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none; border-color: var(--klein); box-shadow: 0 0 0 3px rgba(29,39,168,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.booking-form__coupon { margin-bottom: var(--space-4); }
.coupon-row { display: flex; gap: var(--space-2); margin-top: var(--space-1); }
.coupon-row input { flex: 1; }
.coupon-feedback { font-size: var(--text-xs); min-height: 1.2em; margin-top: var(--space-1); }
.coupon-feedback.is-ok  { color: var(--klein-deep); }
.coupon-feedback.is-err { color: #b3261e; }
.booking-form__currency { display: flex; gap: var(--space-6); margin-bottom: var(--space-1); }
.currency-opt { display: inline-flex; align-items: center; gap: .4rem; cursor: pointer; font-size: var(--text-sm); font-weight: 500; }
.currency-opt input[type="radio"] { accent-color: var(--klein); width: 15px; height: 15px; cursor: pointer; }
.booking-form__actions { display: flex; flex-direction: column; gap: var(--space-3); }
.booking-form__note { font-size: var(--text-sm); min-height: 1.2em; }
.booking-form__note.is-ok { color: var(--klein-deep); }
.booking-form__note.is-err { color: #b3261e; }
.booking__airbnb { text-align: center; margin-top: var(--space-6); }
.btn--airbnb { font-size: var(--text-xs); color: #aaa; text-decoration: none; letter-spacing: .08em; text-transform: uppercase; opacity: .55; transition: opacity .2s; }
.btn--airbnb:hover { opacity: 1; color: #ff385c; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: var(--text-invert); padding-block: var(--space-16) var(--space-8); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--space-8); align-items: start; }
.footer__brand .brand__name { font-size: 1.3rem; }
.footer__brand p { color: rgba(242,241,236,.6); font-size: var(--text-sm); margin-top: var(--space-2); }
.footer__nav { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__nav a { font-size: var(--text-sm); color: rgba(242,241,236,.8); }
.footer__nav a:hover { color: #fff; }
.footer__legal { font-size: var(--text-xs); color: rgba(242,241,236,.55); display: grid; gap: var(--space-2); }
.footer__legal a { text-decoration: underline; text-underline-offset: 2px; }

/* ============ LIGHTBOX ============ */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(10,11,14,.94); display: flex; align-items: center; justify-content: center; padding: 4vw; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-sm); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff; font-size: 1.6rem; line-height: 1; }
.lightbox__close:hover { background: rgba(255,255,255,.12); }

/* ============ REVEAL (animation au scroll) ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .manifesto__grid, .evian__grid { grid-template-columns: 1fr; }
  .booking__4grid { grid-template-columns: 1fr; }
  .evian__img { order: -1; }
  .rooms__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .lang { margin-left: auto; }
  .nav-mobile.is-open { display: flex; }
  .rooms__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item--lg { grid-column: span 2; grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
