@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:400,600,700&display=swap");

:root {
  --bg: #101214;
  --panel: #191d20;
  --panel-2: #22272b;
  --text: #f6f7f8;
  --muted: #b8bec4;
  --accent: #fb0023;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1200px;
  color-scheme: dark;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

html.studio-route {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

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

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

#app:focus {
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 clamp(18px, 4vw, 52px);
  background: #212529;
  border-bottom: 0;
}

.brand img {
  width: clamp(150px, 22vw, 250px);
  height: auto;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
  font-size: 17px;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
}

.home-slider {
  position: relative;
  height: 754px;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 80px 40px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.045);
  transition:
    opacity 0.9s ease,
    transform 2.2s ease;
}

.slide:nth-child(3) {
  align-items: center;
}

.slide.active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
}

.slide.minecraft::before {
  background: rgba(0, 0, 0, 0.15);
}

.slide-content {
  position: relative;
  z-index: 1;
  max-width: 70%;
  text-align: center;
}

.slide h1 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.slide .button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 2px solid #fff;
  border-radius: 0;
  padding: 8px 24px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 72px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-weight: 300;
  line-height: 0.8;
  cursor: pointer;
  opacity: 0.88;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.65);
  transform: translateY(-50%);
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  color: #fff;
  opacity: 1;
}

.slider-arrow:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

.slider-arrow-prev {
  left: 12px;
}

.slider-arrow-next {
  right: 12px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 19px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: 40px;
  line-height: 1.4;
}

h2 {
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.page-lede,
.copy p,
.feature-copy p {
  max-width: 760px;
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.page-section {
  padding: 0;
}

.section-dark {
  background: #0c0d0f;
}

.section-band {
  background: var(--panel);
}

.top-credits {
  display: none;
}

.top-credit {
  position: relative;
  min-height: clamp(260px, 42vw, 520px);
  overflow: hidden;
  background: #000;
}

.top-credit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.top-credit:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.top-credit span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}

.filters {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: center;
  margin: 0 auto 30px;
  padding: 0 18px;
}

.filter-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 0;
  border-radius: 2px;
  padding: 1px 18px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.filter-button::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.filter-button.active,
.filter-button:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.filter-button.active::after,
.filter-button:hover::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.button-link {
  min-height: 40px;
  border: 0;
  border-radius: 5px;
  padding: 1px 30px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.button-link:hover {
  background: var(--accent);
}

#credits-root {
  overflow-anchor: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

#credits-root.is-changing {
  opacity: 0.28;
  pointer-events: none;
  transform: translateY(8px) scale(0.998);
}

#credits-root .credit-grid {
  animation: credits-in 0.6s ease both;
}

@keyframes credits-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.credit-grid {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: height 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.credit-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: #050505;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition:
    transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
    width 1s cubic-bezier(0.22, 0.61, 0.36, 1),
    height 1s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.45s ease;
  will-change: transform, width, height;
}

.credit-grid:not(.is-layout-ready) .credit-card {
  visibility: hidden;
  transition: none;
}

.credit-grid.is-layout-ready .credit-card {
  opacity: 1;
  visibility: visible;
}

.credit-grid .credit-card {
  position: absolute;
  left: 0;
  top: 0;
}

.credit-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.credit-card:hover img {
  transform: scale(1.06);
  opacity: 0.72;
}

.credit-card span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: 5px 8px;
  background: rgba(251, 0, 35, 0.8);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.credit-card:hover span {
  opacity: 1;
}

.split-feature {
  display: grid;
  grid-template-columns: 375px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 620px;
  margin-top: 0;
  background-position: center;
  background-size: cover;
  scroll-margin-top: 82px;
}

.split-feature.reverse {
  grid-template-columns: 375px minmax(0, 1fr);
}

.split-feature.reverse .feature-copy {
  grid-column: 1;
}

