.mekan-3d {
  --zemin: #0c0b0a;
  --metin: #f4efe9;
  --bronz: #b08d57;
  --donuk: #9a8f83;
  --cizgi: rgba(244, 239, 233, .18);

  width: 100%;
  padding: clamp(56px, 9vw, 120px) clamp(22px, 5vw, 72px);
  background: linear-gradient(180deg, #0c0b0a, #100d0a);
  color: var(--metin);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, .85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-sizing: border-box;
}

.mekan-3d *,
.mekan-3d *::before,
.mekan-3d *::after {
  box-sizing: inherit;
}

.mekan-3d__viewer {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #16120e;
  box-shadow:
    0 34px 100px -42px rgba(0, 0, 0, .9),
    0 0 0 1px rgba(244, 239, 233, .08);
  cursor: grab;
  isolation: isolate;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  min-width: 0;
}

.mekan-3d__viewer:active {
  cursor: grabbing;
}

.mekan-3d__viewer:focus-visible {
  outline: 2px solid var(--bronz);
  outline-offset: 3px;
}

.mekan-3d__viewer canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.mekan-3d__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .6s ease;
  pointer-events: none;
}

.mekan-3d__metin {
  align-self: center;
  max-width: 48ch;
  min-width: 0;
}

.mekan-3d .kicker {
  margin: 0 0 14px;
  color: var(--bronz);
  font: 800 11px/1.1 "Manrope", system-ui, sans-serif;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.mekan-3d__metin h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: 0;
}

.mekan-3d__metin p {
  margin: 18px 0 0;
  color: rgba(244, 239, 233, .82);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.6;
}

.mekan-3d__metin .mekan-3d__hint {
  color: var(--bronz);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
  opacity: .8;
}

@media (max-width: 760px) {
  .mekan-3d {
    grid-template-columns: 1fr;
  }

  .mekan-3d__metin {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mekan-3d__viewer {
    cursor: default;
  }

  .mekan-3d__viewer:active {
    cursor: default;
  }

  .mekan-3d__poster {
    transition: none;
  }
}
