:root {
  --ink: #120d15;
  --night: #1a0d24;
  --purple: #5f2d90;
  --purple-deep: #3b1759;
  --violet: #8750b4;
  --mint: #a7eedc;
  --mint-deep: #76d4bd;
  --ivory: #f8f4f0;
  --paper: #fffdfb;
  --muted: #766d78;
  --line: rgba(68, 34, 86, .15);
  --shadow: 0 30px 75px rgba(42, 17, 56, .14);
  --mx: 50%;
  --my: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--mint);
  color: var(--purple-deep);
}

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

.noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .16;
  pointer-events: none;
}

.ambient-one {
  top: 18vh;
  right: -18vw;
  background: var(--mint);
}

.ambient-two {
  bottom: -18vw;
  left: -18vw;
  background: var(--violet);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 80px;
  align-items: center;
  gap: 42px;
  padding: 0 clamp(22px, 4vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: white;
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(24, 11, 34, .88);
  box-shadow: 0 14px 50px rgba(18, 8, 26, .2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 9px 25px rgba(167, 238, 220, .2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-type {
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .74;
}

.brand-type small {
  display: block;
  margin-top: 7px;
  font-size: .43rem;
  letter-spacing: .27em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.main-nav > a:hover {
  color: white;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
}

.language-switcher {
  position: relative;
  z-index: 56;
  flex: 0 0 auto;
}

.language-button {
  display: grid;
  min-width: 78px;
  height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: white;
  cursor: pointer;
  font-size: .69rem;
  font-weight: 800;
  grid-template-columns: auto 1fr auto;
  transition: border-color .25s ease, background .25s ease;
  backdrop-filter: blur(12px);
}

.language-button:hover,
.language-button[aria-expanded="true"] {
  border-color: rgba(167, 238, 220, .55);
  background: rgba(167, 238, 220, .13);
}

.language-globe {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(167, 238, 220, .65);
  border-radius: 50%;
  color: var(--mint);
  font-size: .72rem;
}

.language-chevron {
  color: var(--mint);
  font-size: .9rem;
  transition: transform .25s ease;
}

.language-button[aria-expanded="true"] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 17px;
  visibility: hidden;
  background: rgba(31, 13, 43, .96);
  box-shadow: 0 24px 60px rgba(10, 4, 15, .35);
  opacity: 0;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  backdrop-filter: blur(18px);
}

.language-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.language-menu button {
  display: grid;
  width: 100%;
  min-height: 43px;
  align-items: center;
  gap: 11px;
  padding: 8px 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, .76);
  cursor: pointer;
  font-size: .75rem;
  text-align: left;
  grid-template-columns: 30px 1fr;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: rgba(167, 238, 220, .12);
  color: white;
}

.language-menu button b {
  color: var(--mint);
  font-size: .64rem;
  letter-spacing: .08em;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--purple-deep);
  font-size: .76rem;
  font-weight: 800;
  box-shadow: 0 13px 30px rgba(167, 238, 220, .16);
  transition: box-shadow .25s ease;
}

.nav-cta:hover,
.primary-button:hover {
  box-shadow: 0 18px 36px rgba(167, 238, 220, .3);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: white;
  transition: transform .25s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  place-items: center;
  background: var(--night);
  color: white;
  isolation: isolate;
}

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

.hero-video {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at calc(50% + var(--px, 0px)) calc(42% + var(--py, 0px)), rgba(167, 238, 220, .16), transparent 23%),
    linear-gradient(90deg, rgba(17, 7, 25, .94) 0%, rgba(29, 10, 42, .82) 42%, rgba(38, 15, 52, .45) 70%, rgba(15, 8, 20, .64) 100%),
    linear-gradient(0deg, rgba(13, 6, 18, .78), transparent 60%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(167, 238, 220, .16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -34vw;
  right: -17vw;
  width: 72vw;
  height: 72vw;
}

.hero::after {
  bottom: -22vw;
  left: -9vw;
  width: 44vw;
  height: 44vw;
  border-color: rgba(255, 255, 255, .09);
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(22px, 6.3vw, 108px);
  width: min(720px, 55vw);
  transform: translateY(-45%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.eyebrow.mint,
.light .eyebrow {
  color: var(--mint);
}

h1,
h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -.075em;
}

.hero h1 {
  font-size: clamp(4.5rem, 8.8vw, 9.5rem);
  line-height: .76;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  margin-left: clamp(16px, 4vw, 78px);
  color: var(--mint);
  font-size: .58em;
  letter-spacing: -.065em;
}

.hero h1 span:nth-child(3) {
  margin-left: clamp(6px, 1.8vw, 35px);
}

.hero-lead {
  width: min(560px, 90%);
  margin: 36px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.92rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.primary-button {
  min-height: 56px;
  padding: 0 28px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  font-weight: 700;
}

.play-dot {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  font-size: .61rem;
}

.hero-scene {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(30px, 8vw, 145px);
  width: min(36vw, 520px);
  aspect-ratio: 1;
  perspective: 1100px;
  transform: translateY(-45%);
  transform-style: preserve-3d;
}

.orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(167, 238, 220, .38);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(167, 238, 220, .08);
  transform-style: preserve-3d;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 22px var(--mint);
  content: "";
}

.orbit::before {
  top: 14%;
  right: 13%;
}

.orbit::after {
  bottom: 18%;
  left: 8%;
}

.orbit-back {
  animation: orbitBack 16s linear infinite;
  transform: rotateX(68deg) rotateZ(8deg);
}

.orbit-front {
  inset: 0;
  border-color: rgba(255, 255, 255, .18);
  animation: orbitFront 22s linear infinite reverse;
  transform: rotateY(63deg) rotateZ(-17deg);
}

.hero-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  aspect-ratio: .75;
  transform: translate(-50%, -50%) rotateY(-12deg) rotateX(8deg);
  transform-style: preserve-3d;
}

.mono-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 42% 14% 42% 14%;
  background: linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(130, 70, 166, .13));
  color: var(--mint);
  font-size: clamp(7rem, 13vw, 13rem);
  font-weight: 800;
  letter-spacing: -.17em;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34), 0 50px 80px rgba(9, 4, 13, .28);
  backdrop-filter: blur(10px);
}