.score-image {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.split-feature > img {
  display: none;
}

.mobile-studio-image {
  display: none;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 0;
  padding: 40px 35px;
  background: rgba(11, 14, 16, 0.85);
}

.feature-copy > * {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 1.35s ease,
    transform 1.35s ease;
}

.split-feature.is-visible .feature-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.split-feature.is-visible .feature-copy p {
  transition-delay: 0.45s;
}

.split-feature.is-visible .studio-video {
  transition-delay: 0.75s;
}

.split-feature.is-visible .studio-gallery-link {
  transition-delay: 0.95s;
}

.feature-copy h2 {
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1.3;
}

.feature-copy p {
  color: #fff;
}

.studio-video {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
}

.studio-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.studio-video span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  transform: translate(-50%, -50%);
}

.studio-video span::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 19px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.studio-gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 18px;
  padding: 8px 18px;
  background: #fb0023;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.copy {
  width: min(100%, 870px);
  padding: 40px 35px 50px;
  background: rgba(11, 14, 16, 0.85);
}

.copy p + p {
  margin-top: 24px;
}

.site-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 20px clamp(18px, 4vw, 56px);
  background: #212529;
  color: var(--muted);
  font-size: 15px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  opacity: 0.92;
  transition:
    color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--accent);
  opacity: 1;
  transform: translateY(-1px);
}

.socials a:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: 5px;
}

.socials svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.inner-hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 154px);
  background-position: center;
  background-size: cover;
}

.inner-hero.about {
  background-image: url("/assets/img/about-darius-moldovan-mythix.jpg");
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  background-position: center center;
}

.inner-hero.about .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, clamp(430px, 36vw, 560px));
  min-height: calc(100vh - 154px);
  margin: 0;
  background: rgba(11, 14, 16, 0.7);
  color: #fff;
}

.inner-hero.about .copy > * {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 1.35s ease,
    transform 1.35s ease;
}

.inner-hero.about.is-visible .copy > * {
  opacity: 1;
  transform: translateY(0);
}

.inner-hero.about.is-visible .copy p {
  transition-delay: 0.45s;
}

.inner-hero.about .copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.inner-hero.about .copy p {
  color: #fff;
}

.inner-hero.working {
  background-image: url("/assets/img/working-sfl9778.jpg");
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  background-position: center center;
}

.inner-hero.working .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, clamp(560px, 46vw, 760px));
  min-height: calc(100vh - 154px);
  margin: 0;
  padding: 40px 35px 50px;
  background: rgba(11, 14, 16, 0.7);
  color: #fff;
}

.inner-hero.working .copy > * {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 1.35s ease,
    transform 1.35s ease;
}

.inner-hero.working.is-visible .copy > * {
  opacity: 1;
  transform: translateY(0);
}

.inner-hero.working.is-visible .copy p {
  transition-delay: 0.45s;
}

.inner-hero.working .copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.inner-hero.working .copy p,
.inner-hero.working .copy a {
  color: #fff;
}

.inner-hero.working .copy a {
  color: var(--accent);
  text-decoration-color: rgba(251, 0, 35, 0.55);
  text-underline-offset: 3px;
}

.inner-hero.working .copy a:hover,
.inner-hero.working .copy a:focus-visible {
  color: #fff;
}

.inner-hero.scoring {
  align-items: flex-start;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2)),
    url("/assets/img/c706d345-1307187-1024x576.jpeg");
  background-position: center;
  background-size: cover;
}

.inner-hero.scoring .copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 500px);
  min-height: calc(100vh - 154px);
  margin: 0;
  padding: 0 35px;
  background: rgba(11, 14, 16, 0.7);
  color: #fff;
}

.inner-hero.scoring .copy > * {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 1.35s ease,
    transform 1.35s ease;
}

.inner-hero.scoring.is-visible .copy > * {
  opacity: 1;
  transform: translateY(0);
}

.inner-hero.scoring.is-visible .copy p {
  transition-delay: 0.45s;
}

.score-image {
  width: min(100%, 500px);
  margin: 0 0 28px;
  background: transparent;
}

.inner-hero.scoring .copy p {
  color: #fff;
}

.gallery-page {
  min-height: calc(100vh - 154px);
  padding: 24px 10px 10px;
  background: #000;
}

