:root {
  --ink: #1d1c1a;
  --ink-soft: #45413b;
  --ivory: #f7f3ec;
  --paper: #fffdf9;
  --gold: #b48738;
  --gold-light: #d4af63;
  --sand: #e9dfd0;
  --line: #ded4c5;
  --forest: #1f3029;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
}

h1, h2, h3, .brand-display {
  font-family: "Alexandria", "IBM Plex Sans Arabic", system-ui, sans-serif;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(180, 135, 56, .45);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 999px;
  background: #fff;
  padding: .7rem 1rem;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(29, 28, 26, .18);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-rail {
  position: relative;
  z-index: 60;
  background: var(--ink);
}

.top-rail nav a {
  display: grid;
  min-width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  font-family: "Alexandria", sans-serif;
  font-size: .58rem;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.top-rail nav a:hover {
  transform: translateY(-1px);
  border-color: var(--gold-light);
  color: #fff;
}

.rail-social-icon {
  width: .9rem;
  height: .9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-shell nav a {
  position: relative;
  transition: color .2s ease;
}

.brand-shell nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.55rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .2s ease;
}

.brand-shell nav a:hover {
  color: var(--gold);
}

.brand-shell nav a:hover::after {
  width: 100%;
}


/* Header desktop spacing: use the available horizontal width without compressing navigation items. */
.header-inner {
  width: 100%;
  max-width: 1680px;
  gap: clamp(1.25rem, 1.8vw, 2.75rem);
}

.header-main-nav {
  flex: 1 1 auto;
  justify-content: space-between;
  gap: clamp(.9rem, 1.35vw, 2.25rem);
  min-width: 0;
  white-space: nowrap;
}

.header-booking-button {
  flex: 0 0 auto;
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .header-inner {
    max-width: none;
    gap: .75rem;
  }

  .header-main-nav {
    gap: .6rem;
    font-size: .72rem;
  }

  .brand-lockup {
    width: 165px;
    height: 56px;
  }

  .header-booking-button {
    padding-right: .95rem;
    padding-left: .95rem;
    font-size: .72rem;
  }
}

.brand-lockup {
  display: block;
  width: 230px;
  height: 68px;
  overflow: hidden;
  background-color: #fff;
  background-image: url("../images/logo-header.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.brand-lockup-footer {
  width: 210px;
  height: 62px;
  background-color: #efe8dc;
  background-image: url("../images/logo-footer.webp");
}

.gold-button,
.outline-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  padding: .78rem 1.35rem;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.gold-button {
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #c99e50, #a7772c);
  color: #fff;
  box-shadow: 0 10px 25px rgba(139, 99, 34, .17);
}

.gold-button:hover,
.dark-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
}

.gold-button:hover {
  box-shadow: 0 14px 30px rgba(139, 99, 34, .24);
}

.outline-button {
  border: 1px solid #cfc3b2;
  background: rgba(255,255,255,.68);
  color: var(--ink);
}

.outline-button:hover {
  border-color: var(--gold);
  background: #fff;
}

.dark-button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.dark-button:hover {
  background: #34312d;
}

.marble-surface {
  isolation: isolate;
  background:
    radial-gradient(circle at 85% 8%, rgba(212,175,99,.17), transparent 23rem),
    linear-gradient(135deg, #faf8f4 0%, #f4eee5 58%, #ece2d3 100%);
}

.marble-surface::before,
.marble-surface::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.marble-surface::before {
  top: -18rem;
  right: -10rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(180,135,56,.22);
  border-radius: 50%;
}

.marble-surface::after {
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(112deg, transparent 25%, rgba(255,255,255,.7) 26%, transparent 27%),
    linear-gradient(20deg, transparent 68%, rgba(195,176,150,.24) 69%, transparent 70%);
  background-size: 41rem 30rem, 52rem 38rem;
  mix-blend-mode: soft-light;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #8a672c;
  font-size: .82rem;
  font-weight: 700;
}

.eyebrow span,
.section-label::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.gold-ink {
  color: #9a6d27;
}

.hero-title {
  margin-top: 1.75rem;
  color: #171614;
  font-size: clamp(2.65rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.18;
}

.hero-title span {
  display: block;
}

.hero-title .gold-ink {
  margin-top: .08em;
}

.hero-copy {
  animation: reveal-up .72s cubic-bezier(.2,.75,.25,1) both;
}

.hero-layout {
  display: grid;
  gap: 2.5rem;
}

.hero-copy i {
  display: inline-block;
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(180,135,56,.12);
}

.hero-visual {
  animation: reveal-up .8s .08s cubic-bezier(.2,.75,.25,1) both;
}

.hero-arch {
  max-width: 520px !important;
  padding: .6rem;
  border: 1px solid rgba(180,135,56,.65);
  border-radius: 48% 48% 2.25rem 2.25rem / 34% 34% 2.25rem 2.25rem;
  background: rgba(255,255,255,.3);
  box-shadow: 0 30px 65px rgba(50,42,31,.15);
}

.hero-arch::before {
  content: "";
  position: absolute;
  inset: -1.4rem 1.8rem 1.8rem -1.4rem;
  z-index: -1;
  border: 1px solid rgba(180,135,56,.18);
  border-radius: 48% 48% 2.7rem 2.7rem / 34% 34% 2.7rem 2.7rem;
}

.hero-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 47% 47% 1.8rem 1.8rem / 33% 33% 1.8rem 1.8rem;
  background: #eee4d5;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-seal {
  position: absolute;
  bottom: 1.7rem;
  right: -1.25rem;
  min-width: 8.6rem;
  border: 1px solid #d6c6ad;
  border-radius: 1.1rem;
  background: rgba(255,253,249,.94);
  padding: .9rem 1rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(33,29,24,.13);
  backdrop-filter: blur(10px);
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-height: 7.4rem;
  padding: 1.35rem 1.5rem;
  border-left: 1px solid #ece3d7;
}

.trust-strip article:last-child {
  border-left: 0;
}

.trust-strip h2 {
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
}

.trust-strip p {
  margin-top: .25rem;
  color: #7b746b;
  font-size: .78rem;
}

.trust-icon {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #dcc9a7;
  border-radius: 50%;
  color: #9a6d27;
}

.trust-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.offer-card {
  overflow: hidden;
  border: 1px solid #e1d6c7;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 18px 48px rgba(47,40,31,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.offers-grid {
  display: grid;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  gap: 1.25rem;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(47,40,31,.13);
}

.offer-media {
  height: 14rem;
  overflow: hidden;
  background: #eee7dd;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.offer-card:hover .offer-media img {
  transform: scale(1.035);
}

.offer-body {
  padding: 1.3rem;
}

.offer-body h3 {
  margin-top: .8rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.offer-body > p {
  min-height: 3.6rem;
  margin-top: .55rem;
  color: #70695f;
  font-size: .9rem;
  line-height: 1.75;
}

.offer-tag {
  display: inline-flex;
  border: 1px solid #dac7a6;
  border-radius: 999px;
  padding: .33rem .75rem;
  color: #8a672c;
  font-size: .68rem;
  font-weight: 700;
}

.offer-price {
  display: flex;
  align-items: flex-end;
  gap: .45rem;
  margin-top: .9rem;
  color: #9a6d27;
}

.offer-price strong {
  font-family: "Alexandria", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.offer-price .riyal-symbol {
  display: block;
  width: 1.28rem;
  height: 1.434rem;
  margin-bottom: .08rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.offer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  border-top: 1px solid #e5dbce;
  padding-top: 1.15rem;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
}

.offer-card-featured {
  border-color: #9c7738;
  background: var(--ink);
}

.offer-card-featured .offer-body h3,
.offer-card-featured .offer-price,
.offer-card-featured .offer-action {
  color: #fff;
}

.offer-card-featured .offer-body > p {
  color: rgba(255,255,255,.58);
}

.offer-card-featured .offer-tag {
  border-color: rgba(212,175,99,.4);
  color: #e6c477;
}

.offer-card-featured .offer-action {
  border-top-color: rgba(255,255,255,.13);
}

.service-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}

.catalog-card {
  min-height: 13.5rem;
  border: 1px solid #e4dbcf;
  border-radius: 1.65rem;
  background: #f9f6f1;
  padding: 1.5rem;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.catalog-card:hover {
  transform: translateY(-3px);
  border-color: #c9aa73;
  background: #fff;
}

.catalog-wide {
  grid-column: span 2;
}

.catalog-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d9c8aa;
  border-radius: 50%;
  color: #936a27;
}

.catalog-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-card h3 {
  margin-top: 2rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.catalog-card p {
  margin-top: .55rem;
  color: #736c63;
  font-size: .84rem;
  line-height: 1.8;
}

.catalog-dark {
  border-color: #9c7738;
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(29, 28, 26, .14);
}

.catalog-dark:hover {
  border-color: var(--gold-light);
  background: var(--ink);
  box-shadow: 0 24px 52px rgba(29, 28, 26, .2);
}

.catalog-dark .catalog-icon {
  border-color: rgba(212, 175, 99, .4);
  color: #e6c477;
}

.catalog-dark h3 {
  color: #fff;
}

.catalog-dark p {
  color: rgba(255, 255, 255, .58);
}

.vision-panel {
  position: relative;
  display: grid;
  min-height: 34rem;
  overflow: hidden;
  grid-template-rows: auto 1fr auto;
  border-radius: 48% 48% 2.4rem 2.4rem / 25% 25% 2.4rem 2.4rem;
  background:
    radial-gradient(circle at 50% 36%, rgba(212,175,99,.14), transparent 16rem),
    #1d1c1a;
  padding: 3rem 3.25rem;
  color: #fff;
  box-shadow: 0 30px 65px rgba(29,28,26,.16);
}

.vision-panel::after {
  content: "";
  position: absolute;
  inset: .75rem;
  border: 1px solid rgba(212,175,99,.34);
  border-radius: inherit;
  pointer-events: none;
}

.vision-brand {
  position: relative;
  z-index: 2;
  justify-self: center;
  color: #d4af63;
  font-family: "Alexandria", sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  line-height: 1;
  white-space: nowrap;
}

.vision-mark {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: clamp(10.5rem, 47%, 15rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  place-items: center;
}

.vision-ring {
  position: absolute;
  border: 1px solid rgba(212,175,99,.36);
  border-radius: 50%;
}

.vision-ring-outer {
  inset: 0;
  box-shadow: 0 0 55px rgba(212,175,99,.08), inset 0 0 40px rgba(212,175,99,.05);
}

.vision-ring-inner {
  inset: 18%;
  border-color: rgba(212,175,99,.2);
}

.vision-chart {
  position: relative;
  z-index: 2;
  display: grid;
  width: 72%;
  justify-items: center;
  gap: clamp(.2rem, .65vw, .45rem);
  font-family: "IBM Plex Sans Arabic", "Alexandria", sans-serif;
  line-height: 1;
}

.vision-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(.35rem, 1vw, .7rem);
  direction: rtl;
  white-space: nowrap;
}

.vision-letter {
  display: block;
  min-width: .55em;
  text-align: center;
}

.vision-optotype {
  position: relative;
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
}

.vision-optotype::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: .2em;
  background: currentColor;
}

.vision-optotype::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: .2em;
  background: currentColor;
  box-shadow: 0 .4em 0 currentColor, 0 .8em 0 currentColor;
}

.optotype-right {
  transform: rotate(0deg);
}

.optotype-down {
  transform: rotate(90deg);
}

.optotype-left {
  transform: rotate(180deg);
}

.optotype-up {
  transform: rotate(270deg);
}

.vision-row-1 {
  color: #fff;
  font-size: clamp(3.4rem, 4.5vw, 4.65rem);
  font-weight: 800;
}

.vision-row-2 {
  color: rgba(255,255,255,.82);
  font-size: clamp(2rem, 2.7vw, 2.7rem);
  font-weight: 600;
}

.vision-row-3 {
  color: rgba(255,255,255,.58);
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-weight: 500;
}

.vision-row-4 {
  color: rgba(225,189,114,.55);
  font-size: clamp(.76rem, 1vw, 1rem);
  font-weight: 500;
}

.vision-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 17rem;
}

.vision-copy strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5;
}

.vision-copy p {
  margin-top: .45rem;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  line-height: 1.9;
}

.info-tile {
  border: 1px solid #dfd4c5;
  border-radius: 1.25rem;
  background: rgba(255,255,255,.62);
  padding: 1.25rem;
}

.info-tile strong {
  display: block;
  color: var(--ink);
}

.info-tile span {
  display: block;
  margin-top: .55rem;
  color: #736c63;
  font-size: .86rem;
  line-height: 1.8;
}

.section-label-light {
  color: #d4af63;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.13);
}

.journey-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.13);
  padding: 1.75rem 0;
}

