/* LASTVEL homepage prototype — revision 2026-08-26
 * Google Fonts load from HTML (non-blocking). Do not @import them here —
 * a leading @import delays local @font-face discovery and causes FA FOUT.
 */
@import "tokens/lastvel-variables.css";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--lv-anchor-offset);
}

html.lenis-smooth {
  scroll-behavior: auto !important;
}

html:not(.lenis-smooth) {
  scroll-behavior: smooth;
}

html.reduce-motion {
  scroll-behavior: auto;
}

:focus-visible {
  outline: none;
  box-shadow: var(--lv-focus-ring);
}

#inspiration-chip[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--lv-font-ui);
  font-size: var(--lv-text-body);
  line-height: var(--lv-leading-body);
  color: var(--lv-color-text-primary);
  background: var(--lv-color-canvas-espresso);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--lv-z-header);
  pointer-events: none;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--lv-space-2);
  padding: var(--lv-space-3) var(--lv-gutter-mobile);
  pointer-events: auto;
  transition: background var(--lv-duration-hover) var(--lv-ease-standard),
    border-color var(--lv-duration-hover) var(--lv-ease-standard);
}

.site-header--scrolled .site-header__inner {
  background: rgba(28, 25, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .site-header__inner {
    gap: var(--lv-space-4);
    padding: var(--lv-space-4) var(--lv-gutter-mobile);
  }
}

@media (min-width: 640px) {
  .site-header__inner {
    padding-inline: var(--lv-gutter-desktop);
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    padding-block: var(--lv-space-6);
  }
}

.site-header__veil {
  position: fixed;
  inset: 0 0 auto;
  height: 6rem;
  background: linear-gradient(to bottom, rgba(28, 25, 23, 0.55), transparent);
  z-index: var(--lv-z-veil);
  pointer-events: none;
}

.logo {
  text-decoration: none;
  min-height: var(--lv-target-min);
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo__mark {
  display: block;
  height: 1.5rem;
  width: auto;
  max-width: min(168px, 48vw);
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo__mark {
    height: 1.625rem;
    max-width: min(180px, 32vw);
  }
}

.nav-desktop {
  display: none;
  justify-content: center;
  gap: var(--lv-space-8);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: var(--lv-text-nav);
  font-weight: var(--lv-weight-medium);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color var(--lv-duration-hover) var(--lv-ease-standard);
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--lv-space-1);
  justify-self: end;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-actions {
    gap: var(--lv-space-2);
  }
}

@media (min-width: 1024px) {
  .header-actions {
    gap: var(--lv-space-4);
  }
}

.header-actions__desktop-only {
  display: none;
}

.header-actions .header-actions__desktop-only.btn-primary,
.header-actions .header-actions__desktop-only.btn-ghost {
  display: none;
}

@media (min-width: 1024px) {
  .header-actions__desktop-only {
    display: inline-flex;
  }

  .header-actions .header-actions__desktop-only.btn-primary,
  .header-actions .header-actions__desktop-only.btn-ghost {
    display: inline-flex;
  }
}

.lang-switch {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: var(--lv-weight-medium);
  min-height: var(--lv-target-min);
  min-width: var(--lv-target-min);
  padding: 0 10px;
  border-radius: var(--lv-radius-pill);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lang-switch {
    font-size: var(--lv-text-nav);
    padding: 0 12px;
  }
}

.lang-switch:focus-visible {
  outline: none;
  box-shadow: var(--lv-focus-ring);
}

.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--lv-target-min);
  height: var(--lv-target-min);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger span {
  display: block;
  height: 1.5px;
  width: 20px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--lv-z-mobile-menu);
  background: var(--lv-color-canvas-espresso);
  color: #fff;
  padding: calc(var(--lv-header-height-mobile) + 1rem) var(--lv-gutter-mobile) 2rem;
  transform: translateX(100%);
  transition: transform var(--lv-duration-fast) var(--lv-ease-editorial);
  overflow-y: auto;
}

html[dir="rtl"] .mobile-menu {
  transform: translateX(-100%);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

html[dir="rtl"] .mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: var(--lv-space-5);
}

.mobile-menu a {
  font-size: 1.125rem;
  text-decoration: none;
  color: #fff;
  min-height: var(--lv-target-min);
  display: flex;
  align-items: center;
}

.mobile-menu a.btn-primary {
  color: var(--lv-color-action-text);
  background: var(--lv-color-action-fill);
}

.mobile-menu a.btn-primary:focus-visible {
  box-shadow: var(--lv-focus-ring);
}

.mobile-menu .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: var(--lv-space-4);
}

/* ——— Buttons ——— */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--lv-space-2);
  padding: 12px 22px;
  min-height: var(--lv-target-min);
  border-radius: var(--lv-radius-pill);
  background: var(--lv-color-action-fill);
  color: var(--lv-color-action-text);
  font-size: var(--lv-text-nav);
  font-weight: var(--lv-weight-medium);
  text-decoration: none;
  transition: background var(--lv-duration-fast) var(--lv-ease-standard),
    transform var(--lv-duration-fast) var(--lv-ease-standard),
    box-shadow var(--lv-duration-fast) var(--lv-ease-standard);
}

