/* ═══════════════════════════════════════════════════════
   AL MASSA APARTMENT HOTEL 1
   Style: "Oasis Noir" — Dark Luxury · Desert Refined
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Palette */
  --noir:        #0d0d0d;
  --noir-2:      #141414;
  --noir-3:      #1c1c1c;
  --noir-4:      #252525;
  --gold:        #C9A84C;
  --gold-light:  #e2c97e;
  --gold-pale:   #f0e4c0;
  --gold-dim:    #8a7232;
  --cream:       #F7F3EC;
  --cream-2:     #EDE7DA;
  --warm-mid:    #f2ede4;
  --text-main:   #1a1a1a;
  --text-dim:    #666;
  --text-pale:   #999;
  --white:       #ffffff;

  /* Typography */
  --font-en-display: 'Playfair Display', Georgia, serif;
  --font-en-body:    'Jost', sans-serif;
  --font-ar:         'Tajawal', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-gap: 7rem;
  --radius:      3px;
  --radius-lg:   8px;

  /* Transitions */
  --ease:  cubic-bezier(.4, 0, .2, 1);
  --slow:  cubic-bezier(.25, .8, .25, 1);
  --t:     .35s var(--ease);
  --t-slow:.65s var(--slow);

  /* Shadow */
  --shadow-sm:   0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 8px 40px rgba(0,0,0,.12);
  --shadow-lg:   0 24px 80px rgba(0,0,0,.2);
  --shadow-gold: 0 4px 32px rgba(201,168,76,.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-en-body);
  background: var(--cream);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] body { font-family: var(--font-ar); }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container       { width: 90%; max-width: 1200px; margin: 0 auto; }
.container-wide  { width: 96%; max-width: 1400px; margin: 0 auto; }
.section         { padding: var(--section-gap) 0; }
.section-dark    { background: var(--noir); }
.section-warm    { background: var(--cream-2); }

/* ── Custom Cursor Glow ── */
.cursor-glow {
  position: fixed;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left .1s, top .1s;
}

