
:root {
  --black: #070605;
  --black-deep: #030201;
  --white: #f4f3ef;
  --white-dim: rgba(244, 243, 239, 0.42);
  --gold: #d4bc6e;
  --gold-soft: #c4a95a;
  --gold-deep: #8f7840;
  --gold-highlight: #f2e8c4;
  --gold-glow: rgba(212, 188, 110, 0.14);
  --gold-ring: rgba(212, 188, 110, 0.28);
  --gold-line: rgba(212, 188, 110, 0.12);
  --gold-fill: rgba(212, 188, 110, 0.07);
  --gray-band-top: #0e0c09;
  --gray-band-mid: #0a0907;
  --muted-neutral: #8f8c85;
  --container-max: 1360px;
  --pad-x: clamp(1.35rem, 5vw, 2.65rem);
  --bp-phone: 479px;
  --bp-tablet: 767px;
  --bp-desktop: 1023px;
  --touch-min: 2.75rem;
  --nav-pad-block: clamp(0.85rem, 2.5vw, 1.5rem);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
  --arabic: 'Noto Sans Arabic', sans-serif;
  --tex-diamond: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M36 2 L70 36 L36 70 L2 36 Z' fill='none' stroke='rgba(212%2C188%2C110%2C0.11)' stroke-width='0.6'/%3E%3C/svg%3E");
  --tex-dots: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='2' cy='2' r='0.85' fill='rgba(212%2C188%2C110%2C0.14)'/%3E%3C/svg%3E");
  --track-ui: 0.22em;
  --track-wide: 0.26em;
  --scroll-track: #0a0907;
  --scroll-track-edge: rgba(212, 188, 110, 0.07);
  --scroll-thumb-mid: rgba(212, 188, 110, 0.72);
  --scroll-thumb-edge: rgba(143, 120, 64, 0.88);
  --scroll-thumb-hover: rgba(242, 232, 196, 0.92);
  --lang-switch-ms: 0.38s;
}

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

html {
  font-size: clamp(16px, 0.45vw + 15px, 21px);
  scroll-behavior: smooth;
  scroll-padding-top: calc(5.5rem + env(safe-area-inset-top, 0px));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb-mid) var(--scroll-track);
}

html[data-lang="ru"] {
  --track-ui: 0.11em;
  --track-wide: 0.12em;
}

html[data-lang="ar"] {
  --track-ui: 0.16em;
  --track-wide: 0.18em;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 169, 90, 0.5) rgba(10, 9, 7, 0.92);
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(10, 9, 7, 0.98) 0%, rgba(7, 5, 4, 1) 100%);
  border-inline-start: 1px solid var(--scroll-track-edge);
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.45);
}

::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      180deg,
      rgba(242, 232, 196, 0.28) 0%,
      var(--scroll-thumb-mid) 38%,
      var(--scroll-thumb-edge) 100%
    );
  border: 2px solid rgba(7, 5, 4, 0.92);
  border-radius: 999px;
  min-height: 3.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 220, 0.12),
    0 0 10px rgba(212, 188, 110, 0.08);
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      180deg,
      rgba(242, 232, 196, 0.42) 0%,
      var(--scroll-thumb-hover) 42%,
      rgba(196, 169, 90, 0.95) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 220, 0.2),
    0 0 16px rgba(212, 188, 110, 0.22);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold-deep) 100%);
}

::-webkit-scrollbar-corner {
  background: var(--black-deep);
}

[data-i18n],
[data-i18n-ph],
.nav-req span,
.hero-cta-text,
.btn-outline span,
.section-deep-link span,
.footer-nav a,
.footer-tagline,
.footer-copy {
  transition:
    opacity var(--lang-switch-ms) cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    letter-spacing var(--lang-switch-ms) ease;
}

body.is-lang-switching {
  pointer-events: none;
}

body.is-lang-switching #nav,
body.is-lang-switching #hero,
body.is-lang-switching main,
body.is-lang-switching .page-main,
body.is-lang-switching .footer,
body.is-lang-switching .sec {
  opacity: 0.78;
  filter: blur(0.35px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
}

#nav,
#hero,
main,
.page-main,
.footer,
.sec {
  transition:
    opacity var(--lang-switch-ms) cubic-bezier(0.22, 1, 0.36, 1),
    filter var(--lang-switch-ms) ease;
}

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

  body.is-lang-switching #nav,
  body.is-lang-switching #hero,
  body.is-lang-switching main,
  body.is-lang-switching .page-main,
  body.is-lang-switching .footer,
  body.is-lang-switching .sec {
    opacity: 1;
    filter: none;
    transition: none;
  }

  [data-i18n],
  [data-i18n-ph],
  .nav-req span,
  .hero-cta-text {
    transition: none;
  }
}

