/* ============================
   CSS VARIABLES & RESET
   ============================ */
:root {
  --black: rgba(10, 10, 10, 0.2);
  --dark: rgba(17, 17, 17, 0.4);
  --dark-2: rgba(26, 26, 26, 0.5);
  --dark-3: rgba(34, 34, 34, 0.6);
  --white: #ffffff;
  --gray: #c2c2c2;
  --gray-light: #e6e6e6;
  --red: #C8A86C;
  --red-dark: #C8A86C;
  --red-glow: rgba(200, 168, 108, 0.3);
  --orange: #ff6b35;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* ============================
   NAVIGATION
   ============================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  margin-left: 12px;
  flex-shrink: 0;
}

.lang-option {
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray);
  transition: var(--transition);
  text-transform: uppercase;
}

.lang-option.active {
  background: var(--red);
  color: var(--white);
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.nav-logo:hover {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  transition: var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================
   SECTION UTILITIES
   ============================ */
.section {
  padding: 120px 48px;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060709;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(120, 8, 24, 0.34), transparent 52%),
    radial-gradient(circle at 78% 30%, rgba(23, 38, 88, 0.32), transparent 58%),
    radial-gradient(circle at 50% 85%, rgba(9, 55, 39, 0.18), transparent 45%),
    linear-gradient(180deg, #07080a 0%, #050608 100%);
}

.hero-ambient {
  position: absolute;
  inset: auto;
  width: 48vw;
  height: 48vw;
  min-width: 420px;
  min-height: 420px;
  filter: blur(24px);
  opacity: 0.28;
  animation: heroFloat 10s ease-in-out infinite;
}

.hero-ambient-left {
  left: -10vw;
  top: 12%;
  background: radial-gradient(circle, rgba(120, 8, 24, 0.65) 0%, rgba(120, 8, 24, 0) 65%);
}

.hero-ambient-right {
  right: -8vw;
  top: 10%;
  background: radial-gradient(circle, rgba(23, 38, 88, 0.8) 0%, rgba(23, 38, 88, 0) 68%);
  animation-delay: -4s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 168, 108, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 168, 108, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.34;
  transform: scale(1.04);
  animation: heroGridDrift 22s linear infinite;
}

.hero-grid-fine {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.18;
  mix-blend-mode: screen;
  animation-duration: 14s;
  animation-direction: reverse;
}

.hero-scan,
.hero-noise,
.hero-vignette,
.hero-frame,
.hero-orb {
  position: absolute;
  inset: 0;
}

.hero-scan {
  background:
    repeating-linear-gradient(to bottom,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 4px);
  opacity: 0.5;
  animation: heroScanFlicker 6s linear infinite;
}

.hero-noise {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 60%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1.5px),
    radial-gradient(circle at 60% 20%, rgba(200, 168, 108, 0.04) 0 1px, transparent 1.5px);
  background-size: 180px 180px, 210px 210px, 160px 160px;
  opacity: 0.25;
  animation: heroNoiseShift 16s linear infinite;
}

.hero-vignette {
  background:
    radial-gradient(ellipse at center, transparent 38%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-frame {
  inset: 72px 44px 24px;
  border: 1px solid rgba(200, 168, 108, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 1;
}

.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200, 168, 108, 0.35), transparent);
}

.hero-frame::before {
  left: 18%;
}

.hero-frame::after {
  right: 18%;
}

.hero-orb {
  inset: auto;
  width: 560px;
  height: 560px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(200, 168, 108, 0.12) 0%, rgba(200, 168, 108, 0.04) 28%, transparent 62%);
  filter: blur(8px);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
  animation: heroOrbPulse 8s ease-in-out infinite;
}

@keyframes heroGridDrift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.06) translate3d(-10px, -6px, 0);
    opacity: 0.42;
  }

  100% {
    transform: scale(1.04) translate3d(-20px, -12px, 0);
    opacity: 0.3;
  }
}

@keyframes heroScanFlicker {
  0%,
  100% {
    opacity: 0.44;
  }

  6% {
    opacity: 0.52;
  }

  7% {
    opacity: 0.38;
  }

  38% {
    opacity: 0.5;
  }

  39% {
    opacity: 0.34;
  }
}

@keyframes heroNoiseShift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 120px 90px, -100px 60px, 90px -120px;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -14px, 0) scale(1.03);
  }
}

@keyframes heroOrbPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.97);
    opacity: 0.78;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.03);
    opacity: 1;
  }
}

.hero-vu {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 88vw);
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  opacity: 0.24;
  pointer-events: none;
  z-index: 2;
  mask-image: linear-gradient(to top, black 75%, transparent 100%);
}

