/* ==========================================================================
   Simorgh Hotel — redesign stylesheet
   Single sheet for both directions. Tokens as custom properties, logical
   properties for RTL, and exactly one breakpoint: 960px.
   ========================================================================== */

/* --------------------------------------------------------------- fonts -- */
@font-face {
  font-family: SnowPuppets;
  src: url("/fonts/SnowPuppetsPersonalUse-Medium.woff2") format("woff2"),
       url("/fonts/SnowPuppetsPersonalUse-Medium.woff") format("woff");
  font-display: block; /* the landing loader waits for this face */
}
@font-face {
  font-family: Nastaliq;
  src: url("/fonts/IranNastaliq.woff2") format("woff2"),
       url("/fonts/IranNastaliq.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: IRANSansX;
  src: url("/fonts/IRANSansX-Regular.woff2") format("woff2"),
       url("/fonts/IRANSansX-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: IRANSansX;
  src: url("/fonts/IRANSansX-Bold.woff2") format("woff2"),
       url("/fonts/IRANSansX-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

/* -------------------------------------------------------------- tokens -- */
:root {
  --ink: #0b0b0c;
  --ink-2: #0e0e10;
  --ink-3: #0d0d0f;
  --ink-4: #08080a;
  --surface: #121214;
  --surface-2: #131315;
  --surface-3: #141417;
  --surface-4: #141416;
  --surface-5: #111113;
  --surface-6: #17171a;
  --surface-7: #1a1a1d;
  --paper: #f4f1ea;
  --paper-dim: #e4e0d8;
  --body: #cfcbc3;
  --body-2: #d6d2ca;
  --muted: #a5a19a;
  --muted-2: #8f8b84;
  --muted-3: #7f7b75;
  --muted-5: #5f5c57;
  --gold: #c9a24a;
  --red: #d4212f;
  --red-soft: #f3b9bd;
  --star: #f5b400;
  --wa: #25d366; /* WhatsApp brand green — the one off-palette colour, on their mark only */
  --phone-dim: #cfcbc3;

  --hair: rgba(255, 255, 255, 0.07);
  --hair-2: rgba(255, 255, 255, 0.08);

  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ui: IRANSansX, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, monospace;

  /* language-dependent — English defaults, overridden for rtl below */
  --display: SnowPuppets, serif;
  --body-font: var(--sans);
  --nav-h: 76px;

  --eyebrow-size: 11px;
  --h1-size: clamp(36px, 16vw, 100px);
  --h1-lh: 1.5;
  --h2-size: clamp(32px, 3.8vw, 56px);
  --h2-size-rooms: clamp(34px, 4vw, 58px);
  --h2-lh: 1.3;
  --about-h-size: clamp(30px, 3.4vw, 50px);
  --about-h-lh: 1.4;
  --about-p-lh: 2.1;
  --footer-mark-size: 28px;
  --track: 0.08em; /* extra letter-spacing on uppercase English CTAs */
  --radius: 0;

  --sec-block: clamp(56px, 9vh, 120px);
  --sec-inline: clamp(20px, 5vw, 72px);
}

[dir="rtl"] {
  --display: Nastaliq, serif;
  --body-font: IRANSansX, Tahoma, sans-serif;

  --eyebrow-size: 12px;
  --h1-size: clamp(40px, 21vw, 120px);
  --h1-lh: 1.7;
  --h2-size: clamp(36px, 4.4vw, 64px);
  --h2-size-rooms: clamp(38px, 4.6vw, 68px);
  --h2-lh: 1.5;
  --about-h-size: clamp(34px, 4vw, 56px);
  --about-h-lh: 1.6;
  --about-p-lh: 2.3;
  --footer-mark-size: 34px;
  --track: 0;
  --radius: 2px; /* navbar buttons only */
}

/* ---------------------------------------------------------------- base -- */
.rd,
.rd * {
  box-sizing: border-box;
}
html.rd-html,
body.rd-body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--paper);
}
body.rd-body {
  font-family: var(--body-font);
  overflow-x: hidden;
}
.rd a {
  color: var(--paper);
  text-decoration: none;
}
.rd a:hover {
  color: var(--gold);
}
.rd ::selection {
  background: var(--red);
  color: #fff;
}
.rd p {
  text-wrap: pretty;
}
.rd-noscrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rd-noscrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
/* Scroll target for the navbar's "Main page" link — must not generate a line box. */
.rd-top {
  display: block;
  height: 0;
}

/* ------------------------------------------------------------ keyframes -- */
@keyframes rdSoftIn   { from { opacity: 0; transform: translateY(10px) } to { opacity: 1; transform: none } }
@keyframes rdFadeIn   { from { opacity: 0 } to { opacity: 1 } }
@keyframes rdGrowX    { from { transform: scaleX(0); opacity: 0 } to { transform: scaleX(1); opacity: 1 } }
@keyframes rdGrowY    { from { transform: scaleY(0); opacity: 0 } to { transform: scaleY(1); opacity: 1 } }
@keyframes rdSpinSlow { from { transform: rotate(45deg) scale(.4); opacity: 0 } to { transform: rotate(45deg) scale(1); opacity: .9 } }
@keyframes rdDrift {
  0%   { transform: translate3d(0, 20px, 0) scale(.7); opacity: 0 }
  12%  { opacity: .75 }
  70%  { opacity: .5 }
  100% { transform: translate3d(24px, -78vh, 0) scale(1.15); opacity: 0 }
}
@keyframes rdCuePulse {
  0%   { transform: translateY(-100%); opacity: 0 }
  40%  { opacity: 1 }
  100% { transform: translateY(100%); opacity: 0 }
}
@keyframes rdGradientMove {
  0%   { background-position: 0% 0% }
  25%  { background-position: 150% 150% }
  50%  { background-position: 150% 0% }
  75%  { background-position: 0% 150% }
  100% { background-position: 0% 0% }
}
@keyframes rdSlowZoom    { from { transform: scale(1) } to { transform: scale(1.09) } }
@keyframes rdRevealCover { from { width: 100% } to { width: 0% } }
@keyframes rdLoaderOut   { from { opacity: 1 } to { opacity: 0; visibility: hidden } }
@keyframes rdDark        { from { background: #ffffff } to { background: #0b0b0c } }
@keyframes rdDrawerIn    { from { transform: translateX(-100%) } to { transform: translateX(0) } }
@keyframes rdDrawerInRtl { from { transform: translateX(100%) }  to { transform: translateX(0) } }
@keyframes rdDrawerZoom  { from { transform: scale(1.26) } to { transform: scale(1.02) } }

/* ======================================================== SiteNav ======== */
.sn {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: background 0.4s, border-color 0.4s;
  font-family: var(--ui);
}
.sn.is-solid {
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair-2);
}
.sn-spacer {
  flex: 0 0 auto;
  height: 76px;
}

.sn-desktop {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sn-mobile {
  display: none;
  padding: 0 18px;
  height: 62px;
  align-items: center;
  justify-content: space-between;
}

.sn-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.sn-lockup img {
  width: 32px;
  height: 39px;
  object-fit: contain;
}
.sn-wordmark {
  font-family: SnowPuppets, serif;
  font-size: 26px;
  line-height: 1;
  color: var(--paper);
}
[dir="rtl"] .sn-wordmark {
  font-family: Nastaliq, serif;
  font-size: 30px;
  padding-bottom: 6px;
}
.sn-diamond {
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}

.sn-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  font-size: 14px;
  letter-spacing: 0.06em;
}
[dir="rtl"] .sn-links {
  font-size: 15px;
  letter-spacing: normal;
}

.sn-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.sn-phone {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--phone-dim);
  white-space: nowrap;
}
[dir="rtl"] .sn-phone {
  font-size: 15px;
  letter-spacing: 0.04em;
}
.sn-cta {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: var(--track);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: opacity 0.3s;
}
.sn-cta:hover {
  opacity: 0.86;
  color: #fff;
}
.sn-cta-2 {
  border: 1px solid rgba(212, 33, 47, 0.55);
  background: rgba(212, 33, 47, 0.12);
  color: var(--paper);
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: var(--track);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.sn-cta-2:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
[dir="rtl"] .sn-cta,
[dir="rtl"] .sn-cta-2 {
  font-size: 14px;
}
.sn-alt {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.sn-alt:hover {
  border-color: var(--gold);
}

.sn-burger {
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}
.sn-burger span {
  display: block;
  width: 19px;
  height: 1px;
  background: var(--paper);
}
.sn-burger span:last-child {
  width: 13px;
  background: var(--gold);
}

/* ------------------------------------------------------- mobile drawer -- */
.sn-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  font-family: var(--ui);
}
.sn-drawer.is-open {
  display: block;
}
.sn-drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 7, 0.7);
  backdrop-filter: blur(3px);
  opacity: 0;
  animation: rdFadeIn 0.35s ease forwards;
}
.sn-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: min(86vw, 340px);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 26px 0 70px rgba(0, 0, 0, 0.65);
  animation: rdDrawerIn 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
[dir="rtl"] .sn-panel {
  box-shadow: -26px 0 70px rgba(0, 0, 0, 0.65);
  animation-name: rdDrawerInRtl;
}
.sn-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  filter: brightness(1.5) saturate(1.08);
  transform-origin: 50% 0%;
  animation: rdDrawerZoom 16s cubic-bezier(0.16, 0.7, 0.3, 1) forwards;
}
.sn-panel-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.3) 0%, rgba(8, 8, 9, 0.55) 55%, rgba(8, 8, 9, 0.78) 100%);
}
.sn-panel-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 28px;
}
.sn-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sn-panel-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sn-panel-head img {
  width: 34px;
  height: 41px;
  object-fit: contain;
}
.sn-close {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--paper);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}
.sn-panel-rule {
  margin-top: 12px;
  width: 44px;
  height: 1px;
  background: rgba(212, 33, 47, 0.9);
}
.sn-panel-links {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  letter-spacing: 0.04em;
}
[dir="rtl"] .sn-panel-links {
  font-size: 18px;
  letter-spacing: normal;
}
.sn-panel-links a {
  padding: 15px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sn-panel-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sn-panel-foot > a {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  letter-spacing: var(--track);
}
[dir="rtl"] .sn-panel-foot > a {
  font-size: 15px;
}
.sn-drawer-primary {
  background: var(--red);
  color: #fff;
}
.sn-drawer-primary:hover {
  color: #fff;
  opacity: 0.86;
}
.sn-drawer-secondary {
  border: 1px solid rgba(212, 33, 47, 0.55);
  background: rgba(212, 33, 47, 0.12);
  color: var(--paper);
}
.sn-drawer-phone {
  border: 1px solid rgba(255, 255, 255, 0.22);
  letter-spacing: 0.06em;
}
[dir="rtl"] .sn-drawer-phone {
  letter-spacing: 0.05em;
}

/* ======================================================== Landing ======== */
/* ------------------------------------------------------------- loader -- */
.ld-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #fff;
  pointer-events: none;
}
.ld-loader.is-running {
  animation: rdDark 3.2s ease 0.2s forwards, rdLoaderOut 0.9s ease 4s forwards;
}
.ld-loader-box {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ld-loader-word {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.ld-loader-word span:first-child {
  font-family: var(--display);
  font-size: var(--h1-size);
  line-height: var(--h1-lh);
  color: #6b6b6b;
  white-space: nowrap;
}
.ld-loader-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;
  background: #fff;
  width: 100%;
}
.is-running .ld-loader-mask {
  animation: rdRevealCover 4.2s cubic-bezier(0.5, 0, 0.25, 1) 0.15s forwards, rdDark 3.2s ease 0.2s forwards;
}

/* --------------------------------------------------------------- hero -- */
.ld-hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
  touch-action: pan-y;
}
.ld-hero-spacer {
  height: 100vh;
  pointer-events: none;
}
.ld-hero-imgs {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.ld-hero-imgs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2.6s ease, transform 12s ease-out;
}
.ld-hero-imgs img:nth-child(3),
.ld-hero-imgs img:nth-child(4) {
  object-position: 50% 50%;
}
.ld-hero-imgs img.is-active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 1;
}
.ld-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 12, 0.62) 0%,
    rgba(11, 11, 12, 0.18) 32%,
    rgba(11, 11, 12, 0.28) 62%,
    rgba(11, 11, 12, 0.85) 100%
  );
}

