:root {
  --ink: #17130f;
  --ink-2: #3a322b;
  --muted: #7b7066;
  --line: rgba(23, 19, 15, 0.12);
  --line-2: rgba(23, 19, 15, 0.2);
  --paper: #fbf8f3;
  --cream: #f4eee4;
  --sand: #e8ddcc;
  --clay: #b76e45;
  --brass: #a4804f;
  --brass-2: #8a6639;
  --night: #100d0b;
  --night-2: #1b1713;
  --on-night: #f3ece1;
  --on-night-muted: rgba(243, 236, 225, 0.62);
  --serif: "Playfair Display", Georgia, serif;
  --head: "Manrope", "Readex Pro", system-ui, sans-serif;
  --sans: "Manrope", "Readex Pro", system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --gutter: clamp(16px, 4vw, 56px);
  --max: 1360px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1px 2px rgba(23, 19, 15, 0.06), 0 12px 40px -12px rgba(23, 19, 15, 0.22);
  color-scheme: light;
}


*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--sand); }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass-2);
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; font-size: 14px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.display {
  font-family: var(--head); font-weight: 400;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.06; letter-spacing: -0.02em;
  margin: 18px 0 0;
}
.h2 {
  font-family: var(--head); font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px); line-height: 1.12; letter-spacing: -0.02em;
  margin: 16px 0 0; text-wrap: balance;
}
html[dir="rtl"] .display, html[dir="rtl"] .h2 { line-height: 1.3; letter-spacing: 0; }
.h2 em, .display em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: var(--brass-2); }
html[dir="rtl"] .h2 em, html[dir="rtl"] .display em { font-family: var(--head); font-style: normal; }
.lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-2); max-width: 56ch; margin: 18px 0 0; }
.muted { color: var(--muted); }

