:root {
  --bg: #10051e;
  --bg-deep: #07020f;
  --panel: rgba(31, 12, 55, 0.68);
  --text: #fff8ff;
  --muted: #d9c8ea;
  --soft: #a894c1;
  --violet: #8f4cff;
  --violet-2: #c184ff;
  --gold: #f1c86b;
  --line: rgba(255, 248, 255, 0.18);
  --shadow: 0 32px 90px rgba(8, 2, 20, 0.52);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 8%, rgba(119, 62, 255, 0.22), transparent 30rem),
    linear-gradient(180deg, #120620 0%, #08020f 100%);
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 68px);
  color: var(--text);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(12, 4, 24, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(255, 248, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding-block: 8px;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--text);
  transition: transform 180ms ease;
}

.menu-button span + span {
  margin-top: 8px;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(38deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-38deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  padding: 132px clamp(24px, 8vw, 112px) 74px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 8vw;
  bottom: -12px;
  left: 8vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 200, 107, 0.64), transparent);
  content: "";
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  z-index: -3;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 34%;
  filter: saturate(0.95) contrast(1.05);
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 38%, rgba(142, 72, 255, 0.02), transparent 26rem),
    linear-gradient(90deg, rgba(10, 2, 22, 0.95) 0%, rgba(22, 7, 41, 0.72) 36%, rgba(13, 4, 29, 0.16) 68%, rgba(11, 4, 26, 0.64) 100%),
    linear-gradient(180deg, rgba(11, 4, 26, 0.46) 0%, rgba(11, 4, 26, 0.05) 45%, rgba(11, 4, 26, 0.94) 100%);
}

.hero-content {
  align-self: center;
  max-width: 640px;
  padding-top: 5vh;
}

.hero-name {
  margin: 0 0 -4px 42px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 7.1rem);
  line-height: 0.84;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(7.5rem, 17vw, 18rem);
  font-weight: 400;
  line-height: 0.72;
}

.hero-copy {
  max-width: 360px;
  margin: clamp(30px, 3.8vw, 50px) 0 32px;
  color: rgba(255, 248, 255, 0.9);
  font-size: clamp(0.96rem, 1.35vw, 1.18rem);
  line-height: 1.58;
}

.underline-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.underline-link::before {
  position: absolute;
  right: 28px;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.underline-link::after {
  width: 7px;
  height: 7px;
  background: currentColor;
  box-shadow: 0 0 20px rgba(241, 200, 107, 0.8);
  content: "";
  transform: rotate(45deg);
}

.scroll-rail {
  position: absolute;
  bottom: 74px;
  left: clamp(20px, 4vw, 48px);
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(255, 248, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-rail::after {
  width: 1px;
  height: 68px;
  background: linear-gradient(var(--gold), transparent);
  content: "";
}

.manifesto,
.music-section,
.design-section,
.leo-section,
.contact-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  min-height: 44rem;
  background:
    radial-gradient(circle at 78% 45%, rgba(129, 69, 244, 0.34), transparent 27rem),
    radial-gradient(circle at 58% 50%, rgba(241, 200, 107, 0.15), transparent 19rem),
    #10031e;
}

.manifesto::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  opacity: 0.11;
  pointer-events: none;
}

.manifesto-art {
  position: relative;
  height: 100%;
  min-height: 44rem;
  opacity: 0.56;
}

.manifesto-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 3, 30, 0.12), #10031e 82%);
  content: "";
}

.manifesto-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: grayscale(0.42) saturate(0.8);
}

.manifesto-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: clamp(72px, 9vw, 132px) clamp(28px, 8vw, 112px) clamp(72px, 8vw, 108px) 0;
  text-align: center;
}

.manifesto-copy::before {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 26px;
  color: var(--gold);
  content: "*";
  font-family: var(--serif);
  font-size: 3.3rem;
  line-height: 0.55;
}

.manifesto h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4.4vw, 4.7rem);
  font-weight: 400;
  line-height: 1.04;
}

.manifesto p {
  max-width: 520px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.7;
}

.manifesto .signature {
  margin-top: 28px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-style: italic;
  line-height: 1;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.split,
.leo-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.section-copy {
  max-width: 510px;
}

.section-mark {
  display: block;
  width: max-content;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.7;
}

.section-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 9vw, 8.2rem);
  font-weight: 400;
  line-height: 0.88;
}