.ld-dust {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.ld-dust span {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: #fff;
  animation-name: rdDrift;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
/* 11 particles, staggered so the drift never reads as a pattern. */
.ld-dust span:nth-child(1)  { left: 8%;  width: 4px; height: 4px; filter: blur(.5px); animation-duration: 22s; animation-delay: 1s }
.ld-dust span:nth-child(2)  { left: 17%; width: 3px; height: 3px; background: #ffe6c2; animation-duration: 27s; animation-delay: 4s }
.ld-dust span:nth-child(3)  { left: 26%; width: 5px; height: 5px; filter: blur(1px);  animation-duration: 31s; animation-delay: 8s }
.ld-dust span:nth-child(4)  { left: 34%; width: 2px; height: 2px; animation-duration: 19s; animation-delay: 2s }
.ld-dust span:nth-child(5)  { left: 43%; width: 4px; height: 4px; background: #ffd9a8; filter: blur(.5px); animation-duration: 25s; animation-delay: 11s }
.ld-dust span:nth-child(6)  { left: 51%; width: 3px; height: 3px; animation-duration: 29s; animation-delay: 6s }
.ld-dust span:nth-child(7)  { left: 59%; width: 5px; height: 5px; filter: blur(1px);  animation-duration: 34s; animation-delay: 13s }
.ld-dust span:nth-child(8)  { left: 67%; width: 2px; height: 2px; background: #ffe6c2; animation-duration: 21s; animation-delay: 3s }
.ld-dust span:nth-child(9)  { left: 75%; width: 4px; height: 4px; filter: blur(.5px); animation-duration: 26s; animation-delay: 9s }
.ld-dust span:nth-child(10) { left: 83%; width: 3px; height: 3px; animation-duration: 30s; animation-delay: 15s }
.ld-dust span:nth-child(11) { left: 91%; width: 4px; height: 4px; background: #ffd9a8; filter: blur(1px); animation-duration: 24s; animation-delay: 7s }

.ld-title-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}
.ld-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2.2vh, 30px);
}
.ld-flourish {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  opacity: 0;
  animation: rdSoftIn 1s ease 1.5s forwards;
}
.ld-flourish-2 {
  animation-delay: 1.6s;
}
.ld-rule-l,
.ld-rule-r {
  height: 1px;
  width: clamp(60px, 12vw, 220px);
  transform: scaleX(0);
  animation: rdGrowX 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 1.55s forwards;
}
.ld-rule-l {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
  transform-origin: right;
}
.ld-rule-r {
  background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.6));
  transform-origin: left;
}
.ld-flourish-2 .ld-rule-l,
.ld-flourish-2 .ld-rule-r {
  width: clamp(40px, 8vw, 150px);
  animation-delay: 1.7s;
}
.ld-flourish-2 .ld-rule-l {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45));
}
.ld-flourish-2 .ld-rule-r {
  background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.45));
}
.ld-gem {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg) scale(0.4);
  opacity: 0;
  animation: rdSpinSlow 0.9s ease 2.2s forwards;
}
.ld-gem-sm {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.7);
  transform: rotate(45deg) scale(0.4);
  opacity: 0;
  animation: rdSpinSlow 0.9s ease 2.4s forwards;
}
.ld-gem-sm:last-of-type {
  animation-delay: 2.5s;
}
.ld-gem-outline {
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg) scale(0.4);
  opacity: 0;
  animation: rdSpinSlow 0.9s ease 2.3s forwards;
}

