:root {
  /* Background */
  --bg-primary: #ffffff;
  --bg-secondary: #ffffff;
  --surface: #ffffff;

  /* Typography */
  --text-primary: #3f3027;
  --text-secondary: #6b5a4e;
  --text-muted: #9a8b80;

  /* Brand */
  --accent: #6f523e;
  --accent-dark: #4b382c;

  /* UI */
  --border: #e8e2dd;

  /* Legacy aliases */
  --white: var(--bg-primary);
  --bone: var(--bg-secondary);
  --ink: var(--text-primary);
  --brown-deep: var(--accent);
  --taupe: #c9b8a7;
  --beige: var(--border);

  --bg-contrast: var(--accent-dark);
  --text-on-dark: #ffffff;
  --text-muted-dark: rgba(255, 255, 255, 0.7);

  --line: var(--border);
  --line-dark: rgba(255, 255, 255, 0.18);

  /* Typography */
  --font-serif:
    "Cormorant Garamond",
    "Times New Roman",
    serif;

  --font-sans:
    "General Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  --font-arabic:
    "Tajawal",
    var(--font-sans);

  --font-arabic-display:
    "Amiri",
    "Tajawal",
    serif;

  /* Fluid typography */
  --fs-display-xl: clamp(2.8rem, 7.2vw, 7.6rem);
  --fs-display-l: clamp(2.2rem, 5.2vw, 5rem);
  --fs-display-m: clamp(1.8rem, 3.2vw, 3rem);
  --fs-display-s: clamp(1.4rem, 2.2vw, 1.9rem);

  --fs-body-l: clamp(1.05rem, 1.3vw, 1.3rem);
  --fs-body: 1rem;
  --fs-small: 0.85rem;
  --fs-micro: 0.72rem;

  /* Spacing */
  --space-section: clamp(3rem, 6vw, 5.5rem);
  --space-xl: clamp(2.5rem, 5vw, 5rem);
  --space-l: clamp(1.5rem, 3vw, 2.75rem);
  --space-m: 1.5rem;
  --space-s: 0.75rem;

  /* Layout */
  --container-max: 1440px;
  --container-pad: clamp(1.25rem, 4vw, 4rem);

  --header-h: 84px;

  /* Responsive media caps — width-led; avoid height caps that crop subjects */
  --media-panel-max: min(82svh, 620px);
  --media-card-max: none;
  --media-portrait-max: none;
  --media-frame-width: min(100%, 560px);
  --card-panel: min(100%, 680px);
  --card-wide: min(100%, 820px);
  --card-portrait: min(100%, 440px);
  --card-shop-feature: min(100%, 320px);
  --card-shop-secondary: min(100%, 280px);

  /* Motion */
  --ease-editorial: cubic-bezier(0.22, 1, 0.36, 1);

  --dur-fast: 320ms;
  --dur-med: 700ms;
  --dur-slow: 1400ms;
}


/* ============================================================
   2. GLOBAL SAFETY
   ============================================================ */

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;

  background: var(--bg-primary);
  color: var(--text-primary);

  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.5;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  overflow-x: clip;
}

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

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

img,
video {
  height: auto;
}

.editorial-image img,
.rt__media img,
.hero__media img,
.sp__feature-image,
.sp__secondary-image {
  height: 100%;
}

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

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.05;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}


/* ============================================================
   3. LAYOUT
   ============================================================ */

.container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-block: var(--space-section);
}

.section > .container {
  width: 100%;
  max-width: 100%;
}

.section--bone {
  background: var(--bg-secondary);
}

.section--dark {
  background: var(--bg-contrast);
  color: var(--text-on-dark);
}


/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */

.display-xl {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-display-xl);
  line-height: 0.94;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

.display-l {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-display-l);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.display-m {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-display-m);
  line-height: 1;
}

.display-s {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-display-s);
  line-height: 1.05;
}

.body-l {
  font-size: var(--fs-body-l);
  line-height: 1.65;
}

.text-muted {
  color: var(--text-muted);
}

.section--dark .text-muted {
  color: var(--text-muted-dark);
}

.italic {
  font-style: italic;
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-char,
.split-word {
  display: inline-block;
  vertical-align: top;
  will-change: transform, opacity;
}

html[dir="rtl"] .split-word {
  white-space: nowrap;
}

.is-copy-in {
  will-change: transform, opacity;
}


/* ============================================================
   5. EYEBROW
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;

  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--accent);
}

.eyebrow::before {
  content: "";

  width: 28px;
  height: 1px;

  flex: 0 0 auto;

  background: currentColor;
}

.eyebrow--dark {
  color: var(--taupe);
}


/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;

  min-height: 46px;

  padding: 0.9em 1.8em;

  border: 1px solid var(--ink);
  border-radius: 999px;

  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;

  white-space: nowrap;
  background: transparent;
  color: var(--ink);

  transition:
    background var(--dur-fast) var(--ease-editorial),
    color var(--dur-fast) var(--ease-editorial),
    border-color var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial);
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn--primary,
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--primary:hover,
.btn--ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.section--dark .btn,
.section--dark .btn--primary,
.section--dark .btn--ghost,
.final-cta .btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--white);
}

.section--dark .btn:hover,
.section--dark .btn--primary:hover,
.section--dark .btn--ghost:hover,
.final-cta .btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}


/* ============================================================
   7. TEXT LINK
   ============================================================ */

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;

  padding-bottom: 0.2em;

  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;

  border-bottom: 1px solid currentColor;

  transition:
    opacity var(--dur-fast) var(--ease-editorial),
    gap var(--dur-fast) var(--ease-editorial);
}

.text-link:hover {
  opacity: 0.6;
  gap: 0.75em;
}

.text-link .arrow {
  transition: transform var(--dur-fast) var(--ease-editorial);
}

.text-link:hover .arrow {
  transform: translateX(3px);
}


/* ============================================================
   8. IMAGE SYSTEM
   ============================================================ */

.editorial-image {
  position: relative;
  overflow: hidden;

  width: 100%;

  background: var(--beige);
}

.editorial-image img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center center;
}

.world-block .editorial-image img {
  object-fit: cover;
  transition: transform 1.2s var(--ease-editorial);
}

.xp__media img {
  object-position: center center;
}

.yg__media img {
  object-position: center bottom;
}

.rt__media img {
  object-position: center 38%;
}

.hl__media img {
  object-position: center 30%;
}

.intro__image img {
  object-position: center 22%;
}

.intro__image.intro__image--nawal {
  aspect-ratio: auto;
  height: auto;
  padding: 0.45rem;
  overflow: hidden;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
  border-radius: 18px;
  background: #fff8f1;
  border: 1px solid rgba(186, 132, 78, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 22px 46px rgba(108, 64, 28, 0.12);
}

.intro__image--nawal img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  filter: none;
}

.intro__visual:hover .intro__image--nawal {
  transform: none;
}

.intro__visual:hover .intro__image--nawal img {
  transform: none;
}

.ph-taupe {
  background:
    linear-gradient(
      155deg,
      var(--taupe) 0%,
      var(--beige) 60%,
      var(--bone) 120%
    );
}

.ph-brown {
  background:
    linear-gradient(
      160deg,
      var(--brown-deep) 0%,
      var(--accent) 55%,
      var(--taupe) 130%
    );
}

.ph-beige {
  background:
    linear-gradient(
      150deg,
      var(--beige) 0%,
      var(--taupe) 70%,
      var(--accent) 150%
    );
}

.ph-warm {
  background:
    linear-gradient(
      165deg,
      var(--accent) 0%,
      var(--taupe) 60%,
      var(--bone) 130%
    );
}

.ph-soft {
  background:
    linear-gradient(
      150deg,
      var(--bone) 0%,
      var(--beige) 70%,
      var(--taupe) 140%
    );
}


/* ============================================================
   9. ATMOSPHERE
   ============================================================ */

.ph-atmosphere {
  background: linear-gradient(180deg, var(--bone) 0%, #f3ede4 100%);
}

.ph-atmosphere-quiet {
  background: linear-gradient(160deg, var(--bone) 0%, #f5f0e8 100%);
}


/* ============================================================
   10. HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  height: var(--header-h);

  display: flex;
  align-items: center;

  color: var(--white);

  background: rgba(37, 34, 31, 0.94);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  transition:
    height var(--dur-med) var(--ease-editorial),
    box-shadow var(--dur-med) var(--ease-editorial),
    background var(--dur-med) var(--ease-editorial);
}

.site-header::before {
  content: "";

  position: absolute;
  inset: 0 0 auto;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent 6%,
    rgba(195, 157, 116, 0.72) 50%,
    transparent 94%
  );

  pointer-events: none;
}

.site-header::after {
  content: "";

  position: absolute;
  inset: auto 0 0;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1) 50%,
    transparent
  );

  pointer-events: none;
}

.site-header,
.site-header .container,
.site-nav,
.header-actions {
  direction: ltr;
}

.site-header .container {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
}

.site-header.is-solid {
  height: 68px;

  background: rgba(32, 29, 26, 0.97);

  box-shadow:
    0 10px 40px rgba(20, 16, 12, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.logo {
  flex: 0 0 auto;

  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Brand logo — header, footer, mobile nav */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition:
    opacity var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial);
}

