/* ============================================================
   AURORA SPA — Page & section styles
   ============================================================ */

/* ============================================================
   HOME HERO — full-bleed photo, layered text, parallax
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + var(--announce-h) + 2rem) clamp(2.5rem, 7vh, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-scrim);
}

.hero-inner { width: 100%; position: relative; }

/* A second, softer pool of shade sitting directly behind the copy.
   The full-section scrim alone cannot go dark enough to guarantee contrast
   without flattening the photograph, so the protection is local instead. */
.hero-inner::before {
  content: '';
  position: absolute;
  inset: -8% -12% -30% -12%;
  z-index: -1;
  background: radial-gradient(ellipse 78% 72% at 28% 55%,
              rgba(6,9,7,.80) 0%, rgba(6,9,7,.55) 45%, rgba(6,9,7,0) 78%);
  pointer-events: none;
}
html[dir="rtl"] .hero-inner::before {
  background: radial-gradient(ellipse 78% 72% at 72% 55%,
              rgba(6,9,7,.80) 0%, rgba(6,9,7,.55) 45%, rgba(6,9,7,0) 78%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.15rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.09);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: var(--fs-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
html[lang="ar"] .hero-badge { letter-spacing: 0; text-transform: none; }
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 0 rgba(224,196,143,.7);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  70%  { box-shadow: 0 0 0 10px rgba(224,196,143,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,196,143,0); }
}

.hero h1 {
  color: #fff;
  max-width: 14ch;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.hero h1 .h1-accent {
  font-style: italic;
  color: var(--gold-soft);
}
html[lang="ar"] .hero h1 .h1-accent { font-style: normal; }

.hero-p {
  color: rgba(255,255,255,.90);
  max-width: 52ch;
  margin-top: 1.6rem;
  font-size: var(--fs-lead);
  text-shadow: 0 2px 18px rgba(0,0,0,.7), 0 1px 3px rgba(0,0,0,.5);
}

.hero .btn-row { margin-top: 2.4rem; }
.hero .btn-outline { --btn-fg: #fff; border-color: rgba(255,255,255,.38); }

/* Stats strip pinned to the bottom of the hero */
.hero-stats {
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.hero-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1;
  color: var(--gold-soft);
}
.hero-stat .lbl {
  display: block;
  margin-top: .5rem;
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
html[lang="ar"] .hero-stat .lbl { letter-spacing: 0; text-transform: none; font-size: .82rem; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  inset-inline-end: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.6);
  font-size: var(--fs-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue i {
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, var(--gold-soft), transparent);
  animation: cue 2.2s var(--ease-soft) infinite;
  transform-origin: top;
}
@keyframes cue {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(54px); opacity: 0; }
}
@media (max-width: 900px) { .scroll-cue { display: none; } }
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }

  /* On a phone the copy covers most of the frame, so the shade goes
     near-solid behind it rather than staying a soft pool */
  .hero-inner::before {
    inset: -14% -30% -40% -30%;
    background: linear-gradient(180deg, rgba(6,9,7,0) 0%, rgba(6,9,7,.72) 14%, rgba(6,9,7,.86) 55%, rgba(6,9,7,.92) 100%);
  }
  html[dir="rtl"] .hero-inner::before {
    background: linear-gradient(180deg, rgba(6,9,7,0) 0%, rgba(6,9,7,.72) 14%, rgba(6,9,7,.86) 55%, rgba(6,9,7,.92) 100%);
  }
  .hero h1 { text-shadow: 0 3px 24px rgba(0,0,0,.6); }
  .hero-stat .num { text-shadow: 0 2px 14px rgba(0,0,0,.6); }
}

/* ============================================================
   INNER PAGE HERO (about / services / packages / gallery / contact)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: clamp(46vh, 60vh, 620px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + var(--announce-h) + 2rem);
  padding-bottom: 3rem;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-bg { inset: -10% 0; z-index: -2; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--hero-scrim);
}
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero p { color: rgba(255,255,255,.80); max-width: 56ch; margin-top: 1.2rem; }

/* Breadcrumb */
.crumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  margin-top: 1.8rem;
}
.crumb a:hover { color: var(--gold-soft); }

