/* Typography */
@font-face {
  font-family: 'Proxima Soft';
  src: url('assets/fonts/ProximaSoft-Black.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #04070b;
  --color-surface: rgba(8, 15, 24, 0.78);
  --color-panel: #0c111b;
  --color-text: #f8f9fb;
  --color-muted: #9aa7b8;
  --color-accent: #329463;
  --color-accent-soft: rgba(0, 245, 212, 0.15);
  --color-border: rgba(255, 255, 255, 0.12);
  --font-display: 'Proxima Soft', 'Montserrat', 'Avenir', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-width: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-hard: 0 8px 32px rgba(0, 0, 0, 0.6);
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

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

a:hover,
a:focus {
  color: var(--color-accent);
}

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

p {
  line-height: 1.7;
  color: var(--color-muted);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3rem, 6vw + 0.4rem, 5.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.3rem, 1.5vw + 1rem, 1.75rem);
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1rem, 1.2vw + 1rem, 1.4rem);
  max-width: 50ch;
  color: #f8f9fb;
}

.constraint {
  width: min(100% - 2 * var(--gutter), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: clamp(70px, 12vw, 140px) 0;
  position: relative;
}

.section__header {
  max-width: 620px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__header p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(248, 249, 251, 0.98);
  color: #050d19;
  border-bottom: 1px solid rgba(5, 13, 25, 0.1);
  box-shadow: 0 8px 30px rgba(4, 7, 11, 0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--gutter);
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: clamp(1rem, 4vw, 2rem);
}

.brand img {
  width: clamp(120px, 20vw, 170px);
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  margin-left: clamp(1rem, 8vw, 5rem);
}

.site-header .main-nav,
.site-header .nav-bar a {
  color: inherit;
}

.main-nav ul {
  display: flex;
  gap: clamp(0.9rem, 2.5vw, 2rem);
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item--dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
  pointer-events: auto;
}

.nav-item--dropdown > .nav-link::after {
  content: '›';
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 1.1em;
  font-weight: 400;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
  opacity: 0.7;
}

.nav-item--dropdown:hover > .nav-link::after {
  opacity: 1;
  transform: rotate(90deg) translateY(2px);
}


.dropdown-menu {
  display: flex;
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  min-width: auto;
  width: max-content;
  padding: 0.5rem 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.8125);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.35s;
  color: #ffffff;
}

.nav-item--dropdown:hover > .dropdown-menu,
.nav-item--dropdown:focus-within > .dropdown-menu,
.dropdown-menu:hover,
.dropdown-menu:focus-within {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s, 0s, 0s;
}

.dropdown-menu li {
  text-align: left;
  display: block;
  width: 100%;
}

.dropdown-menu li:first-child {
  padding-top: 1rem;
}

.dropdown-menu li:last-child {
  padding-bottom: 1rem;
}

.dropdown-menu a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: left;
  padding: 0.55rem 1.5rem;
  margin: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  display: block;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  text-shadow: none;
  position: relative;
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: #ffffff;
  background: transparent;
  transform: translateX(4px);
}

.dropdown-menu a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  font-weight: 400;
}


.main-nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(5, 13, 25, 0.04);
  border: 1px solid rgba(5, 13, 25, 0.16);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #050d19;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 18vw, 180px) var(--gutter);
  background: url('../images/hero.jpg') center / cover no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4, 7, 11, 0.88) 10%, rgba(4, 7, 11, 0.45) 50%, rgba(4, 7, 11, 0.9) 100%);
  mix-blend-mode: multiply;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero__content h1 {
  color: #f8f9fb;
  margin-bottom: 0.25rem;
}

.studio-hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.hero--studio .lead {
  color: rgba(248, 249, 251, 0.85);
}

.hero--press {
  background: url('../images/IMG_9670.JPG') center / cover no-repeat;
}

.hero--bay {
  background: url('../images/IMG_9688.JPG') center / cover no-repeat;
}

.hero--lab {
  background: url('../images/IMG_9721.JPG') center / cover no-repeat;
}

.hero--studio {
  padding-top: clamp(60px, 9vw, 90px);
  padding-bottom: clamp(60px, 9vw, 90px);
}