.mono-front {
  transform: translateZ(34px);
}

.mono-back {
  opacity: .17;
  transform: translateZ(-34px);
}

.floating-chip {
  position: absolute;
  display: flex;
  min-width: 130px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(37, 16, 53, .5);
  box-shadow: 0 20px 40px rgba(9, 4, 13, .22);
  backdrop-filter: blur(12px);
  animation: floating 5s ease-in-out infinite;
}

.floating-chip strong {
  color: var(--mint);
  font-size: 1.25rem;
}

.floating-chip span {
  color: rgba(255, 255, 255, .72);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chip-one {
  top: 15%;
  left: -7%;
}

.chip-two {
  right: -7%;
  bottom: 18%;
  animation-delay: -1.4s;
}

.chip-three {
  right: 0;
  top: 15%;
  min-width: 112px;
  animation-delay: -2.7s;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 35px;
  left: clamp(22px, 6.3vw, 108px);
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .6);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 64px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--mint);
  content: "";
  animation: scrollLine 2s ease-in-out infinite;
}

.section {
  position: relative;
  width: min(1320px, calc(100% - clamp(34px, 7vw, 116px)));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 165px) 0;
  scroll-margin-top: 68px;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: clamp(34px, 8vw, 130px);
  margin-bottom: clamp(50px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
}

.section-heading h2,
.about-copy h2,
footer h2 {
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: .88;
}

.section-heading > p,
.about-copy > p,
.section-heading > div + p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.94rem, 1.3vw, 1.08rem);
  line-height: 1.8;
}

.tilt-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .14s ease-out, box-shadow .3s ease;
  will-change: transform;
}

.tilt-card.is-leaving {
  transition: transform .55s cubic-bezier(.2, .75, .25, 1), box-shadow .3s ease;
}

.depth {
  transform: translateZ(var(--depth, 34px));
  transform-style: preserve-3d;
}

.shine {
  position: absolute;
  z-index: 5;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, .38), transparent 38%);
  mix-blend-mode: soft-light;
  transition: opacity .25s ease;
}

.tilt-card:hover .shine {
  opacity: .65;
}

.showroom {
  z-index: 2;
}

.showroom-stage {
  width: min(820px, 78%);
  margin: 0 auto;
  border: 1px solid rgba(95, 45, 144, .18);
  border-radius: 30px;
  background: #170c1e;
  box-shadow: 0 38px 85px rgba(50, 22, 73, .19), 35px 35px 0 rgba(167, 238, 220, .42);
}