/* ============================================================
   SPLIT SECTION (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }

.split-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; filter: var(--img-tint); }

/* Small overlapping second image */
.split-media-stack { position: relative; }
.split-inset {
  position: absolute;
  inset-inline-end: -8%;
  bottom: -8%;
  width: 46%;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-lg);
}
.split-inset img { width: 100%; height: 100%; object-fit: cover; filter: var(--img-tint); }

/* Floating badge */
.float-badge {
  position: absolute;
  inset-inline-start: -6%;
  top: 8%;
  padding: 1.1rem 1.5rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}
.float-badge .big {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--gold);
}
.float-badge .sm {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: .35rem;
}
html[lang="ar"] .float-badge .sm { letter-spacing: 0; text-transform: none; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 4/3; }
  /* Keep the overlap inside the gutter — hanging out gets clipped on a phone */
  .split-inset { width: 40%; inset-inline-end: 0; bottom: -7%; border-width: 6px; }
  /* Hangs off the photo's leading edge instead of sitting on top of it —
     stacked it covered the subject, so it goes horizontal and drops to the
     bottom corner, which the inset image leaves free. */
  .float-badge {
    inset-inline-start: calc(var(--gutter) * -1 + 8px);
    top: auto;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem .95rem;
    text-align: start;
  }
  .float-badge .big { font-size: 1.5rem; }
  .float-badge .sm {
    margin-top: 0;
    font-size: .58rem;
    line-height: 1.35;
    max-width: 18ch;   /* two lines, not three — keeps the pill short */
    letter-spacing: .06em;
  }
  html[lang="ar"] .float-badge .sm { font-size: .68rem; max-width: 18ch; }
}

/* ============================================================
   CATEGORY CARDS (home)
   ============================================================ */
.cat-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.3rem, 2.6vw, 2rem);
  isolation: isolate;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  transform-style: preserve-3d;
}
.cat-card:hover { box-shadow: var(--shadow-lg); }

.cat-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--img-tint);
  transition: transform 1.2s var(--ease);
}
.cat-card:hover img { transform: scale(1.09); }

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,12,9,.06) 30%, rgba(8,12,9,.82) 100%);
  transition: background var(--t-med) var(--ease-soft);
}
.cat-card:hover::after { background: linear-gradient(180deg, rgba(8,12,9,.28) 10%, rgba(8,12,9,.90) 100%); }

.cat-body { color: #fff; width: 100%; }
.cat-body .chip { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); }
.cat-body h3 { margin: .8rem 0 0; color: #fff; font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
.cat-body p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-top: .6rem;
  /* Description only unfolds on hover — keeps the grid calm */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease), opacity .45s var(--ease-soft), margin .6s var(--ease);
}
.cat-card:hover .cat-body p,
.cat-card:focus-within .cat-body p { max-height: 9rem; opacity: 1; }

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: var(--fs-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
html[lang="ar"] .cat-link { letter-spacing: 0; text-transform: none; }
.cat-link svg { width: 14px; height: 14px; transition: transform var(--t-fast) var(--ease); }
.cat-card:hover .cat-link svg { transform: translateX(5px); }
html[dir="rtl"] .cat-link svg { transform: scaleX(-1); }
html[dir="rtl"] .cat-card:hover .cat-link svg { transform: scaleX(-1) translateX(5px); }

/* Touch devices: descriptions always visible (no hover to reveal them) */
@media (hover: none) {
  .cat-body p { max-height: 9rem; opacity: 1; }
}

/* ============================================================
   PERK CARDS
   ============================================================ */
.perk {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.perk::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease);
}
.perk:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.perk:hover::before { transform: scaleY(1); transform-origin: top; }