.btn-primary:hover {
  background: var(--lv-color-action-hover);
  transform: translateY(-1px);
  box-shadow: var(--lv-shadow-action);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: var(--lv-focus-ring);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--lv-target-min);
  padding: 10px 20px;
  border-radius: var(--lv-radius-pill);
  border: 1px solid var(--lv-color-border-secondary-dark);
  color: #fff;
  text-decoration: none;
  font-size: var(--lv-text-nav);
  font-weight: var(--lv-weight-medium);
}

.btn-ghost:focus-visible {
  outline: none;
  box-shadow: var(--lv-focus-ring);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  z-index: var(--lv-z-hero-content);
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--lv-color-canvas-espresso);
}

@media (min-width: 1024px) {
  .hero {
    min-height: 100dvh;
  }
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: var(--lv-z-hero-media);
}

.hero__poster {
  position: absolute;
  inset: 0;
  z-index: var(--lv-z-hero-media);
  background-color: var(--lv-color-canvas-espresso);
  /* Matching first frame of Hero1.mp4 — not a substitute room photo */
  background-image: url("assets/Videos/Hero1-poster.jpg");
  background-size: cover;
  background-position: center 38%;
  transition: opacity 0.4s ease;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: calc(var(--lv-z-hero-media) + 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero.has-video-ready:not(.reduce-motion-active) .hero__poster {
  opacity: 0;
}

.hero__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--lv-space-4);
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(28, 25, 23, 0.55);
  color: #fff;
  font-family: var(--lv-font-ui);
  font-size: 0.875rem;
  font-weight: var(--lv-weight-medium);
  letter-spacing: 0.04em;
  padding: 0.75rem 1.25rem;
  min-height: var(--lv-target-min);
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.hero__play[hidden] {
  display: none !important;
}

.hero__play:focus-visible {
  outline: none;
  box-shadow: var(--lv-focus-ring);
}

.hero.reduce-motion-active .hero__play,
html.reduce-motion .hero__play {
  display: none !important;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, calc(0.18 + var(--hero-veil-strength, 0) * 0.42));
  z-index: var(--lv-z-hero-overlay);
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 25, 23, 0.72) 0%,
    rgba(28, 25, 23, 0.28) 38%,
    transparent 72%
  );
  z-index: calc(var(--lv-z-hero-overlay) + 1);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: calc(var(--lv-z-hero-content) + 1);
  width: 100%;
  max-width: 38rem;
  padding: calc(var(--lv-header-height-mobile) + 2.5rem) var(--lv-gutter-mobile)
    calc(5.5rem + env(safe-area-inset-bottom, 0px) + var(--lv-proto-toolbar-offset));
  opacity: var(--hero-content-opacity, 1);
  transition: opacity 0.05s linear;
  pointer-events: auto;
}

html[dir="ltr"] .hero__content {
  margin-inline-end: auto;
}

html[dir="rtl"] .hero__content {
  margin-inline-start: auto;
  text-align: right;
}

@media (min-width: 640px) {
  .hero__content {
    padding-inline: var(--lv-gutter-desktop);
    padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px) + var(--lv-proto-toolbar-offset));
  }
}

@media (min-width: 1024px) {
  .hero__content {
    padding-bottom: calc(clamp(5.5rem, 12vh, 7rem) + var(--lv-proto-toolbar-offset));
  }
}

body.is-presentation .hero__content {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 1024px) {
  body.is-presentation .hero__content {
    padding-bottom: clamp(5rem, 14vh, 8rem);
  }
}

/*
 * Tablet+ : move CTAs down by half the former actions→gateway pad.
 * Title margin compensation lives after the base .hero h1 rule.
 */