body {
  font-size: 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  background-color: var(--black-deep);
  background-image:
    radial-gradient(ellipse 42% 38% at 12% 18%, rgba(212, 188, 110, 0.07) 0%, transparent 68%),
    radial-gradient(ellipse 50% 44% at 88% 72%, rgba(143, 120, 64, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 130% 90% at 50% -25%, rgba(212, 188, 110, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(143, 120, 64, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(80, 65, 35, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 120% 80% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(168deg, #0c0a07 0%, var(--black-deep) 42%, #090705 72%, var(--black) 100%);
  background-attachment: scroll;
  position: relative;
}

body.lang-ar { font-family: var(--arabic); }

body::before {
  content: '';
  position: absolute;
  inset: 0;
  min-height: 100%;
  background-image:
    repeating-linear-gradient(
      118deg,
      transparent 0,
      transparent 46px,
      rgba(212, 188, 110, 0.022) 46px,
      rgba(212, 188, 110, 0.022) 47px
    ),
    repeating-linear-gradient(
      -28deg,
      transparent 0,
      transparent 92px,
      rgba(244, 243, 239, 0.012) 92px,
      rgba(244, 243, 239, 0.012) 93px
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: absolute;
  inset: 0;
  min-height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(212, 188, 110, 0.14) 0, rgba(212, 188, 110, 0.14) 1px, transparent 1px) 0 0 / 100% 5.5rem no-repeat,
    linear-gradient(0deg, rgba(212, 188, 110, 0.14) 0, rgba(212, 188, 110, 0.14) 1px, transparent 1px) 0 0 / 5.5rem 100% no-repeat,
    linear-gradient(270deg, rgba(212, 188, 110, 0.1) 0, rgba(212, 188, 110, 0.1) 1px, transparent 1px) 100% 100% / 100% 5.5rem no-repeat,
    linear-gradient(180deg, rgba(212, 188, 110, 0.1) 0, rgba(212, 188, 110, 0.1) 1px, transparent 1px) 100% 100% / 5.5rem 100% no-repeat;
  opacity: 0.55;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  position: relative;
  z-index: 1;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--nav-pad-block) 0;
  padding-top: max(var(--nav-pad-block), env(safe-area-inset-top, 0px));
  opacity: 0;
  transition: background 0.45s ease, backdrop-filter 0.45s ease,
    border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(7, 5, 4, 0.88);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  border-bottom-color: var(--gold-line);
  box-shadow: 0 1px 0 rgba(212, 188, 110, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { height: 52px; width: auto; object-fit: contain; }

.nav-r { display: flex; align-items: center; gap: 1.75rem; }

.langs {
  display: flex;
  align-items: center;
}

.lang-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-neutral);
  padding: 0.45rem 0.8rem;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.lang-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  transition: width 0.25s ease;
}

.lang-btn:hover,
.lang-btn.active { color: var(--gold-highlight); }
.lang-btn:hover::after,
.lang-btn.active::after { width: 45%; }

.lang-sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: var(--gold-line);
}

.nav-req {
  font-size: 0.8rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  padding: 0.85rem 1.65rem;
  min-width: 12.75rem;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-ring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: var(--gold-highlight);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 0 0 0 var(--gold-glow);
}

.nav-req span {
  position: relative;
  z-index: 1;
  transition: color 0.35s;
  text-align: center;
  white-space: nowrap;
}

.nav-req:hover {
  border-color: rgba(242, 232, 196, 0.55);
  box-shadow: 0 0 28px var(--gold-glow);
}

.nav-req::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-102%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-req:hover::before { transform: translateX(0); }

.nav-req:hover span { color: var(--black-deep); }

#hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-attachment: scroll;
  background-image:
    var(--tex-diamond),
    var(--tex-dots),
    radial-gradient(ellipse 38% 32% at 78% 38%, rgba(212, 188, 110, 0.14) 0%, transparent 68%),
    radial-gradient(ellipse 60% 48% at 76% 42%, rgba(212, 188, 110, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 55% 44% at 18% 36%, rgba(212, 188, 110, 0.055) 0%, transparent 55%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 3px,
      rgba(212, 188, 110, 0.018) 3px,
      rgba(212, 188, 110, 0.018) 4px
    ),
    linear-gradient(90deg, rgba(3, 2, 1, 0.94) 0%, rgba(7, 6, 5, 0.84) 42%, rgba(3, 2, 1, 0.42) 100%);
  background-size: 72px 72px, 28px 28px, auto, auto, auto, auto, 100% 100%;
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat, repeat, no-repeat;
}

#hero::after {
  content: '';
  position: absolute;
  right: clamp(1.25rem, 4vw, 4rem);
  bottom: clamp(4.5rem, 9vh, 7rem);
  width: clamp(3.8rem, 7vw, 6.8rem);
  height: 0.34rem;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-highlight));
  box-shadow: 0 0 30px rgba(212, 188, 110, 0.24);
  transform: rotate(47deg);
  transform-origin: right center;
}

.hero-inner::before {
  content: '';
  position: absolute;
  width: clamp(300px, 38vw, 520px);
  height: clamp(300px, 38vw, 520px);
  right: clamp(4%, 8vw, 14%);
  top: 50%;
  transform: translateY(-48%);
  border-radius: 50%;
  border: 1px solid rgba(212, 188, 110, 0.14);
  box-shadow:
    0 0 0 28px rgba(212, 188, 110, 0.03),
    0 0 80px rgba(212, 188, 110, 0.06);
  pointer-events: none;
  z-index: 0;
}

.hero-inner::after {
  content: '';
  position: absolute;
  inset: 12% 8% auto auto;
  width: clamp(7rem, 14vw, 11rem);
  height: clamp(7rem, 14vw, 11rem);
  border: 1px solid rgba(212, 188, 110, 0.12);
  transform: rotate(45deg);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: clamp(6rem, 12vh, 8rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(380px, 0.92fr) minmax(430px, 1.08fr);
    align-items: center;
    gap: 0;
  }
}

.h-stage {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
  z-index: 2;
}

@media (min-width: 900px) {
  .h-stage {
    min-height: 26.5rem;
    justify-content: center;
  }
}

.h-over {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  opacity: 0;
  text-shadow: 0 0 42px var(--gold-glow);
}

.hero-logo-big {
  width: clamp(255px, 46vw, 500px);
  margin-bottom: 1.55rem;
  opacity: 0;
  filter: drop-shadow(0 0 26px rgba(212, 188, 110, 0.12));
}

.h-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.55rem, 3.45vw, 2.75rem);
  background: linear-gradient(105deg, var(--gold-highlight) 0%, var(--gold) 52%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
}

.h-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(244, 243, 239, 0.36);
  margin-bottom: 1rem;
  opacity: 0;
}