.vu-bar {
  width: 3px;
  background: linear-gradient(to top, rgba(255, 107, 53, 0.15), rgba(200, 168, 108, 0.9));
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 12px rgba(200, 168, 108, 0.18);
  animation: vuBounce var(--duration) ease-in-out infinite alternate;
  animation-delay: var(--delay);
}

@keyframes vuBounce {
  0% {
    height: 8px;
  }

  100% {
    height: var(--max-height);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 88px 24px 120px;
  max-width: 920px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 3px;
  line-height: 0.88;
  margin-bottom: 0;
}

.hero-title span {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #dcdcdc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight {
  background: linear-gradient(180deg, #f4d59f 0%, #c8a86c 55%, #b88d4f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 32px rgba(200, 168, 108, 0.22);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  max-width: 720px;
  margin: 22px auto 38px;
  line-height: 1.7;
  text-wrap: balance;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-kicker-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-kicker {
  margin: 0;
  padding: 8px 14px;
  letter-spacing: 4px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(200, 168, 108, 0.18);
  background: rgba(8, 9, 12, 0.42);
  backdrop-filter: blur(10px);
}

.hero-title-shell {
  position: relative;
  display: inline-block;
  padding: 18px 28px 20px;
}

.hero-title-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(5, 6, 8, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.hero-title-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(1);
  opacity: 1;
  box-shadow: 0 0 14px rgba(200, 168, 108, 0.14);
  transition: transform 0.7s ease 1.45s, opacity 0.45s ease 1.45s;
}

.hero-title-line-top {
  top: 0;
  transform-origin: right center;
}

.hero-title-line-bottom {
  bottom: 0;
  transform-origin: left center;
}

/* Homepage hero simplified: only title + lines, interactive site background visible */
.hero.hero-landing {
  background: transparent;
}

.hero.hero-landing .hero-content {
  padding: 120px 24px 84px;
}

.hero.hero-landing .hero-title-shell {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}

.hero.hero-landing .hero-title-shell::before {
  display: none;
}

.hero.hero-landing .hero-title-line-top {
  top: -12px;
}

.hero.hero-landing .hero-title-line-bottom {
  bottom: -6px;
}

.hero.hero-landing .hero-title-line {
  left: -44px;
  width: calc(100% + 88px);
  height: 4px;
}

.hero.hero-landing .hero-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.26em;
  line-height: 1;
  font-size: clamp(2.95rem, 7.7vw, 6.2rem);
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.hero.hero-landing .hero-title span {
  display: inline-block;
}

.hero.hero-landing .hero-title .highlight {
  background: linear-gradient(180deg, #ffffff 0%, #dcdcdc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-content>* {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-kicker-wrap {
  transition-delay: 0.08s;
}

.hero-title-shell {
  transition-delay: 0.22s;
}

.hero-subtitle {
  transition-delay: 0.38s;
}

.hero-cta {
  transition-delay: 0.52s;
}

.hero-title span {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-title span:nth-child(1) {
  transition-delay: 0.22s;
}

.hero-title span:nth-child(2) {
  transition-delay: 0.3s;
}

.hero-title span:nth-child(3) {
  transition-delay: 0.38s;
}

body.is-loading .hero-content>* {
  opacity: 0;
  transform: translateY(22px);
}

body.is-loading .hero-title span {
  opacity: 0;
  transform: scale(0.96);
}

body.is-loading .hero-title-line {
  transform: scaleX(0);
  opacity: 0;
}

/* Landing title animation: smooth fade + subtle zoom (no staggered word reveal) */
.hero.hero-landing .hero-title {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.hero.hero-landing .hero-title span {
  transition: none;
}

body.is-loading .hero.hero-landing .hero-title-shell {
  opacity: 1;
  transform: none;
}

body.is-loading .hero.hero-landing .hero-title {
  opacity: 0;
  transform: scale(0.94);
}

body.is-loading .hero.hero-landing .hero-title span {
  opacity: 1;
  transform: none;
}

body.is-loading .hero-frame,
body.is-loading .hero-vu,
body.is-loading #particles,
body.is-loading .hero-orb {
  opacity: 0;
}

.hero-frame,
.hero-vu,
#particles,
.hero-orb {
  transition: opacity 0.9s ease;
}

.hero-frame {
  transition-delay: 0.15s;
}

.hero-vu,
.hero-orb {
  transition-delay: 0.45s;
}

#particles {
  transition-delay: 0.55s;
}

#particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Floating particles */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(200, 168, 108, 0.95);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px rgba(200, 168, 108, 0.5);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(110vh) scale(0.6);
  }

  10% {
    opacity: 0.55;
  }

  90% {
    opacity: 0.55;
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) scale(1);
  }
}

/* ============================
   WHY CHOOSE US
   ============================ */
.why-section {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.why-header {
  text-align: center;
  margin-bottom: 72px;
}

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

.why-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(200, 168, 108, 0.2);
  transform: translateY(-4px);
  background: rgba(200, 168, 108, 0.03);
}

.why-card:hover::before {
  width: 80px;
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================
   STATS SECTION
   ============================ */
.stats-section {
  background: var(--black);
  padding: 80px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--white), var(--gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ============================
   ARTISTS CAROUSEL
   ============================ */
.artists-carousel {
  background: var(--dark);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}

.artists-carousel-header {
  text-align: center;
  margin-bottom: 56px;
}

.artists-title-break-mobile {
  display: none;
}

.carousel-track {
  --left: -300rem;
  position: relative;
  min-width: calc(10rem * var(--total));
  height: 22rem;
}

.carousel-item {
  position: absolute;
  width: 20rem;
  height: 20rem;
  left: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
  transform-style: preserve-3d;
  animation: carousel-scroll-left var(--time) linear infinite;
  animation-delay: calc(var(--time) / var(--total) * (var(--i) - 1) - var(--time));
  will-change: left;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  background-color: var(--dark-2);
  transform: rotateY(-20deg);
  transition: 0.5s ease-in-out;
  mask: linear-gradient(black 75%, transparent 100%);
  -webkit-mask: linear-gradient(black 75%, transparent 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.carousel-item:hover img {
  transform: rotateY(0deg) translateY(-0.5rem) scale(1.03);
  box-shadow: 0 12px 40px rgba(200, 168, 108, 0.15);
}

.carousel-artist-name {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.carousel-item:hover .carousel-artist-name {
  color: var(--red);
}

@keyframes carousel-scroll-left {
  to {
    left: var(--left);
  }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
  background: var(--black);
}

.about-header {
  text-align: center;
  margin-bottom: 72px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--dark-2);
  border-radius: 2px;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 168, 108, 0.15);
  border-radius: 2px;
  z-index: 1;
}

.about-image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-inner svg {
  width: 80px;
  height: 80px;
  stroke: rgba(200, 168, 108, 0.3);
  fill: none;
  stroke-width: 1;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-tag {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray);
  transition: var(--transition);
}

.about-tag:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ============================
   SERVICES (WHAT WE DO)
   ============================ */
.services-section {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.services-header {
  text-align: center;
  margin-bottom: 32px;
}

.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}

.service-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  align-items: start;
}

.service-block:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 8px;
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.service-block>div:first-child {
  position: sticky;
  top: 100px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 600px;
}

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

.service-sub-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.service-sub-item:hover {
  border-color: rgba(200, 168, 108, 0.2);
  background: rgba(200, 168, 108, 0.03);
}

.service-sub-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--white);
}

.service-sub-item p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  padding: 120px 48px;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 168, 108, 0.06) 0%, transparent 70%);
}