.journey-list li:nth-child(odd) {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,.13);
}

.journey-list li:nth-child(even) {
  padding-right: 1.5rem;
}

.journey-list li > span {
  color: #d4af63;
  font-family: "Alexandria", sans-serif;
  font-size: .8rem;
}

.journey-list h3 {
  font-weight: 700;
}

.journey-list p {
  margin-top: .5rem;
  color: rgba(255,255,255,.52);
  font-size: .84rem;
  line-height: 1.8;
}

.gallery-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(180,135,56,.14);
  border-bottom: 1px solid rgba(180,135,56,.14);
  background:
    radial-gradient(circle at 88% 7%, rgba(180,135,56,.13), transparent 25rem),
    radial-gradient(circle at 8% 92%, rgba(212,175,99,.08), transparent 22rem),
    linear-gradient(180deg, #fffdf9 0%, #f7f3ec 100%);
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: -16rem;
  left: -12rem;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(180,135,56,.12);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-heading {
  display: grid;
  gap: 1.5rem;
}

.gallery-heading p {
  max-width: 34rem;
  color: #6b655d;
  font-size: 1rem;
  line-height: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.gallery-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ded4c5;
  border-radius: 1.5rem;
  background: #fff;
  text-align: right;
  box-shadow: 0 16px 34px rgba(52,45,36,.10);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(23,18,13,.78));
  pointer-events: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(180,135,56,.72);
  box-shadow: 0 24px 48px rgba(52,45,36,.17);
  outline: none;
}

