:root {
  --bg-top: #542735;
  --bg-middle: #31111e;
  --bg-bottom: #16050b;
  --text-primary: #fff4ee;
  --text-secondary: #dabbc5;
  --accent-gold: #d8b451;
  --border: rgba(190, 112, 138, 0.55);
  --border-bright: rgba(231, 148, 176, 0.86);
  --surface: rgba(66, 28, 43, 0.46);
  --focus: #f2cb72;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  background: var(--bg-bottom);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--text-primary);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 50% 5%, rgba(156, 77, 105, 0.22) 0, transparent 30rem),
    radial-gradient(circle at 10% 42%, rgba(105, 35, 61, 0.12) 0, transparent 28rem),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-middle) 32%, #240914 64%, var(--bg-bottom) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 100% 4px;
  content: "";
  pointer-events: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(100% - 40px, 790px);
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(58px, 7vw, 96px) 0 38px;
}

.artist-header {
  text-align: center;
}

.portrait-rings {
  position: relative;
  width: clamp(174px, 21vw, 214px);
  aspect-ratio: 1;
  margin: 12px auto clamp(42px, 6vw, 62px);
  padding: 8px;
  border: 2px solid rgba(225, 137, 167, 0.68);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(8, 0, 4, 0.3), 0 0 25px rgba(201, 105, 137, 0.08);
  animation: reveal 650ms ease-out both;
}

.portrait-rings::before {
  position: absolute;
  inset: -20px;
  border: 3px solid rgba(196, 111, 140, 0.28);
  border-radius: 50%;
  content: "";
}

.portrait {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 62% 42%;
  filter: grayscale(100%) contrast(1.06) brightness(0.9) sepia(8%);
}

h1 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: clamp(3.3rem, 8vw, 5.15rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
  animation: reveal 650ms 90ms ease-out both;
}

.tagline {
  margin: clamp(22px, 4vw, 32px) auto 0;
  color: var(--text-secondary);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2.3vw, 1.45rem);
  font-style: italic;
  line-height: 1.5;
  text-wrap: balance;
  animation: reveal 650ms 150ms ease-out both;
}

.accent-line {
  display: block;
  margin: 13px auto 0;
  color: var(--accent-gold);
  font-size: clamp(0.76rem, 1.5vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
  animation: reveal 650ms 190ms ease-out both;
}

.accent-line span {
  display: inline-block;
  margin-right: 9px;
}

.platform-links {
  display: grid;
  gap: 18px;
  margin-top: clamp(58px, 8vw, 78px);
}

.platform-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  align-items: center;
  min-height: clamp(80px, 9vw, 92px);
  padding: 18px clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 23px;
  background: linear-gradient(120deg, rgba(91, 40, 59, 0.3), var(--surface));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  color: var(--text-primary);
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  font-weight: 680;
  letter-spacing: 0.005em;
  text-align: center;
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  animation: reveal 560ms ease-out both;
}

.platform-link > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.platform-link:nth-child(1) { animation-delay: 240ms; }
.platform-link:nth-child(2) { animation-delay: 300ms; }
.platform-link:nth-child(3) { animation-delay: 360ms; }
.platform-link:nth-child(4) { animation-delay: 420ms; }
.platform-link:nth-child(5) { animation-delay: 480ms; }
.platform-link:nth-child(6) { animation-delay: 540ms; }

.platform-link:hover {
  transform: translateY(-2px);
  border-color: var(--border-bright);
  background: linear-gradient(120deg, rgba(111, 48, 70, 0.44), rgba(75, 31, 47, 0.58));
  box-shadow: 0 10px 30px rgba(12, 1, 7, 0.2), 0 0 22px rgba(209, 113, 146, 0.08);
}

.platform-link:active {
  transform: translateY(1px);
}

.platform-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.platform-icon {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.instagram-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-icon .icon-dot {
  fill: currentColor;
  stroke: none;
}

.amazon-icon .amazon-smile {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  opacity: 0.62;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: opacity 200ms ease, transform 200ms ease;
}

.platform-link:hover .arrow-icon {
  opacity: 1;
  transform: translate(2px, -2px);
}

footer {
  padding: 24px 20px 34px;
  color: rgba(218, 187, 197, 0.48);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: calc(100% - 32px);
    padding-top: max(30px, env(safe-area-inset-top));
    padding-bottom: 20px;
  }

  .portrait-rings {
    width: clamp(146px, 42vw, 166px);
    margin-top: 8px;
    margin-bottom: 30px;
    padding: 6px;
  }

  .portrait-rings::before {
    inset: -14px;
    border-width: 2px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 3.35rem);
    line-height: 1;
  }

  .tagline {
    margin-top: 14px;
    font-size: clamp(1.02rem, 5vw, 1.18rem);
    line-height: 1.35;
  }

  .accent-line {
    margin-top: 9px;
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    line-height: 1.4;
  }

  .platform-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
  }

  .platform-link {
    grid-template-columns: 22px minmax(0, 1fr);
    min-height: 64px;
    padding: 9px 10px;
    border-radius: 18px;
    font-size: 0.84rem;
    line-height: 1.2;
  }

  .platform-icon {
    width: 21px;
    height: 21px;
  }

  .arrow-icon {
    display: none;
  }

  footer {
    padding: 16px max(16px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    font-size: 0.68rem;
  }
}

@media (max-width: 350px) {
  .page-shell {
    width: calc(100% - 24px);
  }

  .platform-link {
    grid-template-columns: 20px minmax(0, 1fr);
    padding-inline: 8px;
    font-size: 0.78rem;
  }

}

@media (max-width: 480px) and (max-height: 700px) {
  .page-shell {
    padding-top: max(18px, env(safe-area-inset-top));
    padding-bottom: 12px;
  }

  .portrait-rings {
    width: 124px;
    margin-top: 4px;
    margin-bottom: 22px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .tagline {
    margin-top: 10px;
    font-size: 1rem;
  }

  .accent-line {
    margin-top: 6px;
    font-size: 0.64rem;
  }

  .platform-links {
    gap: 8px;
    margin-top: 24px;
  }

  .platform-link {
    grid-template-columns: 20px minmax(0, 1fr);
    min-height: 58px;
    padding: 8px 9px;
    border-radius: 16px;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .platform-link .platform-icon {
    width: 19px;
    height: 19px;
  }

  footer {
    padding-top: 6px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