@media (min-width: 768px) {
  .hero {
    --hero-cta-shift: calc((6rem + var(--lv-proto-toolbar-offset)) / 2);
  }

  .hero__content {
    padding-bottom: calc(var(--hero-cta-shift) + env(safe-area-inset-bottom, 0px));
  }

  body.is-presentation .hero {
    --hero-cta-shift: calc(5.5rem / 2);
  }

  body.is-presentation .hero__content {
    padding-bottom: calc(var(--hero-cta-shift) + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 1024px) {
  .hero {
    --hero-cta-shift: calc((clamp(5.5rem, 12vh, 7rem) + var(--lv-proto-toolbar-offset)) / 2);
  }

  .hero__content {
    padding-bottom: var(--hero-cta-shift);
  }

  body.is-presentation .hero {
    --hero-cta-shift: calc(clamp(5rem, 14vh, 8rem) / 2);
  }

  body.is-presentation .hero__content {
    padding-bottom: var(--hero-cta-shift);
  }
}

/* Compact layout on short phones — width-gated so Safari chrome collapse cannot toggle it */
@media (max-width: 767px) {
  .hero p {
    font-size: 1rem;
    margin-bottom: var(--lv-space-4);
  }

  .hero__content {
    padding-top: calc(var(--lv-header-height-mobile) + 1.75rem);
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px) + var(--lv-proto-toolbar-offset));
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-ghost {
    width: auto;
    max-width: 100%;
    justify-content: center;
    flex-shrink: 0;
  }
}

html[lang="fa"] .hero p {
  max-width: 22rem;
}

.eyebrow {
  font-family: var(--lv-font-ui);
  font-size: var(--lv-text-eyebrow);
  font-weight: var(--lv-weight-medium);
  letter-spacing: var(--lv-tracking-eyebrow);
  text-transform: uppercase;
  margin: 0 0 var(--lv-space-4);
  color: rgba(255, 255, 255, 0.78);
}

html[lang="fa"] .eyebrow {
  text-transform: none;
  letter-spacing: 0.04em;
}

.type-editorial {
  font-family: var(--lv-font-editorial);
  font-weight: var(--lv-weight-light);
  letter-spacing: var(--lv-tracking-display);
  text-transform: none;
}

.type-ui {
  font-family: var(--lv-font-ui);
}

.hero h1 {
  font-family: var(--lv-font-editorial);
  font-size: var(--lv-text-hero);
  font-weight: var(--lv-weight-light);
  line-height: var(--lv-leading-tight);
  letter-spacing: var(--lv-tracking-display);
  margin: 0 0 var(--lv-space-8);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

html[lang="fa"] .hero h1 {
  font-size: clamp(2rem, 8vw, 2.75rem);
  line-height: 1.2;
}

/* Mobile hero type/spacing — after base/FA rules so cascade wins */
@media (max-width: 767px) {
  .hero h1 {
    font-size: clamp(2.5rem, 9vw, 3.25rem);
    /* Double title→actions gap (base is space-8); padding-bottom keeps actions→gateway */
    margin-bottom: var(--lv-space-16);
  }

  html[lang="fa"] .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.15rem);
  }
}

/* Keep #hero-title fixed while CTAs drop (pairs with --hero-cta-shift above) */
@media (min-width: 768px) {
  .hero h1 {
    margin-bottom: calc(var(--lv-space-8) + var(--hero-cta-shift));
  }
}

.hero p {
  margin: 0 0 var(--lv-space-6);
  font-size: var(--lv-text-body-lg);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero__actions a {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) var(--lv-gutter-mobile);
  background: var(--lv-color-canvas-espresso);
  color: var(--lv-color-text-primary);
  scroll-margin-top: var(--lv-anchor-offset);
}

#hero,
#gateway,
#experience,
#booking,
#journey,
#collections {
  scroll-margin-top: var(--lv-anchor-offset);
}

@media (min-width: 640px) {
  .section {
    padding-inline: var(--lv-gutter-desktop);
  }
}

.section--booking {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section--collections {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.section__intro {
  max-width: var(--lv-max-editorial);
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--lv-space-8);
}

.section__intro h2 {
  font-family: var(--lv-font-editorial);
  font-size: var(--lv-text-gateway-intro);
  font-weight: var(--lv-weight-light);
  line-height: var(--lv-leading-heading);
  margin: 0;
}

html[lang="fa"] .section__intro h2 {
  font-size: clamp(1.5rem, 5.5vw, 2.25rem);
  line-height: 1.25;
}

.section__intro p {
  color: var(--lv-color-text-secondary);
  margin: var(--lv-space-4) 0 0;
}

.section__intro-lead {
  max-width: 36rem;
  margin-inline: auto;
}

.gallery-note {
  font-size: 0.8125rem;
  color: var(--lv-color-text-muted);
  margin-top: var(--lv-space-3);
}

.collections-intro__inner > .eyebrow {
  margin-bottom: var(--lv-space-6);
}

.section--experience .experience-intro > .eyebrow {
  margin-bottom: var(--lv-space-6);
}

.collections-intro {
  opacity: var(--collections-intro-opacity, 1);
  transform: translate3d(0, var(--collections-intro-translate, 0), 0);
  will-change: opacity, transform;
}

.collections-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

html.reduce-motion .collections-intro {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28em;
}

.reveal-heading__word,
.gateway-heading__word,
.booking-heading__word {
  display: inline-block;
  opacity: calc(0.25 + var(--word-progress, 1) * 0.75);
  filter: blur(calc((1 - var(--word-progress, 1)) * 4px));
  transform: translateY(calc((1 - var(--word-progress, 1)) * 6px));
  will-change: opacity, filter, transform;
}

.reveal-eyebrow {
  opacity: calc(0.2 + var(--intro-eyebrow-progress, 1) * 0.8);
  transform: translateY(calc((1 - var(--intro-eyebrow-progress, 1)) * 10px));
}

.reveal-copy {
  opacity: calc(0.15 + var(--intro-copy-progress, 1) * 0.85);
  transform: translateY(calc((1 - var(--intro-copy-progress, 1)) * 14px));
}

html.reduce-motion .reveal-heading__word,
html.reduce-motion .gateway-heading__word,
html.reduce-motion .booking-heading__word {
  opacity: 1;
  filter: none;
  transform: none;
  will-change: auto;
}

html.reduce-motion .reveal-eyebrow,
html.reduce-motion .reveal-copy {
  opacity: 1;
  transform: none;
}

.section--gateway {
  position: relative;
  z-index: var(--lv-z-gateway-overlap);
  padding-top: clamp(3rem, 7vw, 5rem);
}

.section--gateway .section__intro {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section--gateway .section__intro {
    margin-bottom: clamp(2.5rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .section--gateway .section__intro {
    margin-bottom: clamp(3.5rem, 4.5vw, 4rem);
  }
}

.gateway-grid {
  display: grid;
  gap: var(--lv-space-6);
  margin-inline: auto;
  max-width: 100%;
  margin-top: 0;
  position: relative;
}

.gateway-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28em;
}

.heading-line-break {
  flex-basis: 100%;
  height: 0;
}

.booking-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28em;
}

.booking-heading__eyebrow {
  opacity: var(--booking-eyebrow-opacity, 0.35);
}

/* ——— Gateway cards ——— */
@media (min-width: 1025px) {
  .gateway-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--lv-gateway-gap);
    margin-inline: var(--lv-gutter-wide);
  }
}