.h-desc {
  font-size: 1.0625rem;
  color: var(--white-dim);
  max-width: min(430px, 100%);
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(10px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: min(100%, 14.5rem);
  padding: 1.15rem clamp(1.5rem, 4vw, 2.75rem);
  background: linear-gradient(132deg, #f0e5b8 0%, var(--gold) 38%, var(--gold-soft) 62%, var(--gold-deep) 100%);
  color: var(--black-deep);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.25;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  border: 1px solid rgba(212, 188, 110, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 248, 220, 0.35) inset,
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 36px var(--gold-glow);
  transition: box-shadow 0.4s ease, border-color 0.35s ease;
}

.hero-cta:hover {
  box-shadow:
    0 1px 0 rgba(255, 248, 220, 0.45) inset,
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(212, 188, 110, 0.22);
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-cta:hover::before { transform: scaleX(1); transform-origin: left; }

.hero-cta-text {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  white-space: nowrap;
  transition: color 0.35s;
}

.hero-cta:hover .hero-cta-text { color: var(--gold-highlight); }

.h-img {
  position: relative;
  overflow: visible;
  min-height: 320px;
  margin: 0;
  background: transparent;
  z-index: 1;
}

@media (min-width: 1024px) {
  .h-img {
    min-height: 0;
    justify-self: end;
  }
}

.h-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.h-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 18%;
  filter: contrast(1.03) saturate(1.02);
  opacity: 0;
  transition: opacity 1s ease;
}

.h-stage picture {
  display: block;
  width: clamp(255px, 46vw, 500px);
}

.h-img-hero img {
  filter:
    contrast(1.06)
    drop-shadow(0 34px 76px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 44px rgba(212, 188, 110, 0.07));
  object-position: center 12%;
}

.h-img img.loaded { opacity: 1; }

.h-img-hero {
  width: min(48vw, 650px);
  height: clamp(560px, 78vh, 820px);
  transform: translateX(clamp(0rem, 2vw, 1.5rem));
}

.hero-footnote {
  margin-top: 1.35rem;
  max-width: min(430px, 100%);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-neutral);
  text-align: left;
  opacity: 0;
  line-height: 1.5;
}

[dir='rtl'] .h-stage { align-items: flex-end; text-align: right; }

[dir='rtl'] .hero-footnote {
  text-align: right;
}

@media (max-width: 899px) {
  #hero::after { opacity: 0.45; }

  .hero-inner {
    min-height: auto;
    padding-top: clamp(5.25rem, 14vw, 6.5rem);
    padding-bottom: clamp(2.5rem, 8vh, 4rem);
  }

  .h-stage {
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    order: 1;
  }

  .h-stage picture {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .h-img {
    order: 2;
    width: 100%;
    aspect-ratio: 2 / 3;
    max-height: min(56vh, 520px);
  }

  .h-img-hero {
    width: min(100%, 400px);
    height: auto;
    max-height: min(52vh, 480px);
    margin-inline: auto;
    justify-self: center;
    transform: none;
  }

  .h-img-hero img { object-position: center 8%; }

  .hero-footnote {
    text-align: center;
    margin-inline: auto;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    line-height: 1.55;
  }

  [dir='rtl'] .h-stage {
    align-items: center;
    text-align: center;
  }

  [dir='rtl'] .hero-footnote {
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

.sec {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.25rem, 12vh, 7.75rem);
}

.sec:not(.band):not(.cta-band)::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-attachment: scroll;
  background-image:
    var(--tex-dots),
    radial-gradient(ellipse 55% 42% at 8% 50%, rgba(212, 188, 110, 0.06) 0%, transparent 62%),
    radial-gradient(ellipse 45% 38% at 92% 60%, rgba(143, 120, 64, 0.05) 0%, transparent 58%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
  opacity: 0.9;
}

#prof::before {
  background-image:
    var(--tex-dots),
    radial-gradient(ellipse 55% 42% at 92% 45%, rgba(212, 188, 110, 0.07) 0%, transparent 62%),
    radial-gradient(ellipse 40% 35% at 6% 70%, rgba(143, 120, 64, 0.05) 0%, transparent 58%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
}

#prof {
  padding-bottom: clamp(2rem, 6vh, 3.75rem);
}

#concierge {
  padding-top: clamp(2rem, 6vh, 3.75rem);
}

#concierge .section-head-centered {
  margin-bottom: 2.5rem;
}

#pos::before {
  background-image:
    var(--tex-diamond),
    var(--tex-dots),
    radial-gradient(ellipse 55% 42% at 8% 50%, rgba(212, 188, 110, 0.06) 0%, transparent 62%),
    radial-gradient(ellipse 45% 38% at 92% 60%, rgba(143, 120, 64, 0.05) 0%, transparent 58%);
  background-size: 72px 72px, 28px 28px, 100% 100%, 100% 100%;
}

.band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(212, 188, 110, 0.05) 0%, transparent 58%),
    linear-gradient(
      185deg,
      var(--gray-band-top) 0%,
      var(--gray-band-mid) 38%,
      #12100c 50%,
      var(--gray-band-mid) 100%
    );
  border-block: 1px solid var(--gold-line);
  box-shadow: inset 0 1px 0 rgba(212, 188, 110, 0.04);
}

.band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-attachment: scroll;
  background-image:
    var(--tex-diamond),
    var(--tex-dots),
    repeating-linear-gradient(
      125deg,
      transparent 0,
      transparent 38px,
      rgba(212, 188, 110, 0.02) 38px,
      rgba(212, 188, 110, 0.02) 39px
    );
  background-size: 72px 72px, 28px 28px, auto;
  background-repeat: repeat, repeat, repeat;
  opacity: 0.65;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.band::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: clamp(200px, 28vw, 380px);
  height: clamp(200px, 28vw, 380px);
  right: -6%;
  bottom: -8%;
  border-radius: 50%;
  border: 1px solid rgba(212, 188, 110, 0.08);
  pointer-events: none;
  opacity: 0.7;
}

.sec > .container,
#hero > .container,
.sub-hero-band > .container,
.page-main > .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

.heading-xl,
.sec-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.35rem, 5.35vw, 4.55rem);
  line-height: 1.06;
  color: var(--white);
  letter-spacing: 0.01em;
}

.sec-h em { color: var(--gold-soft); font-style: italic; }

.section-head {
  display: grid;
  gap: 1rem 2rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
    align-items: end;
  }
}

.section-note {
  font-size: 0.975rem;
  color: var(--white-dim);
  line-height: 1.75;
  max-width: 22rem;
  justify-self: end;
}

[dir='rtl'] .section-note { justify-self: start; text-align: right; }

.section-head-centered { text-align: center; margin-bottom: 3.5rem; }
[dir='rtl'] .section-head-centered { direction: rtl; }

.pos-wrap {
  display: grid;
  justify-items: center;
  gap: clamp(2.25rem, 5vw, 3.25rem);
}

.pos-head {
  text-align: center;
  width: min(720px, 100%);
}

[dir='rtl'] .pos-head { direction: rtl; }

.pos-head .eyebrow {
  justify-content: center;
  display: block;
}

.pos-title em { font-style: italic; color: var(--gold-soft); }

.pos-lede {
  margin-top: 1.1rem;
  font-size: 1.065rem;
  color: rgba(244, 243, 239, 0.48);
}

.pos-list {
  list-style: none;
  width: min(680px, 100%);
  display: grid;
  gap: 1.75rem;
  border-top: 1px solid var(--gold-line);
}

.pos-item {
  padding-top: 1.75rem;
  border-bottom: 1px solid var(--gold-line);
  text-align: center;
}

