:root {
  --black: #050504;
  --charcoal: #11100d;
  --charcoal-2: #191713;
  --gold: #d6aa55;
  --gold-bright: #f5dc99;
  --champagne: #ead5aa;
  --ivory: #fff7e6;
  --muted: #b7a98d;
  --emerald: #17372f;
  --glass: rgba(255, 247, 230, 0.08);
  --line: rgba(245, 220, 153, 0.22);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ivory);
  background: radial-gradient(circle at 20% 0%, #211b12 0%, var(--black) 36%, #030302 100%);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: clip;
  padding-bottom: var(--market-ticker-space, 108px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025), transparent 18%, transparent 82%, rgba(255,255,255,0.025)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
  opacity: 0.26;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display-font, Cinzel), Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

p {
  color: rgba(255, 247, 230, 0.74);
  line-height: 1.8;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  contain: paint;
  padding: clamp(2rem, 5vw, 5rem);
  background: #020201;
  animation: introExit 1.2s ease 5.7s forwards;
}

.preloader.done {
  display: none;
}

.preloader canvas,
.intro-flare {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-flare {
  background: linear-gradient(100deg, transparent 34%, rgba(255, 232, 164, 0.02) 45%, rgba(255, 232, 164, 0.44) 50%, rgba(255, 232, 164, 0.04) 56%, transparent 68%);
  transform: translateX(-120%);
  animation: flarePass 2.1s cubic-bezier(.2,.7,.2,1) 1.8s forwards;
}

.intro-mark {
  position: relative;
  z-index: 2;
  order: 1;
  width: 110px;
  aspect-ratio: 1;
  margin-bottom: clamp(3.6rem, 5vw, 5.8rem);
  border: 2px solid var(--gold);
  transform: rotate(45deg) scale(0.72);
  box-shadow: 0 0 42px rgba(214, 170, 85, 0.42), inset 0 0 20px rgba(214, 170, 85, 0.18);
  opacity: 0;
  animation: markIn 1.3s ease 0.6s forwards;
}

.intro-mark span {
  position: absolute;
  inset: 25%;
  border: 1px solid var(--gold-bright);
}

.intro-kicker {
  position: relative;
  z-index: 2;
  order: 3;
  width: min(92vw, 780px);
  margin: clamp(1.2rem, 2vw, 1.8rem) 0 0;
  color: var(--champagne);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  animation: textIn 1.1s ease 2.5s forwards;
}

.preloader h1 {
  position: relative;
  z-index: 2;
  order: 2;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 8.6rem);
  line-height: 0.88;
  color: transparent;
  background: linear-gradient(105deg, #a6782f, #ffe7a4 45%, #9b6c27 85%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.65);
  opacity: 0;
  transform: translateY(14px);
  animation: textIn 1.2s ease 1.55s forwards;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 1.18rem clamp(1.25rem, 5vw, 5.4rem);
  border-bottom: 1px solid rgba(245, 220, 153, 0.14);
  background: rgba(5, 5, 4, 0.54);
  backdrop-filter: blur(22px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: clamp(1.65rem, 2vw, 2.25rem);
  width: fit-content;
  min-height: 48px;
  padding: 0.22rem 0.2rem;
  font-family: var(--display-font, Cinzel), Georgia, serif;
  color: var(--champagne);
  line-height: 1;
}

.brand span:last-child {
  display: block;
  padding-top: 0.12rem;
  font-size: clamp(1.02rem, 1.05vw, 1.2rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
  box-shadow: 0 0 16px rgba(214, 170, 85, 0.35);
  transform-origin: center;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 28%;
  border: 1px solid var(--gold-bright);
}

nav {
  display: flex;
  gap: clamp(1rem, 2.6vw, 2.6rem);
  color: rgba(255, 247, 230, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

nav a,
.footer-links a {
  transition: color .25s ease, text-shadow .25s ease;
}

nav a:hover,
.footer-links a:hover {
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(245, 220, 153, 0.35);
}

.language-switcher {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 230, 0.055);
  backdrop-filter: blur(18px);
}

.lang-option {
  min-width: 42px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 247, 230, 0.68);
  background: transparent;
  font: 700 0.72rem/1 Inter, system-ui, sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.lang-option.active,
.lang-option:hover {
  color: #1c1307;
  background: linear-gradient(120deg, #b88432, #ffe4a1 58%, #ba842f);
  box-shadow: 0 0 20px rgba(214, 170, 85, 0.28);
}

.section-dark,
.section-band {
  position: relative;
  overflow: hidden;
  contain: paint;
}

.section-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 170, 85, 0.12), transparent 30%),
    linear-gradient(180deg, #0b0a08, #12100d 48%, #070706);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 7.4rem clamp(1.25rem, 5vw, 5rem) 4rem;
  contain: paint;
}

.hero-bg,
.hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-vignette {
  background:
    radial-gradient(circle at 74% 50%, transparent 0%, rgba(0, 0, 0, 0.32) 32%, rgba(0, 0, 0, 0.92) 76%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.55) 47%, rgba(0, 0, 0, 0.15));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  max-width: 1440px;
  margin: auto;
  width: 100%;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 11.2rem);
  line-height: 0.88;
  color: transparent;
  background: linear-gradient(110deg, #a16d25, #ffe9ac 43%, #c89948 62%, #8a5f21);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero h2 {
  max-width: 780px;
  margin-top: 1.2rem;
  font-size: clamp(1.55rem, 3vw, 3.3rem);
  color: var(--ivory);
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.tradingview-widget-container {
  min-height: 58px;
  overflow: hidden;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: transform .55s ease;
}

.btn:hover::after {
  transform: translateX(120%) skewX(-18deg);
}

.btn.primary {
  color: #1c1307;
  background: linear-gradient(110deg, #b88432, #ffe4a1 52%, #ba842f);
  box-shadow: 0 18px 55px rgba(214, 170, 85, 0.24);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--champagne);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
}

.diamond-stage {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.ring-3d {
  position: absolute;
  width: clamp(190px, 28vw, 410px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: jewelSpin 8s linear infinite;
}

.ring-3d span,
.orbital,
.diamond-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(245, 220, 153, 0.9);
  box-shadow: 0 0 42px rgba(214, 170, 85, 0.28), inset 0 0 34px rgba(255,255,255,0.08);
}

.ring-3d span:nth-child(2) {
  transform: rotateY(65deg);
}

.ring-3d span:nth-child(3) {
  transform: rotateX(67deg);
}

.orbital {
  inset: 14%;
  opacity: 0.5;
  transform: rotateX(70deg);
}

.orbital-two {
  inset: 24%;
  transform: rotateY(68deg) rotateZ(40deg);
}

.diamond-core {
  inset: auto;
  width: clamp(72px, 10vw, 130px);
  aspect-ratio: 1;
  border-radius: 8px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(245,220,153,0.18), rgba(255,255,255,0.55));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--gold), transparent);
}

.section-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.copy-panel h2,
.section-heading h2,
.experience h2,
.vip h2,
.contact h2 {
  font-size: clamp(2.1rem, 5vw, 5.5rem);
  line-height: 1.02;
}

.city-card,
.collection-card,
.contact-form,
.map-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: 0 32px 80px rgba(0,0,0,0.38);
  backdrop-filter: blur(18px);
}

