/* ============================================================
   SHADE HOTEL BEIRUT — Design System
   Brand: deep navy/indigo + warm sand/stone + cream
   Type:  Cormorant Garamond (editorial serif display)
          Hanken Grotesk (clean body sans)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  /* Navy palette: --navy-brand = logo color, used for banner/footer/section backgrounds.
     --navy = the darker steel for readable text/headings on light backgrounds. */
  --navy-brand: #24038e;  /* exact logo color */
  --navy:       #1a2238;  /* deep readable text color */
  --navy-deep:  #24038e;  /* logo color — footer, dropdowns, dark accents */
  --navy-soft:  #3a1ab0;  /* hover / lifted brand navy */
  --indigo:      #3a4a78;   /* accent indigo */

  /* Neutrals — warm stone / sand */
  --sand:        #c9b79c;   /* warm stone */
  --sand-deep:   #a8916f;   /* deeper sand for accents */
  --cream:       #f6f1e9;   /* page background */
  --cream-soft:  #fbf8f2;   /* lifted cards on cream */
  --stone:       #e7ddcd;   /* dividers / soft fills */
  --charcoal:    #20242e;   /* dark glass tone */

  /* Accent */
  --gold:        #b89766;   /* refined brass accent */
  --gold-light:  #d4b888;

  /* Text */
  --ink:         #20242e;
  --ink-soft:    #4b4f5a;
  --on-dark:     #f6f1e9;
  --on-dark-dim: #b9c0d4;

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 11rem;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --slow: 1.1s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "ss01";
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
/* Fraunces variable font: opsz=optical-sizing, wght=weight, SOFT=terminal softness (0-100, higher=warmer) */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 90, "SOFT" 50;
}
.display {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 350;
  line-height: 0.96;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.h-section {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 350;
  font-variation-settings: "opsz" 100, "SOFT" 50;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  font-weight: 350;
  max-width: 54ch;
}
.serif-italic { font-style: italic; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 11vw, var(--space-2xl)); }
.section--tight { padding-block: clamp(3rem, 7vw, var(--space-xl)); }
.bg-cream { background: var(--cream); }
.bg-cream-soft { background: var(--cream-soft); }
.bg-navy { background: var(--navy-brand); color: var(--on-dark); }
.bg-charcoal { background: var(--charcoal); color: var(--on-dark); }
.center { text-align: center; }
.divider { width: 56px; height: 1px; background: var(--gold); margin: var(--space-md) 0; }
.center .divider { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border: 1px solid var(--navy-brand);
  background: var(--navy-brand);
  color: var(--on-dark);
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--navy-deep); border-color: var(--gold); }
.btn:hover::after { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
}
.btn--ghost:hover { color: var(--navy-deep); }

.btn--light {
  background: transparent;
  border-color: rgba(246,241,233,0.4);
  color: var(--on-dark);
}
.btn--light::after { background: var(--cream); }
.btn--light:hover { color: var(--navy-deep); border-color: var(--cream); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.link-arrow .arw { transition: transform 0.4s var(--ease); }
.link-arrow:hover { border-color: var(--gold); color: var(--sand-deep); }
.link-arrow:hover .arw { transform: translateX(6px); }
.bg-navy .link-arrow, .bg-charcoal .link-arrow { color: var(--on-dark); }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--navy-brand);
  color: var(--on-dark-dim);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(246,241,233,0.08);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 0.45rem;
}
.topbar a { color: var(--on-dark-dim); transition: color 0.3s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .tb-contact { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.topbar .tb-lang { display: flex; gap: 0.5rem; align-items: center; }
.topbar .tb-lang a.active { color: var(--gold-light); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--navy-brand);
  transition: box-shadow 0.5s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 14px 40px -28px rgba(0,0,0,0.6);
}
/* Header is always navy now, so nav children are always light */
.nav-links > li > a { color: var(--cream); }
.nav-links > li > a::after { background: var(--gold-light); }
.burger span { background: var(--cream) !important; }
.nav-cta .btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.nav-cta .btn:hover { background: var(--gold); color: var(--navy); }
/* Dropdown over navy */
.drop { background: var(--navy-deep); border-top-color: var(--gold); }
.drop li a { color: var(--navy-brand); }
.drop li a:hover { background: var(--navy-brand); color: var(--gold-light); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.7rem;
}
.brand {
  font-family: var(--serif);
  line-height: 0.95;
  letter-spacing: 0.18em;
  color: var(--navy);
  transition: color 0.4s;
  display: inline-flex; align-items: center;
}
.brand .brand-logo {
  display: block;
  height: 80px;
  width: auto;
}
.brand.has-logo .brand-text { display: none; }
.brand .brand-main {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}
.brand .brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
  padding-left: 0.18em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links > li > a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-block: 0.4rem;
}
.nav-links > li > a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold-light);
  transition: width 0.4s var(--ease);
}
.nav-links > li > a:hover::after,
.nav-links > li.current > a::after { width: 100%; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream-soft);
  min-width: 230px;
  padding: 0.6rem 0;
  box-shadow: 0 24px 60px -24px rgba(26,34,56,0.45);
  opacity: 0; visibility: hidden;
  transition: all 0.35s var(--ease);
  border-top: 2px solid var(--gold);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop li a {
  display: block;
  padding: 0.7rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--on-dark-dim);
  transition: all 0.3s;
}
.drop li a:hover { background: var(--navy); color: var(--gold-light); padding-left: 1.8rem; }
.drop li a .tag { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-left: 0.4rem; }