.section-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.62;
}

.music-section {
  min-height: 39rem;
  padding: clamp(76px, 9vw, 126px) 0;
  background:
    radial-gradient(circle at 70% 45%, rgba(139, 69, 255, 0.38), transparent 25rem),
    linear-gradient(90deg, #120321 0%, #1a0832 48%, #0a0313 100%);
}

.music-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 35%, rgba(255, 248, 255, 0.24) 0 1px, transparent 1px),
    radial-gradient(circle at 71% 70%, rgba(241, 200, 107, 0.52) 0 1px, transparent 1px);
  background-size: 44px 44px, 82px 82px;
  content: "";
  opacity: 0.22;
}

.music-line {
  color: var(--violet-2) !important;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.6vw, 3.4rem) !important;
  font-style: italic;
  line-height: 1.05 !important;
}

.music-note {
  max-width: 410px;
}

.player {
  display: grid;
  grid-template-columns: 38px 52px 38px minmax(120px, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 420px;
  margin-top: 34px;
}

.icon-button,
.play-button {
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 38px;
  height: 38px;
  color: rgba(255, 248, 255, 0.88);
}

.play-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 248, 255, 0.72);
  border-radius: 50%;
  color: var(--text);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.play-button:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.icon-button svg,
.play-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.play-button .pause-icon,
.player.is-playing .play-icon {
  display: none;
}

.player.is-playing .pause-icon {
  display: block;
}

.progress {
  height: 1px;
  overflow: visible;
  background: rgba(255, 248, 255, 0.28);
}

.progress span {
  position: relative;
  display: block;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, var(--violet-2), var(--gold));
}

.progress span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translate(50%, -50%);
}

.music-orbit {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
}

.record {
  position: relative;
  width: min(32vw, 420px);
  min-width: 280px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 248, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, #f7efff 0 4%, transparent 4.3% 9%, rgba(255, 248, 255, 0.16) 9.4% 9.8%, transparent 10.2% 24%, rgba(193, 132, 255, 0.2) 24.3% 24.7%, transparent 25%),
    conic-gradient(from 30deg, rgba(193, 132, 255, 0.4), rgba(13, 4, 26, 0.88), rgba(241, 200, 107, 0.24), rgba(13, 4, 26, 0.9), rgba(193, 132, 255, 0.4));
  box-shadow: 0 34px 110px rgba(107, 52, 180, 0.34);
  animation: spin 22s linear infinite;
}

.record span {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(241, 200, 107, 0.88) 0 5%, transparent 5.5%),
    radial-gradient(circle, rgba(255, 248, 255, 0.94), rgba(193, 132, 255, 0.3) 58%, rgba(31, 12, 55, 0.72));
}

.music-orbit p {
  position: absolute;
  right: 7%;
  bottom: 16%;
  margin: 0;
  color: rgba(255, 248, 255, 0.28);
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-style: italic;
  line-height: 0.8;
}

.design-section {
  min-height: 37rem;
  padding: clamp(88px, 11vw, 160px) 0;
  background: #10051e;
}

.design-bg,
.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
}

.design-section::after,
.contact-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 4, 26, 0.94) 0%, rgba(13, 4, 26, 0.74) 42%, rgba(13, 4, 26, 0.18) 100%),
    linear-gradient(180deg, rgba(13, 4, 26, 0.22), rgba(13, 4, 26, 0.86));
  content: "";
}

.leo-section {
  min-height: 42rem;
  padding: clamp(78px, 8vw, 128px) 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(164, 95, 255, 0.22), transparent 24rem),
    #090211;
}

.leo-grid {
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.28fr);
}

.lion-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 248, 255, 0.16);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 248, 255, 0.03);
  box-shadow: var(--shadow);
}

.lion-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 2, 17, 0.08), rgba(9, 2, 17, 0) 60%, rgba(9, 2, 17, 0.2));
  content: "";
  pointer-events: none;
}

