/* ==========================================================================
   قاعة أروما للمناسبات والمؤتمرات — نظام التصميم
   Aroma Halls — design system (RTL / Arabic first)
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --gold: #c69b54;
  --gold-soft: #e0c08a;
  --gold-deep: #9a7436;
  --maroon: #4d0606;

  /* Neutrals */
  --ink: #0d0b09;
  --ink-2: #14110d;
  --ink-3: #1e1a15;
  --line: rgba(198, 155, 84, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);

  --cream: #f7f3ec;
  --cream-2: #efe8dc;
  --sand: #e3d9c8;

  --text: #221d17;
  --text-soft: #6b6155;
  --on-dark: #f4efe7;
  --on-dark-soft: rgba(244, 239, 231, 0.72);

  /* Type */
  --font-display: "Almarai", "Tajawal", "Segoe UI", system-ui, sans-serif;
  --font-body: "Tajawal", "Almarai", "Segoe UI", system-ui, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(0.98rem, 0.94rem + 0.2vw, 1.08rem);
  --step-1: clamp(1.15rem, 1.06rem + 0.45vw, 1.4rem);
  --step-2: clamp(1.4rem, 1.22rem + 0.9vw, 2rem);
  --step-3: clamp(1.75rem, 1.4rem + 1.7vw, 2.9rem);
  --step-4: clamp(2.1rem, 1.5rem + 3vw, 4.2rem);

  /* Space */
  --gap: clamp(1rem, 0.7rem + 1.4vw, 1.75rem);
  --pad-section: clamp(3.5rem, 2rem + 6vw, 7.5rem);
  --shell: 1240px;

  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 6px 20px rgba(13, 11, 9, 0.09);
  --shadow: 0 18px 50px rgba(13, 11, 9, 0.16);
  --shadow-lg: 0 34px 90px rgba(13, 11, 9, 0.28);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 78px;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--gold);
  color: #fff;
}

/* ---------- 3. Layout helpers ---------- */
.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: var(--pad-section);
  position: relative;
}

.section--dark {
  background: var(--ink);
  color: var(--on-dark);
}

.section--ink {
  background: linear-gradient(170deg, var(--ink-2), var(--ink));
  color: var(--on-dark);
}

.section--sand {
  background: var(--cream-2);
}

.stack > * + * {
  margin-top: var(--gap);
}

.grid {
  display: grid;
  gap: var(--gap);
}

/* ---------- 4. Section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section--dark .eyebrow,
.section--ink .eyebrow {
  color: var(--gold-soft);
}

.section-title {
  font-size: var(--step-3);
  margin-bottom: 0.6rem;
}

.section-lead {
  font-size: var(--step-1);
  color: var(--text-soft);
  max-width: 62ch;
  line-height: 1.85;
}

.section--dark .section-lead,
.section--ink .section-lead {
  color: var(--on-dark-soft);
}

.section-head {
  margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

.section-head--center .eyebrow::before {
  display: none;
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-0);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex: none;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #241a09;
  box-shadow: 0 10px 30px rgba(198, 155, 84, 0.32);
}

.btn--gold:hover {
  box-shadow: 0 16px 40px rgba(198, 155, 84, 0.45);
}

.btn--ghost {
  border-color: var(--line);
  color: inherit;
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(198, 155, 84, 0.1);
}

.btn--dark {
  background: var(--ink);
  color: var(--on-dark);
}

.btn--dark:hover {
  background: var(--ink-3);
}

.btn--wide {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- 6. Header / nav ---------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    height 0.4s var(--ease);
  background: linear-gradient(to bottom, rgba(13, 11, 9, 0.75), transparent);
}

.site-header.is-stuck {
  background: rgba(13, 11, 9, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.3);
  height: 66px;
}

.site-header--solid {
  background: rgba(13, 11, 9, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav {
  width: min(100% - 2.5rem, 1340px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.nav__brand img {
  height: 40px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.is-stuck .nav__brand img {
  height: 34px;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: var(--on-dark);
}

.nav__brand-text b {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
}

.nav__brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-inline-start: auto;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--on-dark-soft);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--on-dark);
}

.nav__link[aria-current="page"],
.nav__link[data-section-active] {
  color: var(--gold-soft);
  font-weight: 700;
}

.nav__link[aria-current="page"]::after,
.nav__link[data-section-active]::after {
  content: "";
  position: absolute;
  inset-inline: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

/* dropdown */
.nav__item {
  position: relative;
}

