/* ==========================================================================
   Keys — Luxury stays in Riyadh
   ========================================================================== */

:root {
  --ink: #1c1326;
  --ink-2: #4b4254;
  --muted: #7b7285;
  --line: #e6ddd2;
  --line-2: #d9cebf;
  --ivory: #f8f4ee;
  --paper: #fffdf9;
  --sand: #efe6da;
  --brand: #482874;
  --brand-600: #3b1f61;
  --brand-800: #27143f;
  --brand-900: #1a0f2b;
  --brand-50: #f1ecf7;
  --brand-100: #e4dbef;
  --gold: #c39b56;
  --gold-soft: #e8d6b0;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(28, 19, 38, .06), 0 2px 8px rgba(28, 19, 38, .05);
  --shadow: 0 10px 30px -12px rgba(28, 19, 38, .25), 0 2px 6px rgba(28, 19, 38, .06);
  --shadow-lg: 0 30px 60px -20px rgba(26, 15, 43, .45);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 76px;
}

html[lang="ar"] {
  --serif: "Amiri", "Noto Naskh Arabic", serif;
  --sans: "IBM Plex Sans Arabic", "Noto Sans Arabic", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--brand); color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.icon { width: 1.25em; height: 1.25em; flex: none; display: inline-block; vertical-align: -0.2em; }