.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-cta .btn { padding: 0.85rem 1.7rem; font-size: 0.82rem; }

.burger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 6px 0; }
.burger span { height: 1.5px; background: var(--cream); transition: all 0.4s var(--ease); }

/* mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  color: var(--on-dark);
  z-index: 100;
  padding: 5rem var(--gutter) 3rem;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mclose { position: absolute; top: 1.6rem; right: var(--gutter); font-size: 2rem; color: var(--on-dark); font-family: var(--serif); }
.mobile-nav a { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 300; padding: 0.7rem 0; border-bottom: 1px solid rgba(246,241,233,0.1); }
.mobile-nav .msub a { font-size: 1.1rem; padding-left: 1.2rem; color: var(--on-dark-dim); }
.mobile-nav .mcontact { margin-top: 2.5rem; font-size: 0.9rem; color: var(--on-dark-dim); line-height: 2; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--on-dark);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s var(--ease), transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(18,24,41,0.62) 0%, rgba(18,24,41,0.22) 38%, rgba(18,24,41,0.8) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 9vw, 7rem); }
.hero .eyebrow { color: var(--gold-light); margin-bottom: 1.5rem; font-size: 0.78rem; letter-spacing: 0.36em; font-weight: 700; }
.hero h1 { color: var(--cream); max-width: 16ch; text-shadow: 0 4px 30px rgba(0,0,0,0.35); }
.hero .hero-sub {
  margin-top: 1.8rem;
  max-width: 46ch;
  color: var(--gold-light);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.45;
  font-weight: 350;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  letter-spacing: 0;
}
.hero-actions { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(246,241,233,0.7); display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero-scroll .bar { width: 1px; height: 46px; background: linear-gradient(var(--gold-light), transparent); }

/* slide dots */
.hero-dots { position: absolute; right: var(--gutter); bottom: clamp(3rem,9vw,7rem); z-index: 3; display: flex; flex-direction: column; gap: 0.7rem; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(246,241,233,0.6); transition: all 0.4s; }
.hero-dots button.active { background: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-bar {
  position: relative; z-index: 5;
  margin-top: -3.5rem;
}
.booking-card {
  background: var(--cream-soft);
  box-shadow: 0 40px 90px -50px rgba(26,34,56,0.6);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  border-top: 3px solid var(--gold);
}
.bf {
  padding: 1.5rem 1.6rem;
  border-right: 1px solid var(--stone);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.bf label { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.bf input, .bf select {
  font-family: var(--sans); font-size: 0.98rem; color: var(--navy);
  border: none; background: transparent; outline: none; width: 100%;
  font-weight: 500;
}
.bf select { cursor: pointer; }
.booking-card .bf-submit { border-right: none; }
.booking-card .btn { height: 100%; padding-inline: 2.4rem; white-space: nowrap; }

/* ============================================================
   INTRO
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.intro-figure { position: relative; }
.intro-figure img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.intro-figure .fig-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 55%; aspect-ratio: 4/3; object-fit: cover;
  border: 8px solid var(--cream);
  display: none;
}
@media (min-width: 880px){ .intro-figure .fig-accent { display: block; } }

/* ============================================================
   ROOM CARDS
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.2rem);
}
.room-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--on-dark);
  min-height: 460px;
  display: flex; align-items: flex-end;
}
.room-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform 1.2s var(--ease);
}
.room-card::after {
  content:""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(18,24,41,0) 30%, rgba(18,24,41,0.85) 100%);
}
.room-card:hover img { transform: scale(1.06); }
.room-card .rc-body { position: relative; z-index: 2; padding: 2.4rem; width: 100%; }
.room-card .rc-meta { font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 0.8rem; }
.room-card h3 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 100, "SOFT" 50;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.room-card .rc-price { margin-top: 0.6rem; font-family: var(--sans); font-size: 0.92rem; color: rgba(246,241,233,0.85); letter-spacing: 0.04em; }
.room-card .rc-price b { font-family: var(--serif); font-size: 1.9rem; font-weight: 450; color: var(--gold-light); letter-spacing: -0.01em; }
.room-card .rc-foot { margin-top: 1.6rem; display: flex; justify-content: space-between; align-items: center; }
.room-card .rc-specs { font-size: 0.82rem; color: rgba(246,241,233,0.78); letter-spacing: 0.04em; }
.room-card.is-tall { grid-row: span 2; min-height: 100%; }
.room-card .rc-tag {
  position: absolute; top: 1.4rem; left: 1.4rem; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  background: var(--gold); color: var(--navy-deep); padding: 0.4rem 0.8rem;
}

/* ============================================================
   FEATURE (Body SHADE / split sections)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 78vh; }
.split-media { position: relative; overflow: hidden; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 7vw, 6rem); }
.split--reverse .split-media { order: 2; }

/* Body SHADE distinct industrial tone */
.bodyshade { background: #14160f; color: #eef0e6; }
.bodyshade .eyebrow { color: #b6d63f; }
.bodyshade .divider { background: #b6d63f; }
.bodyshade .h-section { color: #f3f5ea; }
.bodyshade .btn { background: #b6d63f; border-color: #b6d63f; color: #14160f; }
.bodyshade .btn::after { background: #fff; }
.bodyshade .lead { color: #c4c8b6; }

/* ============================================================
   AMENITIES
   ============================================================ */
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone); border: 1px solid var(--stone); }
.amen-card { background: var(--cream-soft); padding: clamp(2rem,4vw,3rem); transition: background 0.4s; }
.amen-card:hover { background: var(--cream); }
.amen-card .amen-ico { width: 34px; height: 34px; color: var(--gold); margin-bottom: 1.4rem; }
.amen-card h4 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.amen-card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ============================================================
   DISCOVER BEIRUT
   ============================================================ */
.discover-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.disc-card { position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; color: var(--on-dark); }
.disc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.disc-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(18,24,41,0) 35%, rgba(18,24,41,0.82) 100%); }
.disc-card:hover img { transform: scale(1.07); }
.disc-card .dc-body { position: relative; z-index: 2; padding: 2rem; }
.disc-card .dc-cat { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); }
.disc-card h4 { font-size: 1.6rem; color: var(--cream); margin-top: 0.5rem; }
.disc-card p { font-size: 0.9rem; color: rgba(246,241,233,0.82); margin-top: 0.6rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { position: relative; }
.review-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.review-card { background: var(--cream-soft); padding: 2.4rem 2rem; border-top: 2px solid var(--gold); display: flex; flex-direction: column; gap: 1rem; }
.review-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; }
.review-text { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; font-style: italic; color: var(--navy); }
.review-author { margin-top: auto; font-size: 0.82rem; letter-spacing: 0.05em; }
.review-author b { display: block; font-weight: 600; color: var(--navy); }
.review-author span { color: var(--ink-soft); font-size: 0.76rem; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content:""; position:absolute; inset:0; background: rgba(18,24,41,0.82); z-index: 1; }
.cta-band .wrap { position: relative; z-index: 2; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: var(--on-dark-dim); padding-top: clamp(4rem, 8vw, 6rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 4rem; }
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand .brand-main { font-size: 1.7rem; }
.footer-brand p { margin-top: 1.4rem; font-size: 0.92rem; line-height: 1.8; max-width: 32ch; }
.footer-col h5 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; font-weight: 700; }
.footer-col li { margin-bottom: 0.8rem; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.6rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(246,241,233,0.2); display: grid; place-items: center; transition: all 0.4s var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.footer-bottom { border-top: 1px solid rgba(246,241,233,0.12); padding-block: 1.8rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: opacity 0.4s; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-track { grid-template-columns: repeat(2, 1fr); }
  .booking-card { grid-template-columns: 1fr 1fr; }
  .booking-card .bf-submit { grid-column: 1 / -1; }
  .booking-card .btn { width: 100%; padding-block: 1.2rem; }
}
@media (max-width: 880px){
  .topbar { display: none; }
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .brand .brand-logo { height: 62px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-figure { order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media { min-height: 56vh; }
  .amen-grid { grid-template-columns: 1fr; }
  .discover-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card.is-tall { grid-row: span 1; }
}
@media (max-width: 560px){
  .review-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-card { grid-template-columns: 1fr; }
  .bf { border-right: none; border-bottom: 1px solid var(--stone); }
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  position: relative;
  min-height: 72vh;
  display: flex; align-items: flex-end;
  color: var(--on-dark);
  overflow: hidden;
}
.page-head .ph-bg { position: absolute; inset: 0; z-index: 0; }
.page-head .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-head::after { content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(18,24,41,0.55) 0%, rgba(18,24,41,0.2) 45%, rgba(18,24,41,0.82) 100%); }
.page-head .wrap { position: relative; z-index: 2; padding-bottom: clamp(2.5rem,6vw,4.5rem); }
.page-head .eyebrow { color: var(--gold-light); margin-bottom: 1rem; }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 300; color: var(--cream); max-width: 18ch; }
.page-head .ph-sub { margin-top: 1.2rem; max-width: 50ch; color: rgba(246,241,233,0.86); }

/* breadcrumb */
.crumb { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246,241,233,0.75); margin-bottom: 1.4rem; }
.crumb a:hover { color: var(--gold-light); }
.crumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ============================================================
   ROOM DETAIL
   ============================================================ */
.room-detail { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.room-detail .rd-main p { margin-bottom: 1.2rem; color: var(--ink-soft); }
.room-detail .rd-main p.lead { color: var(--ink-soft); }

.rd-facts { display: flex; flex-wrap: wrap; gap: 0 2.4rem; margin: 1.8rem 0 2.4rem; padding: 1.4rem 0; border-block: 1px solid var(--stone); }
.rd-fact { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.4rem 0; }
.rd-fact .rf-label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.rd-fact .rf-val { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); }

.rd-section-title { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 2.4rem 0 1.2rem; }
.amenity-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.7rem 1.5rem; }
.amenity-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.94rem; color: var(--ink-soft); }
.amenity-list li::before { content:""; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* booking aside */
.rd-aside { position: sticky; top: 110px; background: var(--cream-soft); padding: 2.2rem; border-top: 3px solid var(--gold); box-shadow: 0 30px 70px -45px rgba(26,34,56,0.5); }
.rd-aside .rda-rate { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: var(--navy); line-height: 1; }
.rd-aside .rda-rate small { font-family: var(--sans); font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.rd-aside .rda-note { font-size: 0.82rem; color: var(--ink-soft); margin: 0.8rem 0 1.6rem; }
.rd-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.rd-field label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.rd-field input, .rd-field select {
  font-family: var(--sans); font-size: 0.95rem; color: var(--navy);
  padding: 0.75rem 0.9rem; border: 1px solid var(--stone); background: #fff; outline: none; width: 100%;
}
.rd-field input:focus, .rd-field select:focus { border-color: var(--gold); }
.rd-aside .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.rd-aside .rda-or { text-align: center; font-size: 0.78rem; color: var(--ink-soft); margin: 1.2rem 0; }
.rd-aside .rda-contact { font-size: 0.86rem; text-align: center; }
.rd-aside .rda-contact a { color: var(--navy); border-bottom: 1px solid var(--gold); }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.9rem; }
.gallery a { display: block; overflow: hidden; aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery a:hover img { transform: scale(1.07); }
.gallery .g-wide { grid-column: span 2; aspect-ratio: 8/3; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,18,28,0.94); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8); }
.lightbox .lb-close { position: absolute; top: 1.4rem; right: 2rem; color: var(--cream); font-size: 2.4rem; font-family: var(--serif); cursor: pointer; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--cream); font-size: 2.6rem; cursor: pointer; padding: 1rem; user-select: none; opacity: 0.8; transition: opacity 0.3s; }
.lightbox .lb-nav:hover { opacity: 1; }
.lightbox .lb-prev { left: 1rem; } .lightbox .lb-next { right: 1rem; }

/* inquiry banner (chalet / long stay) */
.inquiry-band { background: var(--navy-brand); color: var(--on-dark); padding: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; border-top: 3px solid var(--gold); }
.inquiry-band h3 { font-size: 1.8rem; color: var(--cream); }
.inquiry-band p { color: var(--on-dark-dim); max-width: 48ch; margin-top: 0.4rem; font-size: 0.94rem; }

/* ============================================================
   ROOMS INDEX
   ============================================================ */
.roomx { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; margin-bottom: 0; }
.roomx:nth-child(even) .roomx-media { order: 2; }
.roomx-media { position: relative; overflow: hidden; min-height: 460px; }
.roomx-media img { position: absolute; inset:0; width:100%; height:100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.roomx:hover .roomx-media img { transform: scale(1.05); }
.roomx-body { background: var(--cream-soft); display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem,5vw,4.5rem); }
.roomx:nth-child(odd) .roomx-body { background: var(--cream); }
.roomx-body .rx-rate { font-family: var(--serif); font-size: 2.4rem; color: var(--navy); }
.roomx-body .rx-rate small { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-soft); }
.roomx-tag { display:inline-block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 0.8rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); }
.contact-info .ci-item { margin-bottom: 1.8rem; }
.contact-info .ci-item h5 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; }
.contact-info .ci-item p, .contact-info .ci-item a { font-size: 1.05rem; color: var(--ink); }
.contact-info .ci-item a:hover { color: var(--sand-deep); }
.contact-form .rd-field input, .contact-form .rd-field select, .contact-form .rd-field textarea {
  font-family: var(--sans); font-size: 0.95rem; color: var(--navy);
  padding: 0.8rem 0.9rem; border: 1px solid var(--stone); background: #fff; outline: none; width: 100%;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .rd-field input:focus, .contact-form .rd-field textarea:focus, .contact-form .rd-field select:focus { border-color: var(--gold); }
.contact-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* map */
.map-embed { width: 100%; height: 420px; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* dining feature rows */
.dining-rows .roomx-body .rx-rate { font-size: 1.6rem; }

@media (max-width: 880px){
  .room-detail { grid-template-columns: 1fr; }
  .rd-aside { position: static; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .g-wide { grid-column: span 2; }
  .roomx { grid-template-columns: 1fr; }
  .roomx:nth-child(even) .roomx-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .amenity-list { grid-template-columns: 1fr; }
  .contact-form .two { grid-template-columns: 1fr; }
}

/* ============================================================
   RATINGS PILLS (reviews header)
   ============================================================ */
.ratings-row {
  display: flex; justify-content: center; gap: 1rem;
  margin-top: 1.6rem; flex-wrap: wrap;
}
.rating-pill {
  display: inline-flex; align-items: baseline; gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  background: var(--cream-soft);
  border: 1px solid var(--stone);
  border-top: 2px solid var(--gold);
}
.rating-pill b {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.rating-pill span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ============================================================
   MOBILE QUICK-CALL BUTTONS (visible only on small screens)
   ============================================================ */
.mobile-quick {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  flex-direction: column;
  gap: 0.6rem;
}
.mobile-quick a {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--cream);
  border-radius: 50%;
  box-shadow: 0 14px 30px -10px rgba(26,34,56,0.55);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.mobile-quick a.wa { background: #25D366; color: #fff; }
.mobile-quick a:hover { transform: scale(1.06); }
.mobile-quick a:active { transform: scale(0.97); }
.mobile-quick svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .mobile-quick { display: flex; }
}

/* Language toggle: mark FR as muted until wired */
.tb-lang a.muted { opacity: 0.45; cursor: not-allowed; }
.tb-lang a.muted:hover { color: inherit; }

/* Location facts grid (replaces Discover Beirut image cards) */
.location-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(246,241,233,0.15);
  border-bottom: 1px solid rgba(246,241,233,0.15);
}
.loc-fact {
  padding: 2rem 1.4rem;
  border-right: 1px solid rgba(246,241,233,0.1);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.loc-fact:last-child { border-right: none; }
.loc-fact b {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.loc-fact span {
  font-size: 0.88rem;
  color: var(--on-dark-dim);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .location-facts { grid-template-columns: 1fr; }
  .loc-fact { border-right: none; border-bottom: 1px solid rgba(246,241,233,0.1); }
  .loc-fact:last-child { border-bottom: none; }
}

/* Footer logo bigger */
.footer-brand .brand .brand-logo { height: 100px; }

/* Mobile nav drawer logo */
.mobile-nav .brand .brand-logo { height: 60px; margin-bottom: 1.5rem; }