.cta-banner .section-title {
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ============================
   FOOTER
   ============================ */
footer {
  padding: 60px 48px 30px;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 10px;
  transition: var(--transition);
  font-weight: 300;
  cursor: pointer;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gray);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray);
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--red);
}

.footer-socials a:hover svg {
  stroke: var(--red);
}

/* ============================
   SERVICES PAGE
   ============================ */
.page-hero {
  padding: 160px 48px 80px;
  text-align: center;
  background: var(--dark);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 168, 108, 0.05) 0%, transparent 70%);
}

.page-hero .section-title,
.page-hero .section-subtitle,
.page-hero .section-label {
  position: relative;
  z-index: 1;
}

.page-hero .section-subtitle {
  margin: 0 auto;
}

/* ============================
   PRICING — NEW PREMIUM LAYOUT
   ============================ */
.pricing-section {
  background: var(--black);
  padding: 80px 48px;
}

.pricing-section-alt {
  background: var(--dark);
}

/* Category Headers */
.pricing-category-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}

.pricing-category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 108, 0.25), transparent);
}

.pricing-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 6px;
  color: var(--white);
  white-space: nowrap;
}

.pricing-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 8px;
}

/* Hero Pricing Card (main service) */
.pricing-hero-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.pricing-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red), var(--orange));
}

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

.pricing-hero-card-centered::before {
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background: linear-gradient(to right, var(--red), var(--orange), var(--red));
}

