/* ============================================================
   Al Jawhara Metro Hotel — concept microsite
   Palette keyed to the brand logo (warm sand + deep teal-green
   + jewel-gold). Honest, value-led, location-first hospitality.
   ============================================================ */

:root {
  --bg:        #FBF7F0; /* warm sand / paper */
  --bg-2:      #F4EDE0; /* slightly deeper sand for alternating bands */
  --surface:   #FFFFFF;
  --text:      #16302C; /* deep teal-charcoal */
  --muted:     #5C6A66; /* muted teal-grey */
  --primary:   #18635E; /* deep teal-green (logo) */
  --primary-d: #14534F; /* darker teal */
  --primary-dd:#0F3F3C;
  --accent:    #D4B45C; /* jewel-gold (logo) */
  --accent-d:  #B8923B;
  --border:    #E6DECC; /* warm sand border */
  --focus:     #18635E;

  --gold-deco: 1;        /* tweakable: gold decoration intensity 0–1 */
  --radius:    16px;     /* tweakable */
  --radius-sm: 10px;
  --radius-pill: 999px;
  --hero-image: url("assets/room-premium.webp");

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Plus Jakarta Sans", sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --shadow-sm: 0 1px 2px rgba(22,48,44,.06), 0 2px 8px rgba(22,48,44,.05);
  --shadow-md: 0 6px 18px rgba(22,48,44,.08), 0 2px 6px rgba(22,48,44,.05);
  --shadow-lg: 0 20px 48px rgba(15,63,60,.16);

  --maxw: 1180px;
  --gut: clamp(18px, 4.5vw, 56px);
  --section-y: clamp(56px, 8vw, 104px);
}

html[data-display="sans"] { --font-display: "Plus Jakarta Sans", system-ui, sans-serif; }
html[data-radius="sharp"] { --radius: 4px; --radius-sm: 3px; }
html[data-accent="subtle"] { --gold-deco: .35; }
html[data-accent="rich"]   { --gold-deco: 1; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[data-noscroll] { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.ar { font-family: var(--font-ar); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--focus) 65%, white);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--section-y); }
.band-sand { background: var(--bg-2); }
.band-teal { background: var(--primary); color: #EAF2F0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary-d);
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin: 0 0 .9rem;
}
.band-teal .eyebrow { color: var(--accent); }
.eyebrow::before {
  content: "";
  width: 14px; height: 14px;
  background: var(--accent);
  opacity: var(--gold-deco);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  flex: none;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; margin: 0; color: var(--text); letter-spacing: -0.01em; }
.band-teal h1, .band-teal h2, .band-teal h3 { color: #fff; }
h2.title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: .5rem; }
.lede { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 58ch; }
.band-teal .lede { color: #CFE0DD; }

.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: .98rem;
  padding: .85em 1.5em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-d); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost { color: var(--text); border-color: var(--border); background: var(--surface); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-wa { background: #1faf5e; color: #fff; }
.btn-wa:hover { background: #1a9b53; }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: #EAF2F0; }
.btn-sm { padding: .62em 1.1em; font-size: .88rem; }
.btn-block { width: 100%; }

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 1.2rem; height: 70px; }
.brand { display: flex; align-items: center; gap: .65rem; flex: none; }
.brand-mark { width: 38px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--primary); letter-spacing: -0.01em; }
.brand-sub { font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }
body.ar .brand-sub { letter-spacing: .04em; }

.nav-links { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.5rem); margin-inline-start: auto; }
.nav-links a {
  font-weight: 500; font-size: .95rem; color: var(--text);
  padding: .4em 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -2px; height: 2px;
  background: var(--accent); transform: scaleX(0); transition: transform .2s ease;
  transform-origin: var(--ulo, left);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .6rem; flex: none; }

