:root {
  /* Default theme = Sérénité */
  --accent: #517a5a;
  --accent-dark: #3f5f47;
  --ink: #1f2922;
  --muted: #6b756f;
  --line: #e6e8e6;
  --bg: #ffffff;
  --soft: #f5f6f4;
  --card-bg: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.96);
  --on-ink: #ffffff;
  --on-accent: #ffffff;

  /* Brand-fixed (don't theme these — they're third-party identities) */
  --airbnb: #ff385c;
  --booking: #003580;

  --radius: 14px;
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.10);
  --max: 1200px;
}

/* ---- Theme: Classique (Parisian cream + gold) ---- */
:root[data-theme="classique"] {
  --accent: #b8924a;
  --accent-dark: #957437;
  --ink: #2c2622;
  --muted: #7d7268;
  --line: #ece4d6;
  --bg: #fbf8f3;
  --soft: #f3ede2;
  --card-bg: #ffffff;
  --header-bg: rgba(251, 248, 243, 0.96);
}

/* ---- Theme: Azur (Mediterranean blue) ---- */
:root[data-theme="azur"] {
  --accent: #2563a3;
  --accent-dark: #1c4a7c;
  --ink: #1a2a3a;
  --muted: #5a6e80;
  --line: #dde6ee;
  --bg: #ffffff;
  --soft: #f0f4f8;
  --card-bg: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.96);
}

/* ---- Theme: Nuit (warm dark mode) ---- */
:root[data-theme="nuit"] {
  --accent: #d4a574;
  --accent-dark: #b88753;
  --ink: #f0eadb;
  --muted: #a8a294;
  --line: #2a2f33;
  --bg: #15191c;
  --soft: #1d2226;
  --card-bg: #1d2226;
  --header-bg: rgba(21, 25, 28, 0.92);
  --on-ink: #15191c;
  --on-accent: #15191c;
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.40);
  --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.60);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background-color .25s ease, color .25s ease;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.center { text-align: center; }
.dot { color: var(--muted); margin: 0 8px; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; letter-spacing: -0.01em; }
.hero h1, .section-h, .section-head h2 { font-family: 'Playfair Display', Georgia, serif; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0;
}
.brand svg { width: 28px; height: 28px; }
.site-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}
.site-nav a {
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s;
}
.site-nav a:hover { border-bottom-color: var(--ink); }
.site-nav a.cta-link {
  background: var(--accent);
  color: var(--on-accent);
  padding: 10px 20px;
  border-radius: 999px;
  border-bottom: none;
}
.site-nav a.cta-link:hover { background: var(--accent-dark); border-bottom: none; }
.theme-picker {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 0 4px;
}
.theme-picker button {
  border: 0;
  background: none;
  padding: 3px;
  border-radius: 50%;
  line-height: 0;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.theme-picker button:hover { transform: scale(1.08); }
.theme-picker button.active { box-shadow: 0 0 0 2px var(--ink); }
.theme-picker .swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.theme-picker .swatch.serenity { background: #517a5a; }
.theme-picker .swatch.classique { background: #b8924a; }
.theme-picker .swatch.azur { background: #2563a3; }
.theme-picker .swatch.nuit { background: #15191c; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  background: none;
  border: 0;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}
.lang-switch button.active { background: var(--ink); color: var(--on-ink); }

/* Hero */
.hero { padding: 44px 24px 12px; }
.hero h1 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  margin: 0 0 14px;
  line-height: 1.15;
}
.hero-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 0.9375rem;
}
.rating { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.rating svg { width: 14px; height: 14px; color: var(--ink); }
.reviews { text-decoration: underline; }
.quick-facts {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  flex-wrap: wrap;
}
.quick-facts li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  font-size: 0.9375rem;
}
.quick-facts strong { font-size: 1.05rem; }
.quick-facts li::after {
  content: '·';
  color: var(--muted);
  margin-left: 14px;
}
.quick-facts li:last-child::after { content: ''; margin: 0; }

/* Gallery */
.gallery-section { padding: 16px 0 8px; }
.gallery-section .container { position: relative; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-grid .photo {
  overflow: hidden;
  cursor: pointer;
  background: var(--soft);
}
.gallery-grid .photo picture,
.gallery-grid .photo img {
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-grid .photo img {
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid .photo:hover img { transform: scale(1.04); }
.gallery-grid .photo:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.show-all {
  position: absolute;
  bottom: 20px;
  right: 36px;
  background: var(--card-bg);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 5;
}

/* About */
.about { padding: 44px 24px 32px; max-width: 920px; }
.section-head h2 {
  font-size: 1.625rem;
  margin: 0 0 6px;
}
.section-head.center { text-align: center; }
.section-h {
  font-size: 1.5rem;
  margin: 44px 0 16px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 32px 0 0;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--accent);
  margin-top: 2px;
}
.feature h3 {
  margin: 0 0 4px;
  font-size: 1.0625rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}
.about-text { padding-top: 28px; font-size: 1rem; }
.about-text p { margin: 0 0 14px; }

/* Markdown-rendered prose blocks */
.prose p { margin: 0 0 12px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { margin: 0 0 12px; padding-left: 22px; }
.prose li { margin: 4px 0; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--accent-dark); }
.prose strong { font-weight: 600; }
.prose em { font-style: italic; }
.prose code {
  background: var(--soft);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Rooms */
.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.room {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.room h4 { margin: 0 0 6px; font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.room p { margin: 0; color: var(--muted); font-size: 0.9375rem; }

/* Amenities */
.amenities-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}
.amenities-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}
.amenities-grid li svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--ink); }

/* Reviews */
.reviews-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  align-items: center;
}
.rs-overall { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.rs-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.rs-big svg { width: 28px; height: 28px; color: var(--accent); }
.rs-rating { letter-spacing: -0.02em; }
.rs-overall-text { display: flex; flex-direction: column; }
.rs-overall-text strong { font-size: 1rem; font-weight: 600; }
.rs-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
}
.rs-cat {
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.rs-cat-label { color: var(--muted); }
.rs-cat-bar {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: block;
}
.rs-cat-bar span {
  display: block;
  height: 100%;
  background: var(--ink);
  border-radius: 2px;
}
.rs-cat-score {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.rs-fav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--soft);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  width: fit-content;
}

/* Review tags */
.reviews-tags { margin: 0 0 28px; }
.rs-tags-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.rs-tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rs-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.875rem;
}
.rs-tag-name { font-weight: 500; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}
.review-card header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
}
.rc-author { font-weight: 600; font-size: 0.9375rem; }
.rc-stars { color: var(--accent); font-size: 0.8125rem; letter-spacing: 1px; margin-bottom: 8px; }
.rc-text { margin: 0; font-size: 0.9375rem; color: var(--ink); }
.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.text-link:hover { color: var(--accent-dark); }