[dir='rtl'] .pos-item { text-align: center; direction: rtl; }

.pos-item h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.pos-item p {
  font-size: 0.965rem;
  color: rgba(212, 188, 110, 0.32);
}

.exp-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
}

@media (max-width: 1023px) {
  .exp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.card-exp {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--black-deep);
}

.card-exp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(22%) sepia(10%) brightness(0.66) saturate(0.92);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.card-exp:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) sepia(8%) brightness(0.78) saturate(1.05);
}

.card-exp-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(2.75rem, 14%, 5rem) 1.55rem 1.55rem;
  background: linear-gradient(
    rgba(3, 2, 1, 0) 0%,
    rgba(3, 2, 1, 0.35) 28%,
    rgba(3, 2, 1, 0.92) 72%,
    rgba(3, 2, 1, 0.98) 100%
  );
}

.card-exp-body h3 {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.prof-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
}

@media (max-width: 1023px) {
  .prof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.card-prof {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--black-deep);
}

.card-prof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(24%) sepia(12%) brightness(0.7) saturate(0.9);
}

.card-prof-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(3rem, 16%, 5.25rem) 1.6rem 1.6rem;
  background: linear-gradient(
    rgba(3, 2, 1, 0) 0%,
    rgba(3, 2, 1, 0.42) 32%,
    rgba(3, 2, 1, 0.93) 76%,
    rgba(3, 2, 1, 1) 100%
  );
}

.card-prof-meta {
  font-size: 0.75rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
}

.card-prof-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
}

.card-prof-desc {
  font-size: 0.9rem;
  color: rgba(244, 243, 239, 0.52);
  margin-top: 0.45rem;
}

.cta-panel {
  margin-top: 4rem;
  padding: clamp(2.5rem, 5vw, 3rem);
  border: 1px solid var(--gold-ring);
  background: linear-gradient(
    155deg,
    var(--gold-fill) 0%,
    rgba(80, 65, 35, 0.12) 100%
  );
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(242, 232, 196, 0.06),
    0 0 0 1px rgba(3, 2, 1, 0.5),
    0 24px 48px rgba(0, 0, 0, 0.35);
}

.cta-panel-icon {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}

.cta-panel-title {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--white);
}

.cta-panel-text {
  font-size: 0.95rem;
  color: rgba(244, 243, 239, 0.45);
}

.btn-outline {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 2.25rem;
  border: 1px solid var(--gold-ring);
  font-size: 0.765rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--gold-highlight);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.btn-outline:hover {
  border-color: rgba(242, 232, 196, 0.45);
  box-shadow: 0 0 24px var(--gold-glow);
}

.btn-outline.lg {
  padding: 1.2rem 2.85rem;
  font-size: 0.8rem;
}

.btn-outline span { position: relative; z-index: 1; transition: color 0.35s; }

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-102%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline:hover::before { transform: translateX(0); }
.btn-outline:hover span { color: var(--black-deep); }

.how-list {
  list-style: none;
  display: grid;
  gap: 1.75rem;
  max-width: 880px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .how-list { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
}

.how-item {
  padding: 2rem 1.65rem;
  border: 1px solid var(--gold-line);
  background: linear-gradient(165deg, rgba(212, 188, 110, 0.03) 0%, transparent 55%);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.how-item:hover {
  border-color: rgba(212, 188, 110, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.how-step {
  display: inline-flex;
  width: 2.15rem;
  height: 2.15rem;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  border: 1px solid var(--gold-ring);
  border-radius: 50%;
  margin-bottom: 1.1rem;
  box-shadow: 0 0 20px var(--gold-glow);
}

.how-item h3 {
  font-family: var(--serif);
  font-size: 1.62rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
}

.how-item p {
  font-size: 0.95rem;
  color: rgba(244, 243, 239, 0.42);
}

[dir='rtl'] .how-item { direction: rtl; text-align: right; }

.cta-band {
  text-align: center;
  padding-block: clamp(4.75rem, 15vh, 8.25rem);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-attachment: scroll;
  background-image:
    var(--tex-dots),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(212, 188, 110, 0.1) 0%, transparent 62%),
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(212, 188, 110, 0.05) 0%, transparent 55%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
}

.cta-band::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 720px);
  height: min(92vw, 720px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(212, 188, 110, 0.07);
  pointer-events: none;
  opacity: 0.55;
}

.eyebrow-centered { letter-spacing: 0.52em; }

.cta-h {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.95vw, 4.85rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  letter-spacing: 0.01em;
}

.cta-h em { font-style: italic; color: var(--gold-soft); }

.cta-sub {
  font-size: 0.98rem;
  color: rgba(244, 243, 239, 0.42);
  margin-top: 1rem;
  letter-spacing: 0.06em;
}

.cta-buttons {
  display: flex;
  gap: 1.35rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.cta-buttons .btn-outline svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cta-footnote {
  margin-top: 2.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 188, 110, 0.26);
}

.footer {
  border-top: 1px solid var(--gold-line);
  padding-block: 2.75rem;
  padding-bottom: max(2.75rem, calc(2.75rem + env(safe-area-inset-bottom, 0px)));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.65rem;
  justify-items: center;
  text-align: center;
}

.footer-tail {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  align-items: center;
  justify-content: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.65rem;
  row-gap: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(212, 188, 110, 0.75);
}

.footer-nav a {
  white-space: nowrap;
  line-height: 1.35;
}

.footer-nav a:hover { color: var(--gold-highlight); }

.footer-logo { height: 40px; object-fit: contain; filter: brightness(0.92) saturate(0.55); }

.footer-tagline {
  font-size: 0.748rem;
  letter-spacing: var(--track-ui);
  text-transform: uppercase;
  color: rgba(212, 188, 110, 0.28);
  text-wrap: balance;
}

.footer-copy {
  font-size: 0.748rem;
  letter-spacing: 0.12em;
  color: rgba(143, 140, 133, 0.55);
}

@media (min-width: 769px) {
  .footer-inner {
    grid-template-columns: auto minmax(28rem, 1fr) minmax(15rem, auto);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    text-align: left;
    justify-items: stretch;
  }

  .footer-inner > a:first-of-type {
    justify-self: start;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: auto auto;
    justify-content: center;
    justify-items: center;
    align-items: center;
    column-gap: clamp(2rem, 4vw, 3.25rem);
    row-gap: 0.85rem;
    justify-self: center;
  }

  .footer-nav a:first-child {
    grid-column: 1 / -1;
  }

  .footer-tail {
    justify-self: end;
    align-items: flex-end;
    text-align: right;
    min-width: 15rem;
    min-height: 3.2rem;
    justify-content: center;
  }
}

[dir='rtl'] .footer-inner {
  direction: rtl;
}

[dir='rtl'] .footer-tail {
  text-align: left;
  align-items: flex-start;
}

#nav.visible-nav { opacity: 1; }

.nav-logo-link {
  display: inline-flex;
  align-items: center;
}

.page-main {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
}

.sub-hero-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.75rem, 10vh, 5.75rem);
  background:
    radial-gradient(ellipse 70% 60% at 64% -10%, rgba(212, 188, 110, 0.08) 0%, transparent 62%),
    linear-gradient(180deg, transparent 0%, rgba(7, 5, 4, 0.25) 100%);
  border-bottom: 1px solid var(--gold-line);
}