.ld-h1-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.ld-h1-glow {
  position: absolute;
  width: 112%;
  height: 64%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(255, 255, 255, 0.28) 45%,
    rgba(255, 255, 255, 0) 74%
  );
  filter: blur(26px);
}
.ld-h1-bar {
  position: absolute;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: scaleY(0);
  animation: rdGrowY 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) 1.9s forwards;
}
.ld-h1-bar-l { left: -4% }
.ld-h1-bar-r { right: -4% }
.ld-h1 {
  position: relative;
  margin: 0;
  padding: 6px 10px;
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--h1-size);
  line-height: var(--h1-lh);
  white-space: nowrap;
  background: radial-gradient(#fff200, #ff0000, #540094, #295100);
  background-size: 250% 250%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rdGradientMove 20s ease-in-out infinite;
}

.ld-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(58px, 9vh, 96px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.ld-dots button {
  width: 26px;
  height: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.4s;
}
.ld-dots button.is-active {
  background: var(--gold);
}
.ld-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vh, 44px);
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  z-index: 4;
}
.ld-cue span {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--gold);
  animation: rdCuePulse 2.6s ease-in-out 2.6s infinite;
}

/* ------------------------------------------------------------ sections -- */
.ld-main {
  position: relative;
  z-index: 3;
  background: var(--ink);
}
.ld-gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.55), transparent);
}
.ld-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.ld-section {
  padding: var(--sec-block) var(--sec-inline);
}
.ld-eyebrow {
  font-size: var(--eyebrow-size);
  letter-spacing: 0.34em;
  color: var(--gold);
}
.ld-h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
}
.ld-note {
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}
[dir="rtl"] .ld-note {
  letter-spacing: 0.05em;
}
.ld-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.ld-head-center {
  text-align: center;
}

/* about */
.ld-about {
  padding: clamp(64px, 10vh, 132px) var(--sec-inline);
}
.ld-about .ld-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px);
}
.ld-about-label {
  flex: 0 0 auto;
  min-width: 200px;
}
[dir="rtl"] .ld-about-label {
  min-width: 180px;
}
.ld-about-rule {
  margin-top: 18px;
  width: 64px;
  height: 1px;
  background: rgba(212, 33, 47, 0.9);
}
.ld-about-title {
  margin-top: 26px;
  font-family: var(--display);
  font-size: var(--about-h-size);
  line-height: var(--about-h-lh);
  color: var(--paper);
}
.ld-about p {
  flex: 1 1 460px;
  margin: 0;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: var(--about-p-lh);
  color: var(--body);
}
[dir="rtl"] .ld-about p {
  text-align: justify;
}

/* rooms */
.ld-rooms {
  padding: clamp(48px, 8vh, 110px) 0;
}
.ld-rooms .ld-inner {
  padding: 0 var(--sec-inline);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.ld-rooms .ld-h2 {
  font-size: var(--h2-size-rooms);
}
.ld-rail {
  margin-top: clamp(28px, 4vh, 52px);
  display: flex;
  gap: clamp(14px, 1.6vw, 26px);
  overflow-x: auto;
  padding: 6px var(--sec-inline) 22px;
  cursor: grab;
  /* Horizontal scrolling here is NATIVE (overflow-x) and the JS drag skips
     touch pointers on purpose. `pan-y` alone would tell the browser to handle
     only vertical pans, which silently kills the swipe on real touch devices. */
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.ld-room {
  flex: 0 0 min(84vw, 400px);
  background: var(--surface-2);
  border: 1px solid var(--hair-2);
}
/* A real <button> so the photo is keyboard-reachable and opens the lightbox. */
.ld-room-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-7);
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  color: inherit;
  font: inherit;
}
.ld-room-media:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.ld-room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ld-room:hover .ld-room-media img {
  transform: scale(1.06);
}
.ld-room-badge {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background: rgba(11, 11, 12, 0.82);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 9px 14px;
}
[dir="rtl"] .ld-room-badge {
  font-size: 12px;
  letter-spacing: 0.06em;
}
.ld-room-body {
  padding: 22px 22px 26px;
}
.ld-room-body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
[dir="rtl"] .ld-room-body h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: normal;
}
.ld-room-beds {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
[dir="rtl"] .ld-room-beds {
  line-height: 1.9;
}
.ld-room-price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--hair-2);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ld-room-price-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
[dir="rtl"] .ld-room-price-label {
  font-size: 12px;
  letter-spacing: normal;
}
.ld-room-price-value {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* facilities */
/* `background-attachment: fixed` is ignored on iOS Safari (and unreliable on
   several Android browsers), so the parallax is built from a viewport-fixed
   layer instead. `clip-path` confines that layer to this section on every
   engine, giving one code path that behaves the same on mobile and desktop. */
.ld-facilities {
  position: relative;
  clip-path: inset(0);
}
.ld-facilities-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(9, 9, 10, 0.86), rgba(9, 9, 10, 0.92)), url("/img/15.jpg");
  background-size: cover;
  background-position: 25% 50%;
  pointer-events: none;
  z-index: 0;
}
.ld-facilities > .ld-inner {
  position: relative;
  z-index: 1;
}
.ld-facility-grid {
  margin: clamp(28px, 4vh, 52px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(46%, 168px), 1fr));
  /* Without this each row sizes to its own tallest item, so a row holding a
     label that wraps to two lines stands taller than the rest. `1fr` levels
     every row to the tallest in the grid, at both breakpoints. */
  grid-auto-rows: 1fr;
  gap: 10px;
}
[dir="rtl"] .ld-facility-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(46%, 158px), 1fr));
}
.ld-facility-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--hair-2);
  transition: border-color 0.3s, background 0.3s;
}
.ld-facility-grid li:hover {
  border-color: rgba(201, 162, 74, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.ld-facility-grid img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}
.ld-facility-grid span {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--paper-dim);
}
[dir="rtl"] .ld-facility-grid span {
  line-height: 1.5;
}

