: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: 92px;
  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: 76px;
  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: 58px;
  height: 58px;
  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);
  transition: width .3s ease, height .3s ease;
}

.site-header.scrolled .brand-mark {
  width: 50px;
  height: 50px;
}

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

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

.brand-type small {
  display: block;
  margin-top: 7px;
  font-size: .5rem;
  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);
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.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-flag,
.language-option-flag {
  display: inline-grid;
  place-items: center;
  line-height: 1;
}

.language-flag {
  width: 22px;
  height: 22px;
  font-size: 1rem;
}

.language-option-flag {
  font-size: 1.05rem;
}

.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: 24px 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-video-play,
.store-tour-play {
  position: absolute;
  z-index: 5;
  display: grid;
  width: clamp(74px, 8vw, 104px);
  height: clamp(74px, 8vw, 104px);
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(31, 14, 43, .7);
  color: white;
  box-shadow: 0 22px 55px rgba(12, 5, 18, .3);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
  backdrop-filter: blur(12px);
}

.hero-video-play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-video-play[hidden],
.store-tour-play[hidden] {
  display: none;
}

.hero-video-play svg,
.store-tour-play svg {
  width: 44%;
  height: 44%;
  fill: currentColor;
  transform: translateX(4%);
}

.hero-video-play:hover,
.store-tour-play:hover {
  background: rgba(99, 36, 154, .9);
}

.hero-video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.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(900px, 74vw);
  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(620px, 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-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
}

.showroom-photo {
  position: relative;
  grid-column: span 6;
  min-height: clamp(340px, 42vw, 610px);
  overflow: hidden;
  border: 1px solid rgba(95, 45, 144, .16);
  border-radius: clamp(20px, 2vw, 32px);
  background: #170c1e;
  box-shadow: 0 24px 58px rgba(50, 22, 73, .14);
  isolation: isolate;
}

.showroom-photo--feature {
  min-height: clamp(430px, 48vw, 700px);
}

.showroom-photo--wide,
.showroom-photo--cafe {
  grid-column: 1 / -1;
  min-height: clamp(400px, 46vw, 660px);
}

.showroom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform .85s cubic-bezier(.2, .72, .18, 1), filter .5s ease;
}

.showroom-photo--feature img {
  object-position: center 43%;
}

.showroom-photo--wide img {
  object-position: center 50%;
}

.showroom-photo--cafe img {
  object-position: center 54%;
}

.showroom-photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(17, 8, 24, .2) 60%, rgba(17, 8, 24, .9) 100%);
  content: "";
  pointer-events: none;
}

.showroom-photo:hover img {
  transform: scale(1.025);
}

.showroom-photo-copy {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  left: clamp(18px, 2.4vw, 34px);
  max-width: 680px;
  color: #fff;
}

.showroom-photo-copy small {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: clamp(.6rem, .8vw, .75rem);
  font-weight: 850;
  letter-spacing: .18em;
}

.showroom-photo-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.7vw, 3rem);
  letter-spacing: -.045em;
}

.showroom-photo-copy p {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(.86rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.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: flex-start;
  gap: 30px;
  margin-top: clamp(80px, 10vw, 140px);
  margin-bottom: 28px;
}

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

.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-logo img.brand-logo-new {
  width: 92%;
  opacity: .68 !important;
  filter: sepia(.18) saturate(.82) hue-rotate(112deg) contrast(1.14);
  mix-blend-mode: multiply;
}

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

.brand-card:hover .brand-logo img.brand-logo-new {
  opacity: .74 !important;
  filter: sepia(.2) saturate(.9) hue-rotate(112deg) contrast(1.18);
}

.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;
}

.cafe-section {
  width: 100%;
  max-width: none;
  padding-right: max(4vw, 28px);
  padding-left: max(4vw, 28px);
  background:
    radial-gradient(circle at 88% 12%, rgba(168, 241, 220, .28), transparent 24%),
    linear-gradient(145deg, #f9f5f1 0%, #f3ecf5 58%, #ede7f2 100%);
}

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

.cafe-hero {
  min-height: min(76vh, 780px);
  overflow: hidden;
  border-radius: 34px;
  background: #291433;
  box-shadow: 0 40px 90px rgba(48, 22, 57, .22);
}

.cafe-hero > img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 38%;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.cafe-hero:hover > img {
  transform: scale(1.035);
}

.cafe-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 10, 37, .88) 0%, rgba(28, 10, 37, .56) 38%, rgba(28, 10, 37, .08) 72%),
    linear-gradient(0deg, rgba(20, 8, 28, .46), transparent 45%);
}