.gallery-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e9dfd2;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-card:hover .gallery-media img {
  transform: scale(1.025);
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: .25rem;
  padding: 1.25rem 1.35rem;
  color: #fff;
  line-height: 1.7;
}

.gallery-caption small {
  color: #f0c86f;
  font-size: .72rem;
  font-weight: 700;
}

.gallery-caption strong {
  font-size: 1rem;
  font-weight: 800;
}

.gallery-dialog {
  width: min(92vw, 960px);
  max-width: none;
  overflow: visible;
  border: 0;
  background: transparent;
  padding: 0;
}

.gallery-dialog::backdrop {
  background: rgba(20,18,15,.82);
  backdrop-filter: blur(7px);
}

.gallery-dialog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,99,.5);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
}

.gallery-dialog img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #171614;
}

.gallery-dialog p {
  margin: 0;
  padding: 1rem 1.25rem 1.15rem;
  color: #2a2723;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
}

.gallery-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(29,28,26,.82);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
}

.gallery-close svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

body.gallery-open {
  overflow: hidden;
}

.social-panel {
  display: grid;
  align-items: center;
  gap: 2rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 90% 50%, rgba(212,175,99,.1), transparent 22rem),
    var(--ink);
  padding: 2rem;
  box-shadow: 0 25px 55px rgba(29,28,26,.14);
}