.nav__toggle-sub {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav__toggle-sub svg {
  width: 0.7em;
  height: 0.7em;
  transition: transform 0.3s var(--ease);
}

.nav__item.is-open .nav__toggle-sub svg {
  transform: rotate(180deg);
}

.nav__sub {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 0.4rem);
  min-width: 220px;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: rgba(20, 17, 13, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
    visibility 0.25s;
}

.nav__item:hover .nav__sub,
.nav__item:focus-within .nav__sub,
.nav__item.is-open .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sub a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 9px;
  font-size: 0.92rem;
  color: var(--on-dark-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav__sub a:hover,
.nav__sub a[aria-current="page"] {
  background: rgba(198, 155, 84, 0.16);
  color: var(--gold-soft);
}

.nav__cta {
  flex: none;
  padding: 0.6rem 1.35rem;
  font-size: 0.92rem;
}

.nav__mobile-cta {
  display: none;
}

.nav__burger {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0;
  place-items: center;
  margin-inline-start: auto;
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav__burger span + span {
  margin-top: 5px;
}

body.nav-open .nav__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav__burger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .nav__burger {
    display: grid;
  }

  .nav__cta {
    display: none;
  }

  .nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 1.25rem 1.25rem 2rem;
    background: rgba(13, 11, 9, 0.985);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
      visibility 0.3s;
  }

  body.nav-open .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__link {
    padding: 0.85rem 0.6rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }

  .nav__link[aria-current="page"]::after,
  .nav__link[data-section-active]::after {
    display: none;
  }

  .nav__toggle-sub {
    width: 100%;
    justify-content: space-between;
  }

  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: rgba(255, 255, 255, 0.03);
    display: none;
    margin-block: 0.35rem;
  }

  .nav__item.is-open .nav__sub {
    display: block;
  }

  .nav__mobile-cta {
    display: flex;
    margin-top: 1rem;
  }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-color: var(--ink);
}

/* صورة ثابتة تظهر فوراً ثم يعلوها الفيديو عند جاهزيته */
.hero__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__sound {
  position: absolute;
  inset-block-end: 2rem;
  inset-inline-end: 1.5rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(13, 11, 9, 0.55);
  backdrop-filter: blur(8px);
  color: var(--on-dark);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.hero__sound:hover {
  background: var(--gold);
  color: #241a09;
  transform: scale(1.06);
}

.hero__sound svg {
  width: 20px;
  height: 20px;
}

.hero__sound[hidden] {
  display: none;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      to left,
      rgba(13, 11, 9, 0.9) 0%,
      rgba(13, 11, 9, 0.66) 45%,
      rgba(13, 11, 9, 0.42) 100%
    ),
    linear-gradient(to top, rgba(13, 11, 9, 0.85), transparent 55%);
}

.hero__inner {
  padding-block: calc(var(--nav-h) + 3rem) 4rem;
  max-width: 46rem;
}

.hero__mark {
  width: 62px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: var(--step-4);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.hero h1 .accent {
  color: var(--gold-soft);
}

.hero__text {
  font-size: var(--step-1);
  color: var(--on-dark-soft);
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 4vw, 3rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem);
  color: var(--gold-soft);
  line-height: 1.1;
}

.hero__stat span {
  font-size: var(--step--1);
  color: var(--on-dark-soft);
}