/* places */
.ld-place-grid {
  margin-top: clamp(28px, 4vh, 52px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}
.ld-place {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #141416;
  border: 1px solid var(--hair);
}
.ld-place img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s;
}
.ld-place:hover img {
  transform: scale(1.07);
  opacity: 1;
}
.ld-place-km {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: rgba(11, 11, 12, 0.8);
  border: 1px solid rgba(201, 162, 74, 0.45);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
}
.ld-place-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(9, 9, 10, 0.92), rgba(9, 9, 10, 0));
  font-size: 15px;
  color: var(--paper);
}

/* reviews */
.ld-reviews {
  padding: var(--sec-block) 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--ink-3);
}
.ld-reviews > .ld-inner {
  padding: 0 var(--sec-inline);
  text-align: center;
}
.ld-google-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 5px;
}
[dir="rtl"] .ld-google-link {
  font-size: 13px;
  letter-spacing: normal;
}
.ld-google-link img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}
.ld-marquee {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}
.ld-marquee-reviews {
  margin-top: clamp(28px, 4vh, 52px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ld-marquee-track {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  width: max-content;
  padding: 2px 0;
}
.ld-review {
  flex: 0 0 auto;
  width: clamp(276px, 78vw, 344px);
  height: 326px;
  background: var(--surface-3);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ld-review-head {
  display: flex;
  align-items: center;
  gap: 11px;
}
.ld-review-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: #26262a;
}
.ld-review-who {
  min-width: 0;
  text-align: start;
}
.ld-review-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ld-review-meta {
  margin-top: 3px;
  font-size: 11.5px;
  color: var(--muted-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ld-review-gmap {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-inline-start: auto;
  flex: 0 0 auto;
  opacity: 0.9;
}
.ld-review-stars {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ld-review-stars i {
  font-style: normal;
  color: var(--star);
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 1;
}
.ld-review-when {
  font-size: 11.5px;
  color: var(--muted-2);
  white-space: nowrap;
}
.ld-review-text {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--body-2);
  text-align: start;
  text-wrap: pretty;
}
[dir="rtl"] .ld-review-text {
  line-height: 1.95;
}
.ld-review-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(0deg, #141417 25%, rgba(20, 20, 23, 0));
}

/* platforms */
.ld-platforms {
  padding: var(--sec-block) 0;
}
.ld-platforms > .ld-inner {
  padding: 0 var(--sec-inline);
  text-align: center;
}
.ld-platform-rows {
  margin-top: clamp(28px, 4vh, 52px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 18px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.ld-platform-track {
  display: flex;
  gap: clamp(10px, 1.2vw, 18px);
  width: max-content;
}
.ld-platform {
  flex: 0 0 auto;
  width: clamp(112px, 17vw, 248px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9e9e9;
  overflow: hidden;
  transition: background 0.3s;
}
.ld-platform:hover {
  background: #fff;
}
.ld-platform img {
  width: 58%;
  max-width: 155px;
  object-fit: contain;
  transition: transform 0.4s;
}
.ld-platform:hover img {
  transform: scale(1.12);
}
/* One row carrying all ten logos from 480px up; below that two rows split
   even/odd so the halves never duplicate each other. See the 479.98px query. */
.ld-marquee-pb,
.ld-marquee-pc {
  display: none;
}

/* address */
.ld-address {
  background: var(--ink-2);
  border-top: 1px solid var(--hair);
}
.ld-address-cols {
  margin-top: clamp(28px, 4vh, 52px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 44px);
}
.ld-map {
  flex: 1 1 420px;
  min-height: 340px;
  background: var(--surface-6);
  border: 1px solid var(--hair-2);
  position: relative;
  overflow: hidden;
}
.ld-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}
.ld-address-info {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.ld-address-line {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 2;
  color: var(--body);
}
[dir="rtl"] .ld-address-line {
  line-height: 2.2;
}
.ld-map-apps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ld-map-apps a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  transition: border-color 0.3s;
}
.ld-map-apps a:hover {
  border-color: var(--gold);
}
.ld-map-apps img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.ld-reception {
  margin-top: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.ld-reception p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--body);
}
[dir="rtl"] .ld-reception p {
  line-height: 2.1;
}
.ld-reception a {
  display: inline-block;
  margin-top: 16px;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--paper);
  border-bottom: 1px solid rgba(201, 162, 74, 0.6);
  padding-bottom: 4px;
}

/* footer */
.ld-footer {
  padding: clamp(48px, 7vh, 90px) var(--sec-inline) 34px;
  background: var(--ink-4);
  border-top: 1px solid var(--hair);
}
.ld-footer-cols {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(26px, 4vw, 64px);
  align-items: flex-start;
}
.ld-footer-brand {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ld-footer-brand img {
  width: 72px;
  height: 87px;
  flex: 0 0 auto;
  object-fit: contain;
}
.ld-footer-mark {
  font-family: var(--display);
  font-size: var(--footer-mark-size);
  line-height: 1.3;
}
[dir="rtl"] .ld-footer-mark {
  line-height: 1.5;
}
.ld-footer-city {
  font-size: 12px;
  color: var(--muted-3);
  letter-spacing: 0.14em;
}
[dir="rtl"] .ld-footer-city {
  font-size: 13px;
  letter-spacing: 0.05em;
}
.ld-footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.ld-footer-col a {
  color: var(--muted);
}
.ld-footer-col a:hover {
  color: var(--gold);
}
.ld-footer-bottom {
  max-width: 1400px;
  margin: clamp(28px, 4vh, 52px) auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-5);
}
.ld-footer-dev {
  font-family: var(--mono);
}

/* ======================================== Inner page shell (Account) ===== */
/* Column shell so the slim footer sits at the bottom on short pages. */
.ip-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
}
.ip-main {
  flex: 1 1 auto;
  padding: clamp(40px, 7vh, 90px) clamp(20px, 5vw, 56px) clamp(48px, 8vh, 110px);
}
.ip-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.ip-state {
  animation: rdSoftIn 0.5s ease both;
}
.ip-h1 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.3;
}
[dir="rtl"] .ip-h1 {
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.6;
}
.ip-h1-sm {
  font-size: clamp(28px, 3vw, 44px);
}
[dir="rtl"] .ip-h1-sm {
  font-size: clamp(30px, 3.2vw, 46px);
}
.ip-rule {
  margin-top: 14px;
  width: 70px;
  height: 1px;
  background: rgba(212, 33, 47, 0.9);
  transform-origin: left;
  animation: rdGrowX 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}
[dir="rtl"] .ip-rule {
  transform-origin: right;
}
.ip-lead {
  margin: 26px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--body);
}
[dir="rtl"] .ip-lead {
  line-height: 2.1;
}

.ip-footer {
  padding: 26px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--hair);
  background: var(--ink-4);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-5);
}
.ip-footer-dev {
  font-family: var(--mono);
}