[dir="rtl"] .flip-rtl { transform: scaleX(-1); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand);
}
html[lang="ar"] .eyebrow { letter-spacing: 0; font-size: .92rem; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
html[lang="ar"] .display, html[lang="ar"] .h2 { font-weight: 700; letter-spacing: 0; line-height: 1.25; }
html[lang="ar"] .display { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.display em, .h2 em { font-style: italic; color: var(--gold); }
html[lang="ar"] .display em, html[lang="ar"] .h2 em { font-style: normal; }
.lede { font-size: clamp(1.02rem, 1.3vw, 1.18rem); color: var(--ink-2); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  height: 52px; padding: 0 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px -8px rgba(72, 40, 116, .6); }
.btn-primary:hover { background: var(--brand-600); box-shadow: 0 12px 28px -10px rgba(72, 40, 116, .75); }
.btn-gold { background: var(--gold); color: var(--brand-900); }
.btn-gold:hover { background: #d2ad6b; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--brand-50); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { border: 1px solid rgba(255, 255, 255, .4); color: #fff; }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { height: 42px; padding: 0 18px; font-size: .88rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; color: var(--brand); }
.link-arrow .icon { transition: transform .25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
[dir="rtl"] .link-arrow:hover .icon { transform: scaleX(-1) translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s, box-shadow .35s, color .35s, backdrop-filter .35s;
  color: var(--ink);
  background: rgba(248, 244, 238, .95);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-transparent { background: transparent; box-shadow: none; color: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header .container { display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.55rem; letter-spacing: -.03em; font-family: "Manrope", sans-serif; }
.brand-mark { width: 30px; height: 36px; }
.brand-mark path, .brand-mark circle { stroke: currentColor; }
.site-header:not(.is-transparent) .brand { color: var(--brand); }
.nav { display: flex; gap: 4px; margin-inline-start: auto; }
.nav a {
  position: relative; padding: 8px 14px; border-radius: 999px; font-size: .93rem; font-weight: 500;
  opacity: .88; transition: opacity .2s, background .2s;
}
.nav a:hover { opacity: 1; background: rgba(127, 110, 150, .12); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  height: 42px; padding: 0 14px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  border: 1px solid currentColor; border-color: rgba(127, 110, 150, .35);
  transition: background .2s, border-color .2s;
}
.lang-toggle:hover { background: rgba(127, 110, 150, .12); }
.site-header.is-transparent .lang-toggle { border-color: rgba(255, 255, 255, .45); }
.site-header.is-transparent .btn-primary { background: #fff; color: var(--brand); box-shadow: none; }
.site-header.is-transparent .btn-primary:hover { background: var(--brand-50); }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; }
.menu-btn .icon { width: 24px; height: 24px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--brand-900); color: #fff;
  display: flex; flex-direction: column; padding: 20px var(--gutter) 32px;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu .top { display: flex; align-items: center; justify-content: space-between; height: 44px; }
.mobile-menu nav { display: flex; flex-direction: column; margin-top: 48px; }
.mobile-menu nav a { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.mobile-menu .bottom { margin-top: auto; display: grid; gap: 12px; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .header-actions { margin-inline-start: auto; }
  .header-actions .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; background: var(--brand-900); overflow: hidden; isolation: isolate;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-slide.active img { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.1); } to { transform: scale(1.0); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 10, 34, .55) 0%, rgba(20, 10, 34, 0) 22%),
    linear-gradient(0deg, rgba(20, 10, 34, .92) 0%, rgba(20, 10, 34, .55) 38%, rgba(20, 10, 34, 0) 70%);
}
.hero .container { padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(28px, 5vh, 56px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: .86rem; font-weight: 500;
}
[dir="rtl"] .hero-badge { padding: 7px 8px 7px 14px; }
.hero-badge .pill { background: var(--gold); color: var(--brand-900); font-weight: 700; padding: 2px 10px; border-radius: 999px; font-size: .78rem; }
.hero h1 { margin-top: 22px; max-width: 14ch; }
html[lang="ar"] .hero h1 { max-width: 16ch; }
.hero .lede { color: rgba(255, 255, 255, .84); margin-top: 20px; max-width: 54ch; }

.booking-bar {
  margin-top: clamp(28px, 4vh, 40px);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr auto; align-items: stretch;
  background: rgba(255, 255, 255, .97); color: var(--ink);
  border-radius: 22px; padding: 8px; box-shadow: var(--shadow-lg);
  max-width: 1040px;
}
.booking-bar .field { position: relative; padding: 10px 18px; border-radius: 16px; transition: background .2s; min-width: 0; }
.booking-bar .field:hover { background: var(--ivory); }
.booking-bar .field + .field::before { content: ""; position: absolute; inset-inline-start: 0; top: 18px; bottom: 18px; width: 1px; background: var(--line); }
.field label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
html[lang="ar"] .field label { letter-spacing: 0; font-size: .8rem; }
.field input, .field select {
  width: 100%; border: 0; background: transparent; padding: 2px 0 0; font-weight: 600; font-size: .98rem; outline: none;
  appearance: none; -webkit-appearance: none; min-height: 26px; cursor: pointer;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b7285' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: 16px; background-position: right 0 center; padding-inline-end: 22px; }
[dir="rtl"] .field select { background-position: left 0 center; }
.field input::-webkit-calendar-picker-indicator { opacity: .5; cursor: pointer; }
.booking-bar .btn { height: auto; min-height: 58px; border-radius: 16px; padding: 0 28px; }

.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-top: 28px; }
.hero-progress { display: flex; gap: 8px; }
.hero-progress button { width: 44px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .3); overflow: hidden; position: relative; }
.hero-progress button::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
[dir="rtl"] .hero-progress button::after { transform-origin: right; }
.hero-progress button.active::after { animation: progress 7s linear forwards; }
.hero-progress button.done::after { transform: scaleX(1); }
@keyframes progress { to { transform: scaleX(1); } }
.hero-caption { font-size: .86rem; color: rgba(255, 255, 255, .8); display: inline-flex; align-items: center; gap: 8px; }
.hero-caption a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255, 255, 255, .4); }

@media (max-width: 900px) {
  .booking-bar { grid-template-columns: 1fr 1fr; gap: 2px; }
  .booking-bar .field:first-child, .booking-bar .field:nth-child(4) { grid-column: 1 / -1; }
  .booking-bar .field + .field::before { display: none; }
  .booking-bar .field { background: var(--ivory); }
  .booking-bar .btn { grid-column: 1 / -1; margin-top: 6px; }
}
@media (max-width: 600px) {
  .hero .container { padding-top: calc(var(--header-h) + 48px); }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(20, 10, 34, .6) 0%, rgba(20, 10, 34, .35) 30%, rgba(20, 10, 34, .7) 60%, rgba(20, 10, 34, .95) 100%);
  }
  .hero-foot { flex-direction: column-reverse; align-items: flex-start; gap: 14px; }
}

/* ---------- Stats strip ---------- */
.stats { background: var(--paper); border-bottom: 1px solid var(--line); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 24px; display: flex; flex-direction: column; gap: 4px; }
.stat + .stat { border-inline-start: 1px solid var(--line); }
.stat .num { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 300; line-height: 1; letter-spacing: -.02em; color: var(--brand); display: flex; align-items: baseline; gap: 6px; }
html[lang="ar"] .stat .num { font-weight: 700; }
.stat .num .icon { width: .6em; height: .6em; color: var(--gold); }
.stat .label { font-size: .9rem; color: var(--muted); }
@media (max-width: 760px) {
  .stats .container { grid-template-columns: 1fr 1fr; padding-inline: 0; }
  .stat { padding: 24px var(--gutter); }
  .stat:nth-child(3) { border-inline-start: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 10vw, 128px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(32px, 4vw, 56px); flex-wrap: wrap; }
.section-head .h2 { margin-top: 16px; max-width: 18ch; }
.section-head .lede { max-width: 46ch; }

/* Intro */
.intro .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.intro-media { position: relative; }
.intro-media .main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.intro-media .main img { width: 100%; height: 100%; object-fit: cover; }
.intro-media .float {
  position: absolute; inset-inline-end: -28px; bottom: 40px; width: 46%; aspect-ratio: 1; border-radius: var(--radius);
  overflow: hidden; border: 6px solid var(--ivory); box-shadow: var(--shadow);
}
.intro-media .float img { width: 100%; height: 100%; object-fit: cover; }
.intro-media .tag {
  position: absolute; inset-inline-start: 20px; top: 20px; background: rgba(255, 255, 255, .94); border-radius: 14px;
  padding: 12px 16px; display: flex; gap: 12px; align-items: center; box-shadow: var(--shadow-sm);
}
.intro-media .tag strong { display: block; font-size: .95rem; }
.intro-media .tag span { font-size: .8rem; color: var(--muted); }
.intro-media .tag .icon { width: 28px; height: 28px; color: var(--brand); }
.promises { margin-top: 36px; display: grid; gap: 4px; }
.promise { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); }
.promise:last-child { border-bottom: 1px solid var(--line); }
.promise .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; }
.promise h3 { font-size: 1.05rem; font-weight: 700; }
.promise p { font-size: .92rem; color: var(--muted); }
.promise .score { font-family: var(--serif); font-size: 1.6rem; color: var(--brand); font-weight: 400; display: flex; align-items: center; gap: 4px; }
.promise .score .icon { width: 14px; height: 14px; color: var(--gold); }
@media (max-width: 900px) {
  .intro .container { grid-template-columns: 1fr; }
  .intro-media { max-width: 520px; }
  .intro-media .float { inset-inline-end: 12px; }
}

