body.studio-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 8%, rgba(253, 2, 75, .2), transparent 30rem),
    linear-gradient(180deg, #050505, #0d0d0d 45%, #050505);
}

.studio-page main {
  padding-top: 96px;
}

.studio-hero {
  min-height: calc(100svh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .88fr);
  align-items: center;
  gap: 6%;
  padding: 60px 5.3% 50px;
  position: relative;
  overflow: hidden;
}

.studio-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(transparent, #000 18%, #000 82%, transparent);
}

.studio-hero > * {
  position: relative;
}

.studio-hero:after {
  content: "";
  position: absolute;
  right: 5%;
  top: 18%;
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(253, 2, 75, .26);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(253, 2, 75, .34) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(253, 2, 75, .34) 50%, transparent 50.2%);
  animation: studio-scan 24s linear infinite;
  pointer-events: none;
}

.studio-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #fd024b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.studio-kicker:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fd024b;
  box-shadow: 0 0 18px rgba(253, 2, 75, .9);
}

.studio-hero h1 {
  margin: 26px 0 24px;
  font-size: clamp(82px, 11vw, 168px);
  line-height: .78;
  letter-spacing: 0;
}

.studio-hero h1 span {
  color: #fd024b;
}

.studio-hero p {
  max-width: 640px;
  color: #d6d6d6;
  font-size: 15px;
  line-height: 1.85;
}

.studio-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.studio-visual {
  position: relative;
  aspect-ratio: 1.05;
  overflow: hidden;
  border: 1px solid rgba(253, 2, 75, .3);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
  animation: studio-card-float 5s ease-in-out infinite;
}

.studio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.05);
}

.studio-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(5, 5, 5, .72)),
    linear-gradient(135deg, rgba(253, 2, 75, .22), transparent 50%);
}

.studio-hud {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.studio-hud span {
  padding: 10px 11px;
  background: rgba(5, 5, 5, .68);
  border: 1px solid rgba(253, 2, 75, .35);
}

.studio-stats,
.studio-dna,
.studio-room {
  padding: 76px 5.3%;
}

.studio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.studio-stat {
  padding: 34px;
  background: #080808;
  transition: transform .22s, background .22s, border-color .22s;
}

.studio-stat:hover {
  transform: translateY(-8px);
  background: rgba(253, 2, 75, .1);
}

.studio-stat strong {
  display: block;
  color: #fd024b;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(46px, 5vw, 74px);
  line-height: .86;
}

.studio-stat span,
.dna-card span,
.room-card span {
  color: #aaa;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.studio-dna-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.studio-dna-head h2 {
  margin: 0;
  max-width: 740px;
}

.studio-dna-head p {
  max-width: 380px;
  margin: 0;
  color: #aaa;
  font-size: 12px;
  line-height: 1.8;
}

.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dna-card,
.room-card {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .24s, border-color .24s, background .24s;
}

.dna-card:hover,
.room-card:hover {
  transform: translateY(-8px);
  border-color: rgba(253, 2, 75, .68);
  background: rgba(253, 2, 75, .1);
}

.dna-card i,
.room-card i {
  display: block;
  color: #fd024b;
  font-size: 34px;
  font-style: normal;
  margin-bottom: 42px;
}

.dna-card h3,
.room-card h3 {
  margin: 0 0 14px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 42px;
  line-height: .95;
}

.dna-card p,
.room-card p {
  margin: 0;
  color: #b9b9b9;
  font-size: 12px;
  line-height: 1.8;
}

.studio-room {
  background: #080808;
}

.room-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 32px;
}

.room-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(253, 2, 75, .24);
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.room-image:hover img {
  transform: scale(1.06);
}

.room-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, .84));
}

.room-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.studio-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 68px 5.3%;
  background: #fd024b;
  color: #fff;
}

.studio-cta h2 {
  margin: 0;
  max-width: 760px;
}

.studio-cta .button {
  background: #050505;
  flex-shrink: 0;
}

html[data-theme=light] body.studio-page,
html[data-theme=light] .studio-room {
  background: #f7f5f3;
  color: #111;
}

html[data-theme=light] .studio-hero p,
html[data-theme=light] .studio-dna-head p,
html[data-theme=light] .dna-card p,
html[data-theme=light] .room-card p {
  color: #555;
}

html[data-theme=light] .studio-stat,
html[data-theme=light] .dna-card,
html[data-theme=light] .room-card {
  background: #fff;
  border-color: rgba(17, 17, 17, .12);
}

html[data-theme=light] .studio-room,
html[data-theme=light] .studio-dna {
  background: #111;
  color: #fff;
}

html[data-theme=light] .studio-dna-head p,
html[data-theme=light] .dna-card p,
html[data-theme=light] .room-card p {
  color: #cfcfcf;
}

html[data-theme=light] .dna-card,
html[data-theme=light] .room-card {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.14);
}

html[data-theme=light] .studio-stat {
  background: #111;
  color: #fff;
}

@media (max-width: 1050px) {
  .studio-hero,
  .room-layout {
    grid-template-columns: 1fr;
  }

  .studio-stats,
  .dna-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .studio-page main {
    padding-top: 76px;
  }

  .studio-hero,
  .studio-stats,
  .studio-dna,
  .studio-room,
  .studio-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .studio-hero {
    min-height: auto;
    padding-top: 46px;
  }

  .studio-hero h1 {
    font-size: 72px;
  }

  .studio-stats,
  .dna-grid,
  .room-cards {
    grid-template-columns: 1fr;
  }

  .studio-dna-head,
  .studio-cta {
    display: block;
  }

  .studio-cta .button {
    margin-top: 22px;
  }

  .room-image {
    min-height: 330px;
  }

  .studio-visual {
    transform: none;
  }
}

@keyframes studio-scan {
  to { rotate: 360deg; }
}

@keyframes studio-card-float {
  50% { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .studio-hero:after,
  .studio-visual {
    animation: none !important;
  }
}