.hero--studio .hero__overlay {
  background: linear-gradient(130deg, rgba(4, 7, 11, 0.92) 10%, rgba(4, 7, 11, 0.6) 60%, rgba(4, 7, 11, 0.9) 100%);
}

.hero--film {
  overflow: visible;
  padding-top: clamp(80px, 10vw, 100px);
  padding-left: clamp(32px, 6vw, 80px);
  padding-right: clamp(32px, 6vw, 80px);
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
  justify-content: center;
  align-items: center;
}

.hero__content--with-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.8rem, 5vw, 3.6rem);
  max-width: min(1500px, 100%);
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.hero__title-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}

.hero__video {
  width: 100%;
  max-width: clamp(760px, 78vw, 1440px);
  min-width: 0;
  margin: 0 auto;
}

.hero__video .video-wrapper {
  width: 100%;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.video-gallery {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.video-gallery__player {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.85));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.video-gallery__player::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.video-gallery__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-gallery__status {
  display: grid;
  place-items: center;
  min-height: clamp(240px, 40vw, 380px);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 249, 251, 0.8);
}

.video-gallery__list {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.3rem);
  overflow-x: auto;
  padding: 0.2rem;
  scrollbar-width: thin;
}

.video-gallery__list::-webkit-scrollbar {
  height: 6px;
}

.video-gallery__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.video-gallery__item {
  flex: 0 0 clamp(160px, 28vw, 280px);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.video-gallery__item[aria-current='true'] {
  border-color: rgba(252, 206, 90, 0.8);
  box-shadow: 0 12px 32px rgba(252, 206, 90, 0.25);
}

.video-gallery__item:hover,
.video-gallery__item:focus {
  transform: translateY(-4px);
  border-color: rgba(252, 206, 90, 0.6);
}

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

.video-gallery__thumb--text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(50, 148, 99, 0.2), rgba(0, 0, 0, 0.6));
  border: 2px solid rgba(50, 148, 99, 0.4);
  border-radius: 12px;
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.video-gallery__item:hover .video-gallery__thumb--text,
.video-gallery__item:focus .video-gallery__thumb--text {
  background: radial-gradient(circle at center, rgba(50, 148, 99, 0.3), rgba(0, 0, 0, 0.7));
  border-color: rgba(50, 148, 99, 0.6);
}

.video-gallery__meta {
  padding: 0.85rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.video-gallery__title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-gallery__desc {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  line-height: 1.45;
  color: rgba(248, 249, 251, 0.75);
}

@media (max-width: 768px) {
  .video-gallery__list {
    padding-bottom: 0.8rem;
  }

  .video-gallery__item {
    flex-basis: clamp(200px, 70vw, 240px);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.button--primary {
  background: var(--color-accent);
  color: #f8f9fb;
  box-shadow: 0 12px 30px rgba(50, 148, 99, 0.35);
}

.button--primary:hover,
.button--primary:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(50, 148, 99, 0.45);
  color: #f8f9fb;
}

.button--ghost {
  border-color: transparent;
  color: #f8f9fb;
  background: var(--color-accent);
  box-shadow: 0 12px 30px rgba(50, 148, 99, 0.35);
}

.button--ghost:hover,
.button--ghost:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(50, 148, 99, 0.45);
  color: #f8f9fb;
}

.grid {
  display: grid;
  gap: clamp(2rem, 3vw, 3rem);
}

.grid--about {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
}

.about__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section--studios {
  background:
    radial-gradient(circle at top right, rgba(0, 245, 212, 0.12), rgba(4, 7, 11, 0.85) 60%),
    url('../images/IMG_9678.JPG') center / cover no-repeat;
}

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

.studio-card {
  background: rgba(10, 14, 21, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  backdrop-filter: blur(10px);
}

.studio-card h3 {
  margin: 0;
}

.studio-card__link {
  color: inherit;
  transition: color 0.3s ease;
}

.studio-card__link:hover,
.studio-card__link:focus {
  color: var(--color-accent);
}

.section--team {
  background:
    linear-gradient(140deg, rgba(6, 12, 20, 0.85), rgba(4, 7, 11, 0.82)),
    url('../images/DJI_20200905_184757_280.JPG') center / cover no-repeat;
}

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

.team-card {
  padding: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 7, 14, 0.85);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.25), rgba(0, 245, 212, 0.05));
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.team-card__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 245, 212, 0.3);
  margin-bottom: 0.5rem;
}