/* Experiences (dark) */
.dark { background: var(--brand-900); color: #fff; }
.dark .eyebrow { color: var(--gold-soft); }
.dark .lede { color: rgba(255, 255, 255, .72); }
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.exp {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4.2; isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; text-align: start;
  color: #fff;
}
.exp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease); }
.exp::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(20, 10, 34, .92), rgba(20, 10, 34, .1) 60%); }
.exp:hover img { transform: scale(1.06); }
.exp .count { position: absolute; top: 20px; inset-inline-start: 20px; font-size: .78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, .16); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, .22); }
.exp .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--brand-900); display: grid; place-items: center; margin-bottom: 16px; }
.exp h3 { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: 1.1; }
html[lang="ar"] .exp h3 { font-weight: 700; }
.exp p { font-size: .9rem; color: rgba(255, 255, 255, .75); margin-top: 8px; }
.exp .more { margin-top: 14px; font-size: .86rem; font-weight: 600; color: var(--gold-soft); display: inline-flex; gap: 6px; align-items: center; }
@media (max-width: 1000px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .exp-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; }
  .exp-grid::-webkit-scrollbar { display: none; }
  .exp { scroll-snap-align: start; }
}

/* ---------- Filters ---------- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--paper); font-size: .9rem; font-weight: 600; color: var(--ink-2);
  transition: all .2s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip .n { font-size: .78rem; opacity: .6; font-weight: 500; }
.filter-note { margin-top: 14px; font-size: .9rem; color: var(--muted); min-height: 1.5em; }
.filter-note button { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Stay cards ---------- */
.stays-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px) clamp(16px, 2vw, 28px); }
@media (max-width: 1000px) { .stays-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .stays-grid { grid-template-columns: 1fr; } }
.stay-card { position: relative; display: flex; flex-direction: column; animation: cardIn .6s var(--ease) both; }
.stay-card[hidden] { display: none; }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.stay-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.4; background: var(--sand); }
.slides { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.slides::-webkit-scrollbar { display: none; }
.slides img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: start; }
.stay-media .badges { position: absolute; top: 14px; inset-inline-start: 14px; display: flex; gap: 6px; z-index: 2; pointer-events: none; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .95); font-size: .78rem; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm); }
.badge .icon { width: 14px; height: 14px; color: var(--gold); }
.badge-new { background: var(--brand); color: #fff; }
.slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, .94); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm);
  opacity: 0; transition: opacity .2s, transform .2s;
}
.slide-nav .icon { width: 18px; height: 18px; }
.slide-nav.prev { inset-inline-start: 12px; }
.slide-nav.next { inset-inline-end: 12px; }
.stay-card:hover .slide-nav, .slide-nav:focus-visible { opacity: 1; }
.slide-nav:hover { transform: translateY(-50%) scale(1.06); }
.slide-nav[disabled] { opacity: 0 !important; pointer-events: none; }
@media (hover: none) { .slide-nav { display: none; } }
.dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 2; pointer-events: none; }
.dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .55); transition: all .25s; }
.dots span.on { background: #fff; width: 16px; border-radius: 4px; }
.stay-body { padding: 16px 2px 0; display: flex; flex-direction: column; gap: 4px; }
.stay-body .row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.stay-body h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; line-height: 1.2; letter-spacing: -.01em; }
html[lang="ar"] .stay-body h3 { font-weight: 700; letter-spacing: 0; }
.stay-body h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.rating { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: .92rem; white-space: nowrap; }
.rating .icon { width: 14px; height: 14px; color: var(--gold); }
.rating .count { color: var(--muted); font-weight: 500; }
.stay-body .area { font-size: .92rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.stay-body .area .icon { width: 15px; height: 15px; }
.stay-body .facts { font-size: .92rem; color: var(--ink-2); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.feature-tags li { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--brand); background: var(--brand-50); padding: 5px 10px; border-radius: 999px; }
.feature-tags .icon { width: 14px; height: 14px; }

/* ---------- Quote band ---------- */
.quote-band { position: relative; min-height: 78vh; display: flex; align-items: center; color: #fff; isolation: isolate; overflow: hidden; }
.quote-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; z-index: -2; }
.quote-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(20, 10, 34, .85) 0%, rgba(20, 10, 34, .45) 55%, rgba(20, 10, 34, .2) 100%); }
[dir="rtl"] .quote-band::after { background: linear-gradient(270deg, rgba(20, 10, 34, .85) 0%, rgba(20, 10, 34, .45) 55%, rgba(20, 10, 34, .2) 100%); }
.quote-band blockquote { margin: 0; max-width: 20ch; font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1.08; letter-spacing: -.02em; }
html[lang="ar"] .quote-band blockquote { font-weight: 700; letter-spacing: 0; line-height: 1.35; }
.quote-band blockquote::before { content: "“"; display: block; font-size: 1.6em; line-height: .6; color: var(--gold); margin-bottom: .1em; }
html[lang="ar"] .quote-band blockquote::before { content: "”"; }
.quote-band cite { display: block; margin-top: 28px; font-style: normal; font-size: .95rem; color: rgba(255, 255, 255, .8); }
.quote-band cite strong { color: #fff; }

/* ---------- Map ---------- */
.map-wrap { display: grid; grid-template-columns: 380px 1fr; gap: 24px; align-items: stretch; }
.areas { display: flex; flex-direction: column; gap: 10px; }
.area-item {
  text-align: start; padding: 18px 20px; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line);
  transition: border-color .2s, box-shadow .2s, transform .2s; display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; width: 100%;
}
.area-item:hover, .area-item.active { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.area-item strong { font-size: 1.02rem; }
.area-item .n { grid-row: span 2; align-self: center; font-family: var(--serif); font-size: 1.8rem; color: var(--brand); line-height: 1; }
.area-item p { font-size: .86rem; color: var(--muted); }
#map { min-height: 520px; border-radius: var(--radius); overflow: hidden; background: var(--sand); z-index: 0; border: 1px solid var(--line); }
@media (max-width: 900px) { .map-wrap { grid-template-columns: 1fr; } #map { min-height: 400px; order: -1; } }
.map-pin {
  display: inline-flex; align-items: center; gap: 6px; background: var(--brand); color: #fff; font-family: var(--sans);
  font-weight: 700; font-size: 13px; padding: 7px 12px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px -6px rgba(26, 15, 43, .6);
  border: 2px solid #fff; transform: translate(-50%, -50%); position: absolute; transition: transform .2s, background .2s;
}
.map-pin.hl, .map-pin:hover { background: var(--gold); color: var(--brand-900); transform: translate(-50%, -50%) scale(1.12); }
.map-landmark { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--ink); font: 600 12px var(--sans); padding: 5px 10px 5px 6px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-sm); transform: translate(-50%, -50%); position: absolute; }
.map-landmark .icon { width: 16px; height: 16px; color: var(--gold); }
.map-landmark.solo { padding: 6px; }
.leaflet-tile-pane { filter: grayscale(1) sepia(.18) brightness(1.04) contrast(.92); }
.leaflet-popup-content-wrapper { border-radius: 14px !important; padding: 0 !important; overflow: hidden; }
.leaflet-popup-content { margin: 0 !important; width: 260px !important; font-family: var(--sans); }
.pop { display: block; }
.pop img { width: 100%; height: 130px; object-fit: cover; }
.pop .b { padding: 12px 14px; }
.pop strong { display: block; font-size: 15px; color: var(--ink); }
.pop span { font-size: 13px; color: var(--muted); }
.pop-list a { display: flex; gap: 10px; align-items: center; padding: 8px 12px; border-top: 1px solid var(--line); }
.pop-list a:hover { background: var(--ivory); }
.pop-list img { width: 52px; height: 42px; border-radius: 8px; object-fit: cover; flex: none; }
.pop-list .t { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.pop-list .s { font-size: 12px; color: var(--muted); }
.pop-head { padding: 12px 14px; font-weight: 700; font-size: 14px; color: var(--ink); background: var(--brand-50); }

/* ---------- Reviews ---------- */
.reviews-wrap { display: grid; grid-template-columns: 340px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.reviews-wrap > * { min-width: 0; }
.score-card { position: sticky; top: calc(var(--header-h) + 24px); }
.big-score { font-family: var(--serif); font-size: clamp(4.5rem, 8vw, 6.5rem); font-weight: 300; line-height: .9; letter-spacing: -.04em; color: var(--brand); }
html[lang="ar"] .big-score { font-weight: 400; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars .icon { width: 18px; height: 18px; }
.score-card .sub { color: var(--muted); margin-top: 8px; }
.cat-bars { margin-top: 28px; display: grid; gap: 12px; }
.cat-bar { display: grid; grid-template-columns: 1fr 110px 36px; gap: 12px; align-items: center; font-size: .9rem; }
.cat-bar .track { display: block; height: 4px; border-radius: 4px; background: var(--line); overflow: hidden; }
.cat-bar .fill { display: block; height: 100%; background: var(--brand); border-radius: 4px; transform-origin: left; }
[dir="rtl"] .cat-bar .fill { transform-origin: right; }
.cat-bar b { text-align: end; font-weight: 700; }
.superhost { margin-top: 28px; display: flex; gap: 14px; align-items: center; padding: 16px; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line); }
.superhost .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; }
.superhost strong { display: block; }
.superhost span { font-size: .86rem; color: var(--muted); }

.review-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 20px) / 2); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; scroll-behavior: smooth; }
.review-track::-webkit-scrollbar { display: none; }
@media (max-width: 1100px) { .review-track { grid-auto-columns: 86%; } }
.review-card { scroll-snap-align: start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; min-height: 100%; }
.review-card .text { font-size: 1.02rem; line-height: 1.65; color: var(--ink); white-space: pre-line; display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.review-card.expanded .text { -webkit-line-clamp: unset; display: block; }
.review-card .more { align-self: flex-start; font-size: .88rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.review-card .who { margin-top: auto; display: flex; gap: 12px; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-100); color: var(--brand); display: grid; place-items: center; font-weight: 800; flex: none; font-size: 1.05rem; }
.review-card .who strong { display: block; font-size: .95rem; }
.review-card .who span { font-size: .82rem; color: var(--muted); }
.review-card .stay-link { font-size: .82rem; color: var(--brand); font-weight: 600; }
.review-card .note { font-size: .78rem; color: var(--muted); font-style: italic; }
.track-nav { display: flex; gap: 10px; margin-top: 24px; }
.circle-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: all .2s; background: var(--paper); }
.circle-btn:hover { border-color: var(--ink); }
.circle-btn .icon { width: 20px; height: 20px; }
@media (max-width: 900px) { .reviews-wrap { grid-template-columns: 1fr; } .score-card { position: static; } }