.gallery-section + .gallery-section {
  margin-top: 58px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
  align-items: center;
  gap: 18px;
  width: min(100%, 460px);
  margin: 0 auto 28px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 5px;
  line-height: 1.2;
}

.gallery-heading::before,
.gallery-heading::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #000;
  cursor: pointer;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition:
    opacity 0.36s ease,
    transform 0.48s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.75);
  outline-offset: -1px;
}

.studio-page {
  background: #020607;
}

.studio-dots {
  position: fixed;
  top: 50%;
  right: 16px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-50%);
}

.studio-dots button {
  position: relative;
  width: 24px;
  height: 24px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.studio-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 10px rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
  transition:
    width 0.22s ease,
    height 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.studio-dots button::after {
  content: attr(aria-label);
  position: absolute;
  top: 50%;
  right: 25px;
  width: max-content;
  max-width: 180px;
  padding: 5px 8px;
  background: rgba(0, 0, 0, 0.62);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.studio-dots button:hover::before,
.studio-dots button:focus-visible::before,
.studio-dots button.active::before {
  width: 12px;
  height: 12px;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(255, 255, 255, 0.32);
}

.studio-dots button:hover::after,
.studio-dots button:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

@media (min-width: 922px) {
  .split-feature {
    min-height: calc(100vh - 82px);
  }
}

.credits-section {
  padding: 22px 0 0;
  background: #000;
}

.home-intro-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0d0f;
}

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

.home-intro {
  display: flex;
  justify-content: center;
  padding: 28px 0 26px;
  text-align: center;
}

.home-intro p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.credits-section .section-inner,
.studio-page .section-inner {
  width: 100%;
  max-width: none;
}

.filter-title {
  margin: 0 0 14px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.socials a:hover {
  color: var(--accent);
}

.lightbox {
  width: min(100% - 32px, 1000px);
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.lightbox-close {
  float: right;
  margin-bottom: 8px;
  border: 0;
  border-radius: 4px;
  padding: 8px 14px;
  background: var(--accent);
  color: white;
  font: inherit;
  cursor: pointer;
}

.lightbox-content {
  clear: both;
  background: #000;
}

.lightbox iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

@media (max-width: 921px) {
  body {
    background: #020607;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 22;
    color: var(--text);
    cursor: pointer;
  }

  .site-header {
    min-height: 72px;
    padding: 0 18px;
    background: rgba(18, 21, 23, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .brand img {
    width: 148px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 18px 18px;
    background: rgba(18, 21, 23, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 18px;
    line-height: 1;
  }

  .home-slider {
    height: calc(34px + min(56.25vw, 285px) + 128px);
    min-height: 330px;
  }

  .slide {
    align-items: center;
    justify-content: flex-start;
    padding: calc(34px + min(56.25vw, 285px) + 14px) 26px 0;
    background-color: #000;
    background-position: center 34px;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide::before,
  .slide.minecraft::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.62));
  }

  .slide.minecraft {
    background-position: center 34px;
  }

  .slide-content {
    width: min(100%, 420px);
    max-width: none;
    margin: 0 auto;
  }

  .slide h1 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 0.95;
    white-space: normal;
  }

  .slide .button-link {
    min-height: 36px;
    padding: 7px 18px;
    font-size: 18px;
  }

  .slider-arrow {
    top: calc(34px + min(56.25vw, 285px) + 58px);
    bottom: auto;
    width: 48px;
    height: 48px;
    font-size: 48px;
    line-height: 0.78;
    opacity: 0.72;
  }

  .slider-arrow-prev {
    left: 16px;
  }

  .slider-arrow-next {
    right: 16px;
  }

  .split-feature,
  .split-feature.reverse {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 72px);
    background-image: none !important;
    scroll-margin-top: 72px;
  }

  .feature-copy,
  .copy {
    width: 100%;
  }

  .mobile-studio-image {
    display: block;
    width: 100%;
    height: min(38svh, 285px);
    object-fit: cover;
  }

  .split-feature > .mobile-studio-image {
    display: block;
  }

  .feature-copy {
    flex: 1;
    justify-content: flex-start;
    padding: 18px 22px 24px;
    background: #020607;
  }

  .feature-copy h2 {
    margin-bottom: 10px;
    font-size: 31px;
    line-height: 0.95;
  }

  .home-intro p {
    font-size: 19px;
  }

  .split-feature:first-child .feature-copy h2 {
    margin-bottom: 10px;
  }

  .feature-copy p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.28;
  }

  .studio-video {
    width: min(100%, 174px);
    margin-top: 8px;
  }

  .studio-video img {
    aspect-ratio: 16 / 9;
  }

  .studio-gallery-link {
    min-height: 30px;
    margin-top: 8px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .inner-hero {
    min-height: calc(100svh - 72px);
  }

  .inner-hero.about {
    display: block;
    min-height: 0;
    background-image: none;
  }

  .inner-hero.about::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 4000 / 2668;
    background-image: url("/assets/img/about-darius-moldovan-mythix.jpg");
    background-position: center top;
    background-size: cover;
  }

  .inner-hero.working {
    display: block;
    min-height: 0;
    background-image: none;
  }

  .inner-hero.working::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 2560 / 1707;
    background-image: url("/assets/img/working-sfl9778.jpg");
    background-position: center;
    background-size: cover;
  }

  .inner-hero.scoring {
    display: block;
    min-height: 0;
    background-image: none;
  }

  .inner-hero.scoring::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-image: url("/assets/img/c706d345-1307187-1024x576.jpeg");
    background-position: center;
    background-size: cover;
  }

  .inner-hero.working .copy,
  .inner-hero.scoring .copy,
  .inner-hero.about .copy {
    min-height: 0;
    padding: 36px 24px 48px;
    background: #0b0e10;
  }

  .inner-hero.working .copy,
  .inner-hero.scoring .copy {
    width: 100%;
  }

  .inner-hero.working .copy h1,
  .inner-hero.about .copy h1 {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1;
  }

  .inner-hero.scoring .copy h1 {
    font-size: 34px;
  }

  .inner-hero.about .copy p,
  .inner-hero.working .copy p,
  .inner-hero.scoring .copy p {
    max-width: none;
    font-size: 18px;
    line-height: 1.44;
  }

  .gallery-page {
    min-height: calc(100svh - 72px);
    padding: 24px 12px 12px;
  }

  .gallery-section + .gallery-section {
    margin-top: 42px;
  }

  .gallery-heading {
    gap: 14px;
    width: min(100%, 320px);
    margin-bottom: 22px;
    font-size: 18px;
    letter-spacing: 4px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .studio-dots {
    right: 2px;
    gap: 0;
  }

  .studio-dots button {
    width: 18px;
    height: 18px;
  }

  .studio-dots button::before {
    width: 3px;
    height: 3px;
  }

  .studio-dots button.active::before {
    width: 8px;
    height: 8px;
  }

  .studio-dots button::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .home-slider {
    height: calc(34px + min(56.25vw, 285px) + 116px);
    min-height: 318px;
  }

  .slide h1 {
    font-size: 28px;
  }

  .home-intro {
    padding: 22px 0 20px;
  }

  .home-intro p {
    font-size: 18px;
  }

  .filter-button {
    min-height: 34px;
    padding: 1px 10px;
    font-size: 14px;
  }

  .filters {
    gap: 2px;
    padding: 0 8px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .credit-card span {
    inset: auto 0 0;
    display: block;
    padding: 5px 5px 6px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
    font-size: 11px;
    line-height: 0.95;
    opacity: 1;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 18px 28px;
    text-align: center;
  }

  .socials {
    gap: 18px;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 132px;
  }

  .slide h1 {
    font-size: 25px;
  }

  .home-intro p,
  .feature-copy p,
  .inner-hero.about .copy p,
  .inner-hero.working .copy p,
  .inner-hero.scoring .copy p {
    font-size: 17px;
  }

  .feature-copy p {
    font-size: 15px;
  }
}