.lion-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.lion-frame figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: rgba(255, 248, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-section {
  min-height: 25rem;
  padding: clamp(70px, 8vw, 116px) 0;
  background: #12051f;
}

.contact-bg {
  object-position: right center;
  opacity: 0.52;
}

.contact-section::after {
  background:
    linear-gradient(90deg, rgba(13, 4, 26, 0.96) 0%, rgba(13, 4, 26, 0.7) 55%, rgba(13, 4, 26, 0.28) 100%),
    linear-gradient(180deg, rgba(13, 4, 26, 0.18), rgba(13, 4, 26, 0.78));
}

.contact-grid {
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
}

.whatsapp-note {
  max-width: 430px;
  margin-top: 22px !important;
  color: rgba(255, 248, 255, 0.72) !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
}

.whatsapp-note a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
}

.socials a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 248, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 248, 255, 0.9);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: var(--gold);
  background: rgba(241, 200, 107, 0.08);
  color: var(--gold);
  transform: translateY(-2px);
}

.socials svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.socials a:nth-child(2) svg path:first-child,
.socials a:nth-child(3) svg circle {
  fill: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(24px, 7vw, 104px);
  border-top: 1px solid rgba(255, 248, 255, 0.08);
  background: #08020f;
  color: rgba(255, 248, 255, 0.52);
  font-size: 0.82rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 940px) {
  .menu-button {
    display: grid;
  }

  .nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(12, 4, 24, 0.94);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 248, 255, 0.1);
    font-size: 0.96rem;
  }

  .hero {
    min-height: 94svh;
    padding: 112px 24px 68px;
  }

  .hero-photo img {
    object-position: 61% 32%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 2, 22, 0.92) 0%, rgba(22, 7, 41, 0.54) 52%, rgba(11, 4, 26, 0.58) 100%),
      linear-gradient(180deg, rgba(11, 4, 26, 0.38) 0%, rgba(11, 4, 26, 0.1) 45%, rgba(11, 4, 26, 0.95) 100%);
  }

  .hero-content {
    max-width: 520px;
    padding-top: 20vh;
  }

  .scroll-rail {
    display: none;
  }

  .manifesto,
  .split,
  .leo-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .manifesto {
    min-height: auto;
  }

  .manifesto-art {
    min-height: 20rem;
    opacity: 0.48;
  }

  .manifesto-art::after {
    background: linear-gradient(180deg, rgba(16, 3, 30, 0), #10031e 88%);
  }

  .manifesto-copy {
    max-width: none;
    padding: 20px 24px 76px;
  }

  .music-orbit {
    min-height: 310px;
  }

  .contact-grid {
    align-items: start;
  }

  .socials {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .brand {
    font-size: 2rem;
  }

  .nav {
    top: 68px;
  }

  .hero {
    min-height: 92svh;
    padding: 96px 20px 54px;
  }

  .hero-photo img {
    object-position: 58% 20%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(10, 2, 22, 0.18) 0%, rgba(10, 2, 22, 0.24) 31%, rgba(10, 2, 22, 0.94) 76%, rgba(10, 2, 22, 0.98) 100%),
      linear-gradient(90deg, rgba(10, 2, 22, 0.46), rgba(10, 2, 22, 0.24));
  }

  .hero-content {
    align-self: end;
    max-width: 100%;
    padding-top: 34vh;
  }

  .hero-name {
    margin-left: 9px;
    font-size: clamp(2.4rem, 16vw, 4.7rem);
  }

  .hero h1 {
    font-size: clamp(6rem, 29vw, 10rem);
  }

  .hero-copy {
    max-width: 310px;
    margin-top: 22px;
    font-size: 0.95rem;
  }

  .section-inner {
    width: min(100% - 36px, 1240px);
  }

  .section-copy h2 {
    font-size: clamp(3.45rem, 18vw, 5.2rem);
  }

  .manifesto-copy {
    text-align: left;
  }

  .manifesto-copy::before {
    margin-left: 0;
  }

  .manifesto h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .music-section,
  .design-section,
  .leo-section,
  .contact-section {
    padding-block: 68px;
  }

  .player {
    grid-template-columns: 34px 48px 34px 1fr;
    gap: 12px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  .play-button {
    width: 48px;
    height: 48px;
  }

  .music-orbit {
    min-height: 240px;
  }

  .record {
    min-width: 220px;
  }

  .lion-frame figcaption {
    right: 14px;
    bottom: 13px;
    max-width: 170px;
    font-size: 0.62rem;
    text-align: right;
  }

  .socials a {
    width: 46px;
    height: 46px;
  }

  .site-footer {
    display: grid;
    padding: 22px 20px;
  }
}