.gateway-card {
  position: relative;
  border-radius: var(--lv-radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: #fff;
  display: block;
  text-decoration: none;
}

@media (min-width: 1025px) {
  .gateway-card {
    aspect-ratio: 1 / 1;
  }
}

.gateway-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.gateway-card__media-shift {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  width: 100%;
  height: 150%;
  transform: translate3d(0, calc(-50% + var(--gateway-parallax-y, 0px)), 0);
  will-change: transform;
}

.gateway-card__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform var(--lv-duration-hover) var(--lv-ease-standard);
}

.gateway-card--collections .gateway-card__media {
  background-color: var(--lv-color-canvas-dark);
}

.gateway-card--consultation .gateway-card__media {
  background-color: var(--lv-color-canvas-espresso);
}

.gateway-card:hover .gateway-card__media-img,
.gateway-card:focus-visible .gateway-card__media-img {
  transform: scale(1.02);
}

html.reduce-motion .gateway-card__media-shift {
  transform: translate3d(0, -50%, 0) !important;
  will-change: auto;
}

html.reduce-motion .gateway-card:hover .gateway-card__media-img,
html.reduce-motion .gateway-card:focus-visible .gateway-card__media-img {
  transform: none;
}

.gateway-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--lv-gradient-media-bottom);
  pointer-events: none;
  z-index: 1;
}

.gateway-card__label {
  position: absolute;
  top: var(--lv-space-5);
  inset-inline-end: var(--lv-space-5);
  z-index: 2;
  padding: 6px 14px;
  border-radius: var(--lv-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(28, 25, 23, 0.45);
  font-size: 11px;
  font-weight: var(--lv-weight-medium);
  letter-spacing: var(--lv-tracking-eyebrow);
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

html[lang="fa"] .gateway-card__label {
  text-transform: none;
  letter-spacing: 0.03em;
}

.gateway-card__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--lv-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--lv-space-3);
}

.gateway-card__title {
  font-family: var(--lv-font-ui);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: var(--lv-weight-medium);
  line-height: var(--lv-leading-heading);
  margin: 0;
}

.gateway-card__copy {
  font-size: var(--lv-text-body);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 28ch;
}

.gateway-card__cta {
  align-self: flex-start;
  margin-top: var(--lv-space-2);
}

/* ——— Collection gallery ——— */
.gallery-masonry {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1080px;
  margin: var(--lv-space-8) auto 0;
  padding-inline: var(--lv-gutter-mobile);
}

@media (min-width: 768px) {
  .gallery-masonry {
    flex-direction: row;
    gap: 28px;
    padding-inline: 0;
    align-items: flex-start;
  }
}

.gallery-masonry__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .gallery-masonry__col {
    gap: 28px;
  }
}

.gallery-item {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  border-radius: var(--lv-radius-card);
  overflow: hidden;
  cursor: pointer;
  background: var(--lv-color-canvas-dark);
  transition: transform var(--lv-duration-fast) var(--lv-ease-standard);
  display: block;
}

.gallery-item:hover {
  transform: none;
}

.gallery-item:focus-visible {
  outline: none;
  box-shadow: var(--lv-focus-ring);
}

.gallery-item__media {
  display: block;
  overflow: hidden;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-item__media-shift {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  width: 100%;
  height: 150%;
  transform: translate3d(0, calc(-50% + var(--collection-parallax-y, 0px)), 0);
  will-change: transform;
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform var(--lv-duration-fast) var(--lv-ease-standard);
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.005);
}

.gallery-item--size-tall {
  height: clamp(320px, 42vw, 420px);
}

.gallery-item--size-md {
  height: clamp(300px, 36vw, 360px);
}

.gallery-item--size-short {
  height: clamp(260px, 32vw, 300px);
}

.gallery-item--size-detail {
  height: clamp(240px, 30vw, 260px);
}