/* House rules */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.rule-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--card-bg);
}
.rule-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.rule-card .prose p,
.rule-card .prose ul { font-size: 0.9375rem; }

/* WhatsApp button */
.direct-btn.whatsapp { background: #25d366; color: #fff; }
.direct-btn.whatsapp:hover { background: #1da851; }

/* Photo overlay tabs */
.po-tabs {
  display: flex;
  gap: 6px;
  padding: 12px 24px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 65px;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(10px);
  z-index: 1;
}
.po-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--card-bg);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.po-tab:hover { border-color: var(--ink); }
.po-tab.active { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.po-tab-count {
  font-size: 0.6875rem;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}
.po-tab.active .po-tab-count { opacity: 0.9; }

/* Map */
.map-embed {
  margin: 16px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Booking section */
.book-section {
  background: var(--soft);
  padding: 64px 0 72px;
  margin-top: 56px;
}
.book-section .section-head { margin-bottom: 32px; }
.book-section .section-head h2 { font-size: 1.875rem; }
.book-section .section-head p { max-width: 600px; margin: 8px auto 0; }

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 36px;
}
.platform {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.platform:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.platform.airbnb:hover { border-color: var(--airbnb); }
.platform.booking:hover { border-color: var(--booking); }
.platform.google:hover { border-color: #4285f4; }
.platform-logo {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex: 0 0 52px;
}
.platform.airbnb .platform-logo { background: var(--airbnb); color: white; }
.platform.booking .platform-logo { background: var(--booking); color: white; }
.platform.google .platform-logo { background: #4285f4; color: white; }
.platform-logo svg { width: 30px; height: 30px; }
.platform-text { flex: 1; min-width: 0; }
.platform-cta {
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 2px;
  color: var(--ink);
}
.platform-sub {
  color: var(--muted);
  font-size: 0.875rem;
}
.platform-arrow {
  width: 22px;
  height: 22px;
  color: var(--muted);
  flex: 0 0 22px;
  transition: transform .15s;
}
.platform:hover .platform-arrow { transform: translateX(4px); color: var(--ink); }

.direct-contact {
  max-width: 880px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.direct-contact h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.direct-contact p { margin: 0 0 22px; }
.direct-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.direct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--on-ink);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background .15s, transform .15s, filter .15s;
  text-align: left;
}
.direct-btn:hover { filter: brightness(0.92); transform: translateY(-1px); }
.direct-btn.call { background: var(--accent); color: var(--on-accent); }
.direct-btn.call:hover { background: var(--accent-dark); }
.direct-btn svg { width: 22px; height: 22px; flex: 0 0 22px; }
.direct-btn span span { display: block; line-height: 1.2; }
.direct-btn-label { font-weight: 600; font-size: 0.9375rem; }
.direct-btn-num { font-size: 0.8125rem; opacity: 0.8; font-weight: 400; }

/* Footer */
.site-footer { padding: 28px 0; border-top: 1px solid var(--line); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-inner p { margin: 0; }

/* Photo overlay (all photos grid) */
.photo-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  overflow-y: auto;
}
.photo-overlay[hidden] { display: none; }
.po-header {
  position: sticky;
  top: 0;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  z-index: 2;
}
.po-close {
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .15s;
}
.po-close:hover { background: var(--soft); }
.po-close svg { width: 18px; height: 18px; }
.po-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  margin: 0;
  color: var(--ink);
}
.po-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.po-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background: var(--soft);
  cursor: pointer;
}
.po-photo picture,
.po-photo img {
  width: 100%;
  height: 100%;
  display: block;
}
.po-photo img {
  object-fit: cover;
  transition: transform .4s ease;
}
.po-photo:hover img { transform: scale(1.04); }
.po-photo.featured::after {
  content: '★';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 50%;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.po-photo-num {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, 0.25); }
.lb-close { top: 20px; right: 20px; font-size: 1.6rem; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.875rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 12px;
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 900px) {
  .platforms { grid-template-columns: 1fr; }
  .direct-buttons { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .reviews-summary { grid-template-columns: 1fr; gap: 16px; }
  .rs-cats { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-grid .photo:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .gallery-grid .photo:nth-child(n+6) { display: none; }
}
@media (max-width: 640px) {
  .site-nav a:not(.cta-link) { display: none; }
  .header-inner { gap: 12px; }
  .brand span { font-size: 1.0625rem; }
  .theme-picker { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-grid .photo:nth-child(1) { grid-column: 1; grid-row: 1; }
  .show-all { right: 20px; bottom: 12px; }
  .book-section { padding: 44px 0 52px; margin-top: 36px; }
  .direct-contact { padding: 24px 18px; }
}
