:root {
  --text-color: rgba(0, 0, 0, 0.85);
  --muted-color: rgba(0, 0, 0, 0.42);
  --card-bg: rgba(255, 255, 255, 0.7);
  --noise-color: rgba(0, 0, 0, 0.12);
  --max-content-width: 520px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #f5f5f5;
  color: var(--text-color);
}

.site-body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

a:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.7);
  outline-offset: 4px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(32px, 5vw, 80px) clamp(32px, 12vw, 220px)
    clamp(32px, 5vw, 80px) clamp(48px, 10vw, 160px);
  min-height: 100vh;
  background-image: url('mikcraw-hero-image-1920.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 12%,
    rgba(255, 255, 255, 0.55) 30%,
    rgba(255, 255, 255, 0)
  );
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(var(--noise-color) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  gap: clamp(12px, 3vh, 32px);
  padding: clamp(24px, 5vw, 48px) clamp(36px, 6vw, 64px);
  max-width: min(80vw, var(--max-content-width));
  background: var(--card-bg);
  border-radius: 26px;
  box-shadow: 0 20px 120px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
}

.hero__content::before {
  content: '';
  position: absolute;
  left: clamp(12px, 4vw, 24px);
  top: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent);
  opacity: 0.3;
}

.hero__title {
  margin: 0;
  font-size: clamp(3.2rem, 12vw, 8rem);
  font-weight: 700;
  font-family: 'Brush Script MT', 'Snell Roundhand', cursive;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.9);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}


.social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vh, 18px);
}

.social-link {
  --accent-color: rgba(0, 0, 0, 0.85);
  position: relative;
  display: block;
  padding-left: 10px;
  font-size: clamp(1rem, 3.5vw, 2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-color);
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--accent-color);
  transform: translate(-160%, -50%);
  opacity: 0.8;
  transition: transform 0.25s ease;
}

.social-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
}

.social-link:hover,
.social-link:focus-within {
  color: var(--accent-color);
  transform: translateX(4px);
}

.social-link:hover::before,
.social-link:focus-within::before {
  transform: translate(-120%, -50%) scaleX(1.15);
}

.social-link__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.07);
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  font-size: 1.2em;
}

.social-link__label {
  position: relative;
}

.social-link__label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  opacity: 0.2;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.social-link:hover .social-link__label::after,
.social-link:focus-within .social-link__label::after {
  transform: scaleX(1);
}

@media (max-width: 992px) {
  .hero {
    background-position: center top;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: clamp(32px, 10vw, 64px);
  }

  .hero__content {
    width: auto;
    max-width: 94vw;
    border-radius: 20px;
    padding: clamp(20px, 7vw, 36px) clamp(32px, 10vw, 56px);
    backdrop-filter: blur(4px);
  }
}

@media (max-width: 540px) {
  .hero__title {
    letter-spacing: 0.04em;
  }

  .social-link {
    letter-spacing: 0.08em;
  }
}