.perk-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 1.3rem;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease-soft);
}
.perk-icon img { width: 34px; height: 34px; object-fit: contain; }
html[data-theme="dark"] .perk-icon img { filter: brightness(1.7) saturate(.9); }
.perk:hover .perk-icon { transform: rotate(-8deg) scale(1.08); background: var(--bg-alt); }

.perk h3 { font-size: 1.25rem; margin-bottom: .55rem; }
.perk p { font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.8; }

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.pkg:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.pkg.best { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-md); }

.pkg-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.pkg-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--img-tint);
  transition: transform 1.1s var(--ease);
}
.pkg:hover .pkg-media img { transform: scale(1.07); }

.pkg-flag {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  padding: .4rem 1rem;
  border-radius: 100px;
  background: var(--gold);
  color: #12160f;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}
html[lang="ar"] .pkg-flag { letter-spacing: 0; text-transform: none; font-weight: 700; }

.pkg-save {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(10,14,11,.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  z-index: 2;
}
.pkg-save b { display: block; color: var(--gold-soft); font-size: 1rem; }

.pkg-body { padding: clamp(1.4rem, 2.6vw, 2rem); display: flex; flex-direction: column; flex: 1; }
.pkg-body h3 { margin-bottom: .5rem; }
.pkg-time {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
html[lang="ar"] .pkg-time { letter-spacing: 0; text-transform: none; }
.pkg-body > p { font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.8; }

.pkg-items {
  margin: 1.3rem 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.pkg-items li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.6;
}
.pkg-items li::before {
  content: '✦';
  color: var(--gold);
  font-size: .7em;
  line-height: 1.9;
  flex-shrink: 0;
}

.pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.pkg-price { display: flex; align-items: baseline; gap: .5rem; }
.pkg-price .now {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
}
.pkg-price .cur { font-size: var(--fs-xs); letter-spacing: .1em; color: var(--text-soft); }
.pkg-price .was { font-size: var(--fs-sm); color: var(--text-faint); text-decoration: line-through; }

/* ============================================================
   SERVICE GRID + FILTER
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}
.filter-btn {
  padding: .68rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text-soft);
  font-size: var(--fs-sm);
  letter-spacing: .08em;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #12160f; }

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease), opacity .4s var(--ease-soft);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

/* Filter hide — collapses out of the grid instead of leaving a gap */
.svc-card.filtered-out {
  opacity: 0;
  transform: scale(.94);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.svc-media { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); position: relative; }
.svc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--img-tint);
  transition: transform 1.1s var(--ease);
}
.svc-card:hover .svc-media img { transform: scale(1.08); }

.svc-tag {
  position: absolute;
  top: .85rem; inset-inline-start: .85rem;
  padding: .3rem .85rem;
  border-radius: 100px;
  background: rgba(10,14,11,.68);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--gold-soft);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
html[lang="ar"] .svc-tag { letter-spacing: 0; text-transform: none; }

.svc-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.svc-body p { font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.75; flex: 1; }
.svc-body .btn-ghost { margin-top: 1.1rem; align-self: flex-start; font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; }
html[lang="ar"] .svc-body .btn-ghost { letter-spacing: 0; text-transform: none; }

/* ============================================================
   INCLUDED-WITH-EVERY-BOOKING STRIP
   ============================================================ */
.inc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.inc-item {
  background: var(--surface);
  padding: clamp(1.4rem, 3vw, 2.2rem) 1rem;
  text-align: center;
  transition: background var(--t-fast) var(--ease-soft), transform var(--t-fast) var(--ease);
}
.inc-item:hover { background: var(--surface-2); transform: translateY(-3px); }
.inc-item .ic {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  margin: 0 auto .8rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.inc-item span { font-size: var(--fs-sm); color: var(--text-soft); }
@media (max-width: 860px) { .inc-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   VIDEO CARDS
   ============================================================ */
.vid-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: #0a0d0b;
  border: 1px solid var(--line);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.vid-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.vid-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.72);
  transition: transform 1.1s var(--ease), filter var(--t-med) var(--ease-soft);
}
.vid-card:hover video { transform: scale(1.06); filter: brightness(.55); }

/* Once playing: full brightness, no zoom, native controls take over */
.vid-card[data-playing] video,
.vid-card[data-playing]:hover video { filter: none; transform: none; }
.vid-card[data-playing] { cursor: default; }
.vid-card[data-playing]:hover { transform: none; }

.vid-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.vid-play i {
  display: grid; place-items: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-style: normal;
  font-size: 1.15rem;
  padding-inline-start: 5px;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease-soft);
}
.vid-card:hover .vid-play i { transform: scale(1.14); background: var(--gold); color: #12160f; border-color: var(--gold); }
.vid-card[data-playing] .vid-play,
.vid-card[data-playing] .vid-cap { opacity: 0; visibility: hidden; transition: opacity .3s var(--ease-soft), visibility .3s; }

.vid-cap {
  position: absolute;
  inset-inline: 0; bottom: 0;
  padding: 1.4rem 1.2rem 1.2rem;
  background: linear-gradient(transparent, rgba(8,12,9,.85));
  color: #fff;
  font-size: var(--fs-sm);
  pointer-events: none;
}

/* ============================================================
   GALLERY MOSAIC
   ============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(140px, 20vw, 230px);
  grid-auto-flow: dense; /* the 2×2 tiles otherwise leave holes in the grid */
  gap: clamp(.6rem, 1.4vw, 1.1rem);
}
.mos-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
}
.mos-item.big { grid-column: span 2; grid-row: span 2; }
.mos-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--img-tint);
  transition: transform 1.1s var(--ease), filter var(--t-med) var(--ease-soft);
}
.mos-item:hover img { transform: scale(1.07); }
.mos-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(transparent 45%, rgba(8,12,9,.78));
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-soft);
}
.mos-item:hover::after { opacity: 1; }
.mos-cap {
  position: absolute;
  inset-inline: 0; bottom: 0;
  padding: 1rem 1.1rem;
  color: #fff;
  font-size: var(--fs-sm);
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--t-med) var(--ease-soft), transform var(--t-med) var(--ease);
}
.mos-item:hover .mos-cap { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mos-item.big { grid-column: span 2; grid-row: span 1; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(6,9,7,.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease-soft), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure { max-width: min(1100px, 92vw); text-align: center; }
.lb-figure img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--r-md);
  transition: opacity .3s var(--ease-soft);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}