.lang-toggle {
  display: inline-flex; align-items: center; border: 1.5px solid var(--border);
  border-radius: var(--radius-pill); overflow: hidden; background: var(--surface);
}
.lang-toggle button {
  border: 0; background: transparent; padding: .4em .7em; font-size: .82rem; font-weight: 600; color: var(--muted);
}
.lang-toggle button[aria-pressed="true"] { background: var(--primary); color: #fff; }

.hamburger { display: none; width: 44px; height: 44px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--surface); position: relative; }
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2px; background: var(--text); transition: .2s;
}
.hamburger span { top: 21px; }
.hamburger span::before { top: -7px; } .hamburger span::after { top: 7px; }
body.menu-open .hamburger span { background: transparent; }
body.menu-open .hamburger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .hamburger span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; min-height: clamp(560px, 86vh, 820px); display: flex; align-items: flex-end; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-image); background-size: cover; background-position: center 30%;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,63,60,.18) 0%, rgba(15,63,60,0) 28%),
    linear-gradient(90deg, rgba(13,45,42,.9) 0%, rgba(13,45,42,.62) 42%, rgba(13,45,42,.12) 78%, rgba(13,45,42,.32) 100%);
}
body.ar .hero::after { transform: scaleX(-1); }
.hero-inner { padding-block: clamp(2.4rem, 6vw, 4.5rem); color: #fff; max-width: 660px; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 500; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p.sub { font-size: clamp(1.05rem, 1.9vw, 1.28rem); color: #E6EFED; margin: 1.1rem 0 1.8rem; max-width: 50ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.hero-note { font-size: .85rem; color: #BFD4D0; margin-top: 1.1rem; display: flex; align-items: center; gap: .5em; }

.hero-pins { position: absolute; z-index: 1; inset-block-end: clamp(1rem, 3vw, 2rem); inset-inline-end: var(--gut); display: flex; gap: .5rem; flex-wrap: wrap; max-width: 320px; justify-content: flex-end; }
.pin {
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-pill);
  padding: .42em .9em; font-size: .82rem; font-weight: 600; color: var(--primary-dd);
  display: inline-flex; align-items: center; gap: .45em; box-shadow: var(--shadow-sm);
}
.pin b { color: var(--text); }
@media (max-width: 860px) { .hero-pins { display: none; } }