@media (max-width: 767px) {
  .gallery-item--size-tall {
    height: clamp(360px, 95vw, 480px);
  }

  .gallery-item--size-md {
    height: clamp(340px, 88vw, 440px);
  }

  .gallery-item--size-short {
    height: clamp(320px, 82vw, 400px);
  }

  .gallery-item--size-detail {
    height: clamp(300px, 78vw, 380px);
  }
}

html.reduce-motion .gallery-item__media-shift {
  transform: translate3d(0, -50%, 0) !important;
  will-change: auto;
}

html.reduce-motion .gallery-item:hover .gallery-item__img {
  transform: none;
}

.gallery-item__img--wide {
  object-position: center 42%;
}

.gallery-item__img--hotel {
  object-position: center 30%;
}

.gallery-item__img--window {
  object-position: center 35%;
}

.gallery-item__img--linen,
.gallery-item__img--green {
  object-position: center 22%;
}

.gallery-item__img--tieback {
  object-position: center 40%;
}

/* ——— Customer journey ——— */
.journey {
  background: var(--lv-color-canvas-espresso);
  padding-bottom: 0;
  scroll-margin-top: var(--lv-anchor-offset);
}

.journey__track {
  position: relative;
  height: var(--lv-journey-track-mobile);
}

@media (min-width: 768px) {
  .journey__track {
    height: var(--lv-journey-track-desktop);
  }
}

.journey__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey__media-shell {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: var(--journey-media-opacity, 1);
  transition: opacity 0.05s linear;
}

.journey.has-video-ready:not(.reduce-motion-active) .journey__poster {
  opacity: 0;
}

.journey__video,
.journey__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: inherit;
}

.journey__poster {
  background: var(--lv-color-canvas-espresso) url("assets/Videos/Hero1-poster.jpg") center 40% / cover no-repeat;
  z-index: 0;
}

.journey__video {
  z-index: 1;
}

.journey.reduce-motion-active .journey__poster,
.journey.reduce-motion-active.has-video-ready .journey__poster {
  opacity: 1;
}

.journey__media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.45);
  z-index: 2;
  border-radius: inherit;
}

@media (max-width: 767px) {
  .journey__media-overlay {
    background: rgba(28, 25, 23, 0.58);
  }
}

.journey__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 52rem;
  padding: calc(var(--lv-header-height-mobile) + 1rem) var(--lv-gutter-mobile) 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lv-space-5);
  opacity: var(--journey-content-opacity, 1);
}

@media (min-width: 640px) {
  .journey__content {
    padding-inline: var(--lv-gutter-desktop);
    padding-bottom: 3rem;
  }
}

.journey__statements {
  position: relative;
  width: 100%;
  min-height: clamp(10rem, 28vw, 14rem);
  perspective: 900px;
}

.journey__cta {
  flex-shrink: 0;
  margin-top: var(--lv-space-4);
}

.journey__statement {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  margin: 0;
  display: block;
  text-align: center;
  font-family: var(--lv-font-ui);
  font-size: clamp(1.375rem, 5.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-50% + 0px)) scale(1);
  transform-origin: center center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  padding-inline: var(--lv-space-4);
  text-transform: none;
  pointer-events: none;
}

.journey__main {
  font-family: var(--lv-font-ui);
  font-weight: 500;
}

.journey__emphasis {
  font-family: var(--lv-font-editorial);
  font-weight: 500;
  font-style: italic;
}

@media (min-width: 768px) {
  .journey__statement {
    /* +10% over prior desktop clamp */
    font-size: clamp(2.0625rem, 3.41vw, 2.75rem);
  }
}

@media (max-width: 767px) {
  .journey__statements {
    min-height: clamp(16rem, 52vw, 22rem);
  }

  .journey__statement {
    padding-inline: var(--lv-space-3);
    font-size: clamp(2.75rem, 11vw, 3.5rem);
  }

  .journey__cta {
    margin-top: var(--lv-space-6);
  }
}

html[lang="fa"] .journey__statement {
  font-family: var(--lv-font-ghalam-fa);
  font-size: clamp(1.25rem, 4.8vw, 1.65rem);
  line-height: 1.35;
}

@media (min-width: 768px) {
  html[lang="fa"] .journey__statement {
    /* +10% over prior FA desktop clamp */
    font-size: clamp(1.375rem, 5.28vw, 1.815rem);
  }
}

@media (max-width: 767px) {
  html[lang="fa"] .journey__statement {
    font-size: clamp(2.5rem, 9.6vw, 3.3rem);
  }
}

html[lang="fa"] .journey__main {
  font-family: var(--lv-font-ghalam-fa);
  font-weight: 500;
}

html[lang="fa"] .journey__emphasis {
  font-family: var(--lv-font-ghalam-fa);
  font-weight: 700;
  font-style: normal;
}

.experience-preview-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--lv-color-text-muted);
  margin: var(--lv-space-6) auto 0;
  max-width: 36rem;
  letter-spacing: 0.02em;
}

