:root {
  color-scheme: dark;
  --bg: #060607;
  --ink: #f6f2ea;
  --muted: rgba(246, 242, 234, 0.68);
  --faint: rgba(246, 242, 234, 0.12);
  --line: rgba(246, 242, 234, 0.16);
  --glass: rgba(12, 13, 14, 0.52);
  --gold: #d8b66a;
  --teal: #70d7c9;
  --green: #31d46b;
  --pink: #e76ca5;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 7, 0.95), rgba(6, 6, 7, 0.68) 42%, rgba(6, 6, 7, 0.94)),
    linear-gradient(180deg, rgba(6, 6, 7, 0.72), rgba(6, 6, 7, 0.98)),
    url("assets/studio-bg.png") center / cover no-repeat fixed;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle at 50% 0, rgba(216, 182, 106, 0.12), transparent 28rem),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

.page-shell {
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(100% - 40px, 560px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 56px 0;
}

.intro {
  display: grid;
  justify-items: center;
  width: 100%;
  margin-bottom: 36px;
  text-align: center;
}

.logo {
  display: block;
  width: clamp(82px, 18vw, 122px);
  height: clamp(82px, 18vw, 122px);
  margin-bottom: 24px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.34);
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-align: center;
}

.location {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 2vw, 1.12rem);
  font-weight: 300;
  line-height: 1.5;
}

.link-stack {
  display: grid;
  width: 100%;
  gap: 12px;
}

.link-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px 16px 12px 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.link-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.13), transparent 32%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(246, 242, 234, 0.34);
  background: rgba(18, 20, 21, 0.74);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  outline: none;
}

.link-card:hover::after,
.link-card:focus-visible::after {
  opacity: 1;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--faint);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
}

.icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.link-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.25;
}

.link-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.whatsapp .icon {
  color: var(--green);
}

.email .icon {
  color: var(--gold);
}

.instagram .icon {
  color: var(--pink);
}

.spotify .icon {
  color: var(--teal);
}

@media (min-width: 900px) {
  .page-shell {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  body {
    background:
      linear-gradient(180deg, rgba(6, 6, 7, 0.68), rgba(6, 6, 7, 0.96)),
      url("assets/studio-bg.png") 54% center / cover no-repeat fixed;
  }

  .page-shell {
    width: min(100% - 28px, 560px);
    padding: 34px 0;
  }

  .intro {
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.28rem, 11.5vw, 3.5rem);
  }

  .link-card {
    grid-template-columns: 48px 1fr;
    min-height: 72px;
    padding-right: 14px;
  }

  .link-card small {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
