:root {
  --red: #7b1e2b;
}

.header-socials a b {
  color: #fff;
  background: #7b1e2b;
}

.header-socials a:hover {
  border-color: #7b1e2b;
  background: rgba(123, 30, 43, 0.18);
}

.cursor-ring {
  border-color: rgba(123, 30, 43, 0.62);
}

/* Ana sayfa: koyu, kabartma etkili Zenart monogramı */
.hero {
  background: #0d0c0b;
}

.hero-art {
  background:
    radial-gradient(circle at 72% 43%, rgba(255, 255, 255, 0.035), transparent 37%),
    linear-gradient(135deg, #11100f 0%, #0b0a09 58%, #100e0d 100%);
}

.hero-art::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 7px, rgba(255, 255, 255, 0.006) 8px, transparent 9px),
    radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.45) 100%);
  content: "";
  opacity: 0.72;
}

.hero-monogram {
  position: absolute;
  top: 50%;
  right: -4vw;
  display: grid;
  width: clamp(500px, 61vw, 980px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.035),
    inset -2px -2px 5px rgba(0, 0, 0, 0.8),
    1px 1px 0 rgba(255, 255, 255, 0.018),
    -2px -2px 6px rgba(0, 0, 0, 0.62);
  transform: translateY(calc(-47% + var(--hero-shift, 0px)));
  animation: monogramReveal 1.8s cubic-bezier(.2, .6, .3, 1) both;
}

.hero-monogram::before,
.hero-monogram::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-monogram::before {
  inset: 8.5%;
  border: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.34);
}

.hero-monogram::after {
  inset: -1px;
  border-right: 1px solid rgba(123, 30, 43, 0.18);
  border-bottom: 1px solid rgba(123, 30, 43, 0.08);
  transform: rotate(24deg);
}

.hero-monogram span {
  position: relative;
  z-index: 1;
  margin: -2% 0 0 -3%;
  color: #211e1c;
  font: italic clamp(360px, 52vw, 820px)/0.78 Georgia, serif;
  letter-spacing: -0.13em;
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.075),
    2px 3px 4px rgba(0, 0, 0, 0.82),
    0 0 28px rgba(123, 30, 43, 0.045);
  user-select: none;
}

.hero-art__shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.64) 40%, rgba(5, 5, 5, 0.08) 76%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.45), transparent 55%);
}

@keyframes monogramReveal {
  from {
    opacity: 0;
    transform: translateY(calc(-47% + var(--hero-shift, 0px))) scale(1.08) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(calc(-47% + var(--hero-shift, 0px))) scale(1) rotate(0);
  }
}

@media (max-width: 900px) {
  .hero-monogram {
    top: 48%;
    right: -62vw;
    width: 155vw;
    border-color: rgba(255, 255, 255, 0.18);
    opacity: 1;
  }

  .hero-monogram span {
    color: #2a2522;
    font-size: 132vw;
    text-shadow:
      -1px -1px 0 rgba(255, 255, 255, 0.1),
      3px 4px 5px rgba(0, 0, 0, 0.78),
      0 0 34px rgba(123, 30, 43, 0.06);
  }

  .hero-art__shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.55) 48%, rgba(5, 5, 5, 0.12) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.5), transparent 55%);
  }

  .contact-copy,
  .contact-form {
    min-width: 0;
  }

  .contact-form {
    width: calc(100% - 44px);
    max-width: calc(100% - 44px);
    justify-self: start;
  }

  .mail-link {
    gap: 12px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .contact h2 {
    font-size: clamp(66px, 20vw, 85px);
  }

  .mail-link {
    font-size: clamp(17px, 5.4vw, 23px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-monogram {
    animation: none;
  }
}