.section--experience .section__intro {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section--experience .section__intro-lead {
  max-width: 32rem;
  margin-inline: auto;
}

.booking-step__label {
  font-size: var(--lv-text-nav);
  font-weight: var(--lv-weight-medium);
  margin: 0 0 var(--lv-space-3);
}

.booking-step__bullets {
  margin: 0 0 var(--lv-space-6);
  padding-inline-start: 1.1rem;
  color: var(--lv-color-text-secondary);
  font-size: 0.9375rem;
}

.booking-step__bullets li {
  margin-bottom: var(--lv-space-2);
}

.booking-form {
  margin-top: var(--lv-space-2);
}

.form-errors {
  padding: var(--lv-space-3) var(--lv-space-4);
  margin-bottom: var(--lv-space-4);
  border-radius: var(--lv-radius-input);
  background: rgba(183, 148, 77, 0.15);
  border: 1px solid rgba(183, 148, 77, 0.35);
  color: var(--lv-color-text-primary);
  font-size: 0.9375rem;
}

.form-field__error {
  display: block;
  margin-top: var(--lv-space-2);
  font-size: 0.8125rem;
  color: var(--lv-color-accent-champagne);
}

.form-field input:invalid:not(:focus):not(:placeholder-shown),
.form-field select:invalid:not(:focus) {
  border-color: rgba(183, 148, 77, 0.55);
}

.booking-step--continuation {
  margin-top: var(--lv-space-4);
}

.booking-continuation__message {
  color: var(--lv-color-text-secondary);
  margin: 0 0 var(--lv-space-5);
}

.booking-continuation__summary {
  margin: 0;
  display: grid;
  gap: var(--lv-space-3);
}

.booking-continuation__summary dt {
  font-size: 0.75rem;
  font-weight: var(--lv-weight-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lv-color-text-muted);
  margin-bottom: var(--lv-space-1);
}

html[lang="fa"] .booking-continuation__summary dt {
  text-transform: none;
}

.booking-continuation__summary dd {
  margin: 0;
  font-weight: var(--lv-weight-medium);
}

.journey__static {
  display: none;
  padding: clamp(3rem, 6vw, 5rem) var(--lv-gutter-mobile) clamp(4rem, 8vw, 6rem);
  background: var(--lv-color-canvas-espresso);
  max-width: 42rem;
  margin-inline: auto;
}

.journey__static-poster {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--lv-radius-card);
  background: var(--lv-color-canvas-dark) url("assets/Photos/Homepage/window-room-with-surreal-mystical-view.jpg") center 35% / cover no-repeat;
  margin-bottom: var(--lv-space-6);
}

.journey__static-list {
  list-style: none;
  margin: 0 0 var(--lv-space-6);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--lv-space-4);
}

.journey__static-list li {
  padding-inline-start: var(--lv-space-6);
  position: relative;
  color: var(--lv-color-text-secondary);
  font-size: var(--lv-text-body);
  line-height: 1.45;
}

.journey__static-list li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  inset-inline-start: 0;
  top: 0.1em;
  font-family: var(--lv-font-ui);
  font-size: 0.75rem;
  font-weight: var(--lv-weight-medium);
  color: var(--lv-color-accent-gold);
  letter-spacing: 0.06em;
}

.journey__static-list {
  counter-reset: step;
}

.journey__static-step {
  font-family: var(--lv-font-ui);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 500;
  color: var(--lv-color-text-primary);
  display: block;
  line-height: 1.35;
}

html[lang="fa"] .journey__static-step .journey__emphasis {
  font-weight: 700;
}

.journey.is-reduced-motion .journey__track {
  display: none;
}

.journey.is-reduced-motion .journey__static {
  display: block;
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--lv-z-lightbox);
  background: var(--lv-color-overlay-scrim);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--lv-space-6);
}

@media (max-width: 767px) {
  .lightbox {
    padding: var(--lv-space-4) var(--lv-space-4) 4.5rem;
    align-items: flex-end;
  }
}

.lightbox.is-open {
  display: flex;
}

.lightbox__panel {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: var(--lv-radius-bento);
  background: #2a2624;
  color: #fff;
  border: 1px solid var(--lv-color-border-light);
}

.lightbox__close {
  position: absolute;
  top: var(--lv-space-4);
  inset-inline-end: var(--lv-space-4);
  width: var(--lv-target-min);
  height: var(--lv-target-min);
  border-radius: var(--lv-radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  z-index: 2;
}

.lightbox__media-wrap {
  background: #1c1917;
}

.lightbox__media {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  object-position: center;
}

.lightbox__body {
  padding: var(--lv-space-6);
}

.lightbox__title {
  font-family: var(--lv-font-editorial);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--lv-weight-light);
  margin: 0 0 var(--lv-space-3);
}

.lightbox__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--lv-space-4);
  margin-top: var(--lv-space-4);
}

/* ——— Booking / forms ——— */
.booking-preview {
  max-width: var(--lv-max-form);
  margin-inline: auto;
  padding: var(--lv-space-6) var(--lv-space-6) var(--lv-space-8);
  background: var(--lv-color-canvas-dark);
  border: 1px solid var(--lv-color-border-secondary-dark);
  border-radius: var(--lv-radius-bento);
}

