:root {
  --ink: #101010;
  --paper: #f8f8f5;
  --white: #ffffff;
  --muted: #626262;
  --line: #deded8;
  --hot: #fb2c6d;
  --aqua: #14a7e8;
  --amber: #ffae2f;
  --green: #52c873;
  --shadow: 0 24px 80px rgba(16, 16, 16, 0.18);
  --shadow-soft: 0 18px 44px rgba(16, 16, 16, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 90px;
  margin: 16px auto 0;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(16, 16, 16, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 16, 16, 0.08);
  box-shadow: 0 16px 40px rgba(16, 16, 16, 0.08);
}

.brand {
  display: grid;
  place-items: center;
  width: 274px;
  height: 52px;
}

.brand img {
  width: 274px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: rgba(16, 16, 16, 0.06);
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .site-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.52)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.02) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 64px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary.light {
  color: var(--white);
}

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

.button-outline {
  color: var(--ink);
  border-color: rgba(16, 16, 16, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.client-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.client-strip-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.client-strip p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.logo-carousel {
  position: relative;
  display: flex;
  gap: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  animation: logo-marquee 54s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-track img,
.logo-track .text-logo {
  width: 164px;
  height: 76px;
  padding: 12px 15px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfb;
}

.text-logo {
  display: grid;
  place-items: center;
  color: #d71920;
  font-size: 0.9rem;
  font-weight: 900;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 18px));
  }
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.reel-copy h2,
.studio-copy h2,
.contact-inner h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.reel-copy p:not(.eyebrow),
.studio-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 44, 109, 0.35);
  box-shadow: 0 18px 50px rgba(16, 16, 16, 0.08);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  color: var(--white);
  font-weight: 900;
  border-radius: 999px;
  background: var(--ink);
}

.service-card:nth-child(2) span,
.service-card:nth-child(5) span {
  background: var(--hot);
}

.service-card:nth-child(3) span,
.service-card:nth-child(6) span {
  background: var(--aqua);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

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

.reel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 44px;
}

.reel-player {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.work-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.work-section .eyebrow {
  color: var(--green);
}

.work-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
}

.work-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #202020;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 260ms ease, opacity 260ms ease;
}

.work-card:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.02) 58%);
}

.work-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.work-card p {
  margin: 0 0 8px;
  color: var(--amber);
  font-weight: 800;
}

.work-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.work-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.portfolio-section {
  padding-top: 104px;
}

.portfolio-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.portfolio-head h1,
.portfolio-head h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.portfolio-page {
  padding-top: 154px;
}

.portfolio-head p:not(.eyebrow) {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.04rem;
}

.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.portfolio-controls button {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.portfolio-controls button.is-active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

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

.portfolio-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(20, 167, 232, 0.38);
  box-shadow: 0 18px 50px rgba(16, 16, 16, 0.08);
  outline: none;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eeeeea;
}

.portfolio-card span {
  margin: 14px 16px 7px;
  color: var(--hot);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card strong {
  display: block;
  min-height: 62px;
  margin: 0 16px 18px;
  font-size: 1rem;
  line-height: 1.16;
}

.portfolio-card.is-extra {
  display: none;
}

.portfolio-section.show-all .portfolio-card.is-extra {
  display: grid;
}

.portfolio-card[hidden] {
  display: none !important;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.project-page {
  padding-top: 154px;
}

.project-back {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.project-back:hover,
.project-back:focus-visible {
  color: var(--ink);
  outline: none;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 42px;
  align-items: end;
}

.project-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.project-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.project-meta span {
  min-height: 34px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.project-content {
  width: min(820px, 100%);
  margin: 64px auto 0;
  color: #242424;
  font-size: 1.08rem;
}

.project-content > * + * {
  margin-top: 20px;
}

.project-content p {
  margin-bottom: 0;
}

.project-content b,
.project-content strong {
  color: var(--ink);
}

.project-content a {
  color: var(--hot);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.project-content img,
.project-content video,
.project-content iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 8px;
}

.project-content iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  background: var(--ink);
}

.youtube-fallback {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.youtube-fallback img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.88;
}

.youtube-fallback-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-soft);
}

.youtube-fallback-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--ink);
  transform: translate(-50%, -50%);
}