.brand-mark:hover {
  opacity: 0.82;
}

.brand-mark__img {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-mark--header .brand-mark__img {
  height: clamp(50px, 6.5vw, 62px);
  width: auto;
}

.site-header.is-solid .brand-mark--header .brand-mark__img {
  height: clamp(46px, 6vw, 56px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.brand-mark--footer {
  margin-bottom: var(--space-m);
}

.brand-mark--footer .brand-mark__img {
  height: clamp(96px, 14vw, 128px);
  width: auto;
  max-width: min(240px, 68vw);
}

.brand-mark--footer:hover {
  transform: translateY(-1px);
}

.brand-mark--mobile .brand-mark__img {
  height: clamp(72px, 18vw, 92px);
  width: auto;
  max-width: min(220px, 72vw);
}

.mobile-nav__head .brand-mark {
  margin-bottom: 0;
}

.site-nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;

  gap: clamp(0.2rem, 0.8vw, 0.35rem);
}

.site-nav a {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  padding: 0.52rem 0.5rem;
  border-radius: 999px;

  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;

  color: rgba(255, 255, 255, 0.72);

  transition:
    color var(--dur-fast) var(--ease-editorial),
    background var(--dur-fast) var(--ease-editorial),
    box-shadow var(--dur-fast) var(--ease-editorial);
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a.is-current,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(250, 248, 244, 0.96);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.site-nav a::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 981px) {
  .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: min(46rem, calc(100vw - 17rem));

    padding: 0.32rem;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  }
}


/* ============================================================
   11. MOBILE NAV
   ============================================================ */

.nav-toggle {
  display: none;

  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;

  width: 44px;
  height: 44px;
  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.06);

  transition:
    background var(--dur-fast) var(--ease-editorial),
    border-color var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle span {
  width: 18px;
  height: 1px;

  background: currentColor;

  transition:
    transform var(--dur-fast) var(--ease-editorial),
    opacity var(--dur-fast) var(--ease-editorial);
}

.mobile-nav {
  position: fixed;
  inset: 0;

  z-index: 120;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(18, 16, 14, 0.52);

  opacity: 0;

  transition: opacity 0.45s var(--ease-editorial);
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: relative;
  z-index: 1;

  width: min(100%, 560px);
  max-height: min(92svh, 780px);

  display: flex;
  flex-direction: column;

  padding:
    0.55rem
    var(--container-pad)
    max(1.75rem, env(safe-area-inset-bottom));

  overflow-y: auto;
  overscroll-behavior: contain;

  background: linear-gradient(180deg, #2a2622 0%, var(--ink) 100%);

  color: var(--white);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -24px 64px rgba(0, 0, 0, 0.34);

  transform: translateY(110%);

  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateY(0);
}

.mobile-nav__handle {
  display: flex;
  justify-content: center;

  padding: 0.15rem 0 0.85rem;
}

.mobile-nav__handle span {
  width: 42px;
  height: 4px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.mobile-nav__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;

  margin-bottom: clamp(1.25rem, 4vw, 1.85rem);
}

.mobile-nav__head-copy {
  min-width: 0;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  flex: 0 0 auto;

  min-height: 44px;
  padding-block: 0.45rem;
  padding-inline: 1rem 0.85rem;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;

  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--white);
  background: rgba(255, 255, 255, 0.07);

  transition:
    background var(--dur-fast) var(--ease-editorial),
    border-color var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial);
}

.mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-nav__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.mobile-nav__close-icon {
  position: relative;

  width: 14px;
  height: 14px;
}

.mobile-nav__close-icon::before,
.mobile-nav__close-icon::after {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 14px;
  height: 1.5px;

  background: currentColor;
}

.mobile-nav__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav__eyebrow {
  margin-top: 0.55rem;

  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--taupe);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;

  gap: 0;

  margin: 0;
  padding: 0;

  list-style: none;
}

.mobile-nav__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem 1rem;

  padding: 1.05rem 0.35rem;
  margin-inline: -0.35rem;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-inline-start: 2px solid transparent;
  border-radius: 12px;

  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 6.8vw, 2.45rem);
  line-height: 1.08;

  color: rgba(255, 255, 255, 0.82);

  transition:
    color var(--dur-fast) var(--ease-editorial),
    background var(--dur-fast) var(--ease-editorial),
    border-color var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial);
}

.mobile-nav__link:hover,
.mobile-nav__link.is-current,
.mobile-nav__link[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-inline-start-color: var(--accent);
  padding-inline-start: 0.65rem;
}

.mobile-nav__num {
  flex: 0 0 auto;

  min-width: 1.75rem;

  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;

  color: var(--accent);
}

.mobile-nav__label {
  min-width: 0;
}

.mobile-nav__arrow {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1;

  color: rgba(255, 255, 255, 0.34);

  transition:
    color var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial);
}

.mobile-nav__link:hover .mobile-nav__arrow,
.mobile-nav__link.is-current .mobile-nav__arrow,
.mobile-nav__link[aria-current="page"] .mobile-nav__arrow {
  color: var(--taupe);
  transform: translateX(3px);
}

.mobile-nav.is-open .mobile-nav__link {
  animation: mobileNavItemIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.mobile-nav.is-open .mobile-nav__list li:nth-child(1) .mobile-nav__link { animation-delay: 0.12s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(2) .mobile-nav__link { animation-delay: 0.18s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(3) .mobile-nav__link { animation-delay: 0.24s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(4) .mobile-nav__link { animation-delay: 0.3s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(5) .mobile-nav__link { animation-delay: 0.36s; }

@keyframes mobileNavItemIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav__backdrop,
  .mobile-nav__panel {
    transition: none;
  }

  .mobile-nav.is-open .mobile-nav__link {
    animation: none;
  }
}

.mobile-nav__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;

  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__secondary {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.62);

  transition: color var(--dur-fast) var(--ease-editorial);
}

.mobile-nav__secondary:hover {
  color: var(--white);
}

body.nav-open {
  overflow: hidden;
}


/* ============================================================
   12. HERO — editorial split
   ============================================================ */

.hero {
  --hero-frame-radius: clamp(40px, 7vw, 128px);
  --hero-frame-tilt: -3deg;

  position: relative;

  width: 100%;
  min-height: min(92svh, 900px);
  padding-top: 0;

  overflow: hidden;

  background: linear-gradient(180deg, var(--white) 0%, var(--bone) 100%);
  color: var(--text-primary);
}

.hero__grid {
  position: relative;
  z-index: 1;

  width: min(100%, calc(var(--container-max) + (var(--container-pad) * 2)));
  min-height: calc(min(92svh, 900px) - var(--header-h));
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 3.5rem);

  padding: clamp(1.25rem, 3vw, 2.75rem) var(--container-pad) clamp(2rem, 4.5vw, 3.25rem);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}

.hero__eyebrow {
  opacity: 0;
  transform: translateY(-8px);
  animation: heroFadeDown 0.9s var(--ease-editorial) forwards;
  animation-delay: 0.05s;
}

.hero__index {
  flex: 0 0 auto;

  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;

  color: rgba(139, 107, 82, 0.18);
}

@keyframes heroFadeDown {
  to { opacity: 1; transform: none; }
}

.hero__text {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 100%;
  max-width: 40rem;
  padding-inline-start: clamp(0.75rem, 1.8vw, 1.35rem);

  border-inline-start: 1px solid rgba(139, 107, 82, 0.28);
}

.hero__headline {
  width: 100%;
  max-width: none;
  margin-top: 0;
  line-height: 1.02;
}

.hero__headline.display-xl {
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.hero__headline-line {
  display: block;
  overflow: hidden;
  white-space: normal;
}

.hero__headline-line span {
  display: block;
  transform: translateY(112%);
  animation: heroLineUp 1s var(--ease-editorial) forwards;
}

.hero__headline.is-split .hero__headline-line span {
  transform: none;
  animation: none;
}

.hero__headline-line:nth-child(1) span { animation-delay: 0.22s; }
.hero__headline-line:nth-child(2) span { animation-delay: 0.36s; }

.hero__headline-line--accent span {
  color: var(--accent);
}

@keyframes heroLineUp {
  to { transform: translateY(0); }
}

.hero__sub {
  max-width: min(100%, 36rem);

  margin-top: var(--space-l);

  font-size: var(--fs-body-l);
  line-height: 1.58;

  color: var(--text-muted);

  opacity: 0;
  animation: heroFadeUp 1s var(--ease-editorial) forwards;
  animation-delay: 0.55s;
}

.hero__meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;

  margin-top: clamp(1.1rem, 2.4vw, 1.6rem);

  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(37, 34, 31, 0.52);

  opacity: 0;
  animation: heroFadeUp 1s var(--ease-editorial) forwards;
  animation-delay: 0.62s;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;

  gap: 0.8rem;

  margin-top: var(--space-xl);

  opacity: 0;
  animation: heroFadeUp 1s var(--ease-editorial) forwards;
  animation-delay: 0.68s;
}

.hero__ctas .btn {
  min-height: 48px;
  padding: 0.85em 1.55em;

  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  box-shadow: none;
  opacity: 1;
}

.hero__ctas .btn--primary,
.hero__ctas .btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.hero__ctas .btn:hover,
.hero__ctas .btn--primary:hover,
.hero__ctas .btn--ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 58svh, 680px);
}