/* ---------- najdi crenellation motif ---------- */
.najdi {
  height: 12px; width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='12' viewBox='0 0 24 12'%3E%3Cpath d='M0 12 L6 4 L12 12 Z M12 12 L18 4 L24 12 Z' fill='none' stroke='%23a4804f' stroke-width='1'/%3E%3Cpath d='M4 12 L6 9 L8 12 M16 12 L18 9 L20 12' fill='none' stroke='%23a4804f' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x; background-size: 24px 12px; opacity: 0.55;
}
.najdi.on-night { filter: brightness(1.5); opacity: 0.4; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding-inline: 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:active { transform: scale(0.98); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--brass-2); }
.btn-brass { background: var(--brass); color: #fff; }
.btn-brass:hover { background: var(--brass-2); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--sand); }
.btn-line { border: 1px solid var(--line-2); }
.btn-line:hover { border-color: var(--ink); }
.btn-ghost-light { border: 1px solid rgba(255, 255, 255, 0.4); color: #fff; }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn svg { width: 18px; height: 18px; flex: none; }
html[dir="rtl"] .btn svg.dir { transform: scaleX(-1); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background 0.4s var(--ease), color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
  color: #fff;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav.solid { background: rgba(251, 248, 243, 0.9); backdrop-filter: saturate(1.4) blur(16px); -webkit-backdrop-filter: saturate(1.4) blur(16px); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.nav.hide { transform: translateY(-100%); }
.brand { display: flex; align-items: baseline; gap: 10px; line-height: 1; }
.brand-word { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: 0.16em; }
.brand-tag { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.75; }
.brand-mark { width: 22px; height: 22px; align-self: center; }
.nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 500; }
.nav-links a { opacity: 0.86; transition: opacity 0.2s; position: relative; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after { content: ""; position: absolute; inset-inline: 0; bottom: -6px; height: 1px; background: currentColor; transform: scaleX(0); transition: transform 0.4s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid currentColor; font-weight: 600; font-size: 14px; opacity: 0.85; }
.lang-btn:hover { opacity: 1; }
.nav .btn { height: 42px; padding-inline: 20px; font-size: 14px; }
.nav:not(.solid) .btn-dark { background: #fff; color: var(--ink); }
.menu-btn { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid currentColor; align-items: center; justify-content: center; }
.menu-btn svg { width: 18px; height: 18px; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--night); color: var(--on-night);
  display: flex; flex-direction: column; padding: 24px var(--gutter);
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu .top { display: flex; justify-content: space-between; align-items: center; height: 52px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.mobile-menu nav a { font-family: var(--head); font-weight: 400; letter-spacing: -0.015em; font-size: 34px; line-height: 1.3; }
.mobile-menu .btn { margin-top: auto; }

@media (max-width: 1060px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav .btn.hide-sm { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; height: 100svh; min-height: 640px; color: #fff; overflow: hidden; background: var(--night); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease; }
.hero-slide.on { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-slide.on img { animation: kenburns 9s linear forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.55) 0%, rgba(10, 8, 6, 0) 22%),
    linear-gradient(0deg, rgba(10, 8, 6, 0.86) 0%, rgba(10, 8, 6, 0.35) 45%, rgba(10, 8, 6, 0) 70%);
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(28px, 5vh, 56px); }
.hero .eyebrow { color: #e7cfa6; }
.hero .display { max-width: 13ch; font-size: clamp(42px, 6.2vw, 88px); }
.hero .display em { color: #e7cfa6; }
.hero-sub { max-width: 54ch; color: rgba(255, 255, 255, 0.84); font-size: clamp(15px, 1.3vw, 18px); margin: 22px 0 0; }
.hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-top: 34px; }
.hero-caption { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.8); text-align: end; min-width: 220px; }
.hero-caption a:hover { color: #fff; }
.hero-caption strong { display: block; color: #fff; font-weight: 600; font-size: 14px; }
.hero-dots { display: flex; gap: 6px; }
.hero-dots button { width: 28px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, 0.3); overflow: hidden; position: relative; }
.hero-dots button span { position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
html[dir="rtl"] .hero-dots button span { transform-origin: right; }
.hero-dots button.on span { animation: dot 7s linear forwards; }
.hero-dots button.done span { transform: scaleX(1); }
@keyframes dot { to { transform: scaleX(1); } }

.search {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: center;
  background: rgba(251, 248, 243, 0.96); color: var(--ink); border-radius: 999px; padding: 8px; gap: 0;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5); max-width: 860px; flex: 1;
}
.search label { display: flex; flex-direction: column; padding: 8px 24px; border-inline-end: 1px solid var(--line); cursor: pointer; min-width: 0; }
.search label:nth-child(3) { border: 0; }
.search .lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
html[dir="rtl"] .search .lbl { letter-spacing: 0; font-size: 12px; }
.search select { border: 0; background: transparent; font-weight: 600; font-size: 15px; padding: 2px 0; appearance: none; cursor: pointer; width: 100%; text-overflow: ellipsis; }
.search select:focus { outline: none; }
.search .btn { height: 56px; }

@media (max-width: 900px) {
  .hero-row { flex-direction: column; align-items: stretch; }
  .hero-caption { align-items: flex-start; text-align: start; min-width: 0; flex-direction: row-reverse; justify-content: space-between; align-items: center; }
  .search { grid-template-columns: 1fr 1fr; border-radius: 22px; padding: 6px; }
  .search label { padding: 10px 14px; border: 0; }
  .search label:nth-child(1) { border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .search label:nth-child(2) { border-bottom: 1px solid var(--line); }
  .search label:nth-child(3) { grid-column: 1 / -1; }
  .search .btn { grid-column: 1 / -1; height: 50px; border-radius: 16px; }
}

/* ---------- stats ---------- */
.stats { border-bottom: 1px solid var(--line); background: var(--paper); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { padding: 34px 20px; border-inline-start: 1px solid var(--line); }
.stat:first-child { border: 0; padding-inline-start: 0; }
.stat b { display: block; font-family: var(--head); font-weight: 400; letter-spacing: -0.015em; font-size: clamp(28px, 2.8vw, 40px); line-height: 1; }
.stat b small { font-size: 0.5em; color: var(--brass); margin-inline-start: 4px; }
.stat span { display: block; margin-top: 10px; font-size: 13px; color: var(--muted); }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 22px 16px; border-top: 1px solid var(--line); }
  .stat:nth-child(odd) { border-inline-start: 0; padding-inline-start: 0; }
  .stat:first-child, .stat:nth-child(2) { border-top: 0; }
  .stat:last-child { grid-column: 1 / -1; }
}

/* ---------- sections ---------- */
section { position: relative; }
.sec { padding-block: clamp(80px, 11vw, 150px); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: clamp(36px, 5vw, 60px); flex-wrap: wrap; }
.sec-head .lede { margin-top: 12px; }
.night { background: var(--night); color: var(--on-night); }
.night .eyebrow { color: #d9bb8a; }
.night .h2 em { color: #d9bb8a; }
.night .lede, .night .muted { color: var(--on-night-muted); }
.cream { background: var(--cream); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide.on img { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- collections bento ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 240px; gap: 14px; }
.tile { position: relative; border-radius: var(--radius); overflow: hidden; color: #fff; isolation: isolate; background: var(--night); text-align: start; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); z-index: -2; }
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10, 8, 6, 0.82), rgba(10, 8, 6, 0.05) 60%); }
.tile:hover img { transform: scale(1.05); }
.tile-body { position: absolute; inset: auto 0 0 0; padding: 24px; display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.tile h3 { font-family: var(--head); font-weight: 400; letter-spacing: -0.015em; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.05; margin: 0; }
.tile p { margin: 8px 0 0; font-size: 14px; color: rgba(255, 255, 255, 0.78); max-width: 32ch; }
.tile .count { flex: none; font-size: 12px; font-weight: 600; padding: 7px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.tile.t1 { grid-column: span 7; grid-row: span 2; }
.tile.t1 h3 { font-size: clamp(26px, 2.6vw, 38px); }
.tile.t2 { grid-column: span 5; }
.tile.t3 { grid-column: span 5; }
.tile.t4 { grid-column: span 4; }
.tile.t5 { grid-column: span 4; }
.tile.t6 { grid-column: span 4; }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; gap: 10px; }
  .tile.t1 { grid-column: 1 / -1; grid-row: span 2; }
  .tile.t2, .tile.t3, .tile.t4, .tile.t5, .tile.t6 { grid-column: span 1; }
  .tile p { display: none; }
  .tile-body { padding: 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .tile h3 { font-size: 22px; }
}

/* ---------- spotlight ---------- */
.spot { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.spot-media { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: clamp(420px, 44vw, 620px); }
.spot-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.spot-media img:first-child { grid-row: span 2; }
.spot-rating { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.spot-rating b { font-family: var(--head); font-weight: 400; letter-spacing: -0.015em; font-size: 48px; line-height: 1; }
.spot-rating span { font-size: 14px; color: var(--muted); line-height: 1.4; }
.stars { color: var(--brass); letter-spacing: 2px; }
.quote { margin: 30px 0 0; padding-inline-start: 22px; border-inline-start: 2px solid var(--brass); font-family: var(--serif); font-style: italic; font-size: clamp(19px, 1.6vw, 23px); line-height: 1.4; }
.quote cite { display: block; margin-top: 12px; font-family: var(--sans); font-style: normal; font-size: 13px; color: var(--muted); }
.spot .chips { margin-top: 24px; }
.spot .btn { margin-top: 32px; }
@media (max-width: 900px) {
  .spot { grid-template-columns: 1fr; }
  .spot-media { height: 380px; }
}

/* ---------- heritage band ---------- */
.band { position: relative; min-height: 88vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.band > img { position: absolute; inset: 0; width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 12, 6, 0.82) 0%, rgba(20, 12, 6, 0.35) 55%, rgba(20, 12, 6, 0.1) 100%); }
html[dir="rtl"] .band::after { transform: scaleX(-1); }
.band .wrap { position: relative; z-index: 2; padding-block: clamp(64px, 10vw, 120px); }
.band .eyebrow { color: #e7cfa6; }
.band .h2 { max-width: 14ch; }
.band .h2 em { color: #e7cfa6; }
.band p { max-width: 50ch; color: rgba(255, 255, 255, 0.85); margin: 22px 0 32px; font-size: 17px; }

/* ---------- homes / filters ---------- */
.toolbar {
  position: sticky; top: 76px; z-index: 20; background: var(--paper);
  transition: top 0.4s var(--ease);
  border-block: 1px solid var(--line); margin-bottom: 30px;
}
body.nav-hidden .toolbar { top: 0; }
.toolbar-inner { display: flex; align-items: center; gap: 14px; padding-block: 12px; }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; mask-image: linear-gradient(90deg, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent); }
html[dir="rtl"] .chips { mask-image: linear-gradient(270deg, #000 92%, transparent); -webkit-mask-image: linear-gradient(270deg, #000 92%, transparent); }
.spot .chips, .stay .chips { mask-image: none; -webkit-mask-image: none; flex-wrap: wrap; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; display: inline-flex; align-items: center; gap: 8px; height: 38px; padding-inline: 16px;
  border-radius: 999px; border: 1px solid var(--line-2); font-size: 14px; font-weight: 500; white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip small { font-size: 12px; opacity: 0.6; }
span.chip { cursor: default; background: var(--cream); border-color: transparent; height: 34px; font-size: 13px; }
.cream span.chip { background: var(--paper); border-color: var(--line); }
.tool-select { height: 38px; border-radius: 999px; border: 1px solid var(--line-2); padding-inline: 14px 34px; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2317130f' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 14px center; appearance: none; font-size: 14px; font-weight: 500; cursor: pointer; max-width: 190px; }
html[dir="rtl"] .tool-select { padding-inline: 14px 34px; background-position: left 14px center; }
.seg { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; padding: 3px; flex: none; }
.seg button { height: 30px; min-width: 34px; padding-inline: 12px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--muted); }
.seg button.on { background: var(--ink); color: var(--paper); }
.toolbar-row2 { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.toolbar-row2 .group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.count-line { font-size: 14px; color: var(--muted); }
.count-line b { color: var(--ink); }
.filter-btn { display: none; }
@media (max-width: 900px) {
  .toolbar-row2 .group.filters { width: 100%; }
  .toolbar-row2 .group.filters .tool-select { flex: 1; max-width: none; }
}

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px 22px; }
.card { position: relative; display: block; }
.card-media { display: block; position: relative; aspect-ratio: 4 / 3.3; border-radius: var(--radius); overflow: hidden; background: var(--sand); }
.card-track { display: flex; height: 100%; transition: transform 0.6s var(--ease); }
.card-track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; }
.card-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, 0.92); display: grid; place-items: center; opacity: 0; transition: opacity 0.25s, transform 0.25s; box-shadow: var(--shadow); }
.card-nav svg { width: 14px; height: 14px; }
.card-nav.prev { inset-inline-start: 12px; }
.card-nav.next { inset-inline-end: 12px; }
html[dir="rtl"] .card-nav svg { transform: scaleX(-1); }
.card:hover .card-nav { opacity: 1; }
.card-nav:hover { transform: translateY(-50%) scale(1.06); }
@media (hover: none) { .card-nav { display: none; } .card-track { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; } .card-track::-webkit-scrollbar { display: none; } .card-track img { scroll-snap-align: start; } }
.card-dots { position: absolute; bottom: 12px; inset-inline: 0; display: flex; justify-content: center; gap: 5px; pointer-events: none; }
.card-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.55); transition: background 0.2s, transform 0.2s; }
.card-dots i.on { background: #fff; transform: scale(1.15); }
.badge { position: absolute; top: 14px; inset-inline-start: 14px; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; background: rgba(251, 248, 243, 0.95); color: var(--ink); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12); }
.badge.new { background: var(--ink); color: var(--paper); }
.heart { position: absolute; top: 10px; inset-inline-end: 10px; width: 40px; height: 40px; display: grid; place-items: center; }
.heart svg { width: 24px; height: 24px; fill: rgba(0, 0, 0, 0.35); stroke: #fff; stroke-width: 2; transition: transform 0.25s var(--ease), fill 0.2s; }
.heart:hover svg { transform: scale(1.1); }
.heart.on svg { fill: var(--clay); }
.card-body { padding-top: 14px; }
.card-top { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.card-area { font-size: 13px; color: var(--muted); font-weight: 500; }
.card-rate { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; flex: none; }
.card-rate svg { width: 13px; height: 13px; fill: var(--ink); }
.card-rate small { color: var(--muted); font-weight: 400; }
.card h3 { margin: 4px 0 0; font-size: 17px; font-weight: 600; line-height: 1.35; }
.card-meta { margin-top: 6px; font-size: 14px; color: var(--muted); }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.card-tags span { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: var(--cream); color: var(--ink-2); font-weight: 500; }
.more-wrap { display: flex; justify-content: center; margin-top: 56px; }
.empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty .btn { margin-top: 18px; }

#homes-map { height: min(76vh, 760px); border-radius: var(--radius); overflow: hidden; background: var(--sand); z-index: 1; }
.leaflet-container { font-family: var(--sans) !important; background: #efe9df !important; }
.leaflet-tile-pane { filter: grayscale(1) sepia(0.18) contrast(0.88) brightness(1.06); }
.pin { background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 999px; white-space: nowrap; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); transform: translate(-50%, -50%); display: inline-block; transition: transform 0.2s, background 0.2s; border: 2px solid #fff; }
.pin:hover, .pin.hot { background: var(--brass-2); transform: translate(-50%, -50%) scale(1.12); z-index: 999; }
.pin-wrap { background: none !important; border: 0 !important; }
.leaflet-popup-content-wrapper { border-radius: 16px !important; padding: 0 !important; overflow: hidden; box-shadow: var(--shadow) !important; }
.leaflet-popup-content { margin: 0 !important; width: 260px !important; }
.pop img { width: 100%; height: 160px; object-fit: cover; }
.pop div { padding: 12px 14px 14px; }
.pop b { display: block; font-size: 14px; line-height: 1.35; }
.pop span { font-size: 13px; color: var(--muted); }

/* ---------- standard ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(243, 236, 225, 0.14); }
.pillar { padding-block: 40px 44px; padding-inline: 0 36px; border-bottom: 1px solid rgba(243, 236, 225, 0.14); }
.pillar:not(:nth-child(3n + 1)) { padding-inline-start: 36px; border-inline-start: 1px solid rgba(243, 236, 225, 0.14); }
.pillar svg { width: 34px; height: 34px; stroke: #d9bb8a; fill: none; stroke-width: 1.3; }
.pillar h3 { font-family: var(--head); font-weight: 400; letter-spacing: -0.02em; font-size: 20px; margin: 22px 0 8px; line-height: 1.15; }
.pillar p { margin: 0; color: var(--on-night-muted); font-size: 15px; max-width: 36ch; }
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 28px 0 !important; border-inline-start: 0 !important; }
}

/* ---------- areas ---------- */
.areas { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(24px, 4vw, 60px); align-items: stretch; }
.area-list { display: flex; flex-direction: column; }
.area-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; padding: 18px 0; border-bottom: 1px solid var(--line); text-align: start; transition: padding 0.35s var(--ease), color 0.25s; width: 100%; }
.area-row:first-child { border-top: 1px solid var(--line); }
.area-row b { font-family: var(--head); font-weight: 400; letter-spacing: -0.02em; font-size: 20px; line-height: 1.1; }
.area-row .n { align-self: center; font-size: 13px; color: var(--muted); font-weight: 600; }
.area-row .d { grid-column: 1 / -1; font-size: 14px; color: var(--muted); }
.area-row:hover, .area-row.hot { padding-inline-start: 14px; color: var(--brass-2); }
.area-others { margin-top: 18px; font-size: 14px; color: var(--muted); }
.area-others button { text-decoration: underline; text-underline-offset: 3px; color: var(--ink-2); }
#areas-map { min-height: 560px; height: 100%; border-radius: var(--radius); overflow: hidden; background: var(--sand); z-index: 1; }
.dot-pin { width: 14px; height: 14px; border-radius: 50%; background: var(--brass); border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); transform: translate(-50%, -50%); transition: transform 0.25s, background 0.25s; }
.dot-pin.hot { background: var(--ink); transform: translate(-50%, -50%) scale(1.6); }
.dot-pin.dim { opacity: 0.35; }
@media (max-width: 900px) { .areas { grid-template-columns: 1fr; } #areas-map { min-height: 380px; } }

/* ---------- reviews ---------- */
.reviews { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: thin; padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); }
.reviews::-webkit-scrollbar { height: 4px; }
.reviews::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.review { flex: 0 0 min(400px, 84vw); scroll-snap-align: start; background: var(--paper); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); }
.review .stars { font-size: 14px; }
.review p { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.45; margin: 16px 0 24px; flex: 1; }
.review footer { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.review .av { width: 40px; height: 40px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; font-weight: 700; color: var(--brass-2); flex: none; }
.review footer small { display: block; color: var(--muted); font-size: 12px; }
.rev-controls { display: flex; gap: 8px; }
.round { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: background 0.25s, color 0.25s; }
.round:hover { background: var(--ink); color: var(--paper); }
.round svg { width: 18px; height: 18px; }
html[dir="rtl"] .round svg { transform: scaleX(-1); }

/* ---------- long stays ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 90px); align-items: center; }
.split-media { position: relative; height: clamp(420px, 48vw, 640px); }
.split-media img { position: absolute; object-fit: cover; border-radius: var(--radius); }
.split-media img:first-child { inset: 0 18% 14% 0; width: 82%; height: 86%; }
.split-media img:last-child { inset: auto 0 0 auto; width: 46%; height: 48%; border: 8px solid var(--paper); border-radius: calc(var(--radius) + 6px); }
html[dir="rtl"] .split-media img:first-child { inset: 0 0 14% 18%; }
html[dir="rtl"] .split-media img:last-child { inset: auto auto 0 0; }
.ticks { list-style: none; padding: 0; margin: 30px 0 34px; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 14px; align-items: center; font-weight: 500; }
.ticks li::before { content: ""; width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' fill='none' stroke='%238a6639' stroke-width='1.8'/%3E%3C/svg%3E") no-repeat center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split-media { height: 400px; } }

/* ---------- owners ---------- */
.owners { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 28px; margin-top: 44px; counter-reset: s; }
.step { border-top: 1px solid rgba(243, 236, 225, 0.16); padding-top: 18px; counter-increment: s; }
.step::before { content: "0" counter(s); font-family: "Instrument Serif", serif; font-size: 20px; color: #d9bb8a; }
.step h4 { margin: 8px 0 6px; font-size: 17px; font-weight: 600; }
.step p { margin: 0; font-size: 14px; color: var(--on-night-muted); }
.form-card { background: var(--paper); color: var(--ink); border-radius: calc(var(--radius) + 6px); padding: clamp(24px, 3vw, 40px); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6); }
.form-card h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 0 0 22px; line-height: 1.1; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field span { font-size: 12px; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  height: 50px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding-inline: 14px; background: #fff; font-size: 15px; width: 100%; min-width: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { height: 92px; padding-block: 12px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(164, 128, 79, 0.18); }
.form-card .btn { width: 100%; margin-top: 18px; height: 54px; }
.form-err { color: var(--clay); font-size: 13px; margin: 10px 0 0; min-height: 1em; }
@media (max-width: 900px) { .owners { grid-template-columns: 1fr; } .steps { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .fields { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(28px, 5vw, 80px); }
.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 24px 0; font-size: 19px; font-weight: 600; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary i { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1px solid var(--line-2); position: relative; transition: transform 0.4s var(--ease), background 0.3s; }
.qa summary i::before, .qa summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); }
.qa summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.4s var(--ease); }
.qa[open] summary i { background: var(--ink); color: var(--paper); }
.qa[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.qa p { margin: -6px 0 26px; color: var(--ink-2); max-width: 62ch; }
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; } }

/* ---------- final cta ---------- */
.final { position: relative; overflow: hidden; color: #fff; text-align: center; }
.final > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final::after { content: ""; position: absolute; inset: 0; background: rgba(12, 9, 6, 0.6); }
.final .wrap { position: relative; z-index: 2; padding-block: clamp(100px, 14vw, 190px); display: flex; flex-direction: column; align-items: center; }
.final .h2 { max-width: 16ch; font-size: clamp(34px, 4.6vw, 64px); }
.final .h2 em { color: #e7cfa6; }
.final .actions { display: flex; gap: 12px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--night); color: var(--on-night); padding-top: 80px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer .brand-word { font-size: 34px; }
.footer p { color: var(--on-night-muted); font-size: 14px; max-width: 34ch; }
.footer h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #d9bb8a; margin: 8px 0 18px; font-weight: 600; }
html[dir="rtl"] .footer h5 { letter-spacing: 0; font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 15px; }
.footer ul a { color: var(--on-night-muted); transition: color 0.2s; }
.footer ul a:hover { color: var(--on-night); }
.foot-bottom { border-top: 1px solid rgba(243, 236, 225, 0.12); padding-block: 24px 30px; display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: var(--on-night-muted); flex-wrap: wrap; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-grid > :first-child { grid-column: 1 / -1; } }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-bg { position: absolute; inset: 0; background: rgba(12, 9, 6, 0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.modal-box { position: relative; width: min(560px, 100%); max-height: calc(100svh - 32px); overflow: auto; background: var(--paper); border-radius: 24px; padding: clamp(24px, 4vw, 40px); transform: translateY(20px) scale(0.98); transition: transform 0.45s var(--ease); }
.modal.open .modal-box { transform: none; }
.modal-x { position: absolute; top: 16px; inset-inline-end: 16px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); }
.modal-x svg { width: 16px; height: 16px; }
.modal h3 { font-family: var(--head); font-weight: 400; letter-spacing: -0.015em; font-size: 28px; line-height: 1.1; margin: 6px 0 6px; padding-inline-end: 40px; }
.modal .sub { color: var(--muted); margin: 0 0 22px; font-size: 15px; }
.modal .btn { width: 100%; margin-top: 18px; height: 54px; }
.sent { text-align: center; padding: 20px 0 6px; }
.sent .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--cream); margin: 0 auto 18px; display: grid; place-items: center; }
.sent .tick svg { width: 26px; height: 26px; stroke: var(--brass-2); fill: none; stroke-width: 2; }
.sent h3 { padding: 0; }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px); background: var(--ink); color: var(--paper); padding: 12px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; opacity: 0; transition: opacity 0.3s, transform 0.3s var(--ease); z-index: 200; pointer-events: none; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- stay page ---------- */
.stay { padding-top: 100px; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.crumbs a:hover { color: var(--ink); }
.crumbs svg { width: 14px; height: 14px; }
html[dir="rtl"] .crumbs svg { transform: scaleX(-1); }
.stay-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin: 18px 0 26px; flex-wrap: wrap; }
.stay-head h1 { font-family: var(--head); font-weight: 400; letter-spacing: -0.02em; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.05; margin: 0; max-width: 22ch; text-wrap: balance; }
html[dir="rtl"] .stay-head h1 { line-height: 1.3; }
.stay-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; font-size: 15px; color: var(--ink-2); }
.stay-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.stay-meta svg { width: 14px; height: 14px; fill: var(--ink); }
.head-actions { display: flex; gap: 8px; }
.head-actions button { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding-inline: 14px; border-radius: 999px; font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.head-actions button:hover { background: var(--cream); }
.head-actions svg { width: 16px; height: 16px; }
.head-actions .on svg { fill: var(--clay); stroke: var(--clay); }

.mosaic { position: relative; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: clamp(360px, 46vw, 580px); border-radius: var(--radius); overflow: hidden; }
.mosaic button { position: relative; overflow: hidden; background: var(--sand); }
.mosaic button:first-child { grid-row: span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), filter 0.3s; }
.mosaic button:hover img { transform: scale(1.04); filter: brightness(0.92); }
.mosaic .all { position: absolute; bottom: 18px; inset-inline-end: 18px; display: inline-flex; gap: 8px; align-items: center; background: var(--paper); border: 1px solid var(--ink); height: 42px; padding-inline: 16px; border-radius: 12px; font-size: 14px; font-weight: 600; z-index: 2; }
.mosaic .all svg { width: 16px; height: 16px; }
@media (max-width: 760px) {
  .mosaic { grid-template-columns: 1fr; grid-template-rows: 1fr; height: 300px; margin-inline: calc(var(--gutter) * -1); border-radius: 0; }
  .mosaic button:not(:first-child):not(.all) { display: none; }
}

.stay-body { display: grid; grid-template-columns: 1fr 380px; gap: clamp(32px, 6vw, 96px); margin-top: 48px; align-items: start; }
.stay-main > section { padding-block: 40px; border-top: 1px solid var(--line); }
.stay-main > section:first-child { border-top: 0; padding-top: 0; }
.stay-main h2 { font-family: var(--head); font-weight: 400; letter-spacing: -0.015em; font-size: 24px; margin: 0 0 22px; line-height: 1.1; }
.specs { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); }
.spec { padding: 20px 18px; border-inline-start: 1px solid var(--line); }
.spec:first-child { border: 0; }
.spec b { display: block; font-family: var(--head); font-weight: 400; letter-spacing: -0.015em; font-size: 28px; line-height: 1; }
.spec span { font-size: 13px; color: var(--muted); }
@media (max-width: 520px) { .specs { grid-template-columns: 1fr 1fr; } .spec:nth-child(3) { border-inline-start: 0; } .spec:nth-child(n + 3) { border-top: 1px solid var(--line); } }
.hl { display: grid; gap: 22px; margin-top: 34px; }
.hl div { display: grid; grid-template-columns: 28px 1fr; gap: 4px 18px; }
.hl svg { width: 26px; height: 26px; grid-row: span 2; stroke: var(--ink); fill: none; stroke-width: 1.4; }
.hl b { font-weight: 600; }
.hl span { color: var(--muted); font-size: 14px; }
.desc { white-space: pre-line; color: var(--ink-2); font-size: 16px; }
.desc.clamp { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.text-btn { margin-top: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.tour { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px 12px; }
.tour button { text-align: start; }
.tour img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-sm); transition: transform 0.5s var(--ease); }
.tour button:hover img { transform: translateY(-3px); }
.tour b { display: block; font-size: 14px; font-weight: 600; margin-top: 8px; }
.tour span { font-size: 13px; color: var(--muted); }
.amen { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.amen div { display: flex; gap: 14px; align-items: center; font-size: 15px; }
.amen svg { width: 22px; height: 22px; stroke: var(--ink-2); fill: none; stroke-width: 1.4; flex: none; }
#stay-map { height: 380px; border-radius: var(--radius); overflow: hidden; background: var(--sand); z-index: 1; }
.area-pin { width: 120px; height: 120px; border-radius: 50%; background: rgba(164, 128, 79, 0.22); border: 2px solid var(--brass); transform: translate(-50%, -50%); display: grid; place-items: center; }
.area-pin i { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; }
.area-pin svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.6; }
.loc-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.loc-head b { font-size: 17px; }
.rules { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.rules div { display: flex; gap: 12px; align-items: center; }
.rules svg { width: 20px; height: 20px; stroke: var(--ink-2); fill: none; stroke-width: 1.5; flex: none; }
@media (max-width: 520px) { .amen, .rules { grid-template-columns: 1fr; } }

.book { position: sticky; top: 100px; border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); padding: 26px; background: #fff; box-shadow: var(--shadow); }
.book-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.book-top b { font-family: var(--head); font-weight: 400; letter-spacing: -0.02em; font-size: 20px; line-height: 1.1; }
.book-top span { display: inline-flex; gap: 4px; align-items: center; font-size: 14px; font-weight: 600; flex: none; }
.book-top svg { width: 13px; height: 13px; fill: var(--ink); }
.book-pill { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: var(--cream); color: var(--brass-2); }
.book-fields { margin-top: 20px; border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.book-fields label { display: flex; flex-direction: column; padding: 10px 14px; min-width: 0; }
.book-fields label:first-child { border-inline-end: 1px solid var(--line-2); }
.book-fields label.full { grid-column: 1 / -1; border-top: 1px solid var(--line-2); }
.book-fields span { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
html[dir="rtl"] .book-fields span { letter-spacing: 0; font-size: 12px; }
.book-fields input, .book-fields select { border: 0; padding: 2px 0; font-size: 14px; background: transparent; min-width: 0; width: 100%; }
.book-fields input:focus, .book-fields select:focus { outline: none; }
.book .btn { width: 100%; margin-top: 14px; height: 54px; font-size: 16px; }
.book .btn-line { height: 48px; font-size: 15px; }
.book small { display: block; text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; }
.mobile-book { display: none; }
@media (max-width: 980px) {
  .stay-body { grid-template-columns: 1fr; }
  .book-col { display: none; }
  .mobile-book { display: flex; position: fixed; inset: auto 0 0 0; z-index: 40; background: var(--paper); border-top: 1px solid var(--line); padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); align-items: center; justify-content: space-between; gap: 12px; }
  .mobile-book b { display: block; font-size: 15px; }
  .mobile-book span { font-size: 13px; color: var(--muted); }
  .mobile-book .btn { height: 48px; }
  .stay-page .footer { padding-bottom: 80px; }
}

/* ---------- photo tour overlay & lightbox ---------- */
.overlay { position: fixed; inset: 0; z-index: 90; background: var(--paper); overflow-y: auto; transform: translateY(100%); transition: transform 0.6s var(--ease); }
.overlay.open { transform: none; }
.overlay-bar { position: sticky; top: 0; z-index: 2; display: flex; justify-content: space-between; align-items: center; height: 68px; background: rgba(251, 248, 243, 0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.overlay-bar .round { width: 42px; height: 42px; }
.room-nav { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-block: 8px 24px; }
.room-nav::-webkit-scrollbar { display: none; }
.room-block { display: grid; grid-template-columns: 260px 1fr; gap: 28px; padding-block: 32px; border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.room-block h3 { font-family: var(--head); font-weight: 400; letter-spacing: -0.015em; font-size: 24px; margin: 0; position: sticky; top: 90px; align-self: start; line-height: 1.1; }
.room-block h3 small { display: block; font-family: var(--sans); font-size: 13px; color: var(--muted); margin-top: 6px; }
.room-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.room-grid button { overflow: hidden; border-radius: 10px; background: var(--sand); }
.room-grid button.wide { grid-column: span 2; }
.room-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; transition: opacity 0.3s; }
.room-grid button.wide img { aspect-ratio: 16 / 9; }
.room-grid button.tall img { aspect-ratio: 2 / 3; }
.room-grid button:hover img { opacity: 0.9; }
@media (max-width: 760px) { .room-block { grid-template-columns: 1fr; gap: 16px; } .room-block h3 { position: static; } }

.lightbox { position: fixed; inset: 0; z-index: 110; background: #0b0908; color: #fff; display: grid; grid-template-rows: auto 1fr auto; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-top { display: flex; justify-content: space-between; align-items: center; padding: 16px var(--gutter); font-size: 14px; }
.lb-top button { display: inline-flex; gap: 8px; align-items: center; font-weight: 600; height: 40px; padding-inline: 14px; border-radius: 999px; }
.lb-top button:hover { background: rgba(255, 255, 255, 0.1); }
.lb-top svg { width: 16px; height: 16px; }
.lb-stage { position: relative; display: grid; place-items: center; min-height: 0; padding: 0 clamp(8px, 7vw, 110px); }
.lb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; user-select: none; }
.lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.3); display: grid; place-items: center; background: rgba(0, 0, 0, 0.3); }
.lb-arrow:hover { background: rgba(255, 255, 255, 0.14); }
.lb-arrow svg { width: 20px; height: 20px; }
.lb-arrow.prev { inset-inline-start: clamp(8px, 2vw, 30px); }
.lb-arrow.next { inset-inline-end: clamp(8px, 2vw, 30px); }
html[dir="rtl"] .lb-arrow svg { transform: scaleX(-1); }
.lb-cap { text-align: center; padding: 16px; font-size: 14px; color: rgba(255, 255, 255, 0.7); }
@media (max-width: 760px) { .lb-arrow { display: none; } }

body.lock { overflow: hidden; }

.credit a { color: var(--on-night); border-bottom: 1px solid rgba(243, 236, 225, 0.35); transition: border-color 0.2s, color 0.2s; }
.credit a:hover { color: #d9bb8a; border-color: #d9bb8a; }
html[dir="rtl"] .quote, html[dir="rtl"] .review p { font-family: var(--head); font-style: normal; }