/* ══════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-en-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 1.4rem;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 540px;
  margin: 0 auto;
}

.body-text {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.body-text.dim { color: rgba(255,255,255,.5); }

.gold-rule {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.1rem 0 1.75rem;
}
.centered-rule { margin: 1.1rem auto 1.75rem; }

html[dir="rtl"] .gold-rule { margin-right: 0; }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  font-family: var(--font-en-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
html[dir="rtl"] .btn { font-family: var(--font-ar); }

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--noir);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--text-main);
}
.btn-outline-dark:hover { background: var(--text-main); color: var(--white); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-sm { padding: .65rem 1.4rem; font-size: .7rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-arrow { transition: transform var(--t); }
.btn:hover .btn-arrow { transform: translateX(4px); }
html[dir="rtl"] .btn:hover .btn-arrow { transform: translateX(-4px); }

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s var(--slow), transform .7s var(--slow);
}
.reveal         { transform: translateY(36px); }
.reveal-left    { transform: translateX(-40px); }
.reveal-right   { transform: translateX(40px); }
html[dir="rtl"] .reveal-left  { transform: translateX(40px); }
html[dir="rtl"] .reveal-right { transform: translateX(-40px); }

.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }

.revealed {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
#header.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  transition: padding var(--t);
}
#header.scrolled .header-inner { padding: 1rem 0; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--t);
}
.logo:hover .logo-mark { background: var(--gold); color: var(--noir); }
.logo-primary {
  display: block;
  font-family: var(--font-en-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  line-height: 1;
}
.logo-secondary {
  display: block;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-top: .3rem;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-link {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--t);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--t);
}
html[dir="rtl"] .nav-link::after { left: auto; right: 0; }
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 1.25rem; }

/* Lang toggle */
.lang-btn {
  display: flex; align-items: center; gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .4rem 1rem;
  transition: var(--t);
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-active { color: var(--gold-light); }
.lang-sep { opacity: .3; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,.7);
  border-radius: 1px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(13,13,13,.98);
  border-top: 1px solid rgba(255,255,255,.04);
  transition: max-height .45s var(--slow);
}
.mobile-menu.open { max-height: 500px; }
.mobile-link {
  display: block;
  padding: .9rem 5%;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color var(--t), background var(--t);
}
.mobile-link:hover { color: var(--gold); background: rgba(201,168,76,.04); }
.mobile-book { color: var(--gold); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroScale 20s ease-out both;
}
@keyframes heroScale {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,.88) 0%,
    rgba(10,10,10,.55) 55%,
    rgba(10,10,10,.2) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-content {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 6rem 0 2rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .2s both;
}
.eyebrow-line {
  width: 30px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
html[dir="rtl"] .hero-eyebrow { flex-direction: row-reverse; }

.hero-title {
  font-family: var(--font-en-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .35s both;
}
.title-italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.75);
}
.title-bold {
  display: block;
  font-weight: 700;
  color: var(--white);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s .5s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .8s .65s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 7rem; /* above ribbon */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 3;
  animation: fadeUp .8s 1s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(0.8); }
  50%       { opacity: 1;  transform: scaleY(1); }
}
.scroll-indicator span {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* Hero Ribbon */
.hero-ribbon {
  position: relative; z-index: 3;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: stretch;
  padding: 0;
}
.ribbon-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  gap: .3rem;
}
.ribbon-item strong {
  font-family: var(--font-en-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.ribbon-item span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.ribbon-divider {
  width: 1px;
  background: rgba(255,255,255,.06);
  margin: .75rem 0;
}

/* ══════════════════════════════════
   BOOKING BAR
══════════════════════════════════ */
#booking {
  background: var(--noir-2);
  border-bottom: 1px solid rgba(201,168,76,.1);
  padding: 0;
}
.booking-bar {
  display: flex;
  align-items: stretch;
  min-height: 90px;
}
.booking-label {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  flex-shrink: 0;
}
html[dir="rtl"] .booking-label { border-right: none; border-left: 1px solid rgba(255,255,255,.06); }
.booking-label i { font-size: .9rem; }
.booking-fields {
  flex: 1;
  display: flex;
  align-items: stretch;
}
.bfield {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  padding: 1.25rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: background var(--t);
}
html[dir="rtl"] .bfield { border-right: none; border-left: 1px solid rgba(255,255,255,.06); }
.bfield:hover { background: rgba(255,255,255,.025); }
.bfield label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  pointer-events: none;
}
.bfield input, .bfield select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 400;
  cursor: pointer;
  -webkit-appearance: none;
}
.bfield select option { background: var(--noir-2); }
.bfield-sep { width: 0; }
.booking-submit {
  border-radius: 0;
  padding: 1.5rem 2.5rem;
  font-size: .72rem;
  letter-spacing: .15em;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-imagery { position: relative; }
.about-img-main {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-main img { height: 100%; transition: transform .8s var(--slow); }
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 200px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
html[dir="rtl"] .about-img-accent { right: auto; left: -3rem; }
.about-img-accent img { height: 100%; }

.about-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--gold);
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
}
html[dir="rtl"] .about-badge { right: auto; left: -1.5rem; }
.badge-num {
  font-family: var(--font-en-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1;
}
.badge-text {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: .7;
  text-align: center;
  margin-top: .25rem;
}

.about-highlights {
  display: flex; flex-direction: column; gap: .85rem;
  margin-bottom: 2rem;
}
.highlight-item {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .88rem;
  color: var(--text-dim);
}
html[dir="rtl"] .highlight-item { flex-direction: row-reverse; text-align: right; }
.highlight-item i { color: var(--gold); margin-top: .15rem; flex-shrink: 0; }

/* Section header centered */
.section-header.centered { text-align: center; margin-bottom: 4rem; }

/* ══════════════════════════════════
   ROOMS
══════════════════════════════════ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.room-card {
  background: var(--noir-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
  position: relative;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  border-color: rgba(201,168,76,.2);
}

.room-card-featured {
  border-color: rgba(201,168,76,.25);
}
.room-featured-ribbon {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--noir);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  z-index: 2;
}
html[dir="rtl"] .room-featured-ribbon { right: auto; left: 1rem; }

.room-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.room-img-wrap img {
  height: 100%;
  transition: transform .7s var(--slow);
}
.room-card:hover .room-img-wrap img { transform: scale(1.07); }
.room-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,.9) 0%, transparent 50%);
}
.room-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,.4);
  padding: .3rem .85rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.3);
}
html[dir="rtl"] .room-tag { left: auto; right: 1rem; }
.room-size-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: .65rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  padding: .3rem .75rem;
  border-radius: var(--radius);
}
html[dir="rtl"] .room-size-badge { left: auto; right: 1rem; }

.room-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.room-name {
  font-family: var(--font-en-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}
.room-bed {
  font-size: .78rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .5rem;
}
.room-features {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.room-features li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .83rem;
  color: rgba(255,255,255,.55);
}
html[dir="rtl"] .room-features li { flex-direction: row-reverse; }
.room-features li i { color: var(--gold-dim); width: 14px; flex-shrink: 0; }

/* ══════════════════════════════════
   AMENITIES
══════════════════════════════════ */
.amenities-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.amenities-intro .section-title { margin-top: .5rem; }
.amen-img {
  margin-top: 2.5rem;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.amen-img img { height: 100%; }

.amenities-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.amen-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--t);
}
.amen-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,168,76,.1);
  transform: translateY(-4px);
}
.amen-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdf8ef, #f0e8d0);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.amen-icon i { font-size: 1.3rem; color: var(--gold-dim); }
.amen-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: .6rem;
}
.amen-card p { font-size: .82rem; line-height: 1.7; color: var(--text-dim); }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.test-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.test-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.test-quote-mark {
  font-family: var(--font-en-display);
  font-size: 5rem;
  line-height: .5;
  color: var(--gold-pale);
  margin-bottom: .75rem;
  user-select: none;
}
.test-text {
  font-family: var(--font-en-display);
  font-style: italic;
  font-size: .98rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
}
.test-author { display: flex; align-items: center; gap: 1rem; }
html[dir="rtl"] .test-author { flex-direction: row-reverse; }
.test-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  color: var(--noir);
  flex-shrink: 0;
}
.test-author strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text-main); }
.test-author span { display: block; font-size: .75rem; color: var(--text-pale); margin-top: .2rem; }
.test-author span i { color: var(--gold); margin-right: .3rem; }
html[dir="rtl"] .test-author span i { margin-right: 0; margin-left: .3rem; }
.stars { display: flex; gap: .2rem; margin-top: .4rem; }
.stars i { color: var(--gold); font-size: .72rem; }