/* على الجوال: هيرو أقصر ومحتوى أخف حتى تظهر مساحة أكبر من الفيديو.
   لا بد أن تأتي هذه القواعد بعد القواعد الأساسية أعلاه ليعمل التجاوز. */
@media (max-width: 700px) {
  .hero {
    min-height: 0;
    height: 74svh;
    max-height: 74svh;
  }

  .hero__inner {
    padding-block: calc(var(--nav-h) + 0.75rem) 1.5rem;
  }

  .hero__mark {
    width: 38px;
    margin-bottom: 0.6rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .hero__text {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.1rem;
  }

  .hero .btn-row {
    gap: 0.6rem;
  }

  .hero .btn-row .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero__stats {
    margin-top: 1.1rem;
    padding-top: 0.9rem;
    gap: 0.5rem 1.4rem;
  }

  .hero__stat b {
    font-size: 1.15rem;
  }

  .hero__stat span {
    font-size: 0.68rem;
  }

  .hero__sound {
    inset-block-end: 0.9rem;
    inset-inline-end: 0.9rem;
    width: 40px;
    height: 40px;
  }
}

/* شاشات قصيرة جداً: نخفي إحصائيات الهيرو لتوفير المساحة */
@media (max-width: 700px) and (max-height: 700px) {
  .hero__stats {
    display: none;
  }
}


/* page hero (inner pages) */
.page-hero {
  position: relative;
  padding-block: calc(var(--nav-h) + clamp(3rem, 6vw, 5.5rem))
    clamp(3rem, 6vw, 5.5rem);
  color: var(--on-dark);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.42;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(13, 11, 9, 0.96),
    rgba(13, 11, 9, 0.6)
  );
}

.page-hero h1 {
  font-size: var(--step-3);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--on-dark-soft);
  font-size: var(--step-1);
  max-width: 65ch;
  line-height: 1.9;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--step--1);
  color: var(--on-dark-soft);
  margin-bottom: 1rem;
}

.crumbs a:hover {
  color: var(--gold-soft);
}

.crumbs span {
  opacity: 0.5;
}

/* ---------- 8. Cards ---------- */
.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.card__body h3 {
  font-size: var(--step-1);
}

.card__body p {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.85;
}

.card__link {
  margin-top: auto;
  padding-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 0.95rem;
}

.card__link svg {
  width: 1em;
  height: 1em;
  transition: transform 0.3s var(--ease);
}

.card:hover .card__link svg {
  transform: translateX(-4px);
}

/* service card (dark, icon) */
.svc {
  position: relative;
  padding: clamp(1.75rem, 1rem + 2vw, 2.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), transparent);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    background 0.4s var(--ease);
  height: 100%;
}

.svc:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 155, 84, 0.5);
  background: linear-gradient(160deg, rgba(198, 155, 84, 0.12), transparent);
}

.svc__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(198, 155, 84, 0.14);
  border: 1px solid var(--line);
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}

.svc__icon svg {
  width: 26px;
  height: 26px;
}

.svc h3 {
  font-size: var(--step-2);
  margin-bottom: 0.7rem;
}

.svc p {
  color: var(--on-dark-soft);
  line-height: 1.95;
}