/* ---------- Owners ---------- */
.owners { background: var(--brand); color: #fff; position: relative; overflow: hidden; }
.owners::before {
  content: ""; position: absolute; width: 900px; height: 900px; border-radius: 50%; inset-inline-end: -300px; top: -300px;
  background: radial-gradient(closest-side, rgba(195, 155, 86, .22), transparent);
}
.owners .container { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.owners .eyebrow { color: var(--gold-soft); }
.owners .lede { color: rgba(255, 255, 255, .78); margin-top: 20px; }
.owner-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 40px; background: rgba(255, 255, 255, .14); border-radius: var(--radius-sm); overflow: hidden; }
.owner-stats div { background: var(--brand); padding: 20px; }
.owner-stats strong { display: block; font-family: var(--serif); font-size: 2.1rem; font-weight: 300; line-height: 1.1; color: var(--gold-soft); }
html[lang="ar"] .owner-stats strong { font-weight: 700; }
.owner-stats span { font-size: .86rem; color: rgba(255, 255, 255, .7); }
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; margin-top: 48px; }
.service { display: flex; gap: 16px; }
.service .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); display: grid; place-items: center; flex: none; color: var(--gold-soft); }
.service h3 { font-size: 1.02rem; font-weight: 700; }
.service p { font-size: .9rem; color: rgba(255, 255, 255, .7); margin-top: 4px; }
.lead-form { background: var(--paper); color: var(--ink); border-radius: 24px; padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-lg); position: sticky; top: calc(var(--header-h) + 24px); }
.lead-form h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; line-height: 1.15; }
html[lang="ar"] .lead-form h3 { font-weight: 700; }
.lead-form > p { color: var(--muted); font-size: .94rem; margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.form-grid .full { grid-column: 1 / -1; }
.input { display: flex; flex-direction: column; gap: 6px; }
.input label { font-size: .82rem; font-weight: 700; color: var(--ink-2); }
.input input, .input select {
  height: 50px; border-radius: 12px; border: 1px solid var(--line-2); background: #fff; padding: 0 14px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.input input:focus, .input select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-50); }
.lead-form .btn { margin-top: 20px; }
.form-foot { font-size: .8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success { text-align: center; padding: 28px 8px; }
.form-success .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; margin: 0 auto 16px; }
.form-success .ic .icon { width: 30px; height: 30px; }
@media (max-width: 960px) { .owners .container { grid-template-columns: 1fr; } .lead-form { position: static; } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } .owner-stats { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq .container { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 24px 0; font-size: 1.1rem; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .icon { transition: transform .3s var(--ease); color: var(--brand); }
.faq-list details[open] summary .icon { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 24px; color: var(--ink-2); max-width: 64ch; }
@media (max-width: 860px) { .faq .container { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; border-radius: 28px; color: #fff; isolation: isolate; padding: clamp(48px, 8vw, 110px) clamp(24px, 6vw, 88px); display: grid; gap: 28px; }
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(26, 15, 43, .92), rgba(72, 40, 116, .55)); }
.cta .h2 { max-width: 16ch; }
.cta .actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-900); color: rgba(255, 255, 255, .72); padding: 72px 0 32px; margin-top: clamp(72px, 10vw, 128px); }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: #fff; }
.site-footer .tagline { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: #fff; margin-top: 16px; }
html[lang="ar"] .site-footer .tagline { font-weight: 700; }
.site-footer h4 { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
html[lang="ar"] .site-footer h4 { letter-spacing: 0; font-size: .9rem; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }
@media (max-width: 860px) { .site-footer .top { grid-template-columns: 1fr 1fr; } .site-footer .top > :first-child { grid-column: 1 / -1; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide.active img { animation: none; transform: none; }
  .stay-card { animation: none; }
}

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 999px; font-size: .9rem; font-weight: 600; opacity: 0; transition: all .3s var(--ease); z-index: 100; pointer-events: none; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Stay page
   ========================================================================== */
.stay-page { padding-top: calc(var(--header-h) + 28px); }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); }
.crumbs a:hover { color: var(--ink); }
.crumbs .icon { width: 14px; height: 14px; }
.stay-title { margin-top: 14px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.stay-title h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 4.4vw, 3.6rem); line-height: 1.05; letter-spacing: -.02em; }
html[lang="ar"] .stay-title h1 { font-weight: 700; letter-spacing: 0; line-height: 1.3; }
.stay-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; margin-top: 10px; font-size: .95rem; color: var(--ink-2); }
.stay-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.stay-meta a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.title-actions { display: flex; gap: 8px; }

.mosaic { margin-top: 24px; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; height: clamp(320px, 52vw, 560px); border-radius: var(--radius); overflow: hidden; position: relative; }
.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 .8s var(--ease), filter .3s; }
.mosaic button:hover img { transform: scale(1.04); filter: brightness(.92); }
.mosaic .show-all { position: absolute; bottom: 18px; inset-inline-end: 18px; z-index: 2; background: #fff; }
@media (max-width: 760px) {
  .mosaic { grid-template-columns: 1fr; grid-template-rows: 1fr; height: auto; aspect-ratio: 4 / 3.2; margin-inline: calc(var(--gutter) * -1); border-radius: 0; }
  .mosaic button:not(:first-child) { display: none; }
  .mosaic button:first-child { grid-row: auto; }
  .mosaic .show-all { bottom: 14px; inset-inline-end: 14px; height: 40px; padding: 0 16px; font-size: .85rem; }
}

.stay-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(32px, 6vw, 88px); margin-top: 40px; align-items: start; }
.stay-layout > * { min-width: 0; }
.stay-layout > aside { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 980px) { .stay-layout { grid-template-columns: 1fr; } .stay-layout > aside { position: static; } }
.block { padding-block: 36px; border-bottom: 1px solid var(--line); }
.block:first-child { padding-top: 0; }
.block h2 { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; letter-spacing: -.01em; margin-bottom: 20px; line-height: 1.2; }
html[lang="ar"] .block h2 { font-weight: 700; letter-spacing: 0; }
.fact-row { display: flex; flex-wrap: wrap; gap: 10px; }
.fact { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 14px; background: var(--paper); border: 1px solid var(--line); font-weight: 600; font-size: .95rem; }
.fact .icon { color: var(--brand); width: 20px; height: 20px; }
.host-row { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.host-row .logo { width: 52px; height: 52px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; }
.host-row .logo svg { width: 26px; height: 30px; }
.host-row strong { display: block; }
.host-row span { font-size: .88rem; color: var(--muted); }
.hl-list { display: grid; gap: 22px; }
.hl { display: flex; gap: 18px; }
.hl .icon { width: 28px; height: 28px; color: var(--brand); flex: none; margin-top: 2px; }
.hl strong { display: block; font-size: 1.02rem; }
.hl p { font-size: .92rem; color: var(--muted); }
.about p { font-size: 1.08rem; color: var(--ink-2); line-height: 1.75; }
.feature-list { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; }
.feature-list .icon { color: var(--gold); width: 18px; height: 18px; margin-top: 3px; }
@media (max-width: 560px) { .feature-list { grid-template-columns: 1fr; } }
.sleep-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.sleep-card img { border-radius: var(--radius-sm); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; background: var(--sand); }
.sleep-card strong { display: block; margin-top: 12px; }
.sleep-card span { font-size: .9rem; color: var(--muted); }
.amen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.amen-grid li { display: flex; align-items: center; gap: 14px; font-size: .98rem; }
.amen-grid .icon { width: 22px; height: 22px; color: var(--ink-2); }
.amen-grid li.hide { display: none; }
.amen-grid.all li.hide { display: flex; }
.block .btn-ghost { margin-top: 24px; }
.stay-reviews-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.stay-reviews-head .big { font-family: var(--serif); font-size: 3.4rem; line-height: 1; color: var(--brand); font-weight: 300; }
.stay-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 28px; }
.stay-cats div { background: var(--paper); padding: 16px; }
.stay-cats span { display: block; font-size: .85rem; color: var(--muted); }
.stay-cats strong { font-size: 1.3rem; font-family: var(--serif); font-weight: 400; }
@media (max-width: 560px) { .stay-cats { grid-template-columns: 1fr 1fr; } .amen-grid { grid-template-columns: 1fr; } }
.stay-review-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.stay-review-list .review-card { padding: 0; background: none; border: 0; }
.stay-review-list .review-card .who { order: -1; margin-top: 0; border: 0; padding-top: 0; }
.stay-review-list .review-card .text { -webkit-line-clamp: 5; font-size: .98rem; }
@media (max-width: 700px) { .stay-review-list { grid-template-columns: 1fr; } }
#stay-map { height: 380px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); z-index: 0; }
.know-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.know-grid h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.know-grid li { display: flex; gap: 10px; align-items: center; font-size: .94rem; color: var(--ink-2); margin-bottom: 10px; }
.know-grid .icon { width: 18px; height: 18px; color: var(--muted); }
@media (max-width: 760px) { .know-grid { grid-template-columns: 1fr; } }