/* --- reservation / folio card --- */
.ac-cards {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ac-card {
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.ac-cards .ac-card {
  margin-top: 0;
}
.ac-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--hair);
}
.ac-card-name {
  font-size: 16px;
  font-weight: 600;
}
.ac-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ac-badge-gem {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.ac-badge span:last-child {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
[dir="rtl"] .ac-badge span:last-child {
  letter-spacing: 0.06em;
}
.ac-grid {
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}
.ac-grid-divided {
  border-bottom: 1px solid var(--hair);
}
.ac-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
[dir="rtl"] .ac-label {
  font-size: 12px;
  letter-spacing: 0.06em;
}
.ac-value {
  margin-top: 8px;
  font-size: 15px;
  letter-spacing: 0.03em;
}
[dir="rtl"] .ac-value {
  letter-spacing: normal;
}
.ac-code {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* --- deposit + countdown row --- */
.ac-pay-row {
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.ac-deposit {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ac-remain {
  text-align: end;
}
.ac-countdown {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.ac-countdown.is-expired {
  color: var(--red);
}
.ac-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.ac-fine {
  margin: 18px 0 0;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--muted-5);
}

/* --- buttons shared by the account states --- */
.ac-btn {
  padding: 15px 26px;
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: opacity 0.25s;
}
.ac-btn:hover {
  opacity: 0.86;
  color: #fff;
}
[dir="rtl"] .ac-btn {
  font-size: 14px;
  letter-spacing: normal;
}
.ac-btn-pay {
  padding: 15px 28px;
  letter-spacing: 0.1em;
}
[dir="rtl"] .ac-btn-pay {
  letter-spacing: normal;
}
/* Countdown at zero: the server has expired the hold, so block the gateway. */
.ac-btn-pay.is-disabled {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--muted-5);
  pointer-events: none;
}
.ac-btn-ghost {
  padding: 15px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: border-color 0.3s;
}
[dir="rtl"] .ac-btn-ghost {
  font-size: 14px;
  letter-spacing: normal;
}
.ac-btn-ghost:hover {
  border-color: var(--gold);
}
.ac-btn-phone {
  padding: 15px 26px;
  border: 1px solid rgba(201, 162, 74, 0.5);
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: border-color 0.3s;
}
.ac-btn-phone:hover {
  border-color: var(--gold);
}

/* --- empty state --- */
.ac-empty {
  margin-top: 26px;
  padding: 40px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface-5, #111113);
  text-align: center;
}
.ac-empty-gem {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}
.ac-empty p {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
}
.ac-empty p + p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted-2);
}
.ac-empty-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* --- bottom row: back + sign out --- */
.ac-bottom {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.ac-back {
  font-size: 13px;
  color: var(--muted-2);
}
.ac-signout {
  padding: 13px 24px;
  border: 1px solid rgba(212, 33, 47, 0.55);
  background: rgba(212, 33, 47, 0.12);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
[dir="rtl"] .ac-signout {
  font-size: 14px;
  letter-spacing: normal;
}
.ac-signout:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* --- outcome panels: success / failure / expired --- */
.ac-panel {
  padding: clamp(32px, 5vw, 52px);
  animation: rdSoftIn 0.5s ease both;
}
.ac-panel-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ac-panel-gem {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  transform: rotate(45deg);
}
.ac-panel-tag span:last-child {
  font-size: 11px;
  letter-spacing: 0.3em;
}
[dir="rtl"] .ac-panel-tag span:last-child {
  letter-spacing: 0.1em;
}
.ac-panel h1 {
  margin: 20px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.3;
}
[dir="rtl"] .ac-panel h1 {
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.6;
}
.ac-panel p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--body);
}
[dir="rtl"] .ac-panel p {
  line-height: 2.1;
}
.ac-panel-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ac-panel-success {
  border: 1px solid rgba(201, 162, 74, 0.4);
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.09), rgba(201, 162, 74, 0.03));
}
.ac-panel-success .ac-panel-gem { background: var(--gold) }
.ac-panel-success .ac-panel-tag span:last-child { color: var(--gold) }

.ac-panel-failure {
  border: 1px solid rgba(212, 33, 47, 0.45);
  background: linear-gradient(180deg, rgba(212, 33, 47, 0.1), rgba(212, 33, 47, 0.03));
}
.ac-panel-failure .ac-panel-gem { background: var(--red) }
.ac-panel-failure .ac-panel-tag span:last-child { color: var(--red-soft) }

.ac-panel-expired {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface-5, #111113);
}
.ac-panel-expired .ac-panel-gem { border: 1px solid rgba(255, 255, 255, 0.5) }
.ac-panel-expired .ac-panel-tag span:last-child { color: var(--muted-2) }
.ac-panel-expired h1 {
  font-size: clamp(28px, 3.2vw, 44px);
}
[dir="rtl"] .ac-panel-expired h1 {
  font-size: clamp(30px, 3.2vw, 46px);
}
.ac-panel-expired .ac-btn-phone {
  display: inline-block;
  margin-top: 26px;
  font-size: 16px;
}

/* ========================================================= Login ========= */
/* Chrome-free two-pane screen: art on one side, form on the other. */
.lg-page {
  /* the navbar sits above this screen, so the panes fill what is left */
  min-height: calc(100vh - var(--nav-h));
  background: var(--ink);
  display: flex;
  flex-direction: row;
}

.lg-art {
  position: relative;
  flex: 1 1 48%;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
}
.lg-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rdSlowZoom 40s ease-in-out infinite alternate;
}
.lg-art-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 11, 12, 0.34) 0%, rgba(11, 11, 12, 0.62) 55%, rgba(11, 11, 12, 0.88) 100%);
}
[dir="rtl"] .lg-art-veil {
  background: linear-gradient(200deg, rgba(11, 11, 12, 0.34) 0%, rgba(11, 11, 12, 0.62) 55%, rgba(11, 11, 12, 0.88) 100%);
}
.lg-art-inner {
  position: absolute;
  inset: 0;
  padding: clamp(30px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  /* the wordmark lockup moved to the navbar; only the title block is left */
  justify-content: flex-end;
}
.lg-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}
.lg-lockup .sn-wordmark {
  font-size: 26px;
}
[dir="rtl"] .lg-lockup .sn-wordmark {
  font-size: 30px;
}
.lg-art-rule {
  width: 70px;
  height: 1px;
  background: rgba(201, 162, 74, 0.9);
  transform-origin: left;
  animation: rdGrowX 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}