/* ---------- 9. Gallery ----------
   شبكة ثابتة 4 / 2 / 1 أعمدة. كل معرض عدد صوره من مضاعفات 4
   حتى لا يبقى فراغ في الصف الأخير على أي مقاس شاشة. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  border: 0;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.82);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198, 155, 84, 0);
  border-radius: var(--radius);
  transition: border-color 0.4s var(--ease);
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: rgba(198, 155, 84, 0.75);
}


/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 100%;
  max-height: 82svh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox__count {
  margin-top: 1rem;
  text-align: center;
  color: var(--on-dark-soft);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
}

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--on-dark);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.lightbox__btn:hover {
  background: rgba(198, 155, 84, 0.3);
  transform: scale(1.06);
}

.lightbox__btn svg {
  width: 20px;
  height: 20px;
}

.lightbox__close {
  top: 1.25rem;
  inset-inline-end: 1.25rem;
}

.lightbox__prev {
  inset-inline-start: 1.25rem;
  top: 50%;
  margin-top: -26px;
}

.lightbox__next {
  inset-inline-end: 1.25rem;
  top: 50%;
  margin-top: -26px;
}

@media (max-width: 700px) {
  .lightbox__prev {
    inset-inline-start: 0.6rem;
  }
  .lightbox__next {
    inset-inline-end: 0.6rem;
  }
}

/* ---------- 10. Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(1.75rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split__badge {
  position: absolute;
  inset-block-end: 1.25rem;
  inset-inline-start: 1.25rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: rgba(13, 11, 9, 0.82);
  backdrop-filter: blur(8px);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.8;
}

.feature-list svg {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 0.32em;
  color: var(--gold);
}

/* ---------- 11. Clients logo strip ---------- */
/* تدرّج ناعم وواسع على الحواف بدل القطع الحاد */
.slider__track {
  --fade: 16%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.15) calc(var(--fade) * 0.28),
    rgba(0, 0, 0, 0.6) calc(var(--fade) * 0.6),
    #000 var(--fade),
    #000 calc(100% - var(--fade)),
    rgba(0, 0, 0, 0.6) calc(100% - var(--fade) * 0.6),
    rgba(0, 0, 0, 0.15) calc(100% - var(--fade) * 0.28),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.15) calc(var(--fade) * 0.28),
    rgba(0, 0, 0, 0.6) calc(var(--fade) * 0.6),
    #000 var(--fade),
    #000 calc(100% - var(--fade)),
    rgba(0, 0, 0, 0.6) calc(100% - var(--fade) * 0.6),
    rgba(0, 0, 0, 0.15) calc(100% - var(--fade) * 0.28),
    transparent 100%
  );
}

/* شريط الشعارات: يتحرك تلقائياً، ويقبل السحب اليدوي والأزرار.
   لا التقاط (snap) ولا تمرير ناعم حتى لا يعارضا الحركة التلقائية. */
.logos .slider__track {
  gap: 1.1rem;
  align-items: stretch;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.logos .logo-item {
  scroll-snap-align: none;
}

/* بطاقة العميل: خلفية بيضاء لتظهر الشعارات بألوانها الأصلية.
   ارتفاع ثابت وعرض يتبع نسبة الشعار، فيملأ كل شعار بطاقته بالكامل. */
.logo-item {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  width: auto;
  height: clamp(96px, 8.5vw, 118px);
  padding: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.logo-item:hover,
.logo-item:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(198, 155, 84, 0.32);
}

/* الشعار يملأ البطاقة من الحافة إلى الحافة بلا إطار أبيض حوله */
.logo-item img {
  display: block;
  height: 100%;
  width: auto;
  max-width: min(300px, 46vw);
  object-fit: contain;
  transition: transform 0.35s var(--ease);
}

.logo-item:hover img {
  transform: scale(1.04);
}

/* ---------- 12. Testimonials — سلايدر أفقي ---------- */
.slider {
  position: relative;
}

.slider__track {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-block: 0.5rem 1.25rem;
  padding-inline: 2px;
  cursor: grab;
}

.slider__track::-webkit-scrollbar {
  display: none;
}

.slider__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.slider__track.is-dragging * {
  pointer-events: none;
}

.slider__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.slider__btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--on-dark);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease),
    opacity 0.25s var(--ease), border-color 0.25s var(--ease);
}

.slider__btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: #241a09;
  transform: scale(1.06);
}

.slider__btn:disabled {
  opacity: 0.32;
  cursor: default;
}

.slider__btn svg {
  width: 20px;
  height: 20px;
}