.team-card__role {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.team-card__bio {
  margin: 0;
}

.team-card h3 a {
  color: inherit;
  transition: color 0.3s ease;
}

.team-card h3 a:hover,
.team-card h3 a:focus {
  color: var(--color-accent);
}

.team-card__link {
  margin-top: auto;
  color: var(--color-accent);
  font-size: 1.025rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.team-card__link:hover,
.team-card__link:focus {
  transform: translateX(4px);
}

.studio-card__meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
}

.studio-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.studio-card li {
  position: relative;
  padding-left: 1.4rem;
}

.studio-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-soft);
}

.studio-card__more {
  margin-top: auto;
  color: var(--color-accent);
  font-size: 1.025rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.studio-card__more:hover,
.studio-card__more:focus {
  transform: translateX(4px);
}

.section--services {
  background: linear-gradient(135deg, rgba(72, 158, 122, 0.9), rgba(22, 34, 36, 0.78));
}

.grid--services {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.grid--services::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  padding: clamp(1.4rem, 1.6vw + 1rem, 2rem);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(5, 10, 18, 0.9);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  scroll-snap-align: start;
  text-align: center;
}

.service-card h3 {
  text-align: center;
}

.service-card__icon {
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-accent);
  opacity: 0.9;
}

/* Hover effect removed - cards don't pop up on hover */

/* Services Container with Navigation Arrows */
.services-container {
  position: relative;
  margin-top: 2rem;
}

.services-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 17, 27, 0.95);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  outline: none;
}

.services-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgba(20, 25, 35, 0.98);
}

.services-arrow:active {
  background: rgba(50, 148, 99, 0.2);
}

.services-arrow:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.services-arrow--left {
  left: -24px;
}

.services-arrow--right {
  right: -24px;
}

.services-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.section--work {
  background: linear-gradient(160deg, rgba(4, 7, 11, 0.95), rgba(12, 19, 31, 0.92));
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.section--studio-overview {
  background: linear-gradient(rgba(6, 12, 20, 0.85), rgba(6, 12, 20, 0.92)), url('../images/IMG_9685.JPG') center / cover no-repeat fixed;
}

.studio-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.studio-overview__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.studio-overview__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.studio-badge {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-spec-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(3, 6, 12, 0.8);
  padding: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  display: grid;
  gap: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.studio-spec-card h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.studio-spec-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.studio-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.studio-spec-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--color-accent);
  margin-top: 0.4rem;
}

.section--studio-details {
  background: linear-gradient(rgba(2, 5, 11, 0.88), rgba(2, 5, 11, 0.94)), url('../images/IMG_9696.JPG') center / cover no-repeat fixed;
}

.studio-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.8rem, 3vw, 2.8rem);
}

.studio-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(1.6rem, 2vw + 1rem, 2.3rem);
  background: rgba(8, 12, 18, 0.85);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.studio-detail-card h3 {
  margin: 0;
}

.studio-detail-card ul {
  margin: 0;
  padding-left: 0;
  padding-bottom: 1.5rem;
  display: grid;
  gap: 0.75rem;
  color: var(--color-muted);
  list-style: none;
}

.studio-detail-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.studio-detail-card ul li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--color-accent);
  margin-top: 0.4rem;
  flex-shrink: 0;
}

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

.work-card {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: clamp(1.6rem, 2vw + 1rem, 2.2rem);
  background: rgba(8, 12, 18, 0.86);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.work-card__icon {
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 1rem;
}

.work-card h3 {
  text-align: center;
}

.work-card p {
  text-align: center;
}

.work-card__more {
  margin-top: auto;
  color: var(--color-accent);
  font-size: 1.025rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.work-card__more:hover,
.work-card__more:focus {
  transform: translateX(4px);
}

.work-services-divider {
  margin: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 3vw, 3rem) 0;
  padding-top: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.work-services-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--color-text);
  margin: 0;
  text-transform: none;
  letter-spacing: -0.02em;
}

.section--gallery {
  background: radial-gradient(circle at bottom left, rgba(0, 245, 212, 0.08), transparent 45%), rgba(4, 7, 11, 0.96);
}