.lb-figure figcaption { color: rgba(255,255,255,.7); font-size: var(--fs-sm); margin-top: 1.1rem; }

.lb-close, .lb-nav {
  position: absolute;
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  transition: all var(--t-fast) var(--ease);
}
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: #12160f; border-color: var(--gold); }
.lb-close { top: clamp(1rem, 3vw, 2rem); inset-inline-end: clamp(1rem, 3vw, 2rem); }
.lb-nav { top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-prev { inset-inline-start: clamp(.6rem, 2.5vw, 2rem); }
.lb-next { inset-inline-end: clamp(.6rem, 2.5vw, 2rem); }
html[dir="rtl"] .lb-prev, html[dir="rtl"] .lb-next { transform: translateY(-50%) scaleX(-1); }

/* ============================================================
   TESTIMONIAL SLIDER
   ============================================================ */
.slider { position: relative; overflow: hidden; }
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform .8s var(--ease);
  will-change: transform;
}
.slide {
  flex: 0 0 33.3333%;
  padding-inline: clamp(.5rem, 1.2vw, 1rem);
  box-sizing: border-box;
}
@media (max-width: 1023px) { .slide { flex-basis: 50%; } }
@media (max-width: 699px)  { .slide { flex-basis: 100%; } }

.review {
  height: 100%;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.review:hover { border-color: var(--gold); transform: translateY(-5px); }
.review .stars { color: var(--gold); letter-spacing: .18em; font-size: .9rem; }
.review q {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  quotes: '“' '”';
  flex: 1;
}
html[lang="ar"] .review q { font-style: normal; font-weight: 400; }
.review-by { display: flex; align-items: center; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.review-av {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #12160f;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-by b { display: block; font-weight: 500; font-size: var(--fs-sm); }
.review-by span { font-size: var(--fs-xs); color: var(--text-faint); }

.slider-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.slider-btn {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text);
  transition: all var(--t-fast) var(--ease);
}
.slider-btn:hover { background: var(--gold); color: #12160f; border-color: var(--gold); }
.slider-btn svg { width: 17px; height: 17px; }
html[dir="rtl"] .slider-btn svg { transform: scaleX(-1); }

.slider-dots { display: flex; gap: .5rem; align-items: center; }
.slider-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: all var(--t-fast) var(--ease);
}
.slider-dots button.active { width: 26px; border-radius: 100px; background: var(--gold); }

/* ============================================================
   VALUES (about)
   ============================================================ */
.value {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.value:hover { transform: translateY(-6px); border-color: var(--gold); }
.value .n {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .3;
  transition: opacity var(--t-med) var(--ease-soft);
}
.value:hover .n { opacity: .75; }
.value h3 { margin: .7rem 0 .55rem; font-size: 1.3rem; }
.value p { font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.8; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item {
  display: flex;
  gap: 1.1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.info-item:last-child { border-bottom: 0; padding-bottom: 0; }
.info-ic {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  transition: all var(--t-fast) var(--ease);
}
.info-ic svg { width: 19px; height: 19px; }
.info-item:hover .info-ic { background: var(--gold); color: #12160f; border-color: var(--gold); transform: rotate(-8deg); }
.info-item h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: .3rem;
}
html[lang="ar"] .info-item h4 { letter-spacing: 0; text-transform: none; font-size: .85rem; }
.info-item a, .info-item p { color: var(--text); font-size: var(--fs-body); line-height: 1.65; }
.info-item a:hover { color: var(--gold); }

/* Form */
.form-card {
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.field { position: relative; margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: .5rem;
}
html[lang="ar"] .field label { letter-spacing: 0; text-transform: none; font-size: .85rem; }

.field input, .field textarea, .field select {
  width: 100%;
  padding: .95rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--text);
  font-size: var(--fs-body);
  transition: border-color var(--t-fast) var(--ease-soft), box-shadow var(--t-fast) var(--ease-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,161,90,.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }

.form-note { font-size: var(--fs-xs); color: var(--text-faint); margin-top: 1rem; text-align: center; }

/* A field arriving pre-filled from a "Book" link announces itself, otherwise
   the visitor has no idea their choice already carried across */
.field-flash select { border-color: var(--gold); }
.field-flash::after {
  content: '';
  position: absolute;
  inset: -6px -8px;
  border-radius: var(--r-md);
  border: 1px solid var(--gold);
  pointer-events: none;
  animation: field-pulse 2.4s var(--ease-soft) 2;
}
@keyframes field-pulse {
  0%, 100% { opacity: 0; transform: scale(1.01); }
  35%      { opacity: .85; transform: scale(1); }
}

/* ============================================================
   AWARD / STAT BAND
   ============================================================ */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stat-cell {
  background: var(--bg);
  padding: clamp(1.8rem, 4vw, 3rem) 1rem;
  text-align: center;
}
.stat-cell .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--gold);
}
.stat-cell .lbl {
  display: block;
  margin-top: .6rem;
  font-size: var(--fs-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
}
html[lang="ar"] .stat-cell .lbl { letter-spacing: 0; text-transform: none; font-size: .85rem; }
@media (max-width: 700px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   GIFT CARD BAND
   ============================================================ */
.gift-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
}
.gift-band img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(1.1);
}
/* Heavy, even scrim — the photo behind is bright and the copy has to win */
.gift-band::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(120deg, rgba(8,12,9,.92) 0%, rgba(8,12,9,.72) 55%, rgba(8,12,9,.82) 100%);
}
.gift-band h2 { color: #fff; }
.gift-band p { color: rgba(255,255,255,.76); max-width: 54ch; margin: 1.1rem auto 2rem; }
.gift-band .eyebrow { color: var(--gold-soft); }