.showroom-stage::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: -11%;
  width: 38%;
  height: 75%;
  border: 1px solid rgba(95, 45, 144, .2);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(237, 227, 242, .45));
  content: "";
  transform: translateZ(-55px) rotateY(10deg);
}

.showroom-stage video {
  width: 100%;
  max-height: 78vh;
  aspect-ratio: 9 / 14;
  border-radius: inherit;
  object-fit: cover;
}

.stage-glass {
  position: absolute;
  right: -8%;
  bottom: 8%;
  display: grid;
  min-width: 245px;
  gap: 6px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 16px;
  background: rgba(40, 18, 55, .62);
  color: white;
  box-shadow: 0 20px 50px rgba(20, 9, 27, .28);
  backdrop-filter: blur(16px);
}

.stage-glass span {
  color: var(--mint);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.stage-glass strong {
  font-size: 1.12rem;
}

.catalog-section {
  width: auto;
  max-width: none;
  padding-right: clamp(17px, 3.5vw, 58px);
  padding-left: clamp(17px, 3.5vw, 58px);
  background: linear-gradient(180deg, rgba(239, 232, 242, .74), rgba(248, 244, 240, .4));
}

.catalog-section > * {
  width: min(1320px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.catalog-grid {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-card {
  display: grid;
  min-height: 340px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(95, 45, 144, .18);
  border-radius: 28px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, .65), transparent 35%),
    linear-gradient(135deg, #d4faef, var(--mint) 55%, #83dac5);
  box-shadow: 0 30px 70px rgba(60, 28, 79, .1), inset 0 1px 0 rgba(255, 255, 255, .8);
  color: #2b3f43;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
}

.catalog-card:hover {
  box-shadow: 0 48px 90px rgba(60, 28, 79, .18), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.catalog-card::before {
  position: absolute;
  right: -16%;
  bottom: -52%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(66, 34, 76, .17);
  border-radius: 50%;
  content: "";
}

.catalog-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(95, 45, 144, .15);
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 14px 30px rgba(95, 45, 144, .13);
}

.catalog-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.catalog-index {
  justify-self: end;
  color: rgba(43, 63, 67, .52);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.catalog-copy {
  align-self: end;
}

.catalog-copy small {
  display: block;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.catalog-copy strong {
  display: block;
  font-size: clamp(2.6rem, 5.4vw, 5.8rem);
  letter-spacing: -.07em;
  line-height: .82;
}

.round-arrow {
  align-self: end;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(95, 45, 144, .23);
  border-radius: 50%;
  color: var(--purple);
  font-size: 1.35rem;
}

.brand-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(80px, 10vw, 140px);
  margin-bottom: 28px;
}

.brand-intro p {
  margin-top: 0;
  margin-bottom: 0;
}

.brand-intro > p:last-child {
  color: var(--muted);
  font-size: .82rem;
}

.brand-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-card {
  display: grid;
  min-height: 220px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(95, 45, 144, .14);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .96), rgba(246, 240, 247, .92));
  box-shadow: 0 15px 36px rgba(44, 19, 57, .06);
}

.brand-card:hover {
  box-shadow: 0 30px 55px rgba(44, 19, 57, .14);
}

.brand-logo {
  display: grid;
  min-height: 150px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .72), transparent 35%),
    linear-gradient(135deg, #d5f9f0, var(--mint) 58%, #8edfc9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 12px 30px rgba(78, 39, 98, .08);
}

.brand-logo img {
  width: 90%;
  height: 108px;
  opacity: 1 !important;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(.72) contrast(1.05);
  transition: transform .3s ease, filter .3s ease, opacity .3s ease;
}

.brand-card:hover .brand-logo img {
  opacity: 1 !important;
  filter: saturate(.9) contrast(1.08);
  transform: translateZ(20px) scale(1.08);
}

.brand-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5px 2px;
  color: var(--purple-deep);
  font-size: .77rem;
  font-weight: 800;
}

.brand-meta b {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: rgba(95, 45, 144, .08);
}

.collection {
  width: auto;
  max-width: none;
  padding-right: clamp(17px, 3.5vw, 58px);
  padding-left: clamp(17px, 3.5vw, 58px);
  background:
    radial-gradient(circle at 80% 10%, rgba(95, 45, 144, .28), transparent 25%),
    var(--ink);
  color: white;
}

