:root {
  --pink: #e31578;
  --pink-deep: #bd0d5e;
  --ink: #0b090d;
  --muted: #6f6973;
  --paper: #f7f4f6;
  --line: #ded8dc;
  --white: #ffffff;
  --shell: 1180px;
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 230px;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.footer-links a,
.footer-social a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover,
.footer-social a:hover {
  color: #ff62aa;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #f32a8b;
  background: #f32a8b;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
}

.full {
  width: 100%;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.mobile-nav {
  display: none;
  position: relative;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 160px 0 92px;
  background: radial-gradient(circle at 75% 25%, #341027 0, #151018 31%, #0b090d 65%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -250px;
  bottom: -280px;
  border: 1px solid rgba(227, 21, 120, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(227, 21, 120, 0.03), 0 0 0 130px rgba(227, 21, 120, 0.02);
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: 4%;
  top: 15%;
  border-radius: 50%;
  background: rgba(227, 21, 120, 0.16);
  filter: blur(90px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: #d7cfd4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--pink);
}

.eyebrow.dark {
  color: var(--pink-deep);
}

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

h1,
h2,
h3 {
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.08;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(58px, 7.1vw, 100px);
  font-weight: 900;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

h1 em {
  color: #ff3d96;
  font-style: normal;
  font-weight: 900;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 31px;
  color: #c9c0c7;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: #ff62aa;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 580px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-facts div {
  display: grid;
  gap: 2px;
}

.hero-facts strong {
  color: var(--white);
  font-size: 23px;
  font-weight: 900;
}

.hero-facts span {
  color: #978e95;
  font-size: 12px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.image-frame {
  position: absolute;
  inset: 0 0 15px 35px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 230px 230px 30px 30px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 8, 18, 0.02), rgba(17, 7, 15, 0.45));
}

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

.sound-card {
  position: absolute;
  z-index: 3;
  display: flex;
  left: 0;
  bottom: 45px;
  align-items: center;
  gap: 14px;
  min-width: 265px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background: rgba(12, 9, 13, 0.86);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.sound-dot {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff 0 8%, var(--pink) 9% 32%, #4a112f 33% 100%);
  box-shadow: 0 0 0 5px rgba(227, 21, 120, 0.12);
}

.sound-card div {
  display: grid;
}

.sound-card strong {
  font-size: 13px;
}

.sound-card small {
  color: #9f969d;
}

.wave {
  position: absolute;
  z-index: 4;
  display: flex;
  right: 5px;
  top: 57%;
  align-items: center;
  gap: 4px;
  height: 44px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--pink);
  transform: rotate(-90deg);
}

.wave i {
  width: 3px;
  height: 9px;
  border-radius: 9px;
  background: var(--white);
}

.wave i:nth-child(2n) { height: 18px; }
.wave i:nth-child(3n) { height: 28px; }
.wave i:nth-child(5n) { height: 34px; }

.genre-bar {
  padding: 21px 0;
  background: var(--pink);
  color: var(--white);
}

.genre-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 2.8vw, 38px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.genre-inner i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.section {
  padding: 110px 0;
}

.services {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.section-heading h2,
.process h2,
.about h2,
.contact h2,
.legal h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
}

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

.service-card {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 50px rgba(24, 12, 20, 0.05);
}

.service-card.featured {
  border-color: rgba(227, 21, 120, 0.48);
  box-shadow: 0 18px 55px rgba(162, 10, 82, 0.1);
}

.card-topline {
  display: flex;
  min-height: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  color: var(--pink-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-topline b {
  padding: 5px 10px;
  border-radius: 999px;
  background: #fae3ee;
  font-size: 10px;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.service-card > p {
  color: var(--muted);
  font-size: 14px;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 11px 0 30px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 25px;
  font-size: 13px;
  line-height: 1.55;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-weight: 900;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: auto 0 19px;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
}

.price-row strong {
  font-size: 34px;
  font-weight: 900;
}

.price-note {
  margin-top: auto !important;
  margin-bottom: 21px !important;
  font-size: 13px !important;
}

.pricing-note {
  margin: 21px 0 0;
  color: #817a80;
  font-size: 12px;
  text-align: center;
}

.process {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.process-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.process-intro h2 {
  margin-bottom: 28px;
}

.process-intro > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: #a79da4;
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.steps li:first-child {
  padding-top: 0;
}

.steps > li > span {
  color: var(--pink);
  font-size: 23px;
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 27px;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: #9f969d;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.about-image {
  position: relative;
  overflow: visible;
}

.about-image img {
  width: 100%;
  aspect-ratio: 0.82;
  border-radius: 28px;
  object-fit: cover;
  object-position: 55% center;
  box-shadow: 0 28px 70px rgba(27, 11, 22, 0.15);
}

.year-badge {
  position: absolute;
  display: grid;
  right: -32px;
  bottom: 45px;
  width: 130px;
  height: 130px;
  align-content: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  text-align: center;
}

.year-badge strong {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.year-badge span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 27px;
}

.about-copy .lead {
  color: #312b30;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.values div {
  padding: 19px 17px;
  border-radius: 15px;
  background: var(--paper);
}

.values strong,
.values span {
  display: block;
}

.values strong {
  margin-bottom: 4px;
  color: var(--pink-deep);
  font-size: 13px;
}

.values span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.contact {
  padding: 30px 0 100px;
  background: var(--white);
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 65px 70px;
  border-radius: 30px;
  background: linear-gradient(125deg, #c80d64, #ec1c80);
  color: var(--white);
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -160px;
  top: -170px;
  border: 50px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.contact-card h2 {
  margin-bottom: 18px;
}

.contact-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: #ffe1ef;
}

.contact-card .eyebrow {
  color: #ffe1ef;
}

.contact-card .eyebrow span {
  background: var(--white);
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: stretch;
  gap: 16px;
}

.button-white {
  border-color: var(--white);
  background: var(--white);
  color: var(--pink-deep);
}

.button-white:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.phone-link {
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
  text-align: center;
}

.legal-label {
  margin-bottom: 9px;
  color: var(--pink-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  background: var(--ink);
  color: var(--white);
}

.legal-header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.back-link {
  color: #d8d0d5;
  font-size: 13px;
  font-weight: 800;
}

.back-link:hover {
  color: #ff62aa;
}

.legal-main {
  padding: 90px 0 110px;
}

.legal-document {
  max-width: 840px;
  padding: 54px 60px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(28, 12, 22, 0.07);
}

.legal-document h1 {
  margin-bottom: 38px;
  color: var(--ink);
  font-size: clamp(45px, 7vw, 72px);
}

.legal-document h2 {
  margin: 35px 0 10px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.legal-document p,
.legal-document address {
  color: #5e575c;
  font-size: 14px;
  line-height: 1.75;
}

.legal-document address {
  font-style: normal;
}

.legal-document a {
  color: var(--pink-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  padding: 25px 0;
}

.legal-footer .shell {
  display: flex;
  gap: 24px;
  align-items: center;
  color: #948a91;
  font-size: 12px;
}

.legal-footer span {
  margin-left: auto;
}

footer {
  padding: 60px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 60px;
  padding-bottom: 45px;
}

.footer-brand {
  width: 215px;
}

.footer-links,
.footer-social {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
}

.footer-social {
  color: #b2a8af;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #746c72;
  font-size: 11px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .header-inner > .button {
    margin-left: auto;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    display: grid;
    right: 0;
    top: 40px;
    min-width: 190px;
    overflow: hidden;
    border: 1px solid #3e343b;
    border-radius: 14px;
    background: #161217;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  }

  .mobile-nav nav a {
    padding: 13px 18px;
    border-bottom: 1px solid #30272d;
    font-size: 13px;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 35px;
  }

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

  .service-card.label-card {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .about-grid {
    gap: 60px;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    justify-self: end;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .header-inner {
    min-height: 74px;
    gap: 18px;
  }

  .brand {
    width: 158px;
  }

  .header-inner > .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 68px;
  }

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

  h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-facts {
    margin-top: 36px;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 10px;
  }

  .image-frame {
    inset: 0 12px 0 12px;
    border-radius: 180px 180px 24px 24px;
  }

  .sound-card {
    left: 0;
    bottom: 25px;
    min-width: 235px;
  }

  .wave {
    right: -7px;
  }

  .genre-inner {
    flex-wrap: wrap;
    gap: 9px 14px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading,
  .process-grid,
  .about-grid,
  .contact-card,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 35px;
  }

  .section-heading h2,
  .process h2,
  .about h2,
  .contact h2 {
    font-size: 43px;
  }

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

  .service-card,
  .service-card.label-card {
    min-height: auto;
    grid-column: auto;
    padding: 28px;
  }

  .price-row,
  .price-note {
    margin-top: 25px !important;
  }

  .process-grid {
    gap: 50px;
  }

  .process-intro {
    position: static;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
  }

  .about-grid {
    gap: 57px;
  }

  .about-image {
    width: calc(100% - 22px);
  }

  .about-image img {
    aspect-ratio: 0.93;
  }

  .year-badge {
    right: -22px;
    bottom: 25px;
    width: 108px;
    height: 108px;
    border-width: 6px;
  }

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

  .contact {
    padding: 10px 0 70px;
  }

  .contact-card {
    gap: 38px;
    padding: 42px 27px;
  }

  .legal {
    padding: 70px 0;
  }

  .legal-grid {
    gap: 70px;
  }

  .legal-header-inner {
    min-height: 74px;
  }

  .legal-header .brand {
    width: 150px;
  }

  .back-link {
    font-size: 11px;
  }

  .legal-main {
    padding: 35px 0 60px;
  }

  .legal-document {
    padding: 34px 24px;
    border-radius: 18px;
  }

  .legal-footer .shell {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .legal-footer span {
    width: 100%;
    margin-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-social,
  .footer-links {
    display: grid;
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    gap: 12px;
  }

  .footer-bottom {
    gap: 8px;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