.hero__frame {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 4 / 5.1;

  transform: rotate(var(--hero-frame-tilt));
  animation: heroFrameIn 1s var(--ease-editorial) backwards;
  animation-delay: 0.18s;
}

@keyframes heroFrameIn {
  from {
    opacity: 0;
    transform: rotate(calc(var(--hero-frame-tilt) - 2deg)) translateY(22px);
  }

  to {
    opacity: 1;
    transform: rotate(var(--hero-frame-tilt));
  }
}

.hero__media-wrap {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 100%;
  overflow: hidden;

  border: 1px solid rgba(37, 34, 31, 0.1);
  border-radius: var(--hero-frame-radius) var(--hero-frame-radius) 24px var(--hero-frame-radius);

  box-shadow: 0 24px 56px rgba(37, 34, 31, 0.12);
}

.hero__media {
  position: absolute;
  inset: 0;

  transform: scale(1.04);
  animation: heroScale 2s var(--ease-editorial) forwards;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

@keyframes heroScale {
  to { transform: scale(1); }
}

.scroll-indicator {
  position: absolute;

  right: var(--container-pad);
  bottom: var(--space-l);

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 0.6rem;

  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--text-muted);
}

.scroll-indicator__line {
  background: rgba(37,34,31,0.28);
}

.scroll-indicator__line {
  position: relative;

  width: 1px;
  height: 34px;

  overflow: hidden;

  background: rgba(37,34,31,0.28);
}

.scroll-indicator__line::after {
  content: "";

  position: absolute;
  top: -100%;
  left: 0;
  right: 0;

  height: 100%;

  background: var(--ink);

  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  50% {
    top: 0%;
  }

  100% {
    top: 100%;
  }
}


/* ============================================================
   13. REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);

  transition:
    opacity 900ms var(--ease-editorial),
    transform 900ms var(--ease-editorial);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}


/* ============================================================
   14. INTRO — soft breath portrait (feathered · borderless)
   ============================================================ */

.section--intro {
  overflow: clip;
  background:
    linear-gradient(180deg, #faf6f0 0%, var(--white) 58%);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro__content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 3vw, 2rem);
}

.intro__head {
  position: static;
}

.intro__name {
  margin-top: var(--space-m);
  max-width: min(100%, 14rem);
  line-height: 1.02;
}

.intro__role {
  margin-top: 0.85rem;
  max-width: min(100%, 36rem);
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  line-height: 1.65;
  color: var(--accent);
}

.intro__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.intro__lead {
  max-width: 48ch;
  line-height: 1.75;
  color: var(--text-muted);
}

.intro__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 48ch;
}

.intro__highlights li {
  position: relative;
  padding-inline-start: 1.35rem;
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--text-primary);
}

.intro__highlights li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.8vw, 0.9rem);
  max-width: 34rem;
}

.intro__stat {
  padding: clamp(0.85rem, 2vw, 1.05rem) 0.65rem;
  border: 1px solid var(--line);
  border-radius: clamp(14px, 2vw, 20px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(250, 248, 244, 0.82));
  text-align: center;
  box-shadow: 0 10px 28px rgba(37, 34, 31, 0.04);
}

.intro__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1;
  color: var(--accent);
}

.intro__stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.intro__para {
  max-width: 46ch;
}

.intro__visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;

  width: min(100%, 500px);
  margin-top: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem);
}

/* Intro portrait offset block */
.intro__visual-back {
  position: absolute;
  inset: 10% 8% 12%;
  z-index: 0;

  background: var(--beige);
  opacity: 0.45;
  border-radius: 18px;
}

.intro__image {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 100%;
  margin: 0;

  aspect-ratio: 4 / 5;

  filter: drop-shadow(0 32px 72px rgba(37, 34, 31, 0.08));

  transition: transform 1.25s var(--ease-editorial), filter 1.25s var(--ease-editorial);
}

.intro__visual:hover .intro__image {
  transform: scale(1.012);
  filter: drop-shadow(0 36px 80px rgba(37, 34, 31, 0.1));
}

.intro__visual-caption {
  position: absolute;
  left: 4%;
  bottom: 8%;
  z-index: 3;

  margin: 0;
  padding: 0;

  border: none;
  background: none;
  box-shadow: none;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.95);
}


/* ============================================================
   15. FIVE WORLDS — section intro
   ============================================================ */

/*
  "One identity — five different moods."
  The intro breaks the centered-heading pattern: eyebrow, then an
  oversized serif headline that only takes up part of the width,
  with the supporting line set apart to its right. Everything below
  is organised as a sequence of editorial chapters, not a card grid —
  see .world-block variants (.xp / .yg / .rt / .hl / .sp) below,
  each with its own silhouette and rhythm, but one shared corner
  language and one shared numbering system (see --world-r and the
  __num elements on every variant).
*/

.worlds-intro-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 3vw, 2rem);

  margin-bottom: clamp(3.5rem, 8vw, 6rem);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);

  border: 1px solid var(--line);
  border-radius: clamp(22px, 3vw, 32px);

  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(250, 248, 244, 0.88));
  box-shadow: 0 18px 50px rgba(37, 34, 31, 0.05);
}

.worlds-intro-copy {
  max-width: 54rem;
}

.worlds-intro-title {
  max-width: 13ch;
  margin-top: 0.85rem;
  line-height: 1.02;
}

.worlds-intro-title .italic {
  color: var(--accent);
}

.worlds-intro-sub {
  max-width: 40ch;
  margin-top: 1rem;
  line-height: 1.7;
}

.worlds-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;

  width: 100%;
  max-width: min(100%, 420px);
}

.worlds-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1.35rem;

  border: 1px solid rgba(37, 34, 31, 0.2);
  border-radius: 999px;

  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;

  color: var(--text-primary);
  background: #fff;

  transition:
    background var(--dur-fast) var(--ease-editorial),
    border-color var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial),
    box-shadow var(--dur-fast) var(--ease-editorial);
}

.worlds-nav__link > span:not(.worlds-nav__num) {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 400;
}

.worlds-nav__link:hover {
  border-color: rgba(139, 107, 82, 0.42);
  background: rgba(139, 107, 82, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(37, 34, 31, 0.06);
}

.worlds-nav__num {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--accent);
}

/*
  Shared corner language for every world-block variant. One value,
  reused everywhere instead of four independent clamps — the five
  sections should read as one voice with different emphasis, not
  four unrelated shapes.
*/
.world-block {
  --world-r: clamp(28px, 6vw, 100px);

  width: 100%;
  max-width: var(--card-wide);
  margin-inline: auto;
}

/*
  Shared number treatment. Every variant gets a __num element in the
  same family/size/color — Experiences and Yoga already had one;
  Retreats and Wellbeing were missing theirs, which is why the
  sequence visually broke after 02. See .rt__num / .hl__num below.
*/
.world-block [class$="__num"] {
  font-family: var(--font-serif);
  font-size: var(--fs-display-s);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.world-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;

  min-height: 46px;
  padding: 0.75rem 1.35rem;

  border: 1px solid var(--ink);
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;

  color: var(--ink);
  background: transparent;

  transition:
    background var(--dur-fast) var(--ease-editorial),
    border-color var(--dur-fast) var(--ease-editorial),
    color var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial);
}

.world-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
  opacity: 1;
  gap: 0.7rem;
}

.section--dark .world-cta {
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--white);
  background: transparent;
}

.section--dark .world-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.world-cta .arrow {
  transition: transform var(--dur-fast) var(--ease-editorial);
}

.world-cta:hover .arrow {
  transform: translateX(3px);
}

.section--bone .world-cta {
  background: transparent;
}

.world-block + .world-block {
  margin-top: clamp(3rem, 8vw, 6rem);
}

/* Shared organic-image behaviour: no hard frame, depth comes from
   scale + whitespace + overlap, only a whisper of shadow. */
.world-block .editorial-image {
  box-shadow: 0 20px 60px rgba(37, 34, 31, 0.06);
}