.collection > * {
  width: min(1320px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-heading.light > p,
.collection .section-heading > p {
  color: rgba(255, 255, 255, .58);
}

.product-grid {
  display: grid;
  align-items: start;
  gap: clamp(18px, 2.2vw, 32px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  min-height: 530px;
  overflow: hidden;
  border-radius: 22px;
  background: #2a2230;
  box-shadow: 0 35px 70px rgba(4, 2, 5, .24);
}

.product-card:nth-child(even) {
  margin-top: 65px;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.product-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.product-card::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(14, 7, 18, .88));
  content: "";
  pointer-events: none;
}

.product-info {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 23px;
  left: 24px;
  display: grid;
  gap: 7px;
}

.product-info small {
  color: var(--mint);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.product-info strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -.04em;
}

.product-info span {
  position: absolute;
  right: 0;
  bottom: 0;
  color: rgba(255, 255, 255, .46);
  font-size: .72rem;
  font-weight: 800;
}

.motion-grid {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.motion-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--night);
  box-shadow: var(--shadow);
}

.motion-card video {
  width: 100%;
  height: min(75vh, 720px);
  object-fit: cover;
}

.motion-label {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(28, 13, 38, .65);
  color: var(--mint);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
  backdrop-filter: blur(12px);
}

.about {
  display: grid;
  align-items: center;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
}

.about-photo {
  overflow: hidden;
  border-radius: 4px 90px 4px 4px;
  box-shadow: var(--shadow);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(29, 13, 39, .46));
  content: "";
}

.about-photo img {
  width: 100%;
  min-height: 640px;
  aspect-ratio: .79;
  opacity: .82;
  object-fit: cover;
  filter: blur(1.2px) saturate(.82);
  transform: scale(1.015);
}

.founder-tag {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 6px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 14px;
  background: rgba(45, 20, 61, .58);
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  backdrop-filter: blur(15px);
}

.founder-tag small {
  color: var(--mint);
  font-size: .59rem;
  letter-spacing: .18em;
}

.about-copy h2 {
  max-width: 770px;
  margin-bottom: 30px;
}

.about-copy > p:not(.eyebrow) + p {
  margin-top: 15px;
}

.stats {
  display: grid;
  gap: 22px;
  margin-top: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats div {
  display: grid;
  gap: 7px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stats strong {
  color: var(--purple-deep);
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -.08em;
}

.stats span {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

footer {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) clamp(22px, 5vw, 82px) 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(130, 75, 170, .38), transparent 28%),
    var(--purple-deep);
  color: white;
}

.footer-orbit {
  position: absolute;
  top: -26vw;
  right: -18vw;
  width: 61vw;
  height: 61vw;
  border: 1px solid rgba(167, 238, 220, .14);
  border-radius: 50%;
}

.footer-orbit::before,
.footer-orbit::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  content: "";
}

.footer-orbit::after {
  inset: 24%;
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(55px, 9vw, 145px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}

footer h2 {
  max-width: 760px;
}

footer address {
  margin-top: 30px;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
  font-style: normal;
}

.hours {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .58);
  font-size: .7rem;
}

.hours span {
  display: flex;
  gap: 8px;
}

.hours b {
  color: var(--mint);
}

.contact-grid {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-link {
  display: grid;
  min-height: 64px;
  align-items: center;
  gap: 15px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  color: white;
  grid-template-columns: 42px 1fr auto;
  backdrop-filter: blur(12px);
}

.contact-link:hover {
  border-color: rgba(167, 238, 220, .44);
  background: rgba(167, 238, 220, .1);
}

.contact-link img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 11px;
}

.contact-link span {
  font-size: .78rem;
  font-weight: 800;
}

.contact-link b {
  color: var(--mint);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 75px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .5);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
}

html[dir="rtl"] body {
  font-family: Arial, "Helvetica Neue", sans-serif;
}

html[dir="rtl"] .main-nav {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
  transform-origin: top left;
}

html[dir="rtl"] .language-menu button {
  text-align: right;
}

html[dir="rtl"] .hero-copy {
  right: clamp(22px, 6.3vw, 108px);
  left: auto;
}

html[dir="rtl"] .hero h1 span:nth-child(2) {
  margin-right: clamp(16px, 4vw, 78px);
  margin-left: 0;
}

html[dir="rtl"] .hero h1 span:nth-child(3) {
  margin-right: clamp(6px, 1.8vw, 35px);
  margin-left: 0;
}

html[dir="rtl"] .hero-scene {
  right: auto;
  left: clamp(30px, 8vw, 145px);
}

html[dir="rtl"] .scroll-cue {
  right: clamp(22px, 6.3vw, 108px);
  left: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
}

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