.sub-hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-attachment: scroll;
  background-image: var(--tex-dots), var(--tex-diamond);
  background-size: 28px 28px, 72px 72px;
  background-repeat: repeat, repeat;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 10%, transparent 70%);
}

.sub-hero-band::after {
  content: '';
  position: absolute;
  width: clamp(220px, 34vw, 420px);
  height: clamp(220px, 34vw, 420px);
  right: -8%;
  top: -20%;
  border-radius: 50%;
  border: 1px solid rgba(212, 188, 110, 0.1);
  pointer-events: none;
}

.breadcrumb {
  font-size: 0.675rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244, 243, 239, 0.32);
  margin-bottom: clamp(1.85rem, 4vw, 2.85rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.breadcrumb-sep {
  opacity: 0.25;
}

.breadcrumb a {
  color: var(--gold-soft);
  transition: color 0.25s ease;
}

.breadcrumb a:hover { color: var(--gold-highlight); }

.section-head--split {
  display: grid;
  gap: 1rem 2.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .section-head--split {
    grid-template-columns: minmax(0, 1.65fr) minmax(240px, 1fr);
  }
}

.section-head-main { min-width: 0; }

.section-deep-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.05rem;
  font-size: 0.728rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transition: color 0.25s ease, transform 0.25s ease;
}

.section-deep-link:hover {
  color: var(--gold-highlight);
  transform: translateX(2px);
}

[dir='rtl'] .section-deep-link:hover {
  transform: translateX(-2px);
}

.card-prof-wrap {
  display: block;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.card-prof-wrap .card-prof { transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease; }

.card-prof-wrap:focus-visible .card-prof {
  outline: 1px solid var(--gold-ring);
  outline-offset: 3px;
}

.card-prof-wrap:hover .card-prof {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.5);
}

.card-prof-meta span[data-i18n] { opacity: 0.95; }

.profiles-list-sec { padding-top: clamp(2rem, 6vh, 3.5rem); }

.profiles-mast .mast-lede {
  margin-top: 1.65rem;
  font-size: 1.05rem;
  line-height: 1.74;
  color: rgba(244, 243, 239, 0.48);
  max-width: 46rem;
}

.profiles-mast .mast-sub {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: rgba(212, 188, 110, 0.34);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  max-width: 42rem;
}

.mast-title { margin-bottom: 0; }

.card-prof-cta.ghost {
  margin-top: 0.62rem;
  font-size: 0.695rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-highlight);
}

.catalog-panel-flat {
  margin-top: clamp(3rem, 8vh, 4.75rem);
  padding: clamp(2.55rem, 6vw, 3.85rem);
  border: 1px solid var(--gold-ring);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(212, 188, 110, 0.05) 0%,
    rgba(7, 5, 4, 0.35) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(242, 232, 196, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.32);
}

.profile-hero-grid {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3rem);
}

@media (min-width: 1024px) {
  .profile-hero-grid {
    grid-template-columns: minmax(260px, 0.92fr) minmax(340px, 1.08fr);
    align-items: end;
    gap: clamp(2.5rem, 6vw, 4rem);
  }
}

.profile-hero-photo {
  position: relative;
  overflow: visible;
}

.profile-hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--gold-line);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(212, 188, 110, 0.08);
}

.profile-hero-meta { padding-bottom: 0.5rem; }

.profile-age-row {
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.45rem;
  align-items: baseline;
}

.profile-name-h1 {
  font-family: var(--serif);
  font-size: clamp(2.85rem, 7vw, 4.95rem);
  font-weight: 300;
  line-height: 1.03;
}

.profile-loc {
  margin-top: 0.45rem;
  font-size: 0.738rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(212, 188, 110, 0.38);
}

.profile-short {
  margin-top: 1.85rem;
  font-size: 1.065rem;
  color: rgba(244, 243, 239, 0.48);
  max-width: 28rem;
  line-height: 1.7;
}

.profile-cta-row {
  margin-top: 2rem;
}

.sub-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1rem;
}

.page-hero-simple { max-width: 36rem; }

.sub-hero-muted {
  margin-top: 0.85rem;
  color: rgba(244, 243, 239, 0.4);
}

.profile-body-band .profile-narrow {
  width: min(720px, 100%);
}

.serif-pull {
  font-family: var(--serif);
}

.profile-tagline {
  font-size: clamp(1.45rem, 3.55vw, 2.05rem);
  font-style: italic;
  font-weight: 350;
  line-height: 1.22;
  color: var(--gold-highlight);
  margin-bottom: 1.85rem;
}

.profile-prose-lead {
  font-size: 1.065rem;
  color: rgba(244, 243, 239, 0.58);
  line-height: 1.78;
  margin-bottom: 1rem;
}

.profile-prose {
  font-size: 1rem;
  color: rgba(244, 243, 239, 0.45);
  line-height: 1.85;
}

.eyebrow-soft {
  margin-top: clamp(2.75rem, 6vh, 3.85rem);
  font-size: 0.695rem !important;
  letter-spacing: 0.42em !important;
  color: rgba(212, 188, 110, 0.28);
}

.profile-facet-band { padding-block: clamp(3.85rem, 10vh, 6rem); }

.facet-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .facet-grid { gap: 1.25rem 1.85rem; }
}