.youtube-fallback-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-content ul,
.project-content ol {
  padding-left: 1.2rem;
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 54px;
  align-items: center;
}

.studio-images {
  display: grid;
  gap: 16px;
  align-items: start;
}

.studio-images img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(16, 16, 16, 0.1);
}

.studio-images .team-photo {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: var(--white);
}

.studio-images img:last-child {
  width: 72%;
  aspect-ratio: 16 / 9;
  margin: 0 0 0 auto;
}

.studio-section-link {
  width: fit-content;
  margin-top: 28px;
}

.studio-page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.studio-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.52)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.04) 42%);
}

.studio-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 168px 0 70px;
}

.studio-page-hero-copy h1 {
  max-width: 880px;
  margin: 0;
  font-size: 4.45rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.studio-page-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

.studio-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.studio-facts div {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
}

.studio-facts strong {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
}

.studio-facts span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 750;
}

.studio-intro-section,
.cinema-mix-section,
.spotify-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.studio-intro-copy h2,
.cinema-mix-section h2,
.spotify-copy h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.studio-intro-copy p:not(.eyebrow),
.cinema-mix-section p:not(.eyebrow),
.spotify-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.studio-photo-stack {
  display: grid;
  gap: 16px;
}

.studio-photo-stack img,
.cinema-mix-section img,
.studio-gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.studio-photo-stack img:first-child {
  aspect-ratio: 16 / 10;
}

.studio-photo-stack img:last-child {
  width: 72%;
  aspect-ratio: 4 / 3;
  margin-left: auto;
}

.studio-services-page {
  padding-top: 56px;
}

.studio-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.studio-service-list article {
  min-height: 292px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.studio-service-list article.is-featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.studio-service-list span {
  color: var(--hot);
  font-size: 0.78rem;
  font-weight: 900;
}

.studio-service-list h3 {
  margin: 18px 0 0;
  font-size: 1.55rem;
  line-height: 1.05;
}

.studio-service-list p {
  margin: 16px 0 0;
  color: var(--muted);
}

.studio-service-list article.is-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.cinema-mix-section {
  width: min(1180px, calc(100% - 40px));
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cinema-mix-section img {
  aspect-ratio: 16 / 10;
}

.studio-gallery-section {
  padding-top: 58px;
}

.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.studio-gallery-grid img {
  aspect-ratio: 4 / 5;
}

.spotify-section {
  align-items: start;
  padding-top: 68px;
}

.spotify-section iframe {
  width: 100%;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  background: var(--ink);
}

.studio-testimonials {
  padding-top: 62px;
}

.studio-testimonials .testimonial-grid blockquote {
  min-height: 260px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.studio-testimonials .testimonial-grid p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 760;
}

.studio-testimonials .testimonial-grid cite {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.studio-cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding: 88px 28px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.9), rgba(16, 16, 16, 0.72)),
    url("assets/studio/studio-team-room.jpg") center / cover;
  border-radius: 8px;
}

.studio-cta-section h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.studio-cta-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.8);
}

.studio-cta-section .hero-actions {
  justify-content: center;
}