.city-card {
  position: relative;
  padding: 0.8rem;
  transform: rotate(-1.5deg);
}

.city-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.route-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: var(--champagne);
  font-family: var(--display-font, Cinzel), Georgia, serif;
}

.route-line i {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  box-shadow: 0 0 18px var(--gold);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 3rem;
}

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

.collection-card {
  position: relative;
  min-height: 430px;
  padding: 0.75rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 18px;
  right: 18px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 18px 7px rgba(245,220,153,0.48);
  opacity: 0;
  transition: opacity .3s ease;
}

.collection-card:hover {
  transform: translateY(-10px) rotateX(4deg);
  border-color: rgba(245, 220, 153, 0.58);
  box-shadow: 0 40px 110px rgba(214, 170, 85, 0.16);
}

.collection-card:hover::after {
  opacity: 1;
}

.collection-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
  transition: transform .6s ease;
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-card h3,
.experience h3 {
  margin: 1.15rem 0 0.45rem;
  color: var(--champagne);
  font-size: 1.45rem;
}

.collection-card p {
  margin: 0;
}

.experience {
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  contain: paint;
}

.experience > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.06);
}

.experience-overlay {
  position: relative;
  width: 100%;
  padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 5vw, 5rem);
  background: linear-gradient(0deg, rgba(3,3,2,0.98), rgba(3,3,2,0.76) 55%, transparent);
}