.world-block:hover .editorial-image img,
.world-block:focus-within .editorial-image img {
  transform: scale(1.02);
}


/* ============================================================
   16. EVENTS — 01, asymmetric overlapping gateway
   ============================================================ */

/*
  Text sits top-left, quiet and small; the image dominates, offset
  to the right and slightly overlapping the text column instead of
  sitting underneath it in a box. Corner language: one sharp corner,
  three soft ones — a doorway, not a card.
*/

.xp {
  position: relative;
  max-width: min(100%, 900px);

  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr);
  column-gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: start;
}

.xp__col {
  grid-column: 1;
  grid-row: 1;

  padding-top: clamp(1.5rem, 8vw, 6rem);
  z-index: 2;
}

.xp__num {
  display: block;
}

.xp__title {
  margin-top: 0.1em;
}

.xp__tagline {
  margin-top: var(--space-m);
}

.xp__cta {
  margin-top: var(--space-l);
}

.xp__media {
  grid-column: 2;
  grid-row: 1 / span 2;

  align-self: start;

  width: 100%;
  max-width: min(100%, 620px);
  aspect-ratio: 5 / 4;

  margin-left: clamp(-1rem, -2vw, 0);
  margin-top: clamp(0px, 2vw, 1.5rem);

  border-radius: 0 var(--world-r) 0 var(--world-r);
  overflow: hidden;
}

.xp__enter {
  position: absolute;

  top: var(--space-m);
  right: calc(var(--space-m) + 6px);

  z-index: 3;

  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--white);

  opacity: 0;
  transform: translateY(-6px);

  transition:
    opacity var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial);
}

.xp:hover .xp__enter,
.xp:focus-within .xp__enter {
  opacity: 1;
  transform: none;
}


/* ============================================================
   17. YOGA — 02, intimate portrait composition
   ============================================================ */

/*
  A tall portrait photograph carries the world; the number and title
  sit close against its edge and slightly overlap it, rather than
  living in a separate column. Deliberately quieter and narrower than
  Experiences — the second world should not repeat the first one's
  rhythm.
*/

.yg {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.5fr);
  align-items: end;

  width: min(100%, 720px);
  max-width: 100%;
  margin-inline: auto;
}

.yg__media-wrap {
  grid-column: 2;
  grid-row: 1;

  position: relative;
  width: var(--card-portrait);
  justify-self: end;
}

.yg__media {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 4.2;

  border-radius: var(--world-r) 0 var(--world-r) 0;
  overflow: hidden;
}

.yg__num {
  position: absolute;

  top: clamp(1rem, 3vw, 2rem);
  left: clamp(-1.5rem, -3vw, -0.5rem);

  z-index: 2;

  background: var(--bg-primary);
  padding: 0.1em 0.3em;
}

.yg__text {
  grid-column: 1;
  grid-row: 1;

  position: relative;
  z-index: 2;

  margin-right: clamp(-2.5rem, -5vw, -0.75rem);
  padding-bottom: clamp(1.5rem, 6vw, 3rem);
}

.yg__title {
  margin-top: 0.1em;
}

.yg__lead {
  margin-top: var(--space-m);
  max-width: 14ch;
  line-height: 1.55;
}

.yg__cta {
  margin-top: var(--space-l);
}


/* ============================================================
   18. RETREATS — 03, organic cinematic panel
   ============================================================ */

/*
  Not a standard full-bleed hero: the photograph is a large panel
  set inside generous whitespace, with soft asymmetric corners on
  every edge, rather than running flush to the viewport. Overlay is
  a whisper — legibility only, never a heavy gradient.

  Fix: the panel used to combine a fixed aspect-ratio with a hard
  max-height while the content was pinned to flex-end. Once the
  title wrapped to two lines on mid-width viewports there wasn't
  enough box left for the lead paragraph, and the two overlapped.
  The box now sizes from min-height only, content is always given
  room, and every line-height is set explicitly instead of
  inherited.
*/

.rt {
  position: relative;

  width: var(--card-panel);
  max-width: 100%;
  margin-inline: auto;

  min-height: clamp(280px, 36vw, 420px);

  display: flex;
  align-items: flex-end;

  color: var(--white);

  border-radius: var(--world-r) var(--world-r) 24px var(--world-r);
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(37, 34, 31, 0.14);
}

.rt__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rt__media > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;

  transition: transform var(--dur-slow) var(--ease-editorial);
}

.rt:hover .rt__media > *,
.rt:focus-within .rt__media > * {
  transform: scale(1.04);
}

.rt__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(37, 34, 31, 0) 0%,
    rgba(37, 34, 31, 0.1) 38%,
    rgba(37, 34, 31, 0.68) 100%
  );
}

.rt__content {
  position: relative;
  z-index: 2;

  width: 100%;

  padding: clamp(2.5rem, 8vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 6vw, 3.5rem);
}

.rt__num {
  display: block;
  color: var(--white);
  opacity: 0.85;
}

.rt__title {
  max-width: 14ch;
  margin-top: 0.1em;
  line-height: 1.1;
}

.rt__lead {
  max-width: 32ch;
  margin-top: var(--space-m);

  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.rt__cta {
  margin-top: var(--space-l);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.rt__cta:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
}


/* ============================================================
   19. WELLBEING — 04, editorial magazine spread
   ============================================================ */

/*
  Not image-left/text-right: a small organic image sits above the
  title, and the three-step sequence reads as a quiet navigation
  device — thin hairlines only, numbers that shift on hover, never
  a bordered card.
*/

.hl {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  column-gap: clamp(2rem, 6vw, 5rem);
  align-items: start;

  max-width: min(100%, 780px);
  margin-inline: auto;
}

.hl__media {
  grid-column: 1;

  width: var(--card-portrait);
  max-width: 100%;
  aspect-ratio: 4 / 5;
  min-height: clamp(220px, 42vw, 360px);

  border-radius: 0 var(--world-r) var(--world-r) var(--world-r);
  overflow: hidden;
}

.hl__text {
  grid-column: 2;

  padding-top: clamp(1rem, 4vw, 2.5rem);
}

.hl__num {
  display: block;
}

.hl__title {
  margin-top: 0.1em;
}

.hl__lead {
  max-width: 36ch;
  margin-top: var(--space-m);
  line-height: 1.55;
}

.hl__cta {
  margin-top: var(--space-l);
}

.worlds-stage {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vw, 6rem);
}

.worlds-stage .world-block + .world-block {
  margin-top: 0;
}


/* ============================================================
   19b. FIVE WORLDS — large screens: one cinematic mosaic
   Four photo doorways in a single viewport, instead of four
   stacked editorial chapters. Mobile keeps the long-form rhythm.
   ============================================================ */