.slider__progress {
  position: relative;
  flex: 1;
  max-width: 240px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.slider__progress span {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 30%;
  border-radius: 3px;
  background: var(--gold);
  transition: inset-inline-start 0.18s linear, width 0.18s linear;
}

.review {
  flex: 0 0 clamp(268px, 30%, 360px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line-soft);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.review:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

/* شارة تقييم جوجل الإجمالي */
.grating {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: fit-content;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.grating__logo svg {
  width: 30px;
  height: 30px;
  color: var(--gold-soft);
}

.grating__score {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}

.grating__score b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-soft);
}

.grating__count {
  font-size: 0.83rem;
  color: var(--on-dark-soft);
  margin-top: 0.35rem;
}

.review__stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--gold);
}

.review__stars svg,
.grating__score .review__stars svg {
  width: 15px;
  height: 15px;
}

.review__mark {
  color: var(--gold);
  opacity: 0.55;
}

.review__mark svg {
  width: 30px;
  height: 30px;
}

.review__text {
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--on-dark);
  flex: 1;
}


.review__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
}

.review__avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(198, 155, 84, 0.18);
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.review__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.review__meta {
  font-size: 0.78rem;
  color: var(--on-dark-soft);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.review__meta svg {
  width: 0.95em;
  height: 0.95em;
}

/* على الجوال: البطاقة النشطة تتوقف في منتصف الشاشة */
@media (max-width: 700px) {
  .slider__track {
    --fade: 8%;
    scroll-padding-inline: 9%;
  }

  .review {
    flex-basis: 82%;
    scroll-snap-align: center;
  }

  .slider__track > .review:first-child {
    margin-inline-start: 9%;
  }

  .slider__track > .review:last-child {
    margin-inline-end: 9%;
  }
}

/* ---------- 13. Menu (food) ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tab {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.tab:hover {
  border-color: var(--gold);
}

.tab[aria-selected="true"] {
  background: var(--ink);
  color: var(--on-dark);
  border-color: var(--ink);
}

.tab-panel[hidden] {
  display: none;
}

.menu-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: var(--gap);
}

.menu-card {
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(to left, var(--gold), var(--gold-soft), transparent);
}

.menu-card h3 {
  font-size: var(--step-1);
  color: var(--maroon);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-card h3 svg {
  width: 1.15em;
  height: 1.15em;
  color: var(--gold);
  flex: none;
}

.menu-card ul {
  display: grid;
  gap: 0.5rem;
}

.menu-card li {
  position: relative;
  padding-inline-start: 1.1rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.97rem;
}

.menu-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.menu-tier + .menu-tier {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.menu-tier .divider {
  margin-bottom: 1.75rem;
}

.menu-tier .divider span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-1);
  color: var(--maroon);
  white-space: nowrap;
}

.menu-note {
  margin-top: 1.5rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(198, 155, 84, 0.12);
  border: 1px dashed var(--gold);
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ---------- 14. Events ---------- */
/* نفس منطق شبكة الصور: 4 / 2 / 1 وعدد البطاقات من مضاعفات 4 */
.events-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

@media (max-width: 1100px) {
  .events-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .events-list {
    grid-template-columns: 1fr;
  }
}

.event {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  height: 100%;
}

.event:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.event__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand);
}

.event__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.event:hover .event__media img {
  transform: scale(1.06);
}

