:root {
  --bg: #f4eee6;
  --bg-soft: #fbf7f1;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(27, 21, 20, 0.1);
  --ink: #181310;
  --muted: #6d625b;
  --dark: #121218;
  --dark-soft: #1a1a25;
  --cyan: #13c7d2;
  --pink: #ef5798;
  --blue: #4455ff;
  --shadow: 0 28px 90px rgba(18, 18, 24, 0.12);
  --radius: 2rem;
  --radius-sm: 1.25rem;
  --container: min(1280px, calc(100vw - 2.4rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 14%, rgba(239, 87, 152, 0.1), transparent 28%),
    radial-gradient(circle at 80% 22%, rgba(19, 199, 210, 0.08), transparent 24%),
    var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.55;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.4vw, 1.2rem);
  z-index: 1;
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section--dark {
  color: #f9f7f1;
  background:
    radial-gradient(circle at 24% 24%, rgba(239, 87, 152, 0.26), transparent 22%),
    radial-gradient(circle at 82% 28%, rgba(19, 199, 210, 0.2), transparent 20%),
    linear-gradient(135deg, #101018 0%, #141424 52%, #09090e 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 3rem;
}

.section-heading h2,
.story__copy h2,
.music__intro h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.5rem, 4vw, 4.85rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.section-heading p:last-child,
.story__copy p,
.music__intro p {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding-top: 1rem;
}

.site-nav {
  width: min(1380px, calc(100vw - 1.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(11, 11, 17, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    color 220ms var(--ease),
    backdrop-filter 220ms var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(248, 241, 233, 0.7);
  color: var(--ink);
  border-color: rgba(24, 19, 16, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(24, 19, 16, 0.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.88;
  text-transform: uppercase;
}

.brand__serif {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  text-transform: none;
}

.brand__sans {
  font-size: clamp(1.45rem, 1.75vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(24, 19, 16, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(0.21rem) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-0.21rem) rotate(-45deg);
}

.menu-panel {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-panel > a:not(.button) {
  position: relative;
  color: currentColor;
  opacity: 0.72;
  transition: color 180ms ease;
}

.menu-panel > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms var(--ease);
}

.menu-panel > a:not(.button):hover {
  opacity: 1;
}

.menu-panel > a:not(.button):hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

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

.button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.button--primary {
  color: var(--ink);
  background: linear-gradient(135deg, #e9ff67 0%, #b6ff7c 100%);
  box-shadow: 0 18px 34px rgba(187, 255, 112, 0.22);
}

.button--ghost {
  border-color: rgba(24, 19, 16, 0.16);
  background: rgba(255, 255, 255, 0.56);
}

.hero .button--ghost {
  color: #fff9f1;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.button--small {
  min-height: 3rem;
  padding-inline: 1.2rem;
}

.hero {
  position: relative;
  isolation: isolate;
  --hero-progress: 0;
  --hero-copy-shift: 0px;
  --hero-stage-shift: 0px;
  --hero-media-scale: 1;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #090910 0%, #0f1018 52%, #171621 100%);
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, rgba(23, 22, 33, 0), rgba(244, 238, 230, 1));
  z-index: 1;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: saturate(1.15) contrast(1.12) brightness(0.52);
  transform: scale(calc(1.08 + (var(--hero-progress) * 0.08)));
  transform-origin: center center;
}

.hero-media__scrim,
.hero-media__wash,
.hero-media__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media__scrim {
  background:
    radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(90deg, rgba(9, 9, 14, 0.9) 0%, rgba(9, 9, 14, 0.62) 38%, rgba(9, 9, 14, 0.28) 100%);
}

.hero-media__wash {
  background:
    radial-gradient(circle at 72% 42%, rgba(68, 85, 255, 0.18), transparent 26%),
    radial-gradient(circle at 30% 30%, rgba(239, 87, 152, 0.24), transparent 24%),
    radial-gradient(circle at 82% 68%, rgba(19, 199, 210, 0.18), transparent 22%);
  mix-blend-mode: screen;
}

.hero-media__scan {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.18;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.42fr 0.92fr 1.14fr;
  align-items: center;
  gap: clamp(1.2rem, 2.1vw, 2.8rem);
  padding-top: clamp(3.4rem, 8vh, 6.4rem);
}

.hero__grid > *,
.story__grid > *,
.music__grid > * {
  min-width: 0;
}

.hero-card {
  align-self: flex-end;
  width: min(15rem, 100%);
  padding: 1.4rem;
  margin-bottom: 4rem;
  color: rgba(249, 247, 241, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.65rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 1.12rem;
  margin-bottom: 0.7rem;
}

.hero-card span {
  color: rgba(249, 247, 241, 0.66);
  font-size: 0.9rem;
  line-height: 1.7;
}

.hero-card__divider {
  width: 100%;
  height: 1px;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent);
}

.hero-copy {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  color: #f9f7f1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(11, 11, 17, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  backdrop-filter: blur(24px);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28);
}

.hero-eyebrow {
  color: rgba(249, 247, 241, 0.58);
}

.hero-title {
  margin: 0;
  line-height: 0.9;
}

.hero-title__line {
  display: block;
}

.hero-title__line--top {
  font-size: clamp(4.3rem, 9vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.hero-title__line--bottom {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
  transform: translateY(-0.2rem);
}

.hero-copy__lead {
  max-width: 33rem;
  margin: 1.6rem 0 0;
  font-size: 1.04rem;
  line-height: 1.85;
  color: rgba(249, 247, 241, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.hero-bullets {
  display: grid;
  gap: 0.8rem;
  padding: 1.6rem 0 0;
  margin: 1.6rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-bullets li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(249, 247, 241, 0.72);
  font-size: 0.94rem;
  line-height: 1.7;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}

.hero-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 46rem;
  --tilt-x: 0px;
  --tilt-y: 0px;
}

.hero-stage__glow,
.hero-stage__halo,
.hero-stage__beam {
  position: absolute;
  inset: auto;
}

.hero-stage__glow {
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(239, 87, 152, 0.26) 0%, rgba(239, 87, 152, 0.03) 56%, transparent 72%),
    radial-gradient(circle at 68% 38%, rgba(19, 199, 210, 0.28), transparent 38%);
  filter: blur(28px);
}

.hero-stage__halo {
  width: min(82vw, 36rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 62%, transparent 78%);
}

.hero-stage__beam {
  width: 24rem;
  height: 18rem;
  right: 3rem;
  top: 3rem;
  background: linear-gradient(135deg, rgba(19, 199, 210, 0.28), rgba(68, 85, 255, 0), rgba(239, 87, 152, 0.24));
  filter: blur(34px);
  transform: rotate(-20deg);
}

.hero-stage__frame {
  position: relative;
  width: min(40rem, 100%);
  aspect-ratio: 0.9 / 1.08;
  border-radius: 2.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #03050a;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.38);
  transform: translate3d(var(--tilt-x), var(--tilt-y), 0) scale(calc(1 + (var(--hero-progress) * 0.05)));
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.hero-stage__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 22%, transparent 68%, rgba(9, 9, 14, 0.22)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%);
  z-index: 3;
  pointer-events: none;
}

.hero-stage__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.08) brightness(0.9);
  transform: scale(1.08);
}

.hero-stage__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 22%, rgba(239, 87, 152, 0.22), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(68, 85, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(7, 7, 12, 0.02), rgba(7, 7, 12, 0.3));
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-stage__meta {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.35rem;
  z-index: 4;
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(7, 7, 12, 0.18), rgba(7, 7, 12, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stage__meta-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 247, 241, 0.58);
}

.hero-stage__meta strong {
  color: #fff9f1;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-stage__label {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  display: flex;
  gap: 0.8rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 4;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.hero-scroll__line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.08));
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.75);
    opacity: 0.6;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero-contour {
  position: absolute;
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
  pointer-events: none;
}

.hero-contour--left {
  left: -12rem;
  top: -8rem;
  width: clamp(26rem, 40vw, 42rem);
  transform: translate3d(calc(var(--hero-progress) * -36px), calc(var(--hero-progress) * 18px), 0);
}

.hero-contour--right {
  right: -16rem;
  top: -4rem;
  width: clamp(26rem, 44vw, 48rem);
  transform: translate3d(calc(var(--hero-progress) * 42px), calc(var(--hero-progress) * -14px), 0);
}

.story__grid,
.music__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.story__portrait {
  position: relative;
}

.story__image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  border: 1px solid rgba(24, 19, 16, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.story__image-shell::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 199, 210, 0.28), transparent 72%);
  filter: blur(8px);
}

.story__image-shell img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.quote-block {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.52);
  border-radius: 0 1.5rem 1.5rem 0;
  box-shadow: 0 20px 40px rgba(24, 19, 16, 0.06);
}

.quote-block p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.services__grid,
.social__grid {
  display: grid;
  gap: 1.3rem;
}

.services__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.6rem;
  min-height: 18rem;
  border-radius: 2rem;
  border: 1px solid rgba(24, 19, 16, 0.08);
  background:
    radial-gradient(circle at top right, rgba(239, 87, 152, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow);
}

.service-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(24, 19, 16, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin: 0 0 1rem;
  font-size: 1.38rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.music__intro p {
  color: rgba(249, 247, 241, 0.7);
}

.music-showcase {
  display: grid;
  gap: 1rem;
}

.music-feature,
.playlist-panel,
.contact-panel,
.social-card {
  border-radius: 2rem;
}

.music-feature {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

.music-feature__art {
  overflow: hidden;
  border-radius: 1.4rem;
}

.music-feature__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-feature__content {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: 0.6rem;
}

.music-feature__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 247, 241, 0.55);
}

.music-feature__content h3 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  font-weight: 400;
}

.music-feature__content p {
  margin: 0;
  color: rgba(249, 247, 241, 0.72);
  line-height: 1.75;
}

.playlist-panel {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.playlist-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.playlist-row:last-child {
  border-bottom: 0;
}

.playlist-row span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(249, 247, 241, 0.52);
}

.playlist-row strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.playlist-row p {
  margin: 0;
  color: rgba(249, 247, 241, 0.68);
  line-height: 1.7;
}

.social__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-card {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border: 1px solid rgba(24, 19, 16, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.social-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card__overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem;
  border-radius: 1.25rem;
  color: #fbf7f1;
  background: linear-gradient(180deg, rgba(9, 9, 14, 0.04), rgba(9, 9, 14, 0.8));
}

.social-card__overlay span,
.social-card--text span {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-card__overlay span {
  color: rgba(251, 247, 241, 0.7);
}

.social-card__overlay strong,
.social-card--text strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.2;
}

.social-card--text {
  display: grid;
  align-content: end;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(68, 85, 255, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.94));
}

.social-card--text p {
  margin: 0.9rem 0 0;
  line-height: 1.75;
  color: var(--muted);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background:
    radial-gradient(circle at 86% 16%, rgba(19, 199, 210, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(24, 19, 16, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.reveal.is-visible {
  transform: translate3d(0, var(--hero-copy-shift), 0);
}

.hero-card.reveal.is-visible {
  transform: translate3d(0, calc(var(--hero-copy-shift) * 0.35), 0);
}

.hero-stage.reveal.is-visible {
  transform: translate3d(0, var(--hero-stage-shift), 0);
}

.reveal--delay-1 {
  transition-delay: 80ms;
}

.reveal--delay-2 {
  transition-delay: 150ms;
}

.reveal--delay-3 {
  transition-delay: 220ms;
}

body.is-loaded .hero-media__video {
  animation: heroMediaBloom 1800ms 120ms var(--ease) both;
}

body.is-loaded .hero-stage__frame {
  animation: heroImageLift 1100ms 220ms var(--ease) both;
}

body.is-loaded .hero-stage__video {
  animation: heroMask 1200ms 160ms var(--ease) both;
}

body.is-loaded .hero-stage__halo {
  animation: heroHalo 1400ms 200ms var(--ease) both;
}

body.is-loaded .hero-copy {
  animation: heroCopyRise 950ms 180ms var(--ease) both;
}

@keyframes heroMediaBloom {
  0% {
    opacity: 0;
    transform: scale(1.18);
  }

  100% {
    opacity: 0.44;
    transform: scale(calc(1.08 + (var(--hero-progress) * 0.08)));
  }
}

@keyframes heroImageLift {
  0% {
    opacity: 0;
    transform: translate3d(0, 90px, 0) scale(0.92);
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--tilt-x), var(--tilt-y), 0) scale(1);
  }
}

@keyframes heroMask {
  0% {
    clip-path: inset(100% 0 0 0 round 2.8rem);
    filter: blur(14px) saturate(1.2);
  }

  65% {
    clip-path: inset(0 0 0 0 round 2.8rem);
    filter: blur(0) saturate(1.04);
  }

  100% {
    clip-path: inset(0 0 0 0 round 2.8rem);
    filter: blur(0) saturate(1.02);
  }
}

@keyframes heroHalo {
  0% {
    opacity: 0;
    transform: scale(0.84);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroCopyRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, var(--hero-copy-shift), 0);
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .story__grid,
  .music__grid,
  .services__grid,
  .social__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7.2rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-card {
    order: 3;
    margin-bottom: 0;
  }

  .hero-stage {
    order: 2;
    min-height: auto;
  }

  .hero-stage__frame {
    width: min(100%, 34rem);
  }

  .hero-stage__label {
    bottom: -0.8rem;
  }

  .music-feature {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .site-nav {
    border-radius: 1.5rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1.5rem;
    background: rgba(248, 241, 233, 0.95);
    border: 1px solid rgba(24, 19, 16, 0.08);
    box-shadow: 0 20px 50px rgba(24, 19, 16, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms var(--ease),
      transform 180ms var(--ease);
  }

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

  .hero-copy h1 {
    font-size: inherit;
  }

  .hero-copy {
    padding: 1.4rem;
    width: min(100%, 24rem);
    justify-self: center;
  }

  .hero-title__line--top {
    font-size: clamp(3.7rem, 17vw, 6.2rem);
  }

  .hero-title__line--bottom {
    font-size: clamp(3rem, 14vw, 5.3rem);
  }

  .hero-actions,
  .contact-panel__actions {
    width: 100%;
  }

  .hero-actions .button,
  .contact-panel__actions .button {
    flex: 1 1 100%;
  }

  .hero-stage__label {
    position: static;
    margin-top: 0.8rem;
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .hero-stage__meta {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .hero-stage {
    width: min(100%, 24rem);
    justify-self: center;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 4.5rem;
  }

  .hero-card,
  .service-card,
  .social-card,
  .contact-panel,
  .music-feature,
  .playlist-panel {
    border-radius: 1.45rem;
  }

  .hero-stage__frame {
    border-radius: 2rem;
    aspect-ratio: 4 / 5;
  }

  .hero-stage__video {
    transform: scale(1.04);
  }

  .hero-stage__label {
    justify-content: space-between;
    width: 100%;
  }

  .hero-title__line--top {
    letter-spacing: -0.07em;
  }

  .hero-title__line--bottom {
    transform: none;
  }

  .hero-media__video {
    object-position: 62% center;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