.pricing-hero-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pricing-hero-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--white), var(--gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-hero-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.pricing-hero-right h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 16px;
}

/* Pricing Feature Lists */
.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--gray-light);
  font-weight: 300;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features-compact li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.82rem;
  color: var(--gray-light);
  font-weight: 300;
}

.pricing-features-compact li::before {
  content: '·';
  color: var(--red);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Sub-headers */
.pricing-sub-header {
  margin-bottom: 24px;
}

.pricing-sub-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--gray-light);
}

/* Tier Grid (album discounts, mastering options) */
.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-tier-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 32px;
  transition: var(--transition);
}

.pricing-tier-card:hover {
  border-color: rgba(200, 168, 108, 0.2);
  background: rgba(200, 168, 108, 0.02);
}

.pricing-tier-badge {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-tier-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1;
}

.pricing-tier-price span {
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 1px;
}

/* V2 Pricing Cards (mastering) */
.pricing-card-v2 {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 168, 108, 0.3);
}

.pricing-card-v2.featured {
  border-color: var(--red);
}

.pricing-card-v2.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.pricing-card-v2 h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pricing-card-v2-price {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
  line-height: 1;
}

.pricing-card-v2 .btn {
  width: 100%;
  justify-content: center;
}

.pricing-offer-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-hero-left .btn {
  min-width: 220px;
  justify-content: center;
}

/* Offer Cards (New Client / Bundle) */
.pricing-offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-offer-card {
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--dark);
  transition: var(--transition);
  position: relative;
}

.pricing-offer-card:hover {
  border-color: rgba(200, 168, 108, 0.25);
}

.offer-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--red);
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.pricing-offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 16px;
}

.offer-price span {
  font-size: 0.9rem;
  color: var(--gray);
}

.pricing-offer-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 24px;
}

/* Promo Banner (mastering note) */
.pricing-note-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-left: 3px solid #ffd700;
  margin-top: 8px;
  margin-bottom: 28px;
  position: relative;
}

.pricing-note-banner svg {
  color: #ffd700;
  flex-shrink: 0;
}

.pricing-note-banner p {
  font-size: 0.95rem;
  color: var(--gray-light);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.pricing-note-banner strong {
  color: #ffd700;
  font-weight: 600;
}

/* Rate Cards (recording) */
.pricing-rate-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 36px;
  transition: var(--transition);
}

.pricing-rate-card:hover {
  border-color: rgba(200, 168, 108, 0.2);
}

.pricing-rate-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rate-qualifier {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 1px;
}

.rate-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
}

.rate-price span {
  font-size: 0.9rem;
  color: var(--gray);
}

.rate-detail {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 300;
}

/* Extras Grid */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.extra-item {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.extra-item:hover {
  border-color: rgba(200, 168, 108, 0.2);
}

.extra-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.extra-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 8px;
}

.extra-note {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Policy Grid */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.policy-item {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: var(--transition);
}

.policy-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.policy-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-icon svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.policy-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.policy-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

.policy-item strong {
  color: var(--white);
  font-weight: 500;
}

/* What's included */
.included-section {
  background: var(--black);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.included-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: var(--transition);
}

.included-card:hover {
  border-color: rgba(200, 168, 108, 0.2);
}

.included-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.included-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.included-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.included-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ============================
   STUDIO PAGE
   ============================ */
.studio-showcase {
  background: var(--black);
}

.studio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.studio-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.studio-img {
  aspect-ratio: 16/9;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.studio-img-placeholder {
  text-align: center;
  color: var(--gray);
}

.studio-img-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: rgba(200, 168, 108, 0.2);
  fill: none;
  stroke-width: 1;
  margin-bottom: 8px;
}

.studio-img-placeholder span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Gear list */
.gear-section {
  background: var(--dark);
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.gear-category:last-child {
  grid-column: 1 / -1;
}

.gear-category:last-child ul {
  columns: 3;
  column-gap: 40px;
}

.gear-category:last-child li {
  break-inside: avoid;
}

.gear-category h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 168, 108, 0.2);
  color: var(--white);
}

.gear-category li {
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--gray-light);
  font-weight: 300;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 10px;
}