.book-card { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: var(--shadow); }
.book-card .top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.book-card .top strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
html[lang="ar"] .book-card .top strong { font-weight: 700; }
.book-fields { margin-top: 18px; border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.book-fields .field { padding: 10px 14px; }
.book-fields .field:nth-child(2) { border-inline-start: 1px solid var(--line-2); }
.book-fields .field:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line-2); }
.book-card .btn { margin-top: 14px; }
.book-card .fine { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 12px; }
.book-card .perks { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: .9rem; color: var(--ink-2); }
.book-card .perks li { display: flex; gap: 10px; align-items: center; }
.book-card .perks .icon { color: var(--brand); width: 18px; height: 18px; }
.mobile-book { display: none; }
@media (max-width: 980px) {
  .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: 16px;
    box-shadow: 0 -8px 24px -12px rgba(28, 19, 38, .2);
  }
  .mobile-book strong { display: block; font-size: .95rem; }
  .mobile-book span { font-size: .85rem; color: var(--muted); }
  .stay-page ~ .site-footer { padding-bottom: 110px; }
}

/* Photo tour + lightbox */
.tour { position: fixed; inset: 0; z-index: 80; background: var(--ivory); overflow-y: auto; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.tour.open { opacity: 1; visibility: visible; }
.tour-head { position: sticky; top: 0; z-index: 2; background: rgba(248, 244, 238, .94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.tour-bar { display: flex; align-items: center; gap: 16px; height: 72px; }
.tour-head h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.tour-rooms { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 14px; }
.tour-rooms::-webkit-scrollbar { display: none; }
.tour-rooms a { flex: none; display: flex; flex-direction: column; gap: 6px; width: 110px; font-size: .82rem; font-weight: 600; }
.tour-rooms img { width: 110px; height: 76px; object-fit: cover; border-radius: 10px; }
.tour-body { padding-block: 32px 80px; }
.tour-section:first-child { border-top: 0; }
.tour-section { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding-block: 28px; border-top: 1px solid var(--line); }
.tour-section h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; position: sticky; top: 200px; align-self: start; }
html[lang="ar"] .tour-section h3, html[lang="ar"] .tour-head h2 { font-weight: 700; }
.tour-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tour-imgs button { overflow: hidden; border-radius: 10px; background: var(--sand); }
.tour-imgs button:nth-child(3n+1) { grid-column: 1 / -1; }
.tour-imgs img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .6s var(--ease); }
.tour-imgs button:nth-child(3n+1) img { aspect-ratio: 16 / 10; }
.tour-imgs button:hover img { transform: scale(1.03); }
@media (max-width: 760px) { .tour-section { grid-template-columns: 1fr; gap: 16px; } .tour-section h3 { position: static; } }

.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(12, 6, 20, .96); display: flex; flex-direction: column; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; color: #fff; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-top { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; font-size: .92rem; }
.lb-stage { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 0 72px 24px; touch-action: pan-y; }
.lb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; user-select: none; -webkit-user-drag: none; }
.lb-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); display: grid; place-items: center; color: #fff; transition: background .2s; }
.lb-btn:hover { background: rgba(255, 255, 255, .12); }
.lb-btn .icon { width: 22px; height: 22px; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); }
.lb-prev { inset-inline-start: 14px; } .lb-next { inset-inline-end: 14px; }
@media (max-width: 700px) { .lb-stage { padding: 0 0 24px; } .lb-prev, .lb-next { display: none; } }

.more-stays { padding-top: clamp(56px, 8vw, 96px); }
body.lock { overflow: hidden; }