[dir="rtl"] .lg-art-rule {
  transform-origin: right;
}
.lg-art-title {
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.4;
  animation: rdSoftIn 0.9s ease 0.3s both;
}
[dir="rtl"] .lg-art-title {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.6;
}
.lg-art-sub {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #b6b2ab;
  animation: rdSoftIn 0.9s ease 0.45s both;
}
[dir="rtl"] .lg-art-sub {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.lg-form {
  flex: 1 1 52%;
  display: flex;
  align-items: center;
  padding: clamp(30px, 5vw, 90px);
  background: var(--ink-2);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.06);
}
.lg-inner {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.lg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lg-back {
  font-size: 13px;
  color: var(--muted-2);
}
.lg-alt {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: border-color 0.3s;
}
.lg-alt:hover {
  border-color: var(--gold);
}
.lg-head {
  margin-top: clamp(30px, 7vh, 64px);
}
.lg-head h1 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.3;
}
[dir="rtl"] .lg-head h1 {
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.6;
}

/* --- steps --- */
.lg-step {
  margin-top: 34px;
  animation: rdSoftIn 0.5s ease both;
}
.lg-step[hidden] {
  display: none;
}
.lg-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--body);
}
[dir="rtl"] .lg-lead {
  line-height: 2.1;
}
.lg-lead .lg-num {
  font-family: var(--mono);
  color: var(--paper);
  letter-spacing: 0.08em;
}
.lg-label {
  display: block;
  margin-top: 26px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}
[dir="rtl"] .lg-label {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.lg-input {
  margin-top: 10px;
  width: 100%;
  padding: 16px 18px;
  background: var(--surface-4, #141416);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 19px;
  letter-spacing: 0.14em;
  text-align: center;
  outline: none;
}
.lg-input:focus {
  border-color: var(--gold);
  background: var(--surface-6);
}
/* Spinners would break the monospace centring on a numeric keypad field. */
.lg-input::-webkit-outer-spin-button,
.lg-input::-webkit-inner-spin-button,
.lg-digit::-webkit-outer-spin-button,
.lg-digit::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.lg-error {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(212, 33, 47, 0.1);
  border: 1px solid rgba(212, 33, 47, 0.45);
  font-size: 13px;
  line-height: 1.6;
  color: var(--red-soft, #f3b9bd);
}
[dir="rtl"] .lg-error {
  line-height: 1.8;
}
.lg-error[hidden] {
  display: none;
}
.lg-btn {
  margin-top: 22px;
  width: 100%;
  padding: 17px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.25s;
}
[dir="rtl"] .lg-btn {
  font-size: 15px;
  letter-spacing: normal;
}
.lg-btn:hover {
  opacity: 0.86;
}
.lg-btn[disabled] {
  opacity: 0.55;
  cursor: default;
}
.lg-note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--hair-2);
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted-2);
}
[dir="rtl"] .lg-note {
  line-height: 2.1;
}
.lg-note a {
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(201, 162, 74, 0.5);
}

/* --- code step --- */
.lg-digits {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.lg-digit {
  width: 64px;
  height: 74px;
  background: var(--surface-4, #141416);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 26px;
  text-align: center;
  outline: none;
}
.lg-digit:focus {
  border-color: var(--gold);
  background: var(--surface-6);
}
.lg-error-center {
  margin-top: 16px;
  text-align: center;
}
.lg-btn-confirm {
  margin-top: 24px;
}
.lg-resend-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted-2);
}
.lg-resend-row [hidden] {
  display: none;
}
.lg-seconds {
  font-family: var(--mono);
  color: var(--gold);
}
.lg-resend {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--paper);
  padding: 10px 16px;
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.3s;
}
[dir="rtl"] .lg-resend {
  font-size: 13px;
  letter-spacing: normal;
}
.lg-resend:hover {
  border-color: var(--gold);
}
.lg-change {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--muted-2);
  font-family: var(--body-font);
  font-size: 13px;
  cursor: pointer;
  padding: 0 0 3px;
  transition: color 0.3s;
}
.lg-change:hover {
  color: var(--gold);
}

/* --- done step --- */
.lg-done {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(201, 162, 74, 0.4);
  background: rgba(201, 162, 74, 0.07);
  animation: rdSoftIn 0.5s ease both;
}
.lg-done-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lg-done-gem {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--gold);
  transform: rotate(45deg);
}
.lg-done-head span:last-child {
  font-size: 16px;
}
.lg-done p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--body);
}
[dir="rtl"] .lg-done p {
  line-height: 2;
}
.lg-done a {
  display: inline-block;
  margin-top: 18px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: border-color 0.3s;
}
[dir="rtl"] .lg-done a {
  font-size: 14px;
  letter-spacing: normal;
}
.lg-done a:hover {
  border-color: var(--gold);
}

.lg-foot {
  margin-top: clamp(28px, 6vh, 52px);
  font-size: 11px;
  color: var(--muted-5);
  font-family: var(--mono);
  letter-spacing: 0.08em;
}
[dir="rtl"] .lg-foot {
  letter-spacing: normal;
}

/* ================================================== Request a stay ====== */
/* Builds on the Account shell (.ip-*, .ac-panel*) — only the form machinery
   the other inner pages never needed is new here. */
.ip-inner-wide {
  max-width: 820px;
}
/* Form controls never inherit the page font on their own — without this the
   Persian room labels and placeholders fall back to a system face. The rest of
   this file sets it component by component; one rule covers the whole screen. */
.rq-panel button,
.rq-panel input,
.rq-panel textarea,
.rq-status button {
  font-family: var(--body-font);
}
.rq-lead {
  max-width: 620px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--muted-2);
}
[dir="rtl"] .rq-lead {
  max-width: 640px;
  line-height: 2.1;
}

/* --- step chips --- */
.rq-chips {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rq-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted-3);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
[dir="rtl"] .rq-chip {
  font-size: 12.5px;
  letter-spacing: normal;
}
.rq-chip.is-active {
  border-color: var(--gold);
  background: rgba(201, 162, 74, 0.1);
  color: var(--paper);
}
.rq-chip-badge {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted-2);
}
.rq-chip.is-active .rq-chip-badge {
  border-color: var(--gold);
  color: var(--gold);
}
.rq-chip-join {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

/* --- the form panel, hairline-divided --- */
.rq-panel {
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  animation: rdSoftIn 0.5s ease both;
}
.rq-section {
  padding: 24px clamp(18px, 3vw, 28px);
}
.rq-section + .rq-section {
  border-top: 1px solid var(--hair);
}
.rq-section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
}
[dir="rtl"] .rq-section-label {
  font-size: 12px;
  letter-spacing: normal;
}