.social-copy {
  min-width: 0;
}

.social-handle {
  display: inline-flex;
  margin-top: 1rem;
  border: 1px solid rgba(212,175,99,.28);
  border-radius: 999px;
  background: rgba(212,175,99,.08);
  padding: .45rem .8rem;
  color: rgba(255,255,255,.72);
  font-family: "Alexandria", sans-serif;
  font-size: .78rem;
  letter-spacing: .02em;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
}

.social-grid a {
  display: grid;
  min-height: 6rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 1.1rem;
  color: #fff;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.social-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,99,.55);
  background: rgba(255,255,255,.04);
}

.social-icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(212,175,99,.13);
  color: #e4c475;
}

.social-icon svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .social-dot {
  fill: currentColor;
  stroke: none;
}

.social-grid strong {
  margin-top: -.35rem;
  font-size: .72rem;
}

.faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 0;
  text-align: right;
  color: var(--ink);
  font-weight: 700;
}

.faq-button [data-faq-icon] {
  color: #9a6d27;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform .2s ease;
}

.contact-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  border: 1px solid #ded4c5;
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 94% 8%, rgba(212,175,99,.16), transparent 20rem),
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(247,243,236,.98) 100%);
  padding: 3.5rem;
  box-shadow: 0 25px 60px rgba(51,43,33,.11);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -14rem;
  right: -7rem;
  z-index: 0;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(180,135,56,.14);
  border-radius: 50%;
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(118deg, transparent 0 48.9%, rgba(180,135,56,.08) 49% 49.12%, transparent 49.22%);
  pointer-events: none;
}