/* ---------- Location ribbon (schematic, NOT a map) ---------- */
.loc { background: var(--primary); color: #EAF2F0; }
.loc .title { color: #fff; }
.loc-lede { color: #CFE0DD; }
.ribbon { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 2.2rem; position: relative; }
.ribbon::before { content: ""; position: absolute; top: 23px; inset-inline: 8%; height: 2px; background: repeating-linear-gradient(90deg, color-mix(in oklab, var(--accent) 80%, transparent) 0 10px, transparent 10px 20px); opacity: var(--gold-deco); }
.stop { text-align: center; padding: 0 .4rem; position: relative; }
.stop .dot { width: 46px; height: 46px; margin: 0 auto .9rem; border-radius: 50%; background: var(--primary-dd); border: 2px solid var(--accent); display: grid; place-items: center; position: relative; z-index: 1; }
.stop .dot svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }
.stop b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: #fff; font-weight: 500; }
.stop span { font-size: .82rem; color: #BFD4D0; }
@media (max-width: 720px) {
  .ribbon { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .ribbon::before { display: none; }
}

/* ---------- Welcome / intro ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.rev { grid-template-columns: .95fr 1.05fr; }
@media (max-width: 860px) { .split, .split.rev { grid-template-columns: 1fr; gap: 2rem; } }
.media-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.media-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media-card .tag { position: absolute; inset-block-end: 12px; inset-inline-start: 12px; background: color-mix(in oklab, var(--surface) 92%, transparent); backdrop-filter: blur(4px); font-size: .76rem; font-weight: 600; color: var(--primary-dd); padding: .35em .8em; border-radius: var(--radius-pill); }

.badge-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.badge {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: .7rem 1rem; box-shadow: var(--shadow-sm); font-size: .86rem;
}
.badge .score { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--primary); line-height: 1; }
.badge .meta b { display: block; color: var(--text); }
.badge .meta span { color: var(--muted); font-size: .78rem; }
.badge .jewel { width: 30px; height: 30px; color: var(--accent); }

.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem 1.4rem; margin-top: 1.6rem; }
.facts li { list-style: none; display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.facts svg { width: 20px; height: 20px; flex: none; color: var(--primary); margin-top: 2px; }
.facts ul { padding: 0; margin: 0; }

/* ---------- Rooms ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 920px) { .rooms-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .rooms-grid { grid-template-columns: 1fr; } }
.room {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.room:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.room .ph { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.room .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room:hover .ph img { transform: scale(1.05); }
.room .ph .cat { position: absolute; inset-block-start: 12px; inset-inline-start: 12px; background: var(--primary); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .38em .8em; border-radius: var(--radius-pill); }
.room-body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.room-body .occ { font-size: .85rem; color: var(--muted); margin-bottom: .9rem; }
.amen { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.amen span { font-size: .76rem; background: var(--bg-2); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: .3em .7em; }
.room-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding-top: .9rem; border-top: 1px solid var(--border); }
.room-foot .rate { font-size: .82rem; color: var(--muted); line-height: 1.3; }
.room-foot .rate b { display: block; color: var(--text); font-weight: 600; }

/* ---------- Feature band (meetings) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 860px){ .feature { grid-template-columns: 1fr; } }
.feature .media-card img { aspect-ratio: 16/11; }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.6rem 0; }
.cap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem; }
.cap b { font-family: var(--font-display); font-size: 1.45rem; color: var(--primary); display: block; }
.cap span { font-size: .82rem; color: var(--muted); }
.cap.tbc b { font-size: 1.05rem; color: var(--accent-d); }

/* ---------- Amenities ---------- */
.amen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
@media (max-width: 760px){ .amen-grid { grid-template-columns: 1fr 1fr; } }
.amen-item { display: flex; align-items: center; gap: .8rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.1rem; box-shadow: var(--shadow-sm); }
.amen-item svg { width: 26px; height: 26px; color: var(--primary); flex: none; }
.amen-item b { font-size: .95rem; font-weight: 600; display:block; }
.amen-item span { font-size: .78rem; color: var(--muted); }

/* ---------- Dining ---------- */
.dine-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.4rem; }
@media (max-width: 860px){ .dine-grid { grid-template-columns: 1fr; } }
.placeholder {
  border: 1.5px dashed var(--border); border-radius: var(--radius); background:
    repeating-linear-gradient(135deg, var(--bg-2) 0 14px, var(--bg) 14px 28px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  min-height: 220px; text-align: center; padding: 1.5rem;
}
.placeholder .pm { font-family: var(--font-mono); font-size: .78rem; color: var(--muted); letter-spacing: .02em; }
.placeholder svg { width: 34px; height: 34px; color: var(--accent-d); }

/* ---------- Reviews ---------- */
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm); display: grid; grid-template-columns: auto 1fr; gap: clamp(1.4rem,4vw,2.6rem); align-items: center; }
@media (max-width: 620px){ .review-card { grid-template-columns: 1fr; text-align: center; } }
.review-score { text-align: center; }
.review-score .big { font-family: var(--font-display); font-size: clamp(3.2rem,9vw,4.6rem); font-weight: 600; color: var(--primary); line-height: 1; }
.review-score .out { color: var(--muted); font-size: .9rem; }
.review-score .lbl { display: inline-block; margin-top: .4rem; background: var(--bg-2); border-radius: var(--radius-pill); padding: .25em .8em; font-size: .8rem; font-weight: 600; color: var(--primary-d); }
.attribution { font-size: .82rem; color: var(--muted); margin-top: 1rem; }

/* ---------- Map placeholder + contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem,4vw,3rem); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.map-ph { position: relative; border-radius: var(--radius); overflow: hidden; }
.map-ph iframe { display: block; width: 100%; max-width: 100%; border: 0; }
.map-ph .pin-big { width: 40px; height: 40px; color: var(--primary); }
.map-ph .pm { font-family: var(--font-mono); font-size: .8rem; color: var(--muted); }
.map-ph .where { font-family: var(--font-display); font-size: 1.15rem; color: var(--text); }

.contact-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.contact-list li { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; color: var(--primary); flex: none; margin-top: 3px; }
.contact-list b { display:block; }
.contact-list span { color: var(--muted); font-size: .92rem; }
.tbc-flag { font-size: .72rem; font-weight: 700; color: var(--accent-d); background: color-mix(in oklab, var(--accent) 18%, var(--bg)); padding: .15em .55em; border-radius: var(--radius-pill); letter-spacing: .04em; }

.notice { background: color-mix(in oklab, var(--accent) 14%, var(--bg)); border: 1px solid color-mix(in oklab, var(--accent) 40%, var(--border)); border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-size: .88rem; color: var(--text); display: flex; gap: .7rem; align-items: flex-start; margin-top: 1.4rem; }
.notice svg { width: 20px; height: 20px; color: var(--accent-d); flex: none; margin-top: 2px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px){ .field.row2 { grid-template-columns: 1fr; } }
label { font-size: .82rem; font-weight: 600; color: var(--text); }
.req { color: var(--accent-d); }
input, select, textarea {
  font-family: inherit; font-size: .98rem; color: var(--text);
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: .72em .9em; width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 18%, transparent); }
textarea { resize: vertical; min-height: 92px; }
.err { color: #b23b3b; font-size: .76rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d06868; }
.field.invalid .err { display: block; }
.form-note { font-size: .78rem; color: var(--muted); }

/* ---------- Modal ---------- */
.modal-back { position: fixed; inset: 0; z-index: 90; background: rgba(13,45,42,.55); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-back.open { display: flex; }
.modal { background: var(--bg); border-radius: var(--radius); max-width: 560px; width: 100%; max-height: 92vh; overflow: auto; box-shadow: var(--shadow-lg); position: relative; }
.modal-head { padding: 1.4rem clamp(1.2rem,4vw,1.8rem) 1rem; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--bg); z-index: 2; }
.modal-head h3 { font-size: 1.45rem; }
.modal-head p { margin: .3rem 0 0; color: var(--muted); font-size: .9rem; }
.modal-body { padding: 1.3rem clamp(1.2rem,4vw,1.8rem) 1.6rem; }
.modal-close { position: absolute; inset-block-start: 1rem; inset-inline-end: 1rem; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); display: grid; place-items: center; font-size: 1.2rem; color: var(--text); }
.modal-success { text-align: center; padding: 2.4rem 1.5rem; }
.modal-success .tick { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: color-mix(in oklab, var(--primary) 14%, var(--bg)); display: grid; place-items: center; }
.modal-success .tick svg { width: 32px; height: 32px; color: var(--primary); }

/* ---------- Footer ---------- */
.footer { background: var(--primary-dd); color: #BFD4D0; padding-block: clamp(2.6rem,5vw,4rem) 1.6rem; }
.footer a { color: #DCE8E6; }
.footer a:hover { color: var(--accent); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px){ .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 480px){ .foot-grid { grid-template-columns: 1fr; } }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: #8FB0AB; }
.foot-col h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 1rem; font-weight: 700; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .92rem; }
.foot-about { font-size: .9rem; line-height: 1.6; color: #A9C4C0; max-width: 34ch; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; }
.socials a:hover { border-color: var(--accent); background: rgba(212,180,92,.12); }
.socials svg { width: 18px; height: 18px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; font-size: .78rem; color: #8FB0AB; }
.foot-bottom .disc { max-width: 60ch; }

/* ---------- Mobile sticky booking bar ---------- */
.mobile-bar { position: fixed; inset-inline: 0; bottom: 0; z-index: 70; display: none; background: color-mix(in oklab, var(--bg) 94%, transparent); backdrop-filter: blur(10px); border-top: 1px solid var(--border); padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom)); gap: .5rem; box-shadow: 0 -6px 20px rgba(22,48,44,.1); }
.mobile-bar .btn { flex: 1; padding: .8em .5em; font-size: .9rem; }
.mobile-bar .btn.icon-only { flex: 0 0 48px; }
@media (max-width: 760px){ .mobile-bar { display: flex; } body { padding-bottom: 76px; } }

/* ---------- Mobile nav drawer ---------- */
@media (max-width: 900px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed; inset-block: 70px 0; inset-inline-end: 0; width: min(82vw, 340px);
    background: var(--bg); flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem var(--gut); margin: 0; box-shadow: var(--shadow-lg);
    transform: translateX(110%); transition: transform .26s ease; overflow-y: auto;
    border-inline-start: 1px solid var(--border);
  }
  body.ar .nav-links { transform: translateX(-110%); }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links a { padding: .95em 0; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-links .btn { margin-top: 1rem; }
  .desktop-only { display: none !important; }
}
@media (min-width: 901px){ .mobile-menu-extra { display: none; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* RTL tweaks */
[dir="rtl"] .nav-links a::after { --ulo: right; }
[dir="rtl"] .hero h1, [dir="rtl"] .hero p.sub { direction: rtl; }