.booking-preview .form-field input,
.booking-preview .form-field select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.booking-preview h2 {
  font-family: var(--lv-font-ui);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: var(--lv-weight-medium);
  margin: 0 0 var(--lv-space-3);
}

.booking-preview__lead {
  color: var(--lv-color-text-secondary);
  margin: 0 0 var(--lv-space-4);
  font-size: var(--lv-text-body);
}

.booking-preview__details {
  margin: 0 0 var(--lv-space-6);
  padding-inline-start: 1.1rem;
  color: var(--lv-color-text-secondary);
  font-size: 0.9375rem;
}

.booking-preview__details li {
  margin-bottom: var(--lv-space-2);
}

.inspiration-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--lv-space-3);
  padding: var(--lv-space-2) var(--lv-space-3);
  border-radius: var(--lv-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--lv-color-border-light);
  margin-bottom: var(--lv-space-4);
}

.inspiration-chip__thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--lv-radius-sm);
  background: var(--lv-color-canvas-dark);
  background-size: cover;
  background-position: center;
}

.form-field {
  margin-bottom: var(--lv-space-4);
}

.form-field label {
  display: block;
  font-size: var(--lv-text-nav);
  font-weight: var(--lv-weight-medium);
  margin-bottom: var(--lv-space-2);
}

.form-field input,
.form-field select {
  width: 100%;
  height: 48px;
  padding: 0 var(--lv-space-4);
  border-radius: var(--lv-radius-input);
  border: 1px solid var(--lv-color-border-light);
  background: rgba(255, 255, 255, 0.06);
  color: var(--lv-color-text-primary);
  font: inherit;
}

.form-field input:focus-visible,
.form-field select:focus-visible {
  outline: none;
  box-shadow: var(--lv-focus-ring);
}

/* ——— Client preview ——— */
.client-preview {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-radius: calc(var(--lv-radius-bento) + 0.25rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  max-width: 920px;
  margin-inline: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

@media (min-width: 768px) {
  .client-preview {
    grid-template-columns: 176px 1fr;
  }
}

.client-preview__nav {
  background: var(--lv-color-canvas-espresso);
  color: #fff;
  padding: var(--lv-space-5) var(--lv-space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .client-preview__nav {
    border-bottom: none;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--lv-space-6) var(--lv-space-4);
  }
}

.client-preview__nav a,
.client-preview__tab {
  display: block;
  padding: var(--lv-space-2) var(--lv-space-3);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  border-inline-start: 1px solid transparent;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  cursor: default;
  user-select: none;
  pointer-events: none;
}

.client-preview__nav a.is-active,
.client-preview__tab.is-active {
  color: #fff;
  border-inline-start-color: var(--lv-color-accent-gold);
}

@media (max-width: 767px) {
  .client-preview__nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: var(--lv-space-1);
    padding: var(--lv-space-3) var(--lv-space-4);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .client-preview__nav::-webkit-scrollbar {
    display: none;
  }

  .client-preview__nav a,
  .client-preview__tab {
    flex: 0 0 auto;
    border-inline-start: none;
    border-bottom: 1px solid transparent;
    font-size: 0.75rem;
    padding: var(--lv-space-2) var(--lv-space-3);
    white-space: nowrap;
  }

  .client-preview__nav a.is-active,
  .client-preview__tab.is-active {
    border-inline-start-color: transparent;
    border-bottom-color: var(--lv-color-accent-gold);
  }
}

.client-preview__main {
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: #e3d5be;
  color: #1c1917;
}

.client-preview__header {
  margin-bottom: var(--lv-space-5);
}

.client-preview__header .eyebrow {
  color: var(--lv-color-accent-gold);
}

.client-preview__header h3 {
  font-family: var(--lv-font-editorial);
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 400;
  font-style: italic;
  margin: 0.35rem 0 0;
  line-height: 1.25;
  color: #1c1917;
}

html[lang="fa"] .client-preview__header h3 {
  font-family: var(--lv-font-ui);
  font-style: normal;
  font-weight: 600;
}

.client-preview__cards {
  display: grid;
  gap: var(--lv-space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .client-preview__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lv-space-4);
  }
}

.client-preview__cards .concierge-card {
  padding: var(--lv-space-5) var(--lv-space-4);
  border-radius: var(--lv-radius-card);
  background: #efe4d0;
  border: 1px solid rgba(28, 25, 23, 0.1);
  cursor: default;
}

@media (hover: hover) and (pointer: fine) {
  .client-preview__cards .concierge-card {
    transition:
      transform 500ms cubic-bezier(0.32, 0.72, 0, 1),
      border-color 500ms cubic-bezier(0.32, 0.72, 0, 1),
      background 500ms cubic-bezier(0.32, 0.72, 0, 1),
      box-shadow 500ms cubic-bezier(0.32, 0.72, 0, 1);
  }

  .client-preview__cards .concierge-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(28, 25, 23, 0.18);
    background: #efe4d0;
    box-shadow: 0 18px 40px rgba(28, 25, 23, 0.12), 0 0 0 1px rgba(28, 25, 23, 0.06);
  }

  .client-preview__cards .concierge-card--highlight:hover {
    background: #efe4d0;
    border-color: #f9af4e;
    box-shadow: 0 20px 44px rgba(28, 25, 23, 0.14), 0 0 0 1px rgba(249, 175, 78, 0.2);
  }
}