.contact-copy,
.contact-visual {
  position: relative;
  z-index: 1;
}

.contact-copy {
  min-width: 0;
}

.contact-card .contact-copy > span {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #8a672c;
}

.contact-card .contact-copy > span::after {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
}

.contact-card .contact-copy h2 {
  color: var(--ink);
}

.contact-card .contact-copy > p {
  color: #6b655d;
}

.contact-card .gold-button {
  border-color: var(--gold);
  background: linear-gradient(135deg, #c99e50, #a7772c);
  color: #fff;
  box-shadow: 0 10px 25px rgba(139,99,34,.18);
}

.contact-card .gold-button:hover {
  background: linear-gradient(135deg, #d0a75b, #aa792d);
  box-shadow: 0 14px 30px rgba(139,99,34,.24);
}

.contact-visual {
  min-height: 17rem;
  overflow: hidden;
  border: 1px solid #d9cdbd;
  border-radius: 1.5rem;
  background: #eee7dd;
  box-shadow: 0 18px 38px rgba(47,40,31,.12);
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  pointer-events: none;
}

.contact-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
}

.contact-call {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfc3b2;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  padding: .85rem 1.4rem;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(47,40,31,.06);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-call:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 12px 24px rgba(47,40,31,.1);
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: none;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 28px rgba(71,51,23,.28);
}

.floating-call svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.legal-header {
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(29,28,26,.04);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(212,175,99,.18), transparent 20rem),
    var(--ink);
}

.legal-hero::after {
  content: "";
  position: absolute;
  left: -6rem;
  bottom: -11rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(212,175,99,.22);
  border-radius: 50%;
}