.facet-card {
  padding: 1.62rem 1.45rem;
  border: 1px solid var(--gold-line);
  background: rgba(212, 188, 110, 0.03);
  min-height: 100%;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.facet-card:hover {
  border-color: rgba(212, 188, 110, 0.22);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
}

.facet-card-h {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.facet-card-p {
  font-size: 0.92rem;
  color: rgba(244, 243, 239, 0.44);
  line-height: 1.66;
}

.exp-mast-head .mast-lede {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(244, 243, 239, 0.5);
  max-width: 48rem;
}

.mast-sub-wide {
  max-width: 52rem !important;
  line-height: 1.74;
}

.exp-deep-band { padding-block: clamp(4rem, 12vh, 7rem); }

.exp-deep-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.exp-deep-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.85rem);
  padding-block: clamp(2.85rem, 6vh, 3.95rem);
  border-bottom: 1px solid var(--gold-line);
}

.exp-deep-item:first-child {
  border-top: 1px solid var(--gold-line);
}

.exp-deep-num {
  font-size: 0.78rem;
  letter-spacing: 0.5em;
  color: rgba(212, 188, 110, 0.26);
}

.exp-deep-h {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.85vw, 2.85rem);
  font-weight: 400;
  line-height: 1.06;
}

.exp-deep-p {
  margin-top: 0.75rem;
  font-size: 0.9825rem;
  color: rgba(244, 243, 239, 0.44);
  line-height: 1.74;
}

.exp-deep-closer {
  margin-top: clamp(3.5rem, 9vh, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}

.exp-deep-out {
  margin-bottom: 1.85rem;
  font-size: 0.9625rem;
  color: rgba(244, 243, 239, 0.38);
}


@media (min-width: 768px) and (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
    min-height: min(100dvh, 920px);
  }

  .h-stage,
  .h-img {
    order: unset;
  }

  .h-stage {
    align-items: flex-start;
    text-align: left;
    max-width: none;
    width: auto;
  }

  [dir='rtl'] .h-stage {
    align-items: flex-end;
    text-align: right;
  }

  .h-img-hero {
    width: 100%;
    height: clamp(380px, 58vh, 520px);
    max-height: none;
  }

  .exp-grid { gap: 1px; }
  .prof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .profile-hero-grid {
    grid-template-columns: minmax(200px, 0.88fr) minmax(0, 1fr);
    align-items: end;
  }

  .profile-hero-photo img { max-height: 62vh; }
}