.gallery-grid {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(200px, 20vw, 280px);
  grid-auto-flow: dense;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  height: 100%;
  margin: 0;
}

.gallery-item img {
  display: block;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5),
.gallery-item:nth-child(8),
.gallery-item:nth-child(11) {
  grid-row: span 2;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(9) {
  grid-column: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(10) {
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  background: rgba(8, 12, 18, 0.8);
  color: rgba(248, 249, 251, 0.75);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item::after {
  display: none;
}

.gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 200;
}

.gallery-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.gallery-overlay__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: min(90vw, 1400px);
}

.gallery-overlay__container > img {
  width: 100%;
}

.gallery-overlay__info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2rem;
}

.gallery-overlay__links {
  flex-shrink: 0;
}

.gallery-overlay__caption {
  text-align: left;
  color: var(--color-text);
  font-size: 0.95rem;
  max-width: 400px;
  order: 1;
}

.gallery-overlay img {
  width: min(90vw, 1400px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.gallery-overlay__alt-text {
  display: block;
  text-align: right;
  color: var(--color-text);
  font-size: 0.95rem;
  max-width: 400px;
  order: 2;
}

.gallery-overlay__alt-text a {
  color: var(--color-text);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.gallery-overlay__alt-text a:hover {
  color: var(--color-primary);
}

/* Gallery-specific styles: caption left, alt text right */
.gallery-overlay--gallery .gallery-overlay__caption {
  text-align: left;
  order: 1;
}

.gallery-overlay--gallery .gallery-overlay__alt-text {
  display: block;
  text-align: right;
  order: 2;
}

/* Album-specific styles: restore original vertical layout */
.gallery-overlay--album .gallery-overlay__caption {
  text-align: right;
  order: 1;
}

.gallery-overlay--album .gallery-overlay__alt-text {
  display: none;
}

.gallery-overlay__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-overlay__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.gallery-overlay__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  justify-content: flex-start;
}

.gallery-overlay__links.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay__link {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.gallery-overlay__link:hover {
  transform: scale(1.1);
}

/* Logo image styling */
.gallery-overlay__link-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-overlay__link-text {
  display: none;
}
}

.hero--albums {
  min-height: auto;
  padding: clamp(80px, 10vw, 120px) var(--gutter) clamp(60px, 8vw, 100px);
}

.hero__content--albums {
  max-width: 100%;
  width: 100%;
}

.hero__content--albums h1 {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section--albums {
  background: var(--color-bg);
}

.albums-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: var(--max-width);
}

.album-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.album-item:hover img {
  opacity: 0.3;
}

.album-item__info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.album-item:hover .album-item__info {
  opacity: 1;
}

.album-item__artist {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.album-item__title {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: var(--color-muted);
  line-height: 1.4;
}

.album-item__links {
  display: none;
  margin-top: 1rem;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.album-item__link {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.album-item__link:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}

.album-item__link-logo {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.albums-grid__status {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--color-muted);
}

/* Audiobooks Grid */
.hero--audiobooks {
  min-height: auto;
  padding: clamp(3rem, 8vw, 5rem) var(--gutter) clamp(4rem, 10vw, 6rem);
  background: var(--color-bg);
}

.hero__content--audiobooks {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero--audiobooks h1 {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.audiobooks-container {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
}

.audiobooks-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: var(--max-width);
}

/* Audiobooks navigation arrows */
.audiobooks-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 17, 27, 0.95);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  outline: none;
}

.audiobooks-arrow--left {
  left: -24px;
}

.audiobooks-arrow--right {
  right: -24px;
}

.audiobooks-arrow:hover,
.audiobooks-arrow:focus {
  background: rgba(50, 148, 99, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.audiobooks-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.audiobook-item {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audiobook-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.audiobook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.audiobook-item:hover img {
  opacity: 0.3;
}

.audiobook-item__info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.audiobook-item:hover .audiobook-item__info {
  opacity: 1;
}

.audiobook-item__title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.audiobook-item__written-by {
  font-size: clamp(0.75rem, 1.3vw, 0.9rem);
  color: var(--color-muted);
  margin-bottom: 0.3rem;
  font-style: italic;
}

.audiobook-item__author {
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  color: var(--color-text);
  line-height: 1.4;
}

.audiobooks-grid__status {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--color-muted);
}

.section--testimonials {
  background: #0b2413;
  overflow: hidden;
}

/* Testimonials Container - Horizontal Scroll */
.testimonials-container {
  margin-top: 2rem;
  position: relative;
}

.testimonials-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonials-grid__status {
  width: 100%;
  padding: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Navigation Arrows */
.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 17, 27, 0.95);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  outline: none;
}

.testimonials-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgba(20, 25, 35, 0.98);
}

.testimonials-arrow:active {
  background: rgba(50, 148, 99, 0.2);
}

.testimonials-arrow:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.testimonials-arrow--left {
  left: -24px;
}

.testimonials-arrow--right {
  right: -24px;
}

/* Hidden state for arrows at edges */
.testimonials-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 300px;
  max-width: 380px;
  height: 480px;
  background: rgba(12, 17, 27, 0.95);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scroll-snap-align: start;
  position: relative;
}

/* Quote Icon */
.testimonial-card__quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  font-family: Georgia, serif;
  font-weight: bold;
  opacity: 0.9;
  height: 3rem;
  flex-shrink: 0;
}

/* Company Logo (top right) */
.testimonial-card__logo {
  position: absolute;
  top: 2rem;
  right: 2rem;
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
  opacity: 0.9;
}

/* Header Section (Name & Designation at top) */
.testimonial-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
  line-height: 1.3;
}