.legal-copy h2 {
  margin-top: 2rem;
  color: var(--ink);
  font-family: "Alexandria", "IBM Plex Sans Arabic", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.legal-copy p,
.legal-copy li {
  color: #625d55;
  line-height: 2;
}

.legal-copy p {
  margin-top: .8rem;
}

.legal-copy ul,
.legal-copy ol {
  margin-top: .8rem;
  padding-right: 1.25rem;
}

.legal-copy ul {
  list-style: disc;
}

.legal-copy ol {
  list-style: decimal;
}

.legal-footer a {
  transition: color .2s ease;
}

.legal-footer a:hover {
  color: #8a672c;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 900px) {
  .social-panel {
    grid-template-columns: .7fr 1.3fr;
    padding: 2.5rem 3rem;
  }

  .offers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 20rem 12rem 12rem;
  }

  .gallery-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    align-items: end;
  }

  .gallery-heading p {
    justify-self: end;
  }

  .gallery-card[data-gallery-position="top-right"] {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-card[data-gallery-position="top-left"] {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-card[data-gallery-position="tall-right"] {
    grid-column: 1;
    grid-row: 2 / span 2;
  }

  .gallery-card[data-gallery-position="stack-top"] {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-card[data-gallery-position="stack-bottom"] {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-card .gallery-media {
    height: 100%;
    aspect-ratio: auto;
  }
}

.menu-icon {
  position: relative;
  display: block;
  width: 1.2rem;
  height: .95rem;
}

.menu-icon span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: top .2s ease, transform .2s ease, opacity .15s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: calc(50% - 1px);
}

.menu-icon span:nth-child(3) {
  top: calc(100% - 2px);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .hero-layout {
    min-height: 610px;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 3.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 1023px) {
  .brand-shell > div {
    gap: 1rem;
  }

  .header-booking-button {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: grid;
    flex: 0 0 2.75rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .9rem;
    background: #fff;
    box-shadow: 0 5px 16px rgba(29, 28, 26, .08);
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle[aria-expanded="true"] {
    border-color: var(--gold);
    background: #f8f2e8;
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(139, 99, 34, .14);
  }

  .mobile-menu-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    box-shadow: 0 18px 36px rgba(29, 28, 26, .14);
  }
  .brand-lockup {
    width: 190px;
    height: 58px;
  }

  .trust-strip article {
    border-bottom: 1px solid #ece3d7;
  }

  .trust-strip article:nth-child(2) {
    border-left: 0;
  }

  .service-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    display: block;
    background:
      radial-gradient(circle at 92% 4%, rgba(212,175,99,.15), transparent 17rem),
      linear-gradient(180deg, #fffdf9 0%, #f7f3ec 100%);
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card[data-gallery-position="stack-bottom"] {
    width: calc(50% - .5rem);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .social-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .social-grid a {
    grid-column: span 2;
  }

  .social-grid a:nth-last-child(2) {
    grid-column: 2 / span 2;
  }

  .social-grid a:last-child {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 639px) {
  html {
    scroll-padding-top: 6.5rem;
  }

  .brand-lockup {
    width: 158px;
    height: 51px;
  }

  .brand-lockup-footer {
    width: 190px;
    height: 58px;
  }

  .hero-arch {
    padding: .4rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.25rem);
    letter-spacing: -.025em;
    line-height: 1.22;
  }

  .hero-seal {
    right: .6rem;
    bottom: .75rem;
  }

  .trust-strip article,
  .trust-strip article:nth-child(2) {
    min-height: 6.6rem;
    border-left: 0;
    border-bottom: 1px solid #ece3d7;
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .offer-body > p {
    min-height: auto;
  }

  .offer-media {
    height: 13rem;
  }

  .service-catalog,
  .journey-list {
    grid-template-columns: 1fr;
  }

  .catalog-wide {
    grid-column: auto;
  }

  .journey-list li,
  .journey-list li:nth-child(odd),
  .journey-list li:nth-child(even) {
    border-left: 0;
    padding: 1.4rem 0;
  }

  .vision-panel {
    min-height: 27rem;
    padding: 2.4rem 2rem 2.1rem;
  }

  .vision-brand {
    justify-self: center;
    font-size: .62rem;
    letter-spacing: .2em;
  }

  .vision-mark {
    top: 46%;
    width: 11.5rem;
  }

  .vision-copy {
    justify-self: center;
    text-align: center;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid a:last-child {
    width: calc(50% - .325rem);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .social-copy {
    text-align: center;
  }

  .contact-card {
    border-radius: 2rem;
    padding: 2rem 1.4rem;
  }

  .contact-visual {
    min-height: 0;
    margin-top: 2rem;
  }

  .contact-visual picture {
    height: auto;
  }

  .contact-visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .floating-call {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