.experience-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  gap: 1rem;
  margin-top: 2rem;
}

.experience-columns > div,
.trust-grid > div {
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
}

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

.trust-grid span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--display-font, Cinzel), Georgia, serif;
  box-shadow: 0 0 22px rgba(214,170,85,0.18);
}

.trust-grid p {
  margin: 0;
  color: var(--ivory);
}

.vip {
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.9)),
    url("assets/lorin-brand.png") center / cover fixed;
}

.vip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.vip p:not(.eyebrow) {
  max-width: 740px;
}

.masonry {
  columns: 3 260px;
  column-gap: 1rem;
}

.masonry img {
  width: 100%;
  margin: 0 0 1rem;
  break-inside: avoid;
  border: 1px solid var(--line);
  filter: saturate(0.9) contrast(1.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
}

address {
  margin-top: 1.5rem;
  color: rgba(255, 247, 230, 0.84);
  font-style: normal;
  line-height: 1.8;
}

.map-card {
  position: relative;
  min-height: 210px;
  margin-top: 2rem;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: 2rem;
  overflow: hidden;
  color: var(--champagne);
  background:
    linear-gradient(45deg, transparent 47%, rgba(214,170,85,0.18) 48%, rgba(214,170,85,0.18) 52%, transparent 53%),
    radial-gradient(circle at 62% 45%, rgba(214,170,85,0.36), transparent 10%),
    #080807;
}

.map-card i {
  height: 1px;
  width: 72%;
  background: var(--gold);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--champagne);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245, 220, 153, 0.2);
  border-radius: 0;
  padding: 0.95rem 1rem;
  color: var(--ivory);
  background: rgba(0,0,0,0.34);
  font: inherit;
}

textarea {
  resize: vertical;
}

.market-footer-zone {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0;
  pointer-events: none;
}

.market-ticker {
  position: relative;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(245, 220, 153, 0.24);
  border-bottom: 1px solid rgba(245, 220, 153, 0.24);
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(135deg, rgba(4, 4, 3, 0.9), rgba(23, 55, 47, 0.32)),
    rgba(5, 5, 4, 0.82);
  box-shadow:
    0 -18px 70px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(214, 170, 85, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  overflow: hidden;
  pointer-events: auto;
}

.market-ticker::before,
.market-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 170px);
  pointer-events: none;
}

.market-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5,5,4,0.96), transparent);
}

.market-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5,5,4,0.96), transparent);
}

.market-ticker-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem clamp(1rem, 2vw, 1.5rem) 0.25rem;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.market-ticker-head small {
  color: rgba(255, 247, 230, 0.56);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  background: #040403;
}