@media (hover: hover) and (pointer: fine) {
  html.reduce-motion .client-preview__cards .concierge-card {
    transition: none;
  }

  html.reduce-motion .client-preview__cards .concierge-card:hover {
    transform: none;
    border-color: rgba(28, 25, 23, 0.1);
    background: #efe4d0;
    box-shadow: none;
  }

  html.reduce-motion .client-preview__cards .concierge-card--highlight:hover {
    background: #efe4d0;
    border-color: #f9af4e;
    box-shadow: none;
  }
}

.client-preview__cards .concierge-card--highlight {
  background: #efe4d0;
  border-color: #f9af4e;
  grid-column: 1 / -1;
  padding: var(--lv-space-5);
}

.client-preview__cards .concierge-card--status {
  background: #efe4d0;
}

.client-preview .concierge-card__label {
  font-size: 0.6875rem;
  font-weight: var(--lv-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lv-color-accent-champagne);
  margin: 0 0 var(--lv-space-3);
}

html[lang="fa"] .client-preview .concierge-card__label {
  text-transform: none;
  letter-spacing: 0.03em;
}

.client-preview .concierge-card__value {
  font-size: 1rem;
  font-weight: var(--lv-weight-medium);
  margin: 0 0 var(--lv-space-1);
  line-height: 1.45;
  color: #1c1917;
}

.client-preview .concierge-card__meta {
  font-size: 0.8125rem;
  color: var(--lv-color-text-muted-on-light);
  margin: var(--lv-space-2) 0 0;
  line-height: 1.45;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--lv-color-canvas-espresso);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) var(--lv-gutter-mobile);
  border-top: 1px solid var(--lv-color-border-light);
  scroll-margin-top: 0;
}

.site-footer__statement {
  font-family: var(--lv-font-editorial);
  font-size: var(--lv-text-footer-display);
  font-weight: var(--lv-weight-light);
  line-height: 1;
  margin: 0 0 var(--lv-space-8);
}

html[lang="fa"] .site-footer__statement {
  font-size: clamp(2.25rem, 10vw, 4rem);
  line-height: 1.1;
}

.site-footer__grid {
  display: grid;
  gap: var(--lv-space-8);
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.site-footer h3 {
  font-family: var(--lv-font-ui);
  font-size: var(--lv-text-eyebrow);
  letter-spacing: var(--lv-tracking-eyebrow);
  text-transform: uppercase;
  margin: 0 0 var(--lv-space-3);
  opacity: 0.65;
}

html[lang="fa"] .site-footer h3 {
  text-transform: none;
}

.site-footer a {
  display: block;
  color: var(--lv-color-text-secondary);
  text-decoration: none;
  margin-bottom: var(--lv-space-2);
  font-size: var(--lv-text-nav);
}

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover,
  .gateway-card:hover .gateway-card__media-img,
  .gallery-item:hover {
    transform: none;
  }

  .mobile-menu {
    transition: none;
  }

  .hero__video,
  .journey__video {
    display: none;
  }

  .hero.has-video-ready .hero__poster,
  .journey.has-video-ready .journey__poster,
  .hero.reduce-motion-active .hero__poster,
  .journey.reduce-motion-active .journey__poster {
    opacity: 1;
  }
}

html.reduce-motion .hero__video,
html.reduce-motion .journey__video {
  display: none;
}

html.reduce-motion .hero__poster,
html.reduce-motion .journey__poster,
html.reduce-motion .hero.has-video-ready .hero__poster,
html.reduce-motion .journey.has-video-ready .journey__poster {
  opacity: 1;
}

.hero.reduce-motion-active .hero__poster,
.journey.reduce-motion-active .journey__poster {
  opacity: 1;
}

/* Safe area for mobile CTAs above toolbar */
@media (max-width: 767px) {
  .journey__content {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .hero__actions .btn-primary,
  .journey__cta {
    margin-bottom: env(safe-area-inset-bottom, 0px);
  }
}

body {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* ——— Persian homepage typography (section-specific fonts) ——— */
html[lang="fa"] #hero-title {
  font-family: var(--lv-font-ghalam-fa);
}

html[lang="fa"] .hero__actions .btn-primary,
html[lang="fa"] .hero__actions .btn-ghost {
  font-family: var(--lv-font-marker-fa);
}

html[lang="fa"] #gateway-heading,
html[lang="fa"] .gateway-card__title,
html[lang="fa"] .gateway-card__copy,
html[lang="fa"] .gateway-card__cta {
  font-family: var(--lv-font-marker-fa);
}

html[lang="fa"] .journey__cta {
  font-family: var(--lv-font-ui-fa);
}

html[lang="fa"] #collections-title,
html[lang="fa"] #collections-eyebrow,
html[lang="fa"] #collections-intro-copy p {
  font-family: var(--lv-font-marker-fa);
}