.cafe-hero-copy {
  position: absolute;
  z-index: 3;
  width: min(570px, 48%);
  bottom: clamp(38px, 6vw, 82px);
  left: clamp(30px, 6vw, 88px);
  color: white;
}

.cafe-hero-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(3.7rem, 6.6vw, 7rem);
  line-height: .84;
  letter-spacing: -.075em;
}

.cafe-hero-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.cafe-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 17px;
  border: 1px solid rgba(168, 241, 220, .42);
  border-radius: 999px;
  background: rgba(49, 20, 66, .6);
  color: var(--mint);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  backdrop-filter: blur(16px);
}

.cafe-location i {
  font-size: 1rem;
  font-style: normal;
}

.cafe-story {
  display: grid;
  align-items: end;
  gap: clamp(32px, 7vw, 100px);
  margin-top: clamp(48px, 7vw, 88px);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.cafe-story-copy h3 {
  max-width: 620px;
  margin: 13px 0 20px;
  color: var(--purple-deep);
  font-size: clamp(2.6rem, 4.7vw, 5.2rem);
  line-height: .94;
  letter-spacing: -.06em;
}

.cafe-story-copy > p:last-child {
  max-width: 620px;
  color: #776d79;
  font-size: 1.04rem;
  line-height: 1.8;
}

.cafe-features {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cafe-features > div {
  min-height: 168px;
  padding: 23px;
  border: 1px solid rgba(83, 42, 105, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 22px 45px rgba(57, 31, 65, .08);
  backdrop-filter: blur(12px);
}

.cafe-features .cafe-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(82, 37, 112, .09);
  background: linear-gradient(145deg, #c5f7e9, #91e7d2);
  color: var(--purple-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 10px 24px rgba(75, 38, 91, .09);
}

.cafe-icon i,
.cafe-icon i::before,
.cafe-icon i::after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  content: "";
}

.cafe-icon > i {
  scale: .76;
  transform-origin: center;
}

.cafe-icon-coffee i {
  top: 50%;
  left: 50%;
  width: 19px;
  height: 13px;
  border: 2px solid currentcolor;
  border-radius: 2px 2px 7px 7px;
  transform: translate(-58%, -35%);
}

.cafe-icon-coffee i::before {
  width: 6px;
  height: 8px;
  top: 1px;
  right: -7px;
  border: 2px solid currentcolor;
  border-left: 0;
  border-radius: 0 6px 6px 0;
}

.cafe-icon-coffee i::after {
  width: 2px;
  height: 6px;
  top: -9px;
  left: 4px;
  border-radius: 99px;
  background: currentcolor;
  box-shadow: 7px 2px 0 currentcolor;
  transform: skewX(-13deg);
}

.cafe-icon-treat i {
  top: 50%;
  left: 50%;
  width: 21px;
  height: 12px;
  border: 2px solid currentcolor;
  border-radius: 3px 3px 6px 6px;
  transform: translate(-50%, -15%);
}

.cafe-icon-treat i::before {
  width: 17px;
  height: 6px;
  top: -7px;
  left: 0;
  border: 2px solid currentcolor;
  border-bottom: 0;
  border-radius: 10px 10px 2px 2px;
}

.cafe-icon-treat i::after {
  width: 3px;
  height: 3px;
  top: -11px;
  left: 7px;
  border-radius: 50%;
  background: currentcolor;
  box-shadow: 0 3px 0 -1px currentcolor;
}

.cafe-icon-comfort i {
  top: 50%;
  left: 50%;
  width: 19px;
  height: 13px;
  border: 2px solid currentcolor;
  border-radius: 8px 8px 3px 3px;
  transform: translate(-50%, -58%);
}

.cafe-icon-comfort i::before {
  width: 25px;
  height: 10px;
  top: 6px;
  left: -5px;
  border: 2px solid currentcolor;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.cafe-icon-comfort i::after {
  width: 2px;
  height: 4px;
  top: 15px;
  left: 2px;
  background: currentcolor;
  box-shadow: 11px 0 0 currentcolor;
}

.cafe-features strong,
.cafe-features small {
  display: block;
}

.cafe-features strong {
  color: var(--purple-deep);
  font-size: .87rem;
}

.cafe-features small {
  margin-top: 7px;
  color: #877d89;
  font-size: .7rem;
  line-height: 1.5;
}

.cafe-gallery {
  display: grid;
  gap: clamp(14px, 2vw, 28px);
  margin-top: clamp(38px, 6vw, 72px);
  grid-template-columns: .8fr 1.35fr .8fr;
}

.cafe-photo {
  height: clamp(390px, 46vw, 620px);
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: #32163f;
  box-shadow: 0 28px 60px rgba(48, 22, 57, .16);
}

.cafe-photo:nth-child(1),
.cafe-photo:nth-child(3) {
  margin-top: 46px;
}

.cafe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.cafe-photo:hover img {
  transform: scale(1.055);
}

.cafe-photo::after {
  position: absolute;
  z-index: 1;
  inset: 62% 0 0;
  background: linear-gradient(transparent, rgba(26, 10, 34, .78));
  content: "";
  pointer-events: none;
}

.cafe-photo figcaption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 21px;
  left: 22px;
  color: white;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

html[dir="rtl"] .cafe-hero-copy {
  right: clamp(30px, 6vw, 88px);
  left: auto;
}

.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 {
  display: block;
  min-height: 530px;
  overflow: hidden;
  border-radius: 22px;
  background: #2a2230;
  color: white;
  text-decoration: none;
  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;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 3px;
}

.product-card-actions a {
  position: relative;
  z-index: 5;
  padding: 7px 10px;
  border: 1px solid rgba(168, 241, 220, .42);
  border-radius: 999px;
  background: rgba(23, 10, 31, .72);
  color: var(--mint);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
}

.product-card-actions a:hover,
.product-card-actions a:focus-visible {
  background: var(--mint);
  color: var(--purple-deep);
}

.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;
}

.testimonials {
  width: 100%;
  padding-right: clamp(22px, 5vw, 82px);
  padding-left: clamp(22px, 5vw, 82px);
  background:
    radial-gradient(circle at 82% 18%, rgba(167, 238, 220, .2), transparent 28%),
    linear-gradient(180deg, #fbf9fc, #f4eef7);
}

.testimonials-heading {
  display: grid;
  align-items: end;
  gap: 45px;
  margin-bottom: clamp(42px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
}

.testimonials-heading h2 {
  max-width: 880px;
  margin-top: 15px;
  color: var(--purple-deep);
  font-size: clamp(3.7rem, 7.2vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.075em;
}

.testimonials-heading > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.review-grid {
  display: grid;
  align-items: stretch;
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(23px, 2.4vw, 36px);
  border: 1px solid rgba(70, 33, 91, .11);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 58px rgba(65, 34, 74, .09);
  backdrop-filter: blur(16px);
}

.review-card-featured {
  background: linear-gradient(150deg, rgba(255, 255, 255, .94), rgba(210, 248, 237, .72));
}

.review-top {
  display: grid;
  align-items: center;
  gap: 13px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.review-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

.review-avatar-blue { background: #118bd1; }
.review-avatar-green { background: #00604f; }
.review-avatar-orange { background: #c93408; }
.review-avatar-cyan { background: #079daf; }
.review-avatar-purple { background: #ab47c5; }

.review-top strong,
.review-top small {
  display: block;
}

.review-top strong {
  overflow: hidden;
  color: var(--purple-deep);
  font-size: .92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-top small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .65rem;
}

.review-score {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(167, 238, 220, .45);
  color: var(--purple-deep);
  font-size: .67rem;
  font-weight: 900;
}

.review-stars {
  margin-top: 28px;
  color: #f3a816;
  font-size: 1.16rem;
  letter-spacing: .08em;
}

.review-card blockquote {
  margin: 22px 0 28px;
  color: #3f3543;
  font-size: clamp(.85rem, 1.05vw, 1rem);
  line-height: 1.72;
}

.review-text.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.review-translation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.review-source-toggle {
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  font: inherit;
  font-size: .66rem;
  font-weight: 800;
  text-align: start;
  text-decoration: underline;
  text-decoration-color: rgba(91, 42, 124, .28);
  text-underline-offset: 3px;
}

.review-source-toggle:hover,
.review-source-toggle:focus-visible {
  color: var(--purple-deep);
  text-decoration-color: currentColor;
}

.review-source-toggle.is-static {
  color: #746978;
  cursor: default;
  text-decoration: none;
}

.review-toggle {
  flex: 0 0 auto;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  font: inherit;
  font-size: .66rem;
  font-weight: 850;
}

.review-toggle:hover,
.review-toggle:focus-visible {
  color: var(--purple-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-toggle[hidden] {
  display: none;
}

.review-card time {
  margin-top: 14px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 750;
}

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);
}

.store-downloads {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-button {
  display: flex;
  overflow: hidden;
  min-width: 0;
  min-height: 72px;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid rgba(167, 238, 220, .34);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .105), rgba(167, 238, 220, .055));
  color: white;
  box-shadow: 0 15px 34px rgba(13, 5, 20, .18);
  backdrop-filter: blur(12px);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.store-button:hover {
  border-color: rgba(167, 238, 220, .72);
  background: linear-gradient(135deg, rgba(167, 238, 220, .16), rgba(255, 255, 255, .08));
  box-shadow: 0 18px 38px rgba(13, 5, 20, .26);
  transform: translateY(-2px);
}

.store-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.app-store-icon {
  border-radius: 11px;
}

.google-play-icon {
  padding: 3px 1px;
}

.store-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.05;
}

.store-copy small {
  overflow: hidden;
  color: rgba(255, 255, 255, .68);
  font-size: .69rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-copy strong {
  margin-top: 4px;
  color: white;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.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;
  }

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

@media (max-width: 820px) {
  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    backdrop-filter: none;
  }

  .site-header {
    height: 76px;
    gap: 12px;
  }

  .testimonials-heading {
    align-items: start;
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .brand-mark,
  .site-header.scrolled .brand-mark {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    position: relative;
    z-index: 58;
    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;
    z-index: 52;
    top: 0;
    right: 0;
    bottom: auto;
    display: flex;
    width: min(82vw, 430px);
    height: 100dvh;
    max-height: 100dvh;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    overflow-y: auto;
    padding: calc(112px + env(safe-area-inset-top)) 42px max(38px, env(safe-area-inset-bottom));
    background: rgba(28, 12, 39, .97);
    box-shadow: -30px 0 70px rgba(12, 6, 16, .34);
    overscroll-behavior: contain;
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.2, .7, .2, 1);
    backdrop-filter: blur(18px);
    -webkit-overflow-scrolling: touch;
  }

  .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) {
    display: flex;
    min-height: 48px;
    align-items: center;
    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-photo,
  .showroom-photo--feature,
  .showroom-photo--wide,
  .showroom-photo--cafe {
    grid-column: 1 / -1;
    min-height: clamp(380px, 72vw, 590px);
  }

  .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;
  }

  .cafe-story {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .cafe-story-copy {
    max-width: 680px;
  }

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

  .cafe-photo-wide {
    grid-column: span 2;
    grid-row: 1;
  }

  .cafe-photo:nth-child(1),
  .cafe-photo:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .testimonials {
    padding-right: 15px;
    padding-left: 15px;
  }

  .testimonials-heading {
    gap: 20px;
    margin-bottom: 34px;
  }

  .testimonials-heading h2 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
    line-height: .92;
  }

  .testimonials-heading > p {
    font-size: .86rem;
    line-height: 1.65;
  }

  .review-grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
    padding: 22px 20px;
    border-radius: 22px;
  }

  .review-top {
    gap: 11px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
  }

  .review-stars {
    margin-top: 20px;
  }

  .review-card blockquote {
    margin: 17px 0 20px;
    font-size: .9rem;
    line-height: 1.65;
  }

  .review-text.is-collapsed {
    -webkit-line-clamp: 5;
  }

  .review-translation {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .review-toggle {
    min-height: 36px;
    font-size: .72rem;
  }

  .site-header {
    padding: 0 16px;
  }

  .main-nav {
    width: 100%;
    padding-right: 28px;
    padding-left: 28px;
  }

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

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

  .language-menu {
    position: fixed;
    top: 68px;
    right: 16px;
    width: min(260px, calc(100vw - 32px));
  }

  html[dir="rtl"] .language-menu {
    right: auto;
    left: 16px;
  }

  .language-menu button {
    min-height: 50px;
    font-size: .82rem;
  }

  .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-gallery {
    gap: 14px;
  }

  .showroom-photo,
  .showroom-photo--feature,
  .showroom-photo--wide,
  .showroom-photo--cafe {
    min-height: min(88vw, 520px);
    border-radius: 20px;
  }

  .showroom-photo-copy p {
    max-width: 35ch;
  }

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

  .cafe-section {
    width: 100%;
    padding: 74px 15px 84px;
  }

  .cafe-hero {
    min-height: min(78svh, 690px);
    border-radius: 24px;
  }

  .cafe-hero > img {
    object-position: 56% center;
  }

  .cafe-hero-shade {
    background:
      linear-gradient(0deg, rgba(27, 10, 36, .94) 0%, rgba(27, 10, 36, .7) 40%, rgba(27, 10, 36, .08) 77%),
      linear-gradient(90deg, rgba(27, 10, 36, .34), transparent 65%);
  }

  .cafe-hero-copy,
  html[dir="rtl"] .cafe-hero-copy {
    right: 22px;
    bottom: 25px;
    left: 22px;
    width: auto;
  }

  .cafe-hero-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(3.25rem, 15vw, 4.65rem);
  }

  .cafe-hero-copy > p:not(.eyebrow) {
    font-size: .86rem;
    line-height: 1.58;
  }

  .cafe-location {
    margin-top: 18px;
    padding: 10px 13px;
    font-size: .63rem;
  }

  .cafe-story {
    gap: 30px;
    margin-top: 48px;
  }

  .cafe-story-copy h3 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .cafe-story-copy > p:last-child {
    font-size: .91rem;
    line-height: 1.7;
  }

  .cafe-features {
    gap: 9px;
    grid-template-columns: 1fr;
  }

  .cafe-features > div {
    display: grid;
    min-height: 0;
    align-items: center;
    gap: 3px 15px;
    padding: 15px;
    border-radius: 18px;
    grid-template-columns: 48px 1fr;
  }

  .cafe-features .cafe-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    grid-row: span 2;
  }

  .cafe-features small {
    margin-top: 0;
  }

  .cafe-gallery {
    display: flex;
    width: calc(100% + 15px);
    gap: 13px;
    overflow-x: auto;
    margin-right: -15px;
    padding: 3px 15px 24px 0;
    scroll-padding-inline: 0 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .cafe-gallery::-webkit-scrollbar {
    display: none;
  }

  .cafe-photo,
  .cafe-photo-wide {
    width: min(78vw, 325px);
    height: min(120vw, 505px);
    flex: 0 0 min(78vw, 325px);
    border-radius: 22px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .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 {
    display: flex;
    width: calc(100% + 15px);
    gap: 14px;
    overflow-x: auto;
    margin-right: -15px;
    padding: 6px 15px 28px 0;
    scroll-padding-inline: 0 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y pinch-zoom;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card,
  .product-card:nth-child(even) {
    width: min(82vw, 350px);
    height: min(132vw, 570px);
    min-height: 0;
    flex: 0 0 min(82vw, 350px);
    margin-top: 0;
    border-radius: 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .product-card img {
    min-height: 0;
  }

  .product-info {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .product-info strong {
    font-size: 1.7rem;
  }

  .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: max(16px, env(safe-area-inset-right));
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    padding-left: max(16px, env(safe-area-inset-left));
  }

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

@media (max-width: 480px) {
  .site-header {
    height: calc(72px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }

  .language-menu {
    top: calc(66px + env(safe-area-inset-top));
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    width: calc(100% - 32px);
    left: max(16px, env(safe-area-inset-left));
  }

  html[dir="rtl"] .hero-copy {
    right: max(16px, env(safe-area-inset-right));
  }

  .hero h1 {
    font-size: clamp(3.65rem, 16.2vw, 4.6rem);
  }

  .section {
    width: calc(100% - 28px);
  }

  .cafe-section {
    width: 100%;
  }

  .contact-grid {
    gap: 9px;
  }

  .contact-link {
    min-height: 62px;
    gap: 13px;
    padding: 9px 13px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }

  .contact-link img {
    width: 36px;
    height: 36px;
  }

  .contact-link span {
    font-size: .8rem;
  }

  .store-downloads {
    gap: 8px;
  }

  .store-button {
    min-height: 68px;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .store-icon {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .store-copy small {
    font-size: .61rem;
  }

  .store-copy strong {
    font-size: .86rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 54px;
  }
}

@media (hover: none) {
  html {
    scroll-behavior: auto;
  }

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

  .product-card:hover img {
    filter: none;
    transform: none;
  }

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

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

/* Sezon vitrini: dört kart, ortadaki iki kart odakta */
.collection {
  padding-top: clamp(72px, 7vw, 108px);
  padding-bottom: clamp(72px, 7vw, 108px);
}

.collection .section-heading {
  margin-bottom: clamp(26px, 4vw, 52px);
}

.product-carousel {
  --carousel-gap: clamp(12px, 1.7vw, 24px);
  width: min(1320px, 100%);
  overflow: hidden;
  margin-inline: auto;
  padding: clamp(26px, 3.5vw, 48px) 0;
  contain: paint;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.product-carousel .product-grid {
  display: flex;
  width: auto;
  gap: var(--carousel-gap);
  overflow: visible;
  margin: 0;
  padding: 0;
  direction: ltr;
  transform: translate3d(var(--carousel-x, 0px), 0, 0);
  transition: none;
  will-change: transform;
}

.product-carousel .product-grid.is-advancing {
  transform: translate3d(var(--carousel-x, 0px), 0, 0);
  transition: transform .48s cubic-bezier(.22, .72, .2, 1);
}

.product-carousel:active,
.product-carousel .product-grid.is-dragging {
  cursor: grabbing;
}

.product-carousel .product-grid.is-dragging {
  transition: none !important;
}

.product-carousel .product-grid.is-dragging .product-card {
  filter: brightness(.94) saturate(.92);
}

.product-carousel img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.product-carousel .product-card,
.product-carousel .product-card:nth-child(even) {
  --card-scale: .84;
  width: auto;
  height: auto;
  aspect-ratio: 9 / 16;
  min-height: 0;
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
  margin: 0;
  border-radius: clamp(16px, 1.7vw, 22px);
  opacity: .42;
  scale: var(--card-scale);
  transform: translateZ(0) perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-origin: center center;
  transition: scale .48s cubic-bezier(.22, .72, .2, 1), transform .48s cubic-bezier(.22, .72, .2, 1), opacity .42s ease, box-shadow .42s ease;
  transition-delay: 0s !important;
  backface-visibility: hidden;
  will-change: transform, scale, opacity;
}

.product-carousel .product-card.is-edge {
  --card-scale: .88;
  z-index: 1;
  opacity: .76;
}

.product-carousel .product-card.is-center {
  --card-scale: 1.03;
  z-index: 3;
  opacity: 1;
  box-shadow: 0 34px 70px rgba(4, 2, 5, .34);
}

.product-carousel .product-card img {
  height: 100%;
  min-height: 0;
}

.product-carousel .product-info {
  right: clamp(12px, 1.5vw, 20px);
  bottom: clamp(12px, 1.5vw, 20px);
  left: clamp(12px, 1.5vw, 20px);
}

.product-carousel .product-info strong {
  font-size: clamp(.92rem, 1.5vw, 1.45rem);
}

.product-carousel .product-info small {
  font-size: clamp(.48rem, .62vw, .59rem);
}

@media (max-width: 820px) {
  .collection {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .collection .section-heading {
    margin-bottom: 12px;
  }

  .product-carousel {
    --carousel-gap: 8px;
    width: calc(100% + 2px);
    padding: 24px 1px 30px;
  }

  .product-carousel .product-grid {
    width: auto;
    gap: var(--carousel-gap);
    overflow: visible;
    margin: 0;
    padding: 0;
    scroll-snap-type: none;
    touch-action: pan-y pinch-zoom;
  }

  .product-carousel .product-card,
  .product-carousel .product-card:nth-child(even) {
    width: auto;
    height: auto;
    aspect-ratio: 9 / 16;
    min-height: 0;
    flex-basis: calc((100% - (var(--carousel-gap) * 2)) / 3);
    border-radius: 13px;
  }

  .product-carousel .product-card.is-edge {
    --card-scale: .84;
  }

  .product-carousel .product-card.is-center {
    --card-scale: 1.04;
  }

  .product-carousel .product-info {
    right: 7px;
    bottom: 9px;
    left: 7px;
    gap: 3px;
  }

  .product-carousel .product-info small {
    display: none;
  }

  .product-carousel .product-info strong {
    overflow-wrap: anywhere;
    font-size: clamp(.53rem, 2.25vw, .72rem);
    line-height: 1.05;
  }

  .product-carousel .product-info span {
    display: none;
  }

  .product-carousel .product-card-actions {
    gap: 2px;
  }

  .product-carousel .product-card-actions a {
    padding: 3px 4px;
    font-size: .38rem;
  }
}

@media (max-width: 430px) {
  .product-carousel {
    --carousel-gap: 6px;
  }

  .product-carousel .product-card,
  .product-carousel .product-card:nth-child(even) {
    height: clamp(205px, 64vw, 275px);
    border-radius: 11px;
  }
}

/* Mobil katalog kartları ve açık zeminli yeni logolar */
.brand-logo-new--blend {
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

@media (max-width: 760px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .catalog-card {
    min-height: 0;
    height: clamp(185px, 46vw, 205px);
    padding: 14px 12px;
    border-radius: 18px;
  }

  .catalog-icon {
    width: 38px;
    height: 38px;
  }

  .catalog-icon img {
    width: 28px;
    height: 28px;
  }

  .catalog-index {
    font-size: .55rem;
  }

  .catalog-copy small {
    margin-bottom: 6px;
    font-size: .48rem;
    letter-spacing: .1em;
  }

  .catalog-copy strong {
    font-size: clamp(1.15rem, 5.5vw, 1.6rem);
    line-height: .88;
  }

  .catalog-card .round-arrow {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-carousel .product-grid,
  .product-carousel .product-grid.is-advancing,
  .product-carousel .product-card {
    transition: none !important;
  }
}

/* Toptan showroom tanıtım kolajı */
.wholesale-intro {
  margin-top: clamp(82px, 10vw, 150px);
  padding-top: clamp(34px, 5vw, 74px);
  border-top: 1px solid rgba(95, 45, 144, .16);
}

.wholesale-collage {
  align-items: stretch;
}

.wholesale-collage .showroom-photo {
  grid-column: span 3;
  min-height: clamp(410px, 35vw, 560px);
}

.wholesale-collage .showroom-photo--panorama {
  grid-column: 1 / -1;
  min-height: clamp(320px, 36vw, 580px);
}

.wholesale-collage .showroom-photo--panorama img {
  object-position: center 52%;
}

.wholesale-collage .showroom-photo--entrance,
.wholesale-collage .showroom-photo--cafe {
  grid-column: span 6;
  min-height: clamp(540px, 52vw, 760px);
}

.wholesale-collage .showroom-photo--entrance img {
  object-position: center 50%;
}

.wholesale-collage .showroom-photo--cafe img {
  object-position: center 48%;
}

.wholesale-collage .showroom-photo-copy h3 {
  font-size: clamp(1.25rem, 2.1vw, 2.45rem);
}

@media (max-width: 900px) {
  .wholesale-intro {
    margin-top: 82px;
  }

  .wholesale-collage .showroom-photo,
  .wholesale-collage .showroom-photo--feature,
  .wholesale-collage .showroom-photo--wide {
    grid-column: span 6;
    min-height: clamp(390px, 68vw, 570px);
  }

  .wholesale-collage .showroom-photo--panorama,
  .wholesale-collage .showroom-photo--entrance,
  .wholesale-collage .showroom-photo--cafe {
    grid-column: 1 / -1;
  }

  .wholesale-collage .showroom-photo--panorama {
    min-height: clamp(260px, 50vw, 440px);
  }

  .wholesale-collage .showroom-photo--entrance,
  .wholesale-collage .showroom-photo--cafe {
    min-height: min(102vw, 680px);
  }
}

@media (max-width: 560px) {
  .wholesale-collage {
    gap: 10px;
  }

  .wholesale-collage .showroom-photo,
  .wholesale-collage .showroom-photo--feature,
  .wholesale-collage .showroom-photo--wide {
    grid-column: span 6;
    min-height: clamp(280px, 91vw, 430px);
    border-radius: 18px;
  }

  .wholesale-collage .showroom-photo--panorama,
  .wholesale-collage .showroom-photo--entrance,
  .wholesale-collage .showroom-photo--cafe {
    grid-column: 1 / -1;
  }

  .wholesale-collage .showroom-photo--panorama {
    min-height: 56vw;
  }

  .wholesale-collage .showroom-photo--entrance,
  .wholesale-collage .showroom-photo--cafe {
    min-height: min(126vw, 560px);
  }

  .wholesale-collage .showroom-photo-copy {
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

  .wholesale-collage .showroom-photo-copy p {
    display: none;
  }

  .wholesale-collage .showroom-photo-copy h3 {
    margin-bottom: 0;
    font-size: clamp(1rem, 5vw, 1.35rem);
  }

  .wholesale-collage .showroom-photo-copy small {
    margin-bottom: 5px;
    font-size: .53rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-carousel .product-grid,
  .product-carousel .product-grid.is-advancing,
  .product-carousel .product-card {
    transition: none !important;
  }
}

/* Son düzenlemeler: tanıtım turu, yüksek yenileme hızına uyumlu vitrin ve hizalı kafe ikonları */
.store-tour-intro {
  align-items: end;
}

.store-tour-stage {
  position: relative;
  isolation: isolate;
  width: min(690px, 58vw);
  margin: clamp(36px, 6vw, 84px) auto 0;
}

.store-tour-shadow {
  position: absolute;
  z-index: -1;
  inset: 30px -34px -26px 34px;
  border: 1px solid rgba(121, 224, 203, .48);
  border-radius: clamp(24px, 3vw, 38px);
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(139, 236, 215, .42));
  box-shadow: 0 34px 70px rgba(74, 39, 86, .14);
}

.store-tour-card {
  width: 100%;
  max-height: 860px;
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(75, 34, 108, .46);
  border-radius: clamp(22px, 3vw, 36px);
  background: #1b1121;
  box-shadow: 0 34px 78px rgba(49, 25, 58, .22);
}

.store-tour-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-tour-play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.store-tour-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

@media (max-width: 560px) {
  .hero-video-play,
  .store-tour-play {
    width: 76px;
    height: 76px;
  }
}

.cafe-location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cafe-location svg {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cafe-features .cafe-icon {
  display: grid !important;
  place-items: center !important;
  box-sizing: border-box;
  padding: 0 !important;
  line-height: 0;
}

.cafe-features .cafe-icon svg {
  position: static !important;
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  transform: none !important;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-carousel {
  touch-action: pan-y pinch-zoom;
  contain: layout paint style;
}

.product-carousel .product-grid {
  backface-visibility: hidden;
  transform: translate3d(var(--carousel-x, 0px), 0, 0);
}

.product-carousel .product-grid.is-advancing {
  transition: transform .42s cubic-bezier(.16, 1, .3, 1);
}

.store-tour,
.wholesale-section,
.about,
.testimonials,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.product-carousel .product-card,
.product-carousel .product-card:nth-child(even) {
  height: auto !important;
  aspect-ratio: 9 / 16;
}

@media (max-width: 820px) {
  .store-tour-intro {
    align-items: start;
  }

  .store-tour-stage {
    width: min(100%, 430px);
    margin-top: 34px;
  }

  .store-tour-shadow {
    inset: 18px -12px -16px 12px;
    border-radius: 24px;
  }

  .store-tour-card {
    border-radius: 22px;
  }

  .about {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .about-copy {
    order: 1;
  }

  .about-photo {
    order: 2;
    width: min(560px, 100%);
    margin-top: clamp(18px, 6vw, 34px);
  }

  .product-carousel .product-card,
  .product-carousel .product-card:nth-child(even) {
    height: auto !important;
    aspect-ratio: 9 / 16;
  }

  .product-carousel .product-card.is-edge {
    --card-scale: .82;
  }

  .product-carousel .product-card.is-center {
    --card-scale: 1.16;
  }
}

@media (max-width: 430px) {
  .product-carousel .product-card,
  .product-carousel .product-card:nth-child(even) {
    height: auto !important;
    aspect-ratio: 9 / 16;
  }

  .product-carousel .product-card.is-center {
    --card-scale: 1.18;
  }

  .cafe-features .cafe-icon svg {
    width: 26px;
    height: 26px;
  }
}