.process-list {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.process-list div {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-list strong {
  font-size: 1rem;
}

.process-list span {
  color: var(--muted);
}

.testimonials-section {
  padding-top: 32px;
}

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

.testimonial-grid figure {
  min-height: 250px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.testimonial-grid blockquote {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 750;
}

.testimonial-grid figcaption {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  padding: 110px 20px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.9), rgba(16, 16, 16, 0.68)),
    url("assets/studio-team.jpg") center / cover;
}

.contact-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-inner p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.contact-actions {
  justify-content: center;
}

address {
  max-width: 520px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 24px, 720px);
  }

  .brand {
    width: 224px;
    height: 42px;
  }

  .brand img {
    width: 224px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 100px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 6px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 16, 16, 0.08);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(16, 16, 16, 0.18);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    padding: 14px 12px;
    color: var(--ink);
    background: transparent;
  }

  .site-nav .nav-cta {
    color: var(--white);
    background: var(--ink);
    text-align: center;
  }

  .hero h1 {
    max-width: 660px;
    font-size: 3.55rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .logo-track img,
  .logo-track .text-logo {
    width: 146px;
    height: 68px;
  }

  .section-heading h2,
  .reel-copy h2,
  .studio-copy h2,
  .studio-page-hero-copy h1,
  .studio-intro-copy h2,
  .cinema-mix-section h2,
  .spotify-copy h2,
  .studio-cta-section h2,
  .contact-inner h2,
  .portfolio-head h1,
  .portfolio-head h2,
  .project-hero h1 {
    font-size: 2.35rem;
  }

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

  .reel-section,
  .studio-section,
  .studio-intro-section,
  .cinema-mix-section,
  .spotify-section,
  .project-hero,
  .portfolio-head {
    grid-template-columns: 1fr;
  }

  .studio-page-hero-copy {
    padding-top: 150px;
  }

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

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

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

  .work-card {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    margin-top: 10px;
    padding: 10px 12px;
  }

  .brand {
    width: 182px;
    height: 36px;
  }

  .brand img {
    width: 182px;
  }

  .site-nav {
    top: 84px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-inner {
    width: min(100% - 28px, 520px);
    padding: 128px 0 34px;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-proof li {
    min-height: auto;
  }

  .client-strip-inner,
  .section,
  .site-footer {
    width: min(100% - 28px, 520px);
  }

  .logo-track {
    animation-duration: 38s;
  }

  .logo-track img,
  .logo-track .text-logo {
    width: 136px;
    height: 62px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .reel-copy h2,
  .studio-copy h2,
  .studio-page-hero-copy h1,
  .studio-intro-copy h2,
  .cinema-mix-section h2,
  .spotify-copy h2,
  .studio-cta-section h2,
  .contact-inner h2,
  .portfolio-head h1,
  .portfolio-head h2,
  .project-hero h1 {
    font-size: 2rem;
  }

  .project-page {
    padding-top: 120px;
  }

  .project-content {
    margin-top: 44px;
    font-size: 1rem;
  }

  .service-grid,
  .studio-service-list,
  .testimonial-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .work-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .studio-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .studio-images img:first-child,
  .studio-images img:last-child {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
  }

  .studio-images img:last-child {
    margin: 0;
  }

  .studio-page-hero {
    min-height: 88svh;
  }

  .studio-page-hero-copy {
    width: min(100% - 28px, 520px);
    padding: 126px 0 38px;
  }

  .studio-page-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .studio-facts {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 520px);
    margin-top: 14px;
    box-shadow: none;
  }

  .studio-facts div {
    min-height: auto;
  }

  .studio-intro-section,
  .cinema-mix-section,
  .spotify-section,
  .studio-cta-section {
    width: min(100% - 28px, 520px);
  }

  .studio-photo-stack img:first-child,
  .studio-photo-stack img:last-child {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
  }

  .studio-service-list article {
    min-height: auto;
  }

  .studio-gallery-grid {
    grid-template-columns: 1fr;
  }

  .studio-gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .spotify-section iframe {
    height: 440px;
  }

  .studio-testimonials .testimonial-grid blockquote {
    min-height: auto;
  }

  .studio-cta-section {
    margin-top: 10px;
    padding: 66px 18px;
  }

  .contact-section {
    padding: 78px 14px;
  }

  .site-footer {
    display: grid;
  }
}

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

  .logo-track {
    animation: none;
  }
}