/* --- dates --- */
.rq-dates {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.rq-date {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: start;
  padding: 14px 16px;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: inherit; /* buttons default to the UA's black, not the page colour */
  cursor: pointer;
  transition: border-color 0.2s;
}
.rq-date.is-armed {
  border-color: var(--gold);
}
.rq-date-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
[dir="rtl"] .rq-date-label {
  font-size: 12px;
  letter-spacing: normal;
}
.rq-date-value {
  font-size: 14.5px;
  letter-spacing: 0.02em;
}

/* --- inline month calendar --- */
.rq-cal {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--ink-2);
  padding: 16px;
}
.rq-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rq-cal-month {
  font-size: 14px;
  letter-spacing: 0.06em;
}
[dir="rtl"] .rq-cal-month {
  font-size: 15px;
  letter-spacing: normal;
}
.rq-cal-nav {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: inherit;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s;
}
.rq-cal-nav:hover {
  border-color: var(--gold);
}
.rq-cal-nav.is-off {
  border-color: rgba(255, 255, 255, 0.07);
  color: #403e3a;
  cursor: default;
  pointer-events: none;
}
.rq-cal-wd,
.rq-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.rq-cal-wd {
  margin-top: 16px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted-3);
  text-align: center;
}
[dir="rtl"] .rq-cal-wd {
  font-size: 11px;
  letter-spacing: normal;
}
.rq-cal-grid {
  margin-top: 6px;
}
.rq-day {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--body);
  font-size: 13.5px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.rq-day-blank {
  border: 0;
  padding: 0;
  cursor: default;
}
.rq-day:not(.is-past):not(.is-edge):hover {
  background: rgba(255, 255, 255, 0.05);
}
.rq-day.is-past {
  color: #403e3a;
  cursor: default;
}
.rq-day.is-today {
  border-color: rgba(255, 255, 255, 0.22);
}
.rq-day.is-edge {
  background: var(--gold);
  color: #101012;
  font-weight: 700;
}
.rq-day.is-between {
  background: rgba(201, 162, 74, 0.16);
  color: var(--paper);
}
.rq-cal-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  font-size: 12.5px;
  color: var(--muted-2);
}

/* --- room type --- */
.rq-rooms {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}
[dir="rtl"] .rq-rooms {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.rq-room {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  cursor: pointer;
  text-align: start;
  transition: border-color 0.2s, background 0.2s;
}
.rq-room:hover {
  border-color: rgba(201, 162, 74, 0.5);
}
.rq-room.is-chosen {
  border-color: var(--gold);
  background: rgba(201, 162, 74, 0.1);
}
.rq-room-gem {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.rq-room.is-chosen .rq-room-gem {
  background: var(--gold);
  border-color: var(--gold);
}
.rq-room-label {
  font-size: 14px;
  line-height: 1.6;
}
[dir="rtl"] .rq-room-label {
  line-height: 1.7;
}

/* --- guests + rooms steppers --- */
.rq-steppers {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.rq-stepper {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink-2);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rq-stepper-label {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--body);
}
[dir="rtl"] .rq-stepper-label {
  font-size: 14px;
  letter-spacing: normal;
}
.rq-stepper-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rq-step-btn {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: inherit;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s;
}
.rq-step-btn:hover {
  border-color: var(--gold);
}
.rq-step-value {
  min-width: 22px;
  text-align: center;
  font-size: 15px;
}

/* --- contact fields --- */
.rq-fields {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}
[dir="rtl"] .rq-fields {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.rq-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rq-field-block {
  margin-top: 12px;
}
.rq-field-label {
  font-size: 12.5px;
  color: var(--muted-2);
}
.rq-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.rq-input:focus {
  border-color: var(--gold);
}
.rq-input-num {
  letter-spacing: 0.06em;
}
[dir="rtl"] .rq-input-num {
  text-align: right;
}
.rq-textarea {
  font-size: 14.5px;
  line-height: 1.8;
  resize: vertical;
}
[dir="rtl"] .rq-textarea {
  line-height: 2;
}

/* --- inline error --- */
.rq-error {
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(212, 33, 47, 0.5);
  background: rgba(212, 33, 47, 0.1);
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--red-soft);
}
[dir="rtl"] .rq-error {
  line-height: 1.9;
}

/* --- submit row --- */
.rq-submit-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.rq-submit-note {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted-5);
}
[dir="rtl"] .rq-submit-note {
  line-height: 1.9;
}
/* "Already sent a request?" — the way back to an existing request for a guest whose
   device carries neither cookie nor sign-in. Quiet: it must not compete with submit. */
.rq-track-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.rq-track-note {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted-5);
}
[dir="rtl"] .rq-track-note {
  line-height: 1.9;
}
.rq-track-link {
  padding: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(201, 162, 74, 0.5);
  color: var(--gold);
  font-family: inherit;
  font-size: 12.5px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.rq-track-link:hover {
  border-bottom-color: var(--gold);
}
.rq-track-link:disabled {
  opacity: 0.5;
  cursor: default;
}

.rq-btn {
  padding: 15px 30px;
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.25s;
}
.rq-btn:hover {
  opacity: 0.86;
}
.rq-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
[dir="rtl"] .rq-btn {
  font-size: 15px;
  letter-spacing: normal;
}
.rq-btn-ghost {
  padding: 13px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: inherit;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.3s;
}
.rq-btn-ghost:hover:not(:disabled) {
  border-color: var(--gold);
}
.rq-btn-ghost:disabled {
  border-color: rgba(255, 255, 255, 0.08);
  color: #4d4a46;
  cursor: not-allowed;
}
[dir="rtl"] .rq-btn-ghost {
  font-size: 14px;
  letter-spacing: normal;
}

/* --- step 2: verify --- */
.rq-verify {
  padding: clamp(26px, 4vw, 44px);
}
.rq-verify-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rq-verify-gem {
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}
.rq-verify-tag span:last-child {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
}
[dir="rtl"] .rq-verify-tag span:last-child {
  font-size: 12.5px;
  letter-spacing: 0.06em;
}
.rq-verify-h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.3;
}
[dir="rtl"] .rq-verify-h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.6;
}
.rq-verify-lead {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--body);
}
[dir="rtl"] .rq-verify-lead {
  line-height: 2.1;
}
.rq-verify-note {
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted-5);
}
.rq-digits {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}
.rq-digit {
  width: 58px;
  height: 64px;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: inherit;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0;
  outline: none;
  transition: border-color 0.2s;
}
.rq-digit:focus {
  border-color: var(--gold);
}
.rq-verify-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.rq-verify-actions .rq-btn-ghost {
  padding: 15px 24px;
}
.rq-back {
  margin-top: 22px;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 13px;
  color: var(--muted-2);
  cursor: pointer;
  transition: color 0.3s;
}
.rq-back:hover {
  color: var(--gold);
}