/* ══════════════════════════════════
   LOCATION
══════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.landmarks { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.25rem; }
.landmark-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  transition: var(--t);
}
html[dir="rtl"] .landmark-item { flex-direction: row-reverse; text-align: right; }
.landmark-item:hover { border-color: rgba(201,168,76,.25); background: rgba(255,255,255,.02); }
.landmark-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  display: flex; align-items: center; justify-content: center;
}
.landmark-icon i { color: var(--gold); font-size: .9rem; }
.landmark-item strong { display: block; font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: .2rem; }
.landmark-item span { font-size: .78rem; color: rgba(255,255,255,.38); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.06);
}
.map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(.2) brightness(.95); }

.map-address {
  display: flex; align-items: center; gap: .6rem;
  margin-top: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.map-address i { color: var(--gold); }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
#contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 1rem; }
.cdetail { display: flex; align-items: flex-start; gap: 1rem; }
html[dir="rtl"] .cdetail { flex-direction: row-reverse; text-align: right; }
.cdetail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.cdetail-icon i { color: var(--noir); font-size: .95rem; }
.cdetail strong { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: .3rem; }
.cdetail a, .cdetail span { font-size: .9rem; color: var(--text-dim); transition: color var(--t); }
.cdetail a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.05);
}
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.form-group input, .form-group select, .form-group textarea {
  padding: .85rem 1rem;
  border: 1.5px solid #e8e2d8;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .9rem;
  color: var(--text-main);
  background: var(--cream);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-form .btn-full { margin-top: .5rem; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#footer { background: var(--noir); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  margin-top: 1.25rem;
  max-width: 260px;
}
.social-row { display: flex; gap: .6rem; margin-top: 1.75rem; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  transition: var(--t);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }

.footer-col h4 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a {
  font-size: .83rem;
  color: rgba(255,255,255,.38);
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact p { display: flex; align-items: flex-start; gap: .6rem; font-size: .83rem; color: rgba(255,255,255,.38); }
html[dir="rtl"] .footer-contact p { flex-direction: row-reverse; text-align: right; }
.footer-contact i { color: var(--gold); margin-top: .15rem; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.18); }

/* ══════════════════════════════════
   FLOATING CTA
══════════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  background: var(--gold);
  color: var(--noir);
  padding: .8rem 1.6rem;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: 0 8px 32px rgba(201,168,76,.35);
  transition: var(--t);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
html[dir="rtl"] .float-cta { right: auto; left: 2rem; }
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,.45); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .about-grid    { gap: 4rem; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-gap: 5rem; }
  .main-nav    { display: none; }
  .btn-sm      { display: none; }
  .hamburger   { display: flex; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-imagery { order: -1; margin-bottom: 2rem; }
  .about-img-accent { bottom: -2rem; right: -1.5rem; width: 140px; }
  .about-badge { top: 1.5rem; right: -.5rem; width: 100px; height: 100px; }
  .badge-num   { font-size: 1.6rem; }
  .rooms-grid  { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .amenities-layout { grid-template-columns: 1fr; }
  .amen-img    { aspect-ratio: 16/9; margin-top: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .amenities-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .booking-bar    { flex-direction: column; }
  .booking-label  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .booking-fields { flex-direction: column; }
  .bfield         { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .booking-submit { border-radius: 0; padding: 1.25rem; }
  .hero-title     { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-ribbon    { flex-wrap: wrap; }
  .ribbon-divider { display: none; }
  .ribbon-item    { flex: 1 1 40%; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2.5rem; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .float-cta      { bottom: 1.25rem; right: 1.25rem; }
  html[dir="rtl"] .float-cta { right: auto; left: 1.25rem; }
}