.gear-category li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Process */
.process-section {
  background: var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  counter-increment: process;
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(200, 168, 108, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 52px;
  right: 0;
  width: calc(100% - 24px);
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.process-step:last-child::after {
  display: none;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-section {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--white);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.contact-item-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.28);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-submit {
  margin-top: 12px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 769px) {
  .contact-item {
    gap: 20px;
    margin-bottom: 34px;
  }

  .contact-item-icon {
    width: 52px;
    height: 52px;
  }

  .contact-item-icon svg {
    width: 22px;
    height: 22px;
  }

  .contact-item-text h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .contact-info .contact-item-text p {
    font-size: 1rem;
  }
}

/* ============================
   GLOBAL READABILITY TUNING
   ============================ */
.section-subtitle,
.hero-subtitle {
  font-size: 1.2rem;
}

.about-text p,
.services-intro,
.service-desc,
.pricing-hero-desc,
.pricing-note-banner p {
  font-size: 1.05rem;
}

.why-card p,
.service-sub-item p,
.pricing-offer-card p,
.policy-item p,
.included-card p,
.process-step p,
.contact-item-text p,
.pricing-features li,
.pricing-features-compact li,
.gear-category li,
.footer-brand p {
  font-size: 0.95rem;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero {
    min-height: 680px;
  }

  .hero-frame {
    inset: 72px 24px 20px;
  }

  .hero-content {
    padding-bottom: 110px;
  }

  .section {
    padding: 80px 32px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .pricing-hero-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .pricing-tier-grid,
  .pricing-offers-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-section {
    padding: 60px 32px;
  }

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

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

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

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

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

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

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    gap: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 64px 20px;
  }

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

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

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

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

  .services-section .service-block>div:first-child {
    top: 92px;
    z-index: 8;
    position: sticky;
    padding: 0;
    margin-bottom: 8px;
    isolation: isolate;
  }

  .services-section .service-block>div:first-child::before {
    content: none;
  }

  .services-section .service-block>div:first-child::after {
    content: none;
  }

  .services-section .service-block>div:first-child>* {
    position: relative;
    z-index: 3;
  }

  .services-section .service-block>div:first-child .service-number {
    position: relative;
    z-index: 12;
  }

  .services-section .service-block h3 {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    margin-bottom: 12px;
    z-index: 4;
  }

  .services-section .service-block h3::before {
    content: '';
    position: absolute;
    left: calc(50% - 50dvw);
    width: 100dvw;
    top: -42px;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background: transparent;
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-mask-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.92) 58%,
        rgba(0, 0, 0, 0.82) 82%,
        rgba(0, 0, 0, 0.65) 100%);
    mask-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.92) 58%,
        rgba(0, 0, 0, 0.82) 82%,
        rgba(0, 0, 0, 0.65) 100%);
  }

  .services-section .service-block h3::after {
    content: '';
    position: absolute;
    left: calc(50% - 50dvw);
    width: 100dvw;
    bottom: -2px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 16%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 84%,
        transparent 100%);
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }

  .hero {
    min-height: 640px;
    height: auto;
    padding-top: 72px;
  }

  .hero-content {
    padding: 48px 18px 104px;
  }

  .hero-frame {
    inset: 72px 10px 12px;
  }

  .hero-frame::before,
  .hero-frame::after,
  .hero-grid-fine,
  .hero-orb {
    display: none;
  }

  .hero-title-shell {
    width: 100%;
    max-width: 560px;
    padding: 14px 14px 16px;
  }

  .hero.hero-landing .hero-content {
    padding: 44px 18px 72px;
  }

  .hero.hero-landing .hero-title-shell {
    width: fit-content;
    max-width: 92vw;
    padding: 8px 0;
  }

  .hero.hero-landing .hero-title-line-top {
    top: -8px;
  }

  .hero.hero-landing .hero-title-line-bottom {
    bottom: -4px;
  }

  .hero.hero-landing .hero-title-line {
    left: -24px;
    width: calc(100% + 48px);
    height: 4px;
  }

  .hero.hero-landing .hero-title {
    gap: 0.22em;
    letter-spacing: 0.09em;
    font-size: clamp(2.2rem, 10.4vw, 4.15rem);
  }

  .hero-kicker {
    font-size: 0.62rem;
    letter-spacing: 2.8px;
    padding: 7px 10px;
  }

  .hero-subtitle {
    margin-top: 18px;
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-vu {
    height: 105px;
    width: min(420px, 92vw);
    gap: 2px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .extras-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 48px 20px;
  }

  .pricing-hero-card {
    padding: 28px;
  }

  .pricing-category-header {
    gap: 16px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  .page-hero {
    padding: 140px 20px 60px;
  }

  .stats-section {
    padding: 60px 20px;
  }

  .artists-carousel {
    padding: 60px 0 80px;
  }

  .carousel-item {
    width: 14rem;
    height: 14rem;
  }

  .carousel-track {
    height: 16rem;
  }

  .artists-title-break-mobile {
    display: block;
  }
}
