:root {
  --ink: #281824;
  --muted: #745a6d;
  --rose: #f6dce9;
  --rose-strong: #ee85b4;
  --violet: #7c4ed8;
  --mint: #8ce0ca;
  --sun: #ffd36e;
  --paper: #fff8fb;
  --line: rgba(88, 40, 72, 0.16);
  --shadow: 0 24px 80px rgba(70, 25, 52, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 211, 110, 0.35), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(140, 224, 202, 0.36), transparent 22rem),
    linear-gradient(135deg, #fff8fb 0%, #f6dce9 48%, #f3f6ff 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 248, 251, 0.76);
  box-shadow: 0 16px 46px rgba(70, 25, 52, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.site-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(238, 133, 180, 0.14);
  color: var(--ink);
  outline: none;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0 36px;
}

main > section {
  scroll-margin-top: 108px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: #38202f;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(40, 24, 36, 0.82) 0%, rgba(40, 24, 36, 0.58) 36%, rgba(40, 24, 36, 0.05) 68%),
    linear-gradient(0deg, rgba(40, 24, 36, 0.72), rgba(40, 24, 36, 0.04) 44%),
    url("ludmila.png");
  background-position: center, center, 54% center;
  background-size: cover;
  transform: scale(1.01);
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 24px;
  pointer-events: none;
}

.hero-copy {
  align-self: end;
  width: min(620px, 100%);
  padding: 0 52px 58px;
  color: white;
}

.eyebrow {
  margin: 0 0 16px;
  padding-left: 8px;
  color: var(--rose-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd9e9;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 8vw, 78px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
}

.hero-text {
  max-width: 520px;
  padding-left: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-logo {
  display: block;
  width: min(520px, 60%);
  height: auto;
  margin: 0 0 16px -14px;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.34));
  transform: scale(1.28);
  transform-origin: left center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: white;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(14px);
}

.button.compact {
  min-width: 180px;
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.section,
.bio-section,
.music-section,
.contact-section {
  margin-top: 24px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 248, 251, 0.72);
  box-shadow: 0 18px 58px rgba(70, 25, 52, 0.1);
  backdrop-filter: blur(16px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.social-link {
  display: flex;
  min-height: 154px;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: white;
  box-shadow: 0 12px 34px rgba(70, 25, 52, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  box-shadow: 0 20px 44px rgba(70, 25, 52, 0.16);
}

.social-icon {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.social-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-link strong,
.social-link small {
  display: block;
}

.social-link strong {
  margin-bottom: 7px;
  font-size: 24px;
}

.social-link small,
.bio-copy p,
.bio-facts dd,
.release-panel p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.bio-section {
  background:
    linear-gradient(135deg, rgba(140, 224, 202, 0.2), transparent 44%),
    rgba(255, 248, 251, 0.76);
}

.bio-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.bio-copy {
  max-width: 680px;
}

.bio-copy p {
  margin-bottom: 16px;
  font-size: clamp(17px, 2vw, 21px);
}

.bio-copy p:last-child {
  margin-bottom: 0;
}

.bio-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.bio-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.bio-facts dt {
  margin-bottom: 6px;
  color: var(--rose-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bio-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.release-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 211, 110, 0.28), transparent 44%),
    linear-gradient(135deg, #ffffff, #fff1f8);
}

.release-label {
  margin-bottom: 12px;
  color: var(--violet);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: white;
}

.contact-copy {
  max-width: 680px;
}

.contact-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 4px 32px;
  color: var(--muted);
  font-size: 14px;
}

.float-item {
  position: fixed;
  z-index: 2;
  top: -48px;
  color: rgba(238, 133, 180, 0.58);
  filter: drop-shadow(0 8px 18px rgba(124, 78, 216, 0.18));
  pointer-events: none;
  animation: drift var(--duration) linear var(--delay) infinite;
}

.float-item.saturn {
  color: rgba(124, 78, 216, 0.48);
}

.float-item svg {
  display: block;
  width: var(--size);
  height: var(--size);
}

@keyframes drift {
  0% {
    transform: translate3d(var(--x), -60px, 0) rotate(0deg);
    opacity: 0;
  }
  10%,
  80% {
    opacity: 1;
  }
  100% {
    transform: translate3d(calc(var(--x) + var(--sway)), calc(100vh + 80px), 0) rotate(220deg);
    opacity: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand-name {
    display: none;
  }

  .site-nav a {
    padding-inline: 10px;
    font-size: 13px;
  }

  main {
    width: calc(100% - 20px);
    padding-top: 82px;
  }

  .hero {
    min-height: 720px;
    border-radius: 24px;
  }

  .hero-media {
    /*background-image:
    linear-gradient(90deg, rgba(40, 24, 36, 0.82) 0%, rgba(40, 24, 36, 0.58) 36%, rgba(40, 24, 36, 0.05) 68%),
    linear-gradient(0deg, rgba(40, 24, 36, 0.72), rgba(40, 24, 36, 0.04) 44%),
    url("ludmila.png");*/
    background-position: 42% center;
    background-size: cover;
  }

  .hero-copy {
    align-self: stretch;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 24px 34px;
  }

  .hero-logo {
    width: min(132px, 44%);
    margin: 0 0 16px;
    transform: none;
    transform-origin: left center;
  }

  /*.hero .eyebrow,
  .hero-text {
    display: none;
  }*/

  .hero-actions {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .hero-actions .button.secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
  }

  .section,
  .bio-section,
  .music-section,
  .contact-section {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .section-heading,
  .bio-content,
  .release-panel,
  .contact-section {
    display: block;
  }

  .bio-copy {
    margin-bottom: 22px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-link {
    min-height: 132px;
  }

  .release-panel .button,
  .contact-section .button {
    width: 100%;
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .float-item {
    display: none;
  }
}