footer p {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--display-font, Cinzel), Georgia, serif;
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,247,230,0.68);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: calc(var(--market-ticker-space, 108px) + 1.2rem);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #1b1308;
  background: linear-gradient(135deg, #ffe4a1, #b87b2d);
  font-weight: 800;
  box-shadow: 0 0 34px rgba(214,170,85,0.36);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

html[dir="rtl"] body {
  --display-font: "Noto Kufi Arabic";
  font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", Inter, system-ui, sans-serif;
  text-align: right;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

html[lang="tr"] body {
  --display-font: Cinzel;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .brand,
html[dir="rtl"] .route-line,
html[dir="rtl"] .trust-grid span {
  font-family: "Noto Kufi Arabic", "Noto Sans Arabic", sans-serif;
  line-height: 1.34;
  letter-spacing: 0;
  word-spacing: 0.03em;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

html[dir="rtl"] p,
html[dir="rtl"] a,
html[dir="rtl"] button,
html[dir="rtl"] label,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", Inter, system-ui, sans-serif;
  letter-spacing: 0;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

html[dir="rtl"] .hero h1 {
  color: var(--champagne);
  background: none;
  -webkit-text-fill-color: currentColor;
  max-width: 760px;
  font-size: clamp(2.8rem, 5.6vw, 6.4rem);
  line-height: 1.22;
  padding: 0.04em 0 0.14em;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.65), 0 0 28px rgba(214, 170, 85, 0.18);
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .btn,
html[dir="rtl"] .market-ticker-head,
html[dir="rtl"] label {
  letter-spacing: 0;
  word-spacing: 0.05em;
  text-transform: none;
}

html[dir="rtl"] .hero h2,
html[dir="rtl"] .copy-panel h2,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .experience h2,
html[dir="rtl"] .vip h2,
html[dir="rtl"] .contact h2 {
  line-height: 1.42;
  max-width: 900px;
}

html[dir="rtl"] .hero p,
html[dir="rtl"] .copy-panel p,
html[dir="rtl"] .collection-card p,
html[dir="rtl"] .experience p,
html[dir="rtl"] .vip p,
html[dir="rtl"] .contact p {
  line-height: 2;
}

html[dir="rtl"] .hero-vignette {
  background:
    radial-gradient(circle at 26% 50%, transparent 0%, rgba(0, 0, 0, 0.32) 32%, rgba(0, 0, 0, 0.92) 76%),
    linear-gradient(270deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.55) 47%, rgba(0, 0, 0, 0.15));
}

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

html[dir="rtl"] .market-ticker-head {
  flex-direction: row-reverse;
}

html[dir="rtl"] .brand {
  direction: rtl;
  gap: clamp(1.7rem, 2.1vw, 2.35rem);
}

html[dir="rtl"] .brand span:last-child {
  letter-spacing: 0;
  word-spacing: 0.08em;
}

@keyframes introExit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes flarePass {
  to { transform: translateX(120%); }
}

@keyframes markIn {
  to { opacity: 1; transform: rotate(45deg) scale(1); }
}

@keyframes textIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  to { transform: scale(1.1) translate3d(1.6%, -1.2%, 0); }
}

@keyframes jewelSpin {
  from { transform: rotateX(62deg) rotateZ(0deg); }
  to { transform: rotateX(62deg) rotateZ(360deg); }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .vip-inner,
  .experience-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7.6rem;
  }

  .diamond-stage {
    min-height: 310px;
  }

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

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

  .footer-links {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .brand span:last-child {
    font-size: 0.84rem;
  }

  .brand {
    gap: 0.95rem;
  }

  .brand-mark {
    width: 23px;
    height: 23px;
  }

  .language-switcher {
    gap: 0.15rem;
    padding: 0.2rem;
  }

  .lang-option {
    min-width: 31px;
    min-height: 30px;
    font-size: 0.64rem;
  }

  .hero {
    padding-top: 6.8rem;
  }

  .market-footer-zone {
    padding: 0;
  }

  .market-ticker {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .market-ticker-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.72rem 1rem 0.22rem;
    letter-spacing: 0.1em;
  }

  .market-ticker-head small {
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 20vw, 5.2rem);
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    line-height: 1.8;
  }

  .intro-kicker {
    width: min(86%, 360px);
    text-align: center;
    line-height: 1.8;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .collection-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 390px;
  }
}