@media (min-width: 981px) {
  .section--worlds {
    padding-block: clamp(1.75rem, 3vw, 2.75rem);
  }

  .worlds-intro-block {
    margin-bottom: 1.15rem;
    padding: 1rem 1.4rem 1.05rem;
    box-shadow: none;
  }

  .worlds-intro-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: clamp(1.25rem, 3.5vw, 3rem);
    align-items: end;
    max-width: none;
  }

  .worlds-intro-copy .eyebrow {
    grid-column: 1 / -1;
  }

  .worlds-intro-title {
    grid-column: 1;
    max-width: none;
    margin-top: 0.25rem;
    font-size: clamp(2.15rem, 3.6vw, 3.6rem);
    line-height: 1.02;
  }

  .worlds-intro-sub {
    grid-column: 2;
    max-width: none;
    margin-top: 0;
    padding-bottom: 0.2rem;
    font-size: 1.02rem;
  }

  .worlds-stage {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "xp yg"
      "rt hl";
    gap: 0.72rem;
    height: min(78vh, 820px);
    min-height: 560px;
    align-items: stretch;
  }

  .worlds-stage .xp { grid-area: xp; }
  .worlds-stage .yg { grid-area: yg; }
  .worlds-stage .rt { grid-area: rt; }
  .worlds-stage .hl { grid-area: hl; }

  .worlds-stage .world-block {
    --world-r: 22px;
    --world-scrim: linear-gradient(
      180deg,
      rgba(37, 34, 31, 0) 42%,
      rgba(37, 34, 31, 0.28) 68%,
      rgba(37, 34, 31, 0.72) 100%
    );

    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: var(--world-r);
  }

  .worlds-stage .editorial-image {
    height: 100%;
    box-shadow: none;
  }

  .worlds-stage .display-xl {
    font-size: clamp(1.7rem, 2.2vw, 2.55rem);
    line-height: 1.05;
    color: var(--white);
  }

  .worlds-stage .world-cta,
  .worlds-stage .rt__cta {
    min-height: 36px;
    padding: 0.42rem 0.95rem;
    margin-top: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.92);
    color: #fff;
    background: transparent;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none;
  }

  .worlds-stage .world-cta:hover,
  .worlds-stage .rt__cta:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
    color: #fff;
    opacity: 1 !important;
  }

  .worlds-stage [class$="__num"] {
    position: absolute;
    top: 0.85rem;
    right: 0.95rem;
    z-index: 4;

    margin: 0;
    padding: 0;

    font-size: clamp(1rem, 1.15vw, 1.25rem);
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
  }

  /* Shared overlay copy: compact band so the photo stays visible. */
  .worlds-stage .xp__col,
  .worlds-stage .yg__text,
  .worlds-stage .hl__text {
    grid-area: 1 / 1;
    z-index: 2;
    align-self: end;
    justify-self: stretch;
    width: 100%;
    margin: 0;
    padding: 0.85rem 1.05rem 1rem;
    color: var(--white);
    background: var(--world-scrim);
  }

  .worlds-stage .xp__col,
  .worlds-stage .yg__text,
  .worlds-stage .hl__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .worlds-stage .xp .xp__tagline,
  .worlds-stage .yg .eyebrow,
  .worlds-stage .yg__lead,
  .worlds-stage .rt .eyebrow,
  .worlds-stage .hl .eyebrow,
  .worlds-stage .hl__lead {
    display: none;
  }

  /* 01 Events — full-bleed doorway */
  .xp {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    max-width: none;
    align-items: stretch;
    border-radius: var(--world-r);
  }

  .xp__enter {
    display: none;
  }

  .xp__media {
    grid-area: 1 / 1;
    z-index: 0;
    margin: 0;
    max-width: none;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    min-height: 0;
    border-radius: 0;
    align-self: stretch;
  }

  .xp__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .xp__col {
    padding-top: 0.85rem;
  }

  .xp__title {
    max-width: 12ch;
  }

  .xp__cta {
    margin-top: 0.55rem;
  }

  /* 02 Yoga — portrait fills the cell */
  .yg {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: var(--world-r);
  }

  .yg__media-wrap {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    justify-self: stretch;
  }

  .yg__media {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    min-height: 0;
    border-radius: 0;
  }

  .yg__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }

  .yg__num {
    top: 0.85rem;
    right: 0.95rem;
    left: auto;
    padding: 0;
  }

  .yg__text {
    padding-bottom: 1rem;
  }

  .yg__cta {
    margin-top: 0.55rem;
  }

  /* 03 Retreats — cinematic cell, lighter scrim */
  .rt {
    width: 100%;
    min-height: 0;
    height: 100%;
    border-radius: var(--world-r);
  }

  .rt__scrim {
    background: linear-gradient(
      180deg,
      rgba(37, 34, 31, 0) 52%,
      rgba(37, 34, 31, 0.14) 72%,
      rgba(37, 34, 31, 0.52) 100%
    );
  }

  .rt__content {
    padding: 0.85rem 1.05rem 1rem;
  }

  .rt__num {
    position: absolute;
    top: 0.85rem;
    right: 0.95rem;
    z-index: 4;
    margin: 0;
  }

  .rt__title {
    max-width: 11ch;
  }

  .rt__media > * {
    object-position: center 42%;
  }

  .rt__lead {
    display: none;
  }

  .rt__cta {
    margin-top: 0.55rem;
    align-self: flex-start;
  }

  /* 04 Wellbeing — same doorway language as the others */
  .hl {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    max-width: none;
    height: 100%;
    min-height: 0;
    margin: 0;
    column-gap: 0;
    align-items: stretch;
    border-radius: var(--world-r);
  }

  .hl__media {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    min-height: 0;
    border-radius: 0;
  }

  .hl__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
  }

  .hl__title {
    font-size: clamp(1.35rem, 1.75vw, 1.95rem);
    max-width: 14ch;
  }

  .hl__cta {
    margin-top: 0.55rem;
    position: relative;
    z-index: 5;
  }

  .worlds-stage .hl {
    --world-scrim: linear-gradient(
      180deg,
      rgba(37, 34, 31, 0) 28%,
      rgba(37, 34, 31, 0.42) 62%,
      rgba(37, 34, 31, 0.82) 100%
    );
  }

  .worlds-stage video::-webkit-media-controls,
  .worlds-stage audio::-webkit-media-controls {
    display: none !important;
  }

  html[dir="rtl"] .worlds-stage [class$="__num"] {
    right: auto;
    left: 0.95rem;
  }

  html[dir="rtl"] .worlds-stage .xp,
  html[dir="rtl"] .worlds-stage .yg,
  html[dir="rtl"] .worlds-stage .rt,
  html[dir="rtl"] .worlds-stage .hl {
    border-radius: var(--world-r);
  }
}

@media (min-width: 1280px) {
  .worlds-stage {
    height: min(88vh, 980px);
    min-height: 640px;
  }
}

@media (min-width: 1536px) {
  .worlds-stage {
    height: min(92vh, 1080px);
    min-height: 720px;
  }
}


/* ============================================================
   20. SHOP — 05, a boutique moment
   ============================================================ */

/*
  Shop is deliberately "a world of its own": a quiet, dark boutique
  gallery rather than another editorial-image-plus-text block. A
  huge faint serif numeral sits behind the composition as the
  section's one signature flourish; two objects are staged at
  different scales and silhouettes, like a still-life shot for a
  small luxury maison, never a product card.
*/

.sp {
  overflow-x: clip;
  max-width: 100%;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.sp__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vh, 3.5rem);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.sp__head {
  max-width: 48ch;
}

.sp__title {
  margin-top: var(--space-m);
}

.sp__title .italic {
  color: var(--taupe);
}

.sp__lead {
  margin-top: var(--space-m);
  max-width: 42ch;
}

.sp__cta-main {
  margin-top: var(--space-l);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #fff;
}

.sp__cta-main:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.sp__gallery {
  --sp-feature-r: clamp(20px, 4vw, 72px);
  --sp-secondary-r: clamp(18px, 3.5vw, 56px);

  position: relative;
  width: 100%;
  max-width: min(100%, 620px);
  margin-inline: auto;
  overflow: clip;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(0.75rem, 3vw, 1.5rem);
  row-gap: clamp(1rem, 3vh, 1.75rem);
  align-items: end;
}

/* the signature: an oversized, near-invisible numeral behind the
   objects — restraint everywhere else, one bold gesture here */
.sp__ghost-num {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;

  max-width: 100%;
  overflow: hidden;

  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 16vw, 11rem);
  line-height: 1;

  color: rgba(255, 255, 255, 0.045);

  pointer-events: none;
  user-select: none;
}

.sp__feature,
.sp__secondary {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.sp__feature {
  max-width: 100%;
  min-width: 0;
}

.sp__secondary {
  max-width: 100%;
  min-width: 0;
  justify-self: stretch;
  margin-bottom: 0;
}

.sp__feature-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(34svh, 240px);
  background: rgba(255, 255, 255, 0.05);

  border-radius: var(--sp-feature-r) 16px var(--sp-feature-r) 16px;
  overflow: hidden;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.sp__secondary-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(30svh, 210px);
  background: rgba(255, 255, 255, 0.05);

  border-radius: 16px var(--sp-secondary-r) 16px var(--sp-secondary-r);
  overflow: hidden;

  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.sp__feature-image,
.sp__secondary-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center center;

  transition: transform 1.2s var(--ease-editorial);
}

.sp__feature:hover .sp__feature-image,
.sp__feature:focus-within .sp__feature-image,
.sp__secondary:hover .sp__secondary-image,
.sp__secondary:focus-within .sp__secondary-image {
  transform: scale(1.02);
}

.sp__feature-caption,
.sp__secondary-caption {
  display: flex;
  align-items: flex-start;
  gap: var(--space-m);
}

.sp__index {
  flex: 0 0 auto;

  font-family: var(--font-serif);
  font-size: var(--fs-display-s);
  color: var(--taupe);
}

.sp__feature-name,
.sp__secondary-name {
  display: block;
}

.sp__feature-copy {
  max-width: 26ch;
  margin-top: 0.35em;
}

.sp__secondary-copy {
  max-width: 22ch;
  margin-top: 0.3em;
}

.sp__cta {
  margin-top: 0.15rem;
}


/* ============================================================
   20b. SHOP — large screens: compact section, bigger products
   ============================================================ */