@keyframes orbitBack {
  to { transform: rotateX(68deg) rotateZ(368deg); }
}

@keyframes orbitFront {
  to { transform: rotateY(63deg) rotateZ(343deg); }
}

@keyframes floating {
  0%, 100% { transform: translate3d(0, 0, 42px); }
  50% { transform: translate3d(0, -13px, 56px); }
}

@keyframes scrollLine {
  0% { transform: translateX(-105%); }
  50%, 100% { transform: translateX(105%); }
}

@media (max-width: 1120px) {
  .hero-copy {
    width: min(690px, 68vw);
  }

  .hero-scene {
    right: -6vw;
    width: 42vw;
    opacity: .68;
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .product-card:nth-child(even) {
    margin-top: 35px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 68px;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(82vw, 430px);
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 27px;
    padding: 80px 42px;
    background: rgba(28, 12, 39, .97);
    box-shadow: -30px 0 70px rgba(12, 6, 16, .34);
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.2, .7, .2, 1);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  html[dir="rtl"] .main-nav {
    right: auto;
    left: 0;
    transform: translateX(-105%);
  }

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

  .main-nav > a:not(.nav-cta) {
    font-size: 1.25rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    top: 48%;
    width: calc(100% - 44px);
    transform: translateY(-46%);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 17vw, 7.8rem);
  }

  .hero-scene {
    top: 48%;
    right: -28vw;
    width: 78vw;
    opacity: .32;
  }

  .floating-chip {
    display: none;
  }

  .section-heading,
  .about,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 30px;
  }

  .section-heading > p {
    max-width: 570px;
  }

  .showroom-stage {
    width: 88%;
  }

  .catalog-grid,
  .motion-grid {
    grid-template-columns: 1fr;
  }

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

  .about-photo {
    width: min(560px, 88%);
  }

  .about-photo img {
    min-height: 500px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 16px;
  }

  .brand-type {
    font-size: 1.25rem;
  }

  .language-button {
    min-width: 70px;
    padding: 0 9px;
  }

  .hero-copy {
    left: 18px;
    width: calc(100% - 36px);
  }

  html[dir="rtl"] .hero-copy {
    right: 18px;
    left: auto;
  }

  .hero h1 span:nth-child(2) {
    margin-left: 7px;
  }

  .hero h1 span:nth-child(3) {
    margin-left: 0;
  }

  html[dir="rtl"] .hero h1 span:nth-child(2),
  html[dir="rtl"] .hero h1 span:nth-child(3) {
    margin-right: 0;
  }

  .hero-lead {
    width: 100%;
    margin-top: 28px;
    font-size: .87rem;
  }

  .hero-actions {
    gap: 17px;
  }

  .primary-button {
    min-height: 51px;
    padding: 0 20px;
  }

  .scroll-cue {
    left: 18px;
  }

  .section {
    width: calc(100% - 30px);
    padding: 78px 0;
  }

  .section-heading h2,
  .about-copy h2,
  footer h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .showroom-stage {
    width: calc(100% - 12px);
    box-shadow: 16px 19px 0 rgba(167, 238, 220, .42), 0 35px 70px rgba(50, 22, 73, .16);
  }

  .showroom-stage::before {
    display: none;
  }

  .stage-glass {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }

  .catalog-section,
  .collection {
    width: auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .catalog-card {
    min-height: 270px;
    border-radius: 20px;
  }

  .catalog-copy strong {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .brand-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .brand-card {
    min-height: 168px;
    padding: 10px;
    border-radius: 15px;
  }

  .brand-logo {
    min-height: 110px;
  }

  .brand-logo img {
    height: 82px;
  }

  .brand-meta {
    padding-top: 12px;
    font-size: .68rem;
  }

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

  .product-card,
  .product-card:nth-child(even) {
    min-height: 540px;
    margin-top: 0;
  }

  .motion-card video {
    height: 64vh;
  }

  .about-photo {
    width: calc(100% - 12px);
  }

  .about-photo img {
    min-height: 470px;
  }

  .stats {
    gap: 12px;
  }

  .stats strong {
    font-size: 2.2rem;
  }

  .stats span {
    font-size: .56rem;
  }

  footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer-main {
    gap: 48px;
  }
}

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

  .tilt-card,
  .depth,
  .magnetic {
    transform: none !important;
    transition: none !important;
  }

  .orbit,
  .floating-chip,
  .scroll-cue i::after {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