@media (max-width: 1023px) {
  :root {
    --pad-x: clamp(1.1rem, 4.2vw, 2rem);
  }

  .section-head,
  .section-head--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.15rem;
    margin-bottom: 2.25rem;
  }

  .section-note {
    justify-self: start;
    max-width: 100%;
  }

  [dir='rtl'] .section-note {
    justify-self: end;
    text-align: right;
  }

  .section-head-centered { margin-bottom: 2.5rem; }

  .cta-panel,
  .catalog-panel-flat {
    margin-top: clamp(2.5rem, 6vh, 3.25rem);
    padding: clamp(1.85rem, 5vw, 2.5rem);
  }

  .page-main { padding-top: clamp(4.5rem, 12vw, 5.25rem); }

  .sub-hero-band { padding-block: clamp(2.75rem, 8vh, 4.25rem); }

  .profiles-mast .mast-lede,
  .exp-mast-head .mast-lede {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .nav-logo { height: 44px; }
  .nav-r { gap: 0.35rem; }

  .nav-req {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    padding: 0.72rem 1rem;
    min-height: var(--touch-min);
    display: inline-flex;
    align-items: center;
  }

  .nav-req span {
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-inner::before,
  .hero-inner::after {
    opacity: 0.35;
  }

  #hero::after { display: none; }

  .h-over {
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .h-tagline {
    letter-spacing: 0.24em;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .h-desc {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-logo-big {
    width: min(88vw, 320px);
    margin-bottom: 1.25rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 22rem;
    padding-block: 1.05rem;
    letter-spacing: 0.14em;
  }

  .hero-footnote {
    letter-spacing: 0.18em;
    padding-inline: 0.25rem;
  }

  .eyebrow,
  .eyebrow-centered {
    letter-spacing: 0.34em;
    font-size: 0.72rem;
  }

  .heading-xl,
  .sec-h,
  .cta-h,
  .pos-title {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .sec { padding-block: clamp(3.25rem, 10vh, 5.5rem); }

  .pos-list { gap: 1.35rem; }
  .pos-item { padding-top: 1.35rem; }
  .pos-item h3 { font-size: 1.4rem; }

  .how-list { gap: 1.15rem; }
  .how-item { padding: 1.5rem 1.25rem; }

  .exp-grid,
  .prof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-inline: 0;
  }

  .card-exp-body {
    padding: 2rem 0.85rem 0.85rem;
  }

  .card-exp-body h3 {
    font-size: clamp(0.95rem, 3.8vw, 1.2rem);
    line-height: 1.2;
  }

  .card-prof-body {
    padding: 2.15rem 0.85rem 0.9rem;
  }

  .card-prof-meta {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.2rem;
  }

  .card-prof-name {
    font-size: clamp(1.1rem, 4.5vw, 1.45rem);
    line-height: 1.1;
  }

  .card-prof-desc {
    font-size: 0.78rem;
    margin-top: 0.3rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-prof-cta.ghost {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    margin-top: 0.4rem;
  }

  .how-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .how-item:last-child {
    grid-column: 1 / -1;
  }

  .how-item {
    padding: 1.25rem 1rem;
  }

  .how-item h3 {
    font-size: 1.25rem;
  }

  .how-item p {
    font-size: 0.85rem;
  }

  .facet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .facet-card-h {
    font-size: 1.1rem;
  }

  .facet-card-p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .cta-band { padding-block: clamp(3.5rem, 12vh, 6rem); }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    gap: 0.85rem;
  }

  .cta-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .cta-footnote {
    letter-spacing: 0.14em;
    line-height: 1.55;
    padding-inline: 0.5rem;
  }

  .btn-outline,
  .btn-outline.lg {
    min-height: var(--touch-min);
    padding: 1rem 1.5rem;
  }

  .breadcrumb {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
  }

  .profile-hero-grid {
    gap: 1.75rem;
  }

  .profile-name-h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .profile-short {
    max-width: 100%;
    font-size: 1rem;
  }

  .sub-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .sub-cta-row .hero-cta,
  .sub-cta-row .btn-outline {
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .profile-cta-row { margin-top: 1.5rem; }

  .exp-deep-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-block: 2.25rem;
  }

  .exp-deep-num {
    letter-spacing: 0.38em;
  }

  .exp-deep-h {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .facet-card {
    padding: 1.35rem 1.2rem;
  }

  .footer {
    padding-bottom: max(2.75rem, calc(2.75rem + env(safe-area-inset-bottom, 0px)));
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.65rem;
  }

  body::after { opacity: 0.35; }
}

@media (max-width: 479px) {
  :root {
    --pad-x: 1.05rem;
  }

  .nav-req { display: none; }

  .langs { gap: 0; }

  .lang-btn {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    padding-inline: 0.55rem;
  }

  .hero-inner {
    padding-top: 4.75rem;
    gap: 1.25rem;
  }

  .h-img-hero {
    max-height: min(48vh, 400px);
  }

  .band::after,
  .cta-band::after {
    opacity: 0.35;
    transform: scale(0.85);
  }

  .cta-band::after {
    transform: translate(-50%, -50%) scale(0.85);
  }

  .catalog-panel-flat,
  .cta-panel {
    padding: 1.65rem 1.15rem;
  }

  .cta-panel-title { font-size: 1.55rem; }

  .card-exp-body {
    padding: 1.75rem 0.65rem 0.7rem;
  }

  .card-exp-body h3 {
    font-size: clamp(0.88rem, 3.4vw, 1.05rem);
  }

  .card-prof-body {
    padding: 1.85rem 0.65rem 0.75rem;
  }

  .card-prof-name {
    font-size: clamp(1rem, 4.2vw, 1.25rem);
  }

  .card-prof-desc {
    -webkit-line-clamp: 2;
    font-size: 0.72rem;
  }

  .facet-card {
    padding: 1rem 0.75rem;
  }

  .facet-card-h {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .facet-card-p {
    font-size: 0.75rem;
  }

  .how-item h3 {
    font-size: 1.1rem;
  }

  .card-prof-wrap:hover .card-prof {
    transform: none;
    box-shadow: none;
  }

  .card-exp:hover img {
    transform: none;
  }
}

@media (max-width: 767px) and (pointer: coarse) {
  .card-prof-wrap:active .card-prof {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
  }
}

.section-deep-link.is-prominent {
  margin-top: 1.4rem;
  padding: 0.9rem 1.95rem;
  border: 1px solid var(--gold-ring);
  color: var(--gold-highlight);
  letter-spacing: var(--track-wide);
  font-size: 0.74rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 0 var(--gold-glow);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.section-deep-link.is-prominent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--gold-highlight) 0%, var(--gold) 45%, var(--gold-soft) 100%);
  transform: translateX(-102%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}

.section-deep-link.is-prominent:hover {
  transform: none;
  border-color: rgba(242, 232, 196, 0.55);
  box-shadow: 0 0 28px var(--gold-glow);
}

.section-deep-link.is-prominent:hover::before { transform: translateX(0); }
[dir='rtl'] .section-deep-link.is-prominent::before { transform: translateX(102%); }
[dir='rtl'] .section-deep-link.is-prominent:hover::before { transform: translateX(0); }

.section-deep-link.is-prominent > span {
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.section-deep-link.is-prominent:hover > span { color: var(--black-deep); }

.band + .band { border-top: 0; }

.con-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 3.2vw, 2.05rem);
  line-height: 1.28;
  margin-top: 1.15rem;
  background: linear-gradient(105deg, var(--gold-highlight) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.con-wrap {
  width: min(980px, 100%);
  margin-inline: auto;
  display: grid;
  gap: clamp(2.1rem, 5vw, 3.25rem);
}

.con-intro {
  display: grid;
  gap: 1rem;
  text-align: center;
  max-width: 47rem;
  margin-inline: auto;
}

[dir='rtl'] .con-intro { direction: rtl; }

.con-lead {
  font-size: 1.065rem;
  line-height: 1.78;
  color: rgba(244, 243, 239, 0.55);
}

.con-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.85rem;
}

.con-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.05rem 1.3rem;
  border: 1px solid var(--gold-line);
  background: linear-gradient(160deg, rgba(212, 188, 110, 0.045) 0%, transparent 62%);
  font-size: 0.975rem;
  line-height: 1.5;
  color: rgba(244, 243, 239, 0.76);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.con-item:hover {
  border-color: rgba(212, 188, 110, 0.24);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.con-mark {
  flex-shrink: 0;
  color: var(--gold-soft);
  font-size: 0.85rem;
  line-height: 1.75;
  text-shadow: 0 0 18px var(--gold-glow);
}

[dir='rtl'] .con-item { direction: rtl; text-align: right; }

.con-out {
  display: grid;
  gap: 0.6rem;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.con-out p {
  font-size: 1.0rem;
  line-height: 1.72;
  color: rgba(244, 243, 239, 0.5);
}

.con-out-strong { color: var(--white); }

.con-out-brand {
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--gold-soft) !important;
}

.geo-strip {
  margin-top: clamp(0.5rem, 2vw, 1rem);
  padding-top: clamp(1.85rem, 4vw, 2.6rem);
  border-top: 1px solid var(--gold-line);
  text-align: center;
}

.geo-lbl {
  margin-bottom: 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.geo-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.7rem;
}

.geo-chips li {
  padding: 0.58rem 1.2rem;
  border: 1px solid var(--gold-ring);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 243, 239, 0.78);
  background: rgba(212, 188, 110, 0.04);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.geo-chips li:hover {
  border-color: rgba(242, 232, 196, 0.5);
  color: var(--gold-highlight);
  background: rgba(212, 188, 110, 0.09);
  transform: translateY(-1px);
}

.apply-sub {
  margin-top: 1.15rem;
  margin-inline: auto;
  max-width: 41rem;
  font-size: 1.0rem;
  color: rgba(244, 243, 239, 0.5);
}

.apply-form {
  width: min(690px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 1.4rem;
}

.apply-form .field {
  display: grid;
  gap: 0.5rem;
  text-align: left;
}

[dir='rtl'] .apply-form .field { text-align: right; }

.apply-form label {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.apply-form input,
.apply-form select {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  background: rgba(7, 5, 4, 0.55);
  border: 1px solid var(--gold-ring);
  padding: 0.95rem 1.1rem;
  min-height: var(--touch-min);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.apply-form input::placeholder { color: rgba(244, 243, 239, 0.3); }

.apply-form input:focus,
.apply-form select:focus {
  outline: none;
  border-color: rgba(242, 232, 196, 0.6);
  box-shadow: 0 0 0 1px rgba(212, 188, 110, 0.25), 0 0 26px var(--gold-glow);
  background: rgba(7, 5, 4, 0.72);
}

.apply-form input[type='date'] { color-scheme: dark; }

.select-wrap { position: relative; }

.select-wrap::after {
  content: '';
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

[dir='rtl'] .select-wrap::after { right: auto; left: 1.15rem; }

.apply-form select { padding-right: 2.6rem; }
[dir='rtl'] .apply-form select { padding-right: 1.1rem; padding-left: 2.6rem; }

.apply-form select option { background: #0a0907; color: var(--white); }

.apply-actions {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.apply-submit {
  width: 100%;
  max-width: 24rem;
  opacity: 1 !important;
  transform: none !important;
}

.apply-note {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: rgba(212, 188, 110, 0.3);
}

.apply-status {
  text-align: center;
  font-size: 0.92rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--gold-ring);
  background: rgba(212, 188, 110, 0.06);
}

.apply-status.is-ok {
  color: var(--gold-highlight);
  border-color: rgba(242, 232, 196, 0.4);
}

.apply-status.is-err {
  color: #e7b4a0;
  border-color: rgba(231, 180, 160, 0.4);
  background: rgba(231, 160, 140, 0.05);
}

@media (max-width: 767px) {
  .con-list { grid-template-columns: 1fr; gap: 0.6rem; }
  .con-item { padding: 0.9rem 1rem; font-size: 0.9rem; }
  .con-lead { font-size: 1rem; }
  .geo-chips li {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.95rem;
  }
  .apply-form { gap: 1.1rem; }
  .apply-submit { max-width: none; }
  .section-deep-link.is-prominent { letter-spacing: 0.2em; }
}

@media (min-width: 768px) {
  .nav-req { display: inline-flex; }
}

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

img, svg, video, iframe { max-width: 100%; height: auto; }

h1, h2, h3, h4,
p, li, a, span, label, .heading-xl, .sec-h, .cta-h {
  overflow-wrap: break-word;
  word-break: normal;
}

.con-item, .geo-chips li, .apply-form input,
.card-prof-desc, .footer-nav a {
  overflow-wrap: anywhere;
}

.exp-grid, .prof-grid, .how-list, .con-list,
.facet-grid, .section-head, .section-head--split,
.footer-inner, .hero-inner, .profile-hero-grid {
  min-width: 0;
}

.exp-grid > *, .prof-grid > *, .how-list > *,
.con-list > *, .facet-grid > * { min-width: 0; }

.heading-xl, .sec-h { overflow-wrap: anywhere; }

@media (max-width: 767px) {
  .nav-req {
    min-width: 0;
  }
  .nav-inner { gap: 0.5rem; }
}

@media (min-width: 480px) and (max-width: 639px) {
  .nav-req span {
    max-width: 7rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .con-list { gap: 0.75rem 1.25rem; }
  .con-item { font-size: 0.92rem; padding: 0.95rem 1.15rem; }
  .apply-form { width: min(620px, 100%); }
  .geo-chips li { font-size: 0.74rem; }
  .footer-inner {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo nav"
      "tail tail";
    row-gap: 1.85rem;
    align-items: center;
  }
  .footer-inner > a:first-of-type { grid-area: logo; }
  .footer-nav { grid-area: nav; }
  .footer-tail {
    grid-area: tail;
    align-items: center;
    text-align: center;
    min-width: 0;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .con-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .apply-form input,
  .apply-form select,
  .apply-form input[type='date'] {
    font-size: max(16px, 1rem);
  }
}

@media (max-width: 479px) {
  .con-tag { font-size: clamp(1.2rem, 5.5vw, 1.55rem); }
  .con-out-brand { font-size: clamp(1.25rem, 5.5vw, 1.55rem); }
  .geo-chips { gap: 0.5rem 0.5rem; }
  .geo-chips li {
    padding: 0.48rem 0.85rem;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }
  .apply-form label { letter-spacing: 0.18em; font-size: 0.68rem; }
  .apply-note { font-size: 0.68rem; }
  .section-deep-link.is-prominent {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 360px) {
  :root { --pad-x: 0.9rem; }
  .lang-btn {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    padding-inline: 0.4rem;
  }
  .nav-logo { height: 38px; }
  .hero-logo-big { width: min(82vw, 260px); }
  .heading-xl, .sec-h, .cta-h, .pos-title {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }
  .con-item { padding: 0.8rem 0.85rem; font-size: 0.86rem; gap: 0.6rem; }
  .card-exp-body h3 { font-size: clamp(0.8rem, 4vw, 0.98rem); }
  .card-prof-name { font-size: clamp(0.95rem, 4.5vw, 1.15rem); }
}

@media (max-width: 300px) {
  .langs { gap: 0; }
  .lang-sep { display: none; }
  .lang-btn { padding-inline: 0.3rem; }
  .hero-logo-big { width: min(78vw, 220px); }
}

@media (orientation: landscape) and (max-height: 560px) {
  .hero-inner {
    min-height: auto;
    padding-top: clamp(4.5rem, 14vh, 6rem);
    padding-bottom: clamp(2rem, 6vh, 3.5rem);
  }
  .h-img-hero {
    height: auto;
    max-height: 70vh;
  }
  .h-stage { min-height: 0; }
  .hero-logo-big { width: min(40vw, 280px); margin-bottom: 0.85rem; }
  .sec { padding-block: clamp(2.75rem, 8vh, 4.5rem); }
}

@media (hover: none) {
  .con-item:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gold-line);
  }
  .geo-chips li:hover {
    transform: none;
    background: rgba(212, 188, 110, 0.04);
    border-color: var(--gold-ring);
    color: rgba(244, 243, 239, 0.78);
  }
  .how-item:hover,
  .facet-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gold-line);
  }
  .con-item:active { border-color: rgba(212, 188, 110, 0.3); }
  .geo-chips li:active {
    background: rgba(212, 188, 110, 0.1);
    color: var(--gold-highlight);
  }
}

@media (min-width: 1600px) {
  :root { --container-max: 1480px; }
}

@media (min-resolution: 2dppx) {
  .pos-list, .pos-item,
  .exp-grid, .prof-grid {
    border-width: 0.5px;
  }
}