@media (min-width: 981px) {

  .sp.section {
    padding-block: clamp(2.25rem, 3.5vw, 3.25rem);
  }

  .sp__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: center;
  }

  .sp__head {
    max-width: 34ch;
  }

  .sp__title {
    margin-top: var(--space-s);
    font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  }

  .sp__lead {
    margin-top: var(--space-s);
    font-size: clamp(1rem, 1.1vw, 1.15rem);
  }

  .sp__cta-main {
    margin-top: var(--space-m);
  }

  .sp__gallery {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    column-gap: clamp(1rem, 1.8vw, 1.5rem);
    align-items: end;
  }

  .sp__ghost-num {
    font-size: clamp(5rem, 10vw, 8rem);
  }

  .sp__feature-media {
    aspect-ratio: 4 / 3.2;
    min-height: 280px;
    max-height: min(38vh, 360px);
  }

  .sp__secondary-media {
    aspect-ratio: 4 / 3.2;
    min-height: 240px;
    max-height: min(34vh, 320px);
  }

  .sp__feature-caption,
  .sp__secondary-caption {
    gap: var(--space-s);
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1rem, 2.5vw, 2rem);
    min-height: calc(min(86svh, 820px) - var(--header-h));
  }

  .hero__frame {
    width: min(100%, 380px);
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .hero__grid {
    min-height: calc(min(88svh, 840px) - var(--header-h));
  }

  .hero__frame {
    width: min(100%, 420px);
  }
}

@media (min-width: 1200px) {

  .hero,
  .hero__grid {
    min-height: calc(min(88svh, 860px) - var(--header-h));
  }

  .hero__visual {
    min-height: clamp(320px, 50svh, 580px);
  }

  .hero__frame {
    width: min(100%, 480px);
  }

  .sp__layout {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(1.5rem, 2vw, 2.25rem);
  }

  .sp__feature-media {
    min-height: 300px;
    max-height: min(40vh, 400px);
  }

  .sp__secondary-media {
    min-height: 260px;
    max-height: min(36vh, 350px);
  }
}

@media (min-width: 1536px) {
  .hero {
    min-height: min(90svh, 940px);
  }

  .hero__grid {
    min-height: calc(min(90svh, 940px) - var(--header-h));
    gap: clamp(2rem, 4vw, 4.5rem);
  }

  .hero__frame {
    width: min(100%, 520px);
  }

  .hero__sub {
    max-width: min(100%, 38rem);
    font-size: clamp(1.08rem, 1.2vw, 1.28rem);
  }
}


/* ============================================================
   21. STATEMENT
   ============================================================ */

.statement {
  text-align: center;

  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 0.3em;
}

.statement .display-l {
  max-width: 20ch;
}

.statement .display-l + .display-l {
  color: var(--accent);
}


/* ============================================================
   22. COMMUNITY
   ============================================================ */

.community {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: clamp(2rem, 6vw, 6rem);

  align-items: center;
}

.community__note {
  padding: var(--space-l);

  display: flex;
  flex-direction: column;

  gap: var(--space-m);

  border: 1px solid var(--line);
}

.community__note + .community__note {
  margin-top: var(--space-m);
}

.community__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-body-l);
}

.community__placeholder-tag {
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--accent);
}


/* ============================================================
   23. FINAL CTA
   ============================================================ */

.final-cta {
  position: relative;

  width: 100%;
  max-width: 100%;

  min-height: clamp(420px, 78svh, 720px);

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: var(--white);

  overflow: hidden;
}

.final-cta__scrim {
  position: absolute;
  inset: 0;

  background: rgba(37,34,31,0.42);
}

.final-cta__content {
  position: relative;
  z-index: 1;

  width: 100%;

  padding: var(--container-pad);
}

.final-cta .display-l {
  max-width: 18ch;
  margin-inline: auto;
}

.final-cta__cta {
  margin-top: var(--space-xl);
}


/* ============================================================
   24. FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: var(--white);

  padding-block:
    var(--space-xl)
    var(--space-l);
}

.footer-top {
  display: grid;

  grid-template-columns:
    1.4fr
    1fr
    1fr
    1fr;

  gap: var(--space-xl);

  padding-bottom: var(--space-xl);

  border-bottom: 1px solid var(--line-dark);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.footer-tag {
  max-width: 30ch;

  margin-top: var(--space-m);

  color: var(--text-muted-dark);
}

.footer-heading {
  margin-bottom: var(--space-m);

  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--taupe);
}

.footer-links {
  display: flex;
  flex-direction: column;

  gap: 0.65rem;
}

.footer-links a {
  transition: opacity var(--dur-fast) var(--ease-editorial);
}

.footer-links a:hover {
  opacity: 0.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  flex-wrap: wrap;

  gap: 1rem;

  padding-top: var(--space-l);

  font-size: var(--fs-small);

  color: var(--text-muted-dark);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;

  gap: 1.5rem;
}


/* ============================================================
   25. TABLET — <= 980px
   ============================================================ */