.testimonial-card__designation {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.testimonial-card__company {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

/* Quote Text - Scrollable */
.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) rgba(255, 255, 255, 0.05);
  position: relative;
}

.testimonial-card__text::-webkit-scrollbar {
  width: 6px;
}

.testimonial-card__text::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.testimonial-card__text::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 3px;
}

.testimonial-card__text::-webkit-scrollbar-thumb:hover {
  background: #3fb57a;
}

/* Scroll indicator for long testimonials */
.testimonial-card__scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(12, 17, 27, 0.95));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.testimonial-card__scroll-indicator::before {
  content: '↓';
  color: var(--color-accent);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

.testimonial-card__scroll-indicator.hidden {
  opacity: 0;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Read Full Review Link */
.testimonial-card__link {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.testimonial-card__link:hover,
.testimonial-card__link:focus {
  transform: translateX(4px);
  color: #3fb57a;
}

.testimonial-card__link::after {
  content: '→';
  font-size: 1.1rem;
}

/* Responsive Behavior */
@media (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 280px;
  }
}

@media (max-width: 600px) {
  .testimonials-container {
    padding: 0 3rem;
  }

  .testimonials-grid {
    gap: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    height: 450px;
    padding: 1.5rem;
  }

  .grid--services {
    gap: 1rem;
  }

  .service-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .services-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .services-arrow--left {
    left: 0;
  }

  .services-arrow--right {
    right: 0;
  }

  .services-container {
    padding: 0 3rem;
  }

  .testimonial-card__quote-icon {
    font-size: 3rem;
    height: 2.5rem;
  }

  .testimonial-card__logo {
    max-width: 100px;
    max-height: 32px;
  }

  .testimonial-card__name {
    font-size: 1.05rem;
  }

  .testimonial-card__text {
    font-size: 0.9rem;
  }

  /* Mobile arrow positioning - outside the grid */
  .testimonials-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .testimonials-arrow--left {
    left: 0;
  }

  .testimonials-arrow--right {
    right: 0;
  }

  /* Mobile: Horizontal scrolling for audiobooks */
  .audiobooks-container {
    padding: 0 3rem;
  }

  .audiobooks-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    grid-template-columns: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .audiobooks-grid::-webkit-scrollbar {
    display: none;
  }

  .audiobook-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }

  .audiobooks-arrow {
    display: flex;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .audiobooks-arrow--left {
    left: 0;
  }

  .audiobooks-arrow--right {
    right: 0;
  }

  /* Mobile: Hide streaming links on album items until clicked */
  .album-item__info {
    opacity: 0;
  }

  .album-item img {
    opacity: 1;
  }

  .album-item__links {
    display: none;
  }

  .album-item:hover img {
    opacity: 1;
  }

  /* Mobile: Stack gallery overlay captions vertically */
  .gallery-overlay__info-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .gallery-overlay__caption {
    position: relative;
    max-width: 100%;
    width: 100%;
    text-align: left;
    margin-top: 1rem;
  }

  .gallery-overlay__alt-text {
    display: block;
    max-width: 100%;
    width: 100%;
    text-align: right;
    margin-top: 0.5rem;
  }

  /* Mobile: Gallery-specific styles */
  .gallery-overlay--gallery .gallery-overlay__caption {
    text-align: left;
  }

  .gallery-overlay--gallery .gallery-overlay__alt-text {
    display: block;
    text-align: right;
  }

  /* Mobile: Album-specific styles */
  .gallery-overlay--album .gallery-overlay__caption {
    text-align: center;
  }

  .gallery-overlay--album .gallery-overlay__alt-text {
    display: none;
  }

  .gallery-overlay__links {
    position: relative;
    justify-content: center;
    margin-top: 1rem;
  }

  /* Mobile: Footer grid layout - Visit left, Follow right */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "visit follow";
    gap: 2rem 1.5rem;
  }

  .footer-grid > div:nth-child(1) {
    grid-area: logo;
  }

  .footer-grid > div:nth-child(2) {
    grid-area: visit;
  }

  .footer-grid > div:nth-child(3) {
    grid-area: follow;
  }

  .footer-logo {
    width: 140px;
  }

  /* Mobile: Allow button text to wrap */
  .button {
    white-space: normal;
    text-align: center;
  }
}

.section--cta {
  background: radial-gradient(circle at left, rgba(0, 245, 212, 0.18), transparent 60%), rgba(6, 12, 20, 0.95);
}

.cta {
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: rgba(2, 6, 13, 0.8);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  box-shadow: var(--shadow-hard);
  text-align: center;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer {
  background: #020308;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}

.footer-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-note {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* Team Pages */
.hero--team {
  min-height: auto;
  padding: clamp(40px, 6vw, 60px) var(--gutter) clamp(30px, 4vw, 40px);
  background: rgba(4, 7, 11, 0.96);
}

.hero--team h1 {
  white-space: nowrap;
}

.team-hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.team-hero__role {
  font-size: clamp(1rem, 1.2vw + 1rem, 1.4rem);
  color: rgba(248, 249, 251, 0.85);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.section--team-bio {
  background: rgba(4, 7, 11, 0.96);
  padding: clamp(40px, 8vw, 80px) 0;
}

.team-bio {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.team-bio__photo {
  position: relative;
}

.team-bio__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-bio__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-bio__content h2 {
  margin-bottom: 0.5rem;
}

.section--team-playlists {
  background: var(--color-panel);
  text-align: center;
}

.section--team-playlists h2 {
  margin-bottom: 0.5rem;
}

.section--team-playlists .section__subheading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--color-muted);
}

.team-playlists {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-playlist-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(5, 10, 18, 0.9);
  min-width: 180px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-playlist-link:hover,
.team-playlist-link:focus {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(50, 148, 99, 0.25);
}

.team-playlist-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.team-playlist-link span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* Team Work List - Vertical Bullet Layout */
.section--team-work {
  background: var(--color-panel);
  text-align: center;
}

.section--team-work h2 {
  margin-bottom: 0.5rem;
}

.section--team-work .section__subheading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--color-muted);
}

.team-work-list {
  margin: 0 auto;
  padding-left: 0;
  max-width: 600px;
  display: grid;
  gap: 0.85rem;
  list-style: none;
  text-align: left;
}

.team-work-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.team-work-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--color-accent);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.team-work-list a {
  color: var(--color-text);
  transition: color 0.2s ease;
  line-height: 1.6;
}

.team-work-list a:hover,
.team-work-list a:focus {
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid--studios {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .team-bio {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(240px, 35vw, 360px);
  }

.gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

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

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

@media (max-width: 960px) {
  .hero__content--with-video {
    gap: clamp(1.5rem, 6vw, 2.5rem);
    padding-left: 0;
  }

  .hero__title-stack {
    gap: clamp(1.2rem, 5vw, 2rem);
  }

  .hero__video {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 auto auto;
    top: 70px;
    right: var(--gutter);
    background: rgba(248, 249, 251, 0.98);
    border: 1px solid rgba(5, 13, 25, 0.12);
    border-radius: 18px;
    padding: 1.6rem;
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    color: #050d19;
    box-shadow: 0 18px 40px rgba(4, 7, 11, 0.14);
    margin-left: 0;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .nav-item--dropdown > .nav-link::after {
    display: none;
  }

  .nav-item--dropdown {
    width: 100%;
  }

  .dropdown-menu {
    display: none !important;
  }

  .dropdown-menu li:first-child,
  .dropdown-menu li:last-child {
    padding: 0;
  }

  .dropdown-menu a {
    padding: 0;
    margin: 0;
    border-radius: 0;
    font-size: 0.88rem;
    color: #050d19 !important;
    background: transparent;
    opacity: 1;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus {
    color: #050d19 !important;
    background: transparent;
    transform: translateX(2px);
    opacity: 1;
  }

  .dropdown-menu a[aria-current="page"] {
    color: #050d19 !important;
    background: transparent;
    opacity: 1;
  }

  .dropdown-menu a::after {
    display: none;
  }

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

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

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

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: clamp(240px, 65vw, 420px);
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

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

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

  .team-playlists {
    flex-direction: column;
    gap: 1.5rem;
  }

  .team-playlist-link {
    width: 100%;
    max-width: 100%;
  }

  .hero--team h1 {
    white-space: normal;
  }

  .hero--team {
    min-height: auto;
    padding: clamp(14px, 4.5vw, 20px) var(--gutter) clamp(6px, 3vw, 12px);
    align-items: flex-start;
  }

  .hero--team .hero__content {
    gap: 0.3rem;
  }

  .section--team-bio {
    padding: clamp(10px, 3vw, 16px) 0 clamp(22px, 5vw, 30px);
  }

  .team-bio {
    gap: 1.5rem;
  }

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

  .hero {
    min-height: 90vh;
    padding-top: 70px;
  }
}

@media (max-width: 540px) {
  .hero__content {
    text-align: center;
    align-items: center;
  }

  .hero--team {
    padding: clamp(6px, 3.5vw, 10px) var(--gutter) 0;
    margin-bottom: clamp(-210px, -48vw, -150px);
  }

  .hero--team .hero__content {
    text-align: center;
    align-items: center;
    gap: 0.2rem;
  }

  .section--team-bio {
    padding-top: clamp(0px, 2vw, 6px);
  }

  .team-bio__photo {
    margin-top: clamp(-250px, -58vw, -230px);
  }

  .cta__buttons {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: clamp(0.25rem, 2vw, 0.4rem);
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }
}

/* Phone Popup */
.phone-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.phone-popup[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.phone-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.phone-popup__container {
  position: relative;
  background: var(--color-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.phone-popup[aria-hidden="false"] .phone-popup__container {
  transform: translateY(0);
}

.phone-popup__container h2 {
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  color: var(--color-text);
  text-align: center;
}

.phone-popup__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-popup__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.phone-popup__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.phone-popup__button--whatsapp {
  background: #25D366;
  color: white;
}

.phone-popup__button--whatsapp:hover {
  background: #20BA5A;
}

.phone-popup__button--call {
  background: var(--color-primary);
  color: white;
}

.phone-popup__button--call:hover {
  background: var(--color-primary-dark, #0056b3);
}

.phone-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.phone-popup__close:hover {
  color: var(--color-primary);
}

/* Footer Location Link */
.footer-location {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-location:hover {
  color: var(--color-primary);
}

.footer-location__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  fill: currentColor;
  order: 2;
}

.footer-location__text {
  flex: 1;
  order: 1;
}

/* Force mobile menu when content overflows */
.site-header.force-mobile-menu .nav-toggle {
  display: inline-flex;
}

.site-header.force-mobile-menu .main-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(2, 6, 13, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  z-index: 100;
}

.site-header.force-mobile-menu .main-nav.open {
  max-height: calc(100vh - var(--header-height));
  opacity: 1;
  overflow-y: auto;
}

.site-header.force-mobile-menu .main-nav ul {
  flex-direction: column;
  align-items: stretch;
  padding: 1.5rem;
  gap: 0;
}

.site-header.force-mobile-menu .main-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.force-mobile-menu .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 0 0.75rem 1.5rem;
  margin-top: 0.5rem;
  border-left: 2px solid var(--color-primary);
}