/* --- step 3: status, progress and summary --- */
.rq-status {
  animation: rdSoftIn 0.5s ease both;
}
.rq-status-panel {
  margin-top: 24px;
}
.rq-reason {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}
.rq-reason-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
}
[dir="rtl"] .rq-reason-label {
  font-size: 12px;
  letter-spacing: normal;
}
.rq-reason-text {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--body);
}
.rq-block {
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px clamp(18px, 3vw, 26px);
}
.rq-block-flush {
  padding: 0;
}
.rq-block-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--hair);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
}
[dir="rtl"] .rq-block-head {
  font-size: 12px;
  letter-spacing: normal;
}
.rq-track {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.rq-track-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rq-track-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
}
.rq-track-bar.is-reached {
  background: var(--gold);
  opacity: 0.55;
}
.rq-track-bar.is-current {
  background: var(--gold);
}
.rq-track-label {
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--muted-3);
}
[dir="rtl"] .rq-track-label {
  font-size: 14px;
  letter-spacing: normal;
}
.rq-track-label.is-reached {
  color: var(--paper);
}
.rq-track-note {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--muted-3);
}
[dir="rtl"] .rq-track-note {
  line-height: 2;
}
.rq-summary {
  padding: 6px 22px 18px;
}
.rq-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.rq-row:last-child {
  border-bottom: 0;
}
.rq-row-k {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
[dir="rtl"] .rq-row-k {
  font-size: 13px;
  letter-spacing: normal;
}
.rq-row-v {
  font-size: 14.5px;
  text-align: end;
}
.rq-bottom {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
/* PreReserveExpired styles `.ac-panel-expired .ac-btn-phone` as a standalone block with
   a top margin and a larger face. Here the phone sits in a flex row next to another
   button, where that margin pushes the row 26px taller and the two stop lining up. */
.rq-status-panel .ac-panel-actions .ac-btn-phone {
  margin-top: 0;
  font-size: 15px;
}

/* Sits beside .ac-btn-phone in the status panel, so it has to match its height.
   The row stretches both to the taller of the two; inline-flex re-centres the label. */
.rq-btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: inherit;
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.rq-btn-inline:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}
.rq-btn-inline:disabled {
  opacity: 0.5;
  cursor: default;
}
[dir="rtl"] .rq-btn-inline {
  font-size: 15px;
  letter-spacing: normal;
}
.rq-btn-wa {
  gap: 10px;
}
/* fill="currentColor" resolves against the icon's own colour, so the mark keeps
   its brand green while the number beside it still goes gold on hover. */
.rq-wa-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--wa);
}
.rq-wa-num {
  letter-spacing: 0.04em;
}
[dir="rtl"] .rq-wa-num {
  letter-spacing: normal;
}
.rq-bottom-note {
  max-width: 340px;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted-5);
}
[dir="rtl"] .rq-bottom-note {
  max-width: 360px;
  line-height: 2;
}

@media (max-width: 620px) {
  .rq-digits {
    gap: 8px;
  }
  .rq-digit {
    width: 100%;
    max-width: 58px;
    height: 58px;
    font-size: 21px;
  }
  .rq-submit-row .rq-btn,
  .rq-verify-actions .rq-btn {
    width: 100%;
  }
}

/* ===================================================== room lightbox ===== */
.ld-lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
}
.ld-lb.is-open {
  display: flex;
}
.ld-lb-scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 7, 0.92);
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: rdFadeIn 0.3s ease forwards;
  cursor: zoom-out;
}
.ld-lb-figure {
  position: relative;
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  animation: rdSoftIn 0.45s ease forwards;
}
.ld-lb-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface-7);
}
.ld-lb-cap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  text-align: start;
}
.ld-lb-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
}
.ld-lb-meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}
[dir="rtl"] .ld-lb-meta {
  letter-spacing: normal;
}
.ld-lb-count {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  margin-inline-start: auto;
}
.ld-lb button {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--paper);
  cursor: pointer;
  line-height: 1;
  transition: border-color 0.3s, background 0.3s;
}
.ld-lb button:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}
.ld-lb-close {
  top: clamp(12px, 3vw, 28px);
  inset-inline-end: clamp(12px, 3vw, 28px);
  width: 46px;
  height: 46px;
  font-size: 19px;
}
.ld-lb-prev,
.ld-lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 64px;
  font-size: 26px;
}
.ld-lb-prev {
  inset-inline-start: clamp(6px, 2vw, 24px);
}
.ld-lb-next {
  inset-inline-end: clamp(6px, 2vw, 24px);
}
/* The chevrons are direction-agnostic glyphs; flip them for RTL. */
[dir="rtl"] .ld-lb-prev,
[dir="rtl"] .ld-lb-next {
  transform: translateY(-50%) scaleX(-1);
}

/* ==================================================== 960px breakpoint === */
@media (max-width: 959.98px) {
  :root {
    --nav-h: 62px;
  }

  .sn-desktop {
    display: none;
  }
  .sn-mobile {
    display: flex;
  }
  .sn-spacer {
    height: 62px;
  }
  .sn-lockup img {
    width: 26px;
    height: 31px;
  }
  .sn-lockup {
    gap: 9px;
  }
  .sn-wordmark {
    font-size: 22px;
  }
  [dir="rtl"] .sn-wordmark {
    font-size: 25px;
    padding-bottom: 5px;
  }
  .sn-diamond {
    width: 5px;
    height: 5px;
  }
  .sn-alt {
    padding: 9px 12px;
    font-size: 12px;
  }

  .ld-hero {
    position: relative;
    height: 78vh;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  }
  .ld-hero-spacer {
    display: none;
  }
  .ld-title {
    gap: 14px;
    transform: translateY(-4vh);
  }
  .ld-loader-box {
    height: 78vh;
    transform: translateY(-4vh);
  }

  /* --- Account / inner pages --- */
  .ip-main {
    padding: 30px 20px 56px;
  }

  /* --- Login: panes stack, art becomes a shallow banner --- */
  .lg-page {
    flex-direction: column;
  }
  .lg-art {
    flex: 0 0 auto;
    height: 30vh;
    min-height: 220px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }
  .lg-art-inner {
    padding: 22px 22px 34px;
  }
  .lg-form {
    flex: 1 1 auto;
    padding: 26px 22px 44px;
    background: var(--ink);
    border-inline-start: 0;
  }
  /* Four 64px boxes plus gaps overflow a 320px-wide phone. */
  .lg-digit {
    width: 58px;
    height: 68px;
    font-size: 24px;
  }
}

/* ---------------------------------------- 480px: platform rows only ------ */
/* The site has one layout breakpoint (960px). This second query is scoped to
   the platform marquee alone: portrait phones get two non-repeating rows,
   everything wider gets a single row holding all ten logos. */
@media (max-width: 479.98px) {
  .ld-marquee-pa {
    display: none;
  }
  .ld-marquee-pb,
  .ld-marquee-pc {
    display: block;
  }
}

/* ------------------------------------------------- reduced motion guard -- */
@media (prefers-reduced-motion: reduce) {
  .rd *,
  .rd *::before,
  .rd *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ld-dust {
    display: none;
  }
}