@media (max-width: 980px) {

  :root {
    --container-pad: clamp(1.25rem, 4vw, 2.5rem);
    --space-section: clamp(4rem, 8vw, 6rem);
  }

  /* Navigation */

  .site-nav {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }


  /* Intro */

  .intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro__content {
    grid-column: 1;
    grid-row: 1;
  }

  .intro__visual {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .intro__stats {
    max-width: none;
  }

  .intro__image,
  .intro__image--nawal {
    transform: none;
  }

  /* Worlds intro */

  .worlds-intro-block {
    padding: 1.25rem;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
  }

  .worlds-intro-sub {
    max-width: none;
  }

  .worlds-nav__link {
    min-height: 50px;
  }

  /* Experiences */

  .xp {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .xp__media {
    grid-column: 1;
    grid-row: 1;
    margin-left: 0;
    margin-top: 0;
    aspect-ratio: 4 / 3;
  }

  .xp__col {
    grid-column: 1;
    grid-row: 2;
    padding-top: 0;
  }

  .xp__frame {
    grid-column: 4 / span 9;

    margin-top: clamp(1.75rem, 6vw, 3rem);
  }


  /* Yoga */

  .yg {
    grid-template-columns: 1fr;
  }

  .yg__media-wrap {
    width: min(100%, 480px);
    justify-self: center;
  }

  .yg__media {
    order: -1;
    margin-top: 0;
    aspect-ratio: 3 / 4.2;
  }


  /* Retreats — image first, copy below like the other worlds */

  .rt {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 480px);
    min-height: 0;
    margin-inline: auto;
    color: var(--text-primary);
    overflow: visible;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
  }

  .rt__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--world-r) var(--world-r) 24px var(--world-r);
    box-shadow: 0 20px 60px rgba(37, 34, 31, 0.06);
  }

  .rt__scrim {
    display: none;
  }

  .rt__content {
    padding: 1.25rem 0 0;
  }

  .rt__num {
    color: var(--accent);
    opacity: 1;
  }

  .rt__title {
    color: var(--text-primary);
    max-width: none;
  }

  .rt__lead {
    color: var(--text-muted);
    max-width: none;
    margin-top: 0.6rem;
  }

  .rt .eyebrow--dark {
    color: var(--accent);
  }

  .rt__cta {
    margin-top: 1.25rem;
    border-color: rgba(139, 107, 82, 0.38);
    color: var(--text-primary);
    background: #fff;
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .rt__cta:hover {
    border-color: rgba(139, 107, 82, 0.6);
    background: rgba(139, 107, 82, 0.1);
    color: var(--text-primary);
  }


  /* Health — stack image above copy; reset grid columns so CTA stays visible */

  .hl {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 1.25rem;
    max-width: min(100%, 480px);
    margin-inline: auto;
  }

  .hl__media {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    aspect-ratio: 4 / 5;
  }

  .hl__text {
    grid-column: 1;
    grid-row: 2;
    padding-top: 0;
    min-width: 0;
  }

  .hl__title {
    max-width: none;
  }

  .hl__lead {
    max-width: none;
  }

  .hl__cta,
  .world-block .world-cta {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    margin-top: 1.25rem;
  }

  /* Yoga — same stack fix (media was stuck in column 2) */

  .yg {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 1.25rem;
    width: 100%;
    max-width: min(100%, 480px);
    margin-inline: auto;
    align-items: stretch;
  }

  .yg__media-wrap {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .yg__text {
    grid-column: 1;
    grid-row: 2;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .yg__lead {
    max-width: none;
  }

  .yg__cta {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    margin-top: 1.25rem;
  }

  .xp__cta {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
  }


  /* Shop */

  .sp {
    padding-block: clamp(2.25rem, 5vh, 3.5rem);
  }

  .sp__head {
    max-width: 50ch;
  }

  .sp__gallery {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .sp__feature,
  .sp__secondary {
    max-width: 100%;
    justify-self: stretch;
  }

  .sp__ghost-num {
    top: 0;
    right: 0;
    font-size: clamp(3.5rem, 22vw, 6.5rem);
  }

  .sp__feature-media {
    max-height: min(30svh, 210px);
    border-radius: 32px 16px 32px 16px;
  }

  .sp__secondary-media {
    max-height: min(26svh, 190px);
    border-radius: 16px 32px 16px 32px;
  }


  /* Community */

  .community {
    grid-template-columns: 1fr;
  }


  /* Footer */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   26. MOBILE — <= 600px
   ============================================================ */

@media (max-width: 600px) {

  :root {
    --container-pad: 1.1rem;

    --space-section: 4rem;

    --space-xl: 2.5rem;
    --space-l: 1.5rem;
    --space-m: 1.1rem;
    --space-s: 0.6rem;

    --header-h: 72px;

    --fs-display-xl: clamp(2.75rem, 13vw, 4rem);
    --fs-display-l: clamp(2.25rem, 10vw, 3rem);
    --fs-display-m: clamp(1.75rem, 8vw, 2.3rem);
    --fs-display-s: clamp(1.45rem, 6vw, 1.8rem);

    --fs-body-l: 1.05rem;
    --fs-body: 0.96rem;
  }


  /* ==========================================================
     GLOBAL MOBILE SAFETY
     ========================================================== */

  html,
  body {
    width: 100%;
    max-width: 100%;

    overflow-x: clip;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }

  .section {
    width: 100%;
    max-width: 100%;

    min-height: auto;

    padding-block: clamp(2.75rem, 7vh, 4rem);
  }


  /* ==========================================================
     HEADER
     ========================================================== */

  .site-header {
    height: var(--header-h);
  }

  .site-header.is-solid {
    height: 62px;
  }

  .brand-mark--header .brand-mark__img {
    height: clamp(42px, 11vw, 50px);
  }


  /* ==========================================================
     HERO
     ========================================================== */

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
    min-height: auto;
    padding-top: clamp(0.5rem, 2vh, 1rem);
    padding-bottom: clamp(1.25rem, 4vw, 2rem);
  }

  .hero__copy {
    order: 2;
  }

  .hero__visual {
    order: 1;
    min-height: 0;
    padding-inline: clamp(0.25rem, 2vw, 1rem);
  }

  .hero__frame {
    width: min(100%, 440px);
    margin-inline: auto;
    --hero-frame-tilt: -2deg;
  }

  .hero__eyebrow-row {
    margin-bottom: 0.85rem;
    padding-inline: 0.15rem;
  }

  .hero__text {
    max-width: none;
    padding-inline-start: 0.85rem;
  }

  .hero__sub {
    max-width: min(100%, 100%);
    margin-top: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero__meta {
    margin-top: 1rem;
  }

  .hero__ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-top: 1.25rem;
  }

  .hero__ctas .btn {
    width: 100%;
    min-height: 44px;
  }

  .scroll-indicator {
    display: none;
  }


  /* ==========================================================
     EYEBROW
     ========================================================== */

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .eyebrow::before {
    width: 20px;
  }


  /* ==========================================================
     INTRO
     ========================================================== */

  .intro {
    gap: 2.5rem;
  }

  .intro__body {
    gap: 2.5rem;
  }

  .intro__visual {
    width: min(100%, 420px);
  }

  .intro__image {
    aspect-ratio: 4 / 4.85;
  }

  .intro__image.intro__image--nawal {
    aspect-ratio: auto;
  }


  /* ==========================================================
     WORLDS INTRO
     ========================================================== */

  .worlds-intro-block {
    row-gap: 1.1rem;
    margin-bottom: 3rem;
    padding: 1.1rem;
  }

  .worlds-intro-title {
    max-width: 11ch;
  }

  .worlds-intro-sub {
    max-width: none;
  }

  .worlds-nav__link {
    min-height: 50px;
  }

  .world-block + .world-block {
    margin-top: 4.5rem;
  }


  /* ==========================================================
     EVENTS — one world, one screen: image first, text below
     ========================================================== */

  .xp {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .xp__media {
    grid-column: 1;
    grid-row: 1;

    aspect-ratio: 4 / 3.2;
    max-width: 100%;

    margin-left: 0;
    margin-top: 0;

    border-radius: 0 48px 0 48px;
  }

  .xp__col {
    grid-column: 1;
    grid-row: 2;

    padding-top: 0;
  }

  .xp__enter {
    display: none;
  }

  .xp__cta {
    margin-top: 1.4rem;
  }


  /* ==========================================================
     YOGA — portrait image first, title overlapping its top edge
     ========================================================== */

  .yg {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .yg__media-wrap {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .yg__media {
    aspect-ratio: 3 / 4.2;
    border-radius: 48px 0 48px 0;
  }

  .yg__num {
    top: 0.75rem;
    left: 0.75rem;
  }

  .yg__text {
    grid-column: 1;
    grid-row: 2;

    margin-right: 0;
    padding-top: 1.25rem;
    padding-bottom: 0;
  }

  .yg__lead {
    max-width: none;
  }


  /* ==========================================================
     RETREATS — image first, copy below
     ========================================================== */

  .rt {
    width: 100%;
    min-height: 0;
    border-radius: 0;
  }

  .rt__media {
    border-radius: 0 48px 24px 48px;
    aspect-ratio: 4 / 3;
  }

  .rt__content {
    padding: 1.25rem 0 0;
  }

  .rt__title {
    max-width: none;
  }

  .rt__lead {
    max-width: none;
    font-size: 0.98rem;
  }


  /* ==========================================================
     WELLBEING — small image above the title
     ========================================================== */

  .hl {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 1.5rem;
    max-width: min(100%, 440px);
    margin-inline: auto;
  }

  .hl__media {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    aspect-ratio: 4 / 5;
    border-radius: 0 48px 48px 48px;
  }

  .hl__text {
    grid-column: 1;
    grid-row: 2;
    padding-top: 0;
    min-width: 0;
  }

  .hl__title {
    max-width: none;
  }

  .hl__lead {
    max-width: none;
  }

  .hl__cta,
  .world-block .world-cta {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin-top: 1.25rem;
  }

  .yg {
    max-width: min(100%, 440px);
  }

  .yg__media-wrap {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
  }

  .yg__text {
    grid-column: 1;
    grid-row: 2;
  }

  .yg__cta,
  .xp__cta,
  .rt__cta {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }


  /* ==========================================================
     SHOP — compact, stays inside viewport width
     ========================================================== */

  .sp {
    padding-block: clamp(2rem, 4.5vh, 3rem);
  }

  .sp__layout {
    gap: 1.75rem;
  }

  .sp__head {
    max-width: 100%;
  }

  .sp__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .sp__cta-main {
    width: 100%;
  }

  .sp__gallery {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .sp__ghost-num {
    top: 0;
    right: 0;
    font-size: clamp(3rem, 20vw, 5.5rem);
  }

  .sp__feature-media {
    aspect-ratio: 4 / 3;
    max-height: min(28svh, 190px);
    border-radius: 28px 14px 28px 14px;
  }

  .sp__secondary-media {
    aspect-ratio: 4 / 3;
    max-height: min(24svh, 170px);
    border-radius: 14px 28px 14px 28px;
  }

  .sp__feature-copy,
  .sp__secondary-copy {
    max-width: 100%;
    font-size: 0.92rem;
  }


  /* ==========================================================
     STATEMENT
     ========================================================== */

  .statement .display-l {
    max-width: 15ch;
  }


  /* ==========================================================
     COMMUNITY
     ========================================================== */

  .community {
    display: flex;
    flex-direction: column;

    gap: 2rem;

    align-items: stretch;
  }

  .community__note {
    padding: 1.25rem;
  }


  /* ==========================================================
     FINAL CTA
     ========================================================== */

  .final-cta {
    min-height: 100svh;
  }

  .final-cta__content {
    padding-inline: 1.1rem;
  }

  .final-cta__cta {
    width: 100%;
  }


  /* ==========================================================
     FOOTER
     ========================================================== */

  .footer-top {
    grid-template-columns: 1fr;

    gap: 2.5rem;
  }

  .footer-top > div:first-child {
    grid-column: auto;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-brand .footer-tag {
    max-width: 34ch;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 1rem;
  }

  .footer-legal {
    gap: 1rem;
  }
}


/* ============================================================
   27. VERY SMALL PHONES — <= 380px
   ============================================================ */

@media (max-width: 380px) {

  :root {
    --container-pad: 1rem;

    --fs-display-xl: 2.55rem;
    --fs-display-l: 2.15rem;
    --fs-display-m: 1.7rem;
    --fs-display-s: 1.4rem;
  }

  .btn {
    padding-inline: 1.35rem;

    font-size: 0.72rem;
  }

  .hl__seq-label {
    font-size: 1.15rem;
  }
}


/* ============================================================
   28. LANDSCAPE PHONES
   ============================================================ */

@media (
  max-width: 900px
) and (
  orientation: landscape
) {

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
    gap: 1rem;
    min-height: calc(72svh - var(--header-h));
  }

  .hero__visual {
    min-height: clamp(200px, 48svh, 340px);
  }

  .hero__frame {
    width: min(100%, 340px);
    --hero-frame-tilt: -2deg;
  }

  .hero__eyebrow-row {
    margin-bottom: 0.65rem;
  }

  .hero__text {
    padding-top: 0.25rem;
  }

  .hero__sub {
    max-width: min(100%, 100%);
    margin-top: 0.75rem;
  }

  .hero__ctas {
    flex-direction: row;
    width: auto;
  }

  .hero__ctas .btn {
    width: auto;
  }
}


/* ============================================================
   29. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

    scroll-behavior: auto !important;
  }
}


/* ============================================================
   30. ACCESSIBILITY / TOUCH
   ============================================================ */

@media (hover: none) {

  .xp__enter {
    display: none;
  }
}


/* ============================================================
   31. HARD OVERFLOW PROTECTION
   ============================================================ */

section,
header,
footer,
main,
article,
aside,
nav {
  max-width: 100%;
}

.xp,
.yg,
.hl,
.sp,
.community,
.intro {
  width: 100%;
  max-width: 100%;
}

table,
pre {
  max-width: 100%;
  overflow-x: auto;
}

.hl__media {
  overflow: hidden;
}
.final-cta {
    position: relative;
    min-height: clamp(380px, 72svh, 640px);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #8d8175;
}

.final-cta__image {
    position: absolute;
    inset: 0;
    z-index: -3;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.02);
}

.final-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(45, 35, 27, 0.08) 0%,
            rgba(45, 35, 27, 0.12) 35%,
            rgba(38, 30, 24, 0.48) 68%,
            rgba(30, 24, 20, 0.68) 100%
        );

    pointer-events: none;
}

.final-cta__content {
    width: min(48vw, 720px);
    margin-left: auto;
    margin-right: clamp(4rem, 9vw, 11rem);
    padding: 4rem 0;

    color: #fff;
    text-align: start;
}

.final-cta__content h2,
.final-cta__content .display-l {
    max-width: 700px;
    margin: 0 0 2.5rem;

    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

.final-cta__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .final-cta {
        min-height: clamp(360px, 68svh, 560px);
        align-items: flex-end;
        justify-content: center;
    }

    .final-cta__image {
        object-position: 38% center;
    }

    .final-cta__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(35, 28, 23, 0.05) 0%,
                rgba(35, 28, 23, 0.12) 35%,
                rgba(30, 24, 20, 0.78) 100%
            );
    }

    .final-cta__content {
        width: 100%;
        margin: 0;
        padding: 3rem 1.5rem 4rem;
    }

    .final-cta__content h2 {
        max-width: 560px;
        margin-bottom: 2rem;
    }
}


/* ============================================================
   32. LANGUAGE TOGGLE
   ============================================================ */

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 38px;
  padding: 0 1em;

  border: 1px solid currentColor;
  border-radius: 999px;

  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;

  color: inherit;
  background: transparent;

  transition:
    background var(--dur-fast) var(--ease-editorial),
    color var(--dur-fast) var(--ease-editorial);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header .lang-toggle {
  min-height: 36px;
  padding: 0 0.85rem;

  font-size: 0.72rem;
  letter-spacing: 0.08em;

  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.site-header .lang-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.lang-toggle--mobile {
  align-self: flex-start;

  margin-top: 0.25rem;

  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.lang-toggle--mobile:hover {
  background: rgba(255, 255, 255, 0.1);
}

html[dir="rtl"] .lang-toggle {
  font-family: var(--font-arabic);
}


/* ============================================================
   33. RTL SUPPORT
   ============================================================ */

/*
  Every world already uses Grid/Flex, so mirroring is mostly free —
  this block (1) switches typography to a real Arabic pairing
  instead of stretching the Latin faces, and (2) flips the handful
  of rules that use a physical left/right or a fixed decorative
  corner, so nothing breaks or overlaps once the page mirrors.
*/

html[dir="rtl"] body {
  font-family: var(--font-arabic);
}

html[dir="rtl"] .display-xl,
html[dir="rtl"] .display-l,
html[dir="rtl"] .display-m,
html[dir="rtl"] .display-s {
  font-family: var(--font-arabic-display);
  letter-spacing: 0;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .btn,
html[dir="rtl"] .text-link,
html[dir="rtl"] .site-nav a,
html[dir="rtl"] .mobile-nav__link,
html[dir="rtl"] .mobile-nav__secondary,
html[dir="rtl"] .mobile-nav__close,
html[dir="rtl"] .hl__seq-note {
  letter-spacing: 0;
}

/* The eyebrow's leading rule should trail the Arabic text, not lead it */
html[dir="rtl"] .eyebrow {
  flex-direction: row-reverse;
}

html[dir="rtl"] .text-link:hover .arrow {
  transform: translateX(-3px);
}

/* Organic corners: keep the "inner" silhouette once the layout
   mirrors, rather than leaving the radius pinned to its original
   physical side. */
html[dir="rtl"] .hero__text {
  padding-inline-start: 0;
  padding-inline-end: clamp(0.75rem, 1.8vw, 1.35rem);
  border-inline-start: 0;
  border-inline-end: 1px solid rgba(139, 107, 82, 0.28);
}

html[dir="rtl"] .hero__headline {
  line-height: 1.12;
}

html[dir="rtl"] .hero__sub {
  line-height: 1.72;
}

html[dir="rtl"] .hero__meta {
  letter-spacing: 0.06em;
}

html[dir="rtl"] .mobile-nav__link {
  line-height: 1.18;
}

html[dir="rtl"] .mobile-nav__link:hover .mobile-nav__arrow,
html[dir="rtl"] .mobile-nav__link.is-current .mobile-nav__arrow,
html[dir="rtl"] .mobile-nav__link[aria-current="page"] .mobile-nav__arrow {
  transform: translateX(-3px);
}

html[dir="rtl"] .hero__frame {
  --hero-frame-tilt: 3deg;
}

html[dir="rtl"] .intro__name {
  max-width: min(100%, 18rem);
  line-height: 1.14;
}

html[dir="rtl"] .intro__role {
  line-height: 1.65;
}

html[dir="rtl"] .intro__visual {
  justify-self: start;
}

html[dir="rtl"] .intro__image.intro__image--nawal {
  border-radius: 18px;
}

html[dir="rtl"] .intro__visual-caption {
  left: auto;
  right: -6%;
}

html[dir="rtl"] .xp__media {
  border-radius: var(--world-r) 0 var(--world-r) 0;
}

html[dir="rtl"] .yg__media {
  border-radius: 0 var(--world-r) 0 var(--world-r);
}

html[dir="rtl"] .yg__num {
  left: auto;
  right: clamp(-1.5rem, -3vw, -0.5rem);
}

html[dir="rtl"] .hl__media {
  border-radius: var(--world-r) 0 var(--world-r) var(--world-r);
}

html[dir="rtl"] .rt {
  border-radius: var(--world-r) var(--world-r) var(--world-r) 24px;
}

html[dir="rtl"] .sp__feature-media {
  border-radius: 22px var(--sp-feature-r) 22px var(--sp-feature-r);
}

html[dir="rtl"] .sp__secondary-media {
  border-radius: var(--sp-secondary-r) 20px var(--sp-secondary-r) 20px;
}

html[dir="rtl"] .sp__ghost-num {
  right: auto;
  left: 0;
}

@media (min-width: 981px) {
  html[dir="rtl"] .sp__layout {
    direction: rtl;
  }

  /* Mosaic clips by the cell, not the inner media radius. */
  .worlds-stage .xp__media,
  .worlds-stage .yg__media,
  .worlds-stage .hl__media,
  html[dir="rtl"] .worlds-stage .xp__media,
  html[dir="rtl"] .worlds-stage .yg__media,
  html[dir="rtl"] .worlds-stage .hl__media {
    border-radius: 0;
  }

  html[dir="rtl"] .worlds-stage .yg__num {
    left: auto;
    right: 0.95rem;
    background: transparent;
  }

  html[dir="rtl"] .worlds-stage .rt {
    border-radius: var(--world-r) var(--world-r) var(--world-r) 16px;
  }
}

/* A physical directional cue (top-right corner tag / scroll hint),
   not a logical edge — pin it to the mirrored corner explicitly. */
html[dir="rtl"] .scroll-indicator {
  right: auto;
  left: var(--container-pad);
}

html[dir="rtl"] .xp__enter {
  right: auto;
  left: calc(var(--space-m) + 6px);
}

@media (max-width: 600px) {

  html[dir="rtl"] .yg__num {
    right: 0.75rem;
    left: auto;
  }

  html[dir="rtl"] .xp__media {
    border-radius: 48px 0 48px 0;
  }

  html[dir="rtl"] .yg__media {
    border-radius: 0 48px 0 48px;
  }

  html[dir="rtl"] .hl__media {
    border-radius: 48px 0 48px 48px;
  }

  html[dir="rtl"] .rt__media {
    border-radius: 48px 0 48px 24px;
  }

  html[dir="rtl"] .sp__feature-media {
    border-radius: 20px 48px 20px 48px;
  }

  html[dir="rtl"] .sp__secondary-media {
    border-radius: 36px 0 36px 36px;
  }
}