.event__body {
  padding: 1.35rem 1.45rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.event__date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

.event__date svg {
  width: 1em;
  height: 1em;
}

.event__body h3 {
  font-size: 1.08rem;
  line-height: 1.6;
}

.event__src {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.87rem;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.event__src:hover {
  color: var(--gold-deep);
}

.event__src svg {
  width: 0.95em;
  height: 0.95em;
}

/* ---------- 15. Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

@media (max-width: 820px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-card h3 {
  padding: 1.15rem 1.4rem;
  font-size: var(--step-1);
  color: var(--on-dark);
}

/* ---------- 16. Forms ---------- */
.form-card {
  padding: clamp(1.6rem, 1rem + 2.5vw, 3rem);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.field label .req {
  color: #b3261e;
}

.field input,
.field select,
.field textarea {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 11px;
  background: var(--cream);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
  width: 100%;
  font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(198, 155, 84, 0.16);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field small {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.field-error {
  color: #b3261e;
  font-size: 0.83rem;
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #b3261e;
}

.field.has-error .field-error {
  display: block;
}

.form-foot {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-foot p {
  color: var(--text-soft);
  font-size: 0.88rem;
  flex: 1 1 220px;
}

/* ---------- 17. Info tiles / contact ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: var(--gap);
}

.info {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.info:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}

.info__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(198, 155, 84, 0.15);
  color: var(--gold-soft);
}

.info__icon svg {
  width: 21px;
  height: 21px;
}

.info h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.info p,
.info a {
  color: var(--on-dark-soft);
  font-size: 0.94rem;
  line-height: 1.8;
}

.info a:hover {
  color: var(--gold-soft);
}

.info--light {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.info--light p,
.info--light a {
  color: var(--text-soft);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--ink-2);
}

.map-frame iframe {
  width: 100%;
  height: clamp(300px, 45vw, 460px);
  border: 0;
  display: block;
  filter: grayscale(0.25);
}

.hours {
  display: grid;
  gap: 0.6rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 0.95rem;
}

.hours li:last-child {
  border-bottom: 0;
}

.hours b {
  font-weight: 700;
}

.hours span {
  color: var(--gold-soft);
  direction: ltr;
  unicode-bidi: embed;
}

/* ---------- 18. CTA band ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--on-dark);
  text-align: center;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(13, 11, 9, 0.94),
    rgba(13, 11, 9, 0.78)
  );
}

.cta-band h2 {
  font-size: var(--step-3);
  margin-bottom: 0.9rem;
}

.cta-band p {
  color: var(--on-dark-soft);
  font-size: var(--step-1);
  max-width: 55ch;
  margin: 0 auto 2rem;
  line-height: 1.9;
}

.cta-band .btn-row {
  justify-content: center;
}

/* ---------- 19. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 5vw, 4.5rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(1.75rem, 3vw, 3rem);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  height: auto;
  width: min(230px, 70%);
  margin-bottom: 1.1rem;
}

.footer-brand p {
  color: var(--on-dark-soft);
  font-size: 0.94rem;
  line-height: 1.9;
  max-width: 34ch;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gold-soft);
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  color: var(--on-dark-soft);
  font-size: 0.93rem;
  transition: color 0.25s var(--ease), padding 0.25s var(--ease);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--gold-soft);
  padding-inline-end: 4px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--on-dark-soft);
  transition: all 0.3s var(--ease);
}

.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #241a09;
  transform: translateY(-3px);
}

.socials svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--on-dark-soft);
}

/* ---------- 20. Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  inset-block-end: 1.35rem;
  inset-inline-start: 1.35rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  background: #25d366;
  color: #06301a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 21px;
  height: 21px;
}

@media (max-width: 520px) {
  .wa-float span {
    display: none;
  }
  .wa-float {
    padding: 0.9rem;
  }
}

/* ---------- 21. Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__poster {
    transform: none;
  }
  .slider__track {
    scroll-behavior: auto;
  }
}

/* ---------- 22. Utilities ---------- */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--gold);
  margin-block: 1.25rem;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: clamp(40px, 12vw, 110px);
  background: linear-gradient(to left, transparent, currentColor);
}

.divider::after {
  background: linear-gradient(to right, transparent, currentColor);
}

.skip-link {
  position: absolute;
  inset-block-start: -60px;
  inset-inline-start: 1rem;
  z-index: 999;
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  color: #241a09;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  inset-block-start: 0;
}

.num {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}
