/* ===== FONTS ===== */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/shared/fonts/space-grotesk-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/shared/fonts/ibm-plex-sans-latin.woff2') format('woff2');
}

/* ===== DESIGN TOKENS ===== */
:root {
  /* Backgrounds — blue-black undertone */
  --bg-primary: #0a0a12;
  --bg-alt: #0f0f1a;
  --bg-card: #161624;
  --bg-elevated: #1c1c30;

  /* Accent colors — from logo nebula gradient */
  --accent-cyan: #00b4d8;
  --accent-magenta: #c2185b;
  --accent-purple: #7c4dff;

  /* Brand gradients */
  --gradient-brand: linear-gradient(135deg, #00b4d8, #7c4dff, #c2185b);
  --gradient-brand-h: linear-gradient(90deg, #00b4d8, #7c4dff, #c2185b);

  /* Text */
  --text-primary: #f0f0f5;
  --text-secondary: #8a8a9a;
  --text-muted: #7a7a8e;

  /* Borders */
  --border: rgba(124,77,255,0.12);
  --border-subtle: rgba(124,77,255,0.06);

  /* Glows */
  --glow-cyan: 0 0 20px rgba(0,180,216,0.25);
  --glow-purple: 0 0 20px rgba(124,77,255,0.25);
  --glow-magenta: 0 0 20px rgba(194,24,91,0.25);

  /* Layout */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50%;
  --max-width: 1200px;
  --section-padding: clamp(56px, 6vw, 96px) 0;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-purple); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E") repeat;
  opacity: 0.015;
  pointer-events: none;
  z-index: 9999;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.section-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 auto 48px;
}
.section-subtitle a { color: var(--accent-cyan); text-decoration: underline; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-brand);
  color: var(--text-primary);
  border: none;
}
.btn-primary:hover {
  color: var(--text-primary);
  box-shadow: var(--glow-purple);
  transform: translateY(-2px) scale(1.02);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), var(--gradient-brand-h);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}
.btn-ghost {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}
.btn-ghost:hover::before {
  opacity: 1;
}
.btn-ghost:hover {
  color: var(--text-primary);
}
.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}
.btn-primary:active {
  box-shadow: none;
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }
.btn[disabled],
.btn.is-loading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10,10,18,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: padding 0.4s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,10,18,0.9);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid;
  border-image: var(--gradient-brand-h) 1;
}
.nav .container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  transition: opacity 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: 0.12em;
}
.nav-logo:hover .nav-logo-text { color: var(--accent-cyan); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent-cyan); }
.nav-cta { margin-left: 8px; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  margin-left: 8px;
}
.lang-switch a { color: var(--text-secondary); font-weight: 500; }
.lang-switch a.active { color: var(--text-primary); }
.lang-switch a:hover { color: var(--accent-cyan); }
.lang-sep { color: var(--text-secondary); opacity: 0.5; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  margin-left: auto;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,77,255,0.15), rgba(10,10,18,0.98) 70%);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
.mobile-menu a:hover { color: var(--accent-cyan); }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-primary);
  background: none;
  border: none;
  transition: color 0.3s ease, transform 0.3s ease;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 1rem;
}
.mobile-lang a {
  font-size: 1rem !important;
  color: var(--text-secondary) !important;
}
.mobile-lang a.active {
  color: var(--text-primary) !important;
}
.mobile-close:hover {
  color: var(--accent-cyan);
  transform: scale(1.1);
}
.mobile-menu.open {
  box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
}

/* ===== HERO (Split Layout) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero-inner {
  display: grid;
  grid-template-columns: 52fr 48fr;
  min-height: 100vh;
  align-items: center;
}
.hero-content {
  padding: 0 clamp(24px, 5vw, 80px);
  padding-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.hero-logo-wrapper {
  position: relative;
  width: clamp(260px, 38vw, 520px);
  margin-bottom: 20px;
}
.hero-logo-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  filter: brightness(3) saturate(2) blur(16px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-logo-full {
  position: relative;
  width: 100%;
  height: auto;
  filter: brightness(100);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hero-content h1 {
  margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: lowercase;
  margin-bottom: 40px;
}
.hero-content .btn-primary {
  padding: 18px 48px;
  font-size: 1.125rem;
  min-width: 220px;
}
.hero-image {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 160px;
  background: linear-gradient(to right, var(--bg-primary), transparent);
  z-index: 1;
}
.hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
}

/* ===== SERVICES (3-Column Cards) ===== */
.services {
  padding: var(--section-padding);
  background: var(--bg-primary);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 24px;
  max-width: var(--max-width);
  margin: 48px auto 0;
  align-items: stretch;
}
.service-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 36px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--accent-purple);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-purple);
}
/* Mixing (1st child) → center column */
.service-row:nth-child(1) {
  order: 2;
  border-top-color: var(--accent-cyan);
}
.service-row:nth-child(1):hover { box-shadow: var(--glow-cyan); }
.service-row:nth-child(2) {
  order: 1;
  border-top-color: var(--accent-purple);
}
.service-row:nth-child(2):hover { box-shadow: var(--glow-purple); }
.service-row:nth-child(3) {
  order: 3;
  border-top-color: var(--accent-magenta);
}
.service-row:nth-child(3):hover { box-shadow: var(--glow-magenta); }
.service-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.service-icon img {
  width: 100%;
  height: 100%;
}
.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  margin-bottom: 8px;
  color: var(--text-primary);
}
.service-body p {
  color: #a0a0b0;
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex: 1;
}
.service-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0,180,216,0.4);
}
.service-link:hover {
  color: var(--accent-purple);
  text-decoration-color: rgba(124,77,255,0.6);
}
.service-row:hover .service-link {
  text-decoration-color: rgba(0,180,216,0.8);
}

/* ===== OUR WORK / AUDIO PLAYER ===== */
.work {
  padding: var(--section-padding);
  background: var(--bg-alt);
}
.audio-player {
  max-width: 680px;
  margin: 48px auto 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  border-top: 2px solid;
  border-image: var(--gradient-brand-h) 1;
  border-image-slice: 1 1 0 1;
}
.player-display {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.player-art {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.player-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; }
.player-artist { font-size: 0.85rem; color: var(--text-secondary); }

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.player-btn {
  color: var(--text-primary);
  transition: color var(--transition);
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-btn:hover { color: var(--accent-cyan); }
.player-btn svg { width: 28px; height: 28px; }
.player-play svg { width: 44px; height: 44px; }
.player-play .icon-play { transform: translateX(2px); }
.player-play {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  color: var(--bg-primary);
  transition: all var(--transition);
}
.player-play:hover {
  transform: scale(1.08);
  box-shadow: var(--glow-purple);
  color: var(--bg-primary);
}
.player-play:active {
  transform: scale(0.95);
}

.player-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.player-time { font-size: 0.75rem; color: var(--text-secondary); min-width: 36px; }
.player-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-elevated);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: height 0.15s ease;
}
.player-bar:hover {
  height: 8px;
}
/* Waveform texture behind progress bar */
.player-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(124,77,255,0.1) 0px,
    rgba(124,77,255,0.1) 2px,
    transparent 2px,
    transparent 5px
  );
}
.player-bar-fill {
  height: 100%;
  background: var(--gradient-brand-h);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  position: relative;
  z-index: 1;
}

.player-tracklist {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.track-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: background 0.15s ease, color 0.15s ease;
  text-align: left;
}
.track-item:hover { background: rgba(124,77,255,0.06); color: var(--text-primary); }
.track-item.active { color: var(--accent-cyan); background: rgba(124,77,255,0.1); }
.track-num { font-size: 0.8rem; opacity: 0.7; width: 20px; }
.track-name { flex: 1; }
.track-duration { font-size: 0.8rem; opacity: 0.7; }

/* ===== ABOUT ===== */
.about {
  padding: var(--section-padding);
  background: var(--bg-primary);
}
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  object-fit: cover;
}
.about-text .section-tag { margin-bottom: 8px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 600px;
}
.about-text a { color: var(--accent-cyan); text-decoration: underline; text-underline-offset: 3px; }

/* ===== STUDIO STRIP ===== */
.studio-strip {
  overflow: hidden;
  height: 220px;
  position: relative;
  background: var(--bg-primary);
}
.studio-strip::before,
.studio-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
}
.studio-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}
.studio-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}
.studio-strip-inner {
  display: flex;
  gap: 4px;
  height: 100%;
  justify-content: center;
  position: relative;
}
/* Color overlay: dark tint with brand gradient blend */
.studio-strip-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,180,216,0.2),
    rgba(124,77,255,0.2),
    rgba(194,24,91,0.2)
  );
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 1;
}
.studio-strip-inner img {
  height: 100%;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.65;
  filter: saturate(0.6) brightness(0.85);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}
.studio-strip-inner img:hover {
  opacity: 1;
  filter: saturate(1) brightness(1);
  transform: scale(1.03);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-alt);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  padding: 48px 36px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 2px solid;
  border-image: var(--gradient-brand-h) 1;
  border-image-slice: 1 1 0 1;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124,77,255,0.12);
}
.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  object-fit: cover;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-band { font-size: 0.85rem; color: var(--accent-cyan); }
/* Quote mark decoration */
.testimonial-card::before {
  content: '\201C';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-cyan);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
}

/* Placeholder testimonial avatar */
.testimonial-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid rgba(124,77,255,0.2);
}
.testimonial-author img {
  border: 2px solid rgba(124,77,255,0.15);
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-padding);
  background: var(--bg-alt);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover {
  border-color: rgba(124,77,255,0.25);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-question:hover {
  color: var(--accent-cyan);
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}
.faq-icon line:first-child {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.faq-item.open .faq-icon line:first-child {
  transform: scaleY(0);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.faq-item.open .faq-answer {
  opacity: 1;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== CONTACT (Dark) ===== */
.contact {
  padding: var(--section-padding);
  background: var(--bg-primary);
}
.contact-content { max-width: 640px; margin: 0 auto; }
.contact-form { margin-top: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-card);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a8a9a' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7a7a8e;
}
.form-group select:invalid,
.form-group select option[disabled] {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.5);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-privacy-notice {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.form-privacy-notice a { color: var(--accent-cyan); text-decoration: underline; }

/* ===== FOOTER (3-column) ===== */
.footer {
  padding: 0;
  background: var(--bg-primary);
}
.footer-divider {
  height: 2px;
  background: var(--gradient-brand-h);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 40px 0 36px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}
.footer-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: flex-start;
}
.footer-nav a { color: var(--text-secondary); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--text-primary); }
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--text-secondary);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
}
.footer-social a:hover { color: var(--accent-cyan); }
.footer-social svg { width: 24px; height: 24px; }
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a { color: var(--text-secondary); font-size: 0.85rem; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ===== LEGAL PAGES ===== */
.page-header {
  padding: 140px 0 60px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.legal-content {
  padding: var(--section-padding);
  background: var(--bg-primary);
}
.legal-content .container { max-width: 800px; }
.legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  color: var(--text-primary);
}
.legal-content h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: var(--text-primary);
}
.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul,
.legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content a { color: var(--accent-cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--accent-purple); }

/* ===== THANK YOU / 404 ===== */
.thankyou-page, .error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
  padding: 24px;
}
.thankyou-page h1, .error-page h1 { margin-bottom: 16px; }
.thankyou-page p, .error-page p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ===== GLOBAL FOCUS & SELECTION ===== */
::selection {
  background: rgba(0,180,216,0.3);
  color: var(--text-primary);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}
.nav-links a:focus-visible {
  outline-offset: 4px;
  border-radius: 2px;
}
.faq-question:focus-visible {
  outline-offset: -2px;
}
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: none; /* Already has custom box-shadow focus */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content {
    padding: 120px 24px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-image {
    height: 50vh;
    min-height: 300px;
  }
  .hero-image::before { display: none; }
  .hero-image::after {
    height: 80px;
    top: 0;
    bottom: auto;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
  }

  .about-grid { grid-template-columns: 320px 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --section-padding: 72px 0; }

  .nav-links, .nav-cta, .lang-switch { display: none; }
  .hamburger { display: flex; }

  .hero-inner { min-height: auto; }
  .hero-content { padding: 100px 24px 40px; }
  .hero-image { height: 40vh; min-height: 250px; }
  .hero-logo-icon { width: 56px; height: 56px; }
  .hero-logo-wrapper { width: clamp(240px, 80vw, 360px); }

  .services-grid { grid-template-columns: 1fr; max-width: 100%; }
  .service-row { gap: 16px; }
  .service-row:nth-child(1) { order: 0; padding: 36px 28px; }
  .service-row:nth-child(2) { order: 0; }
  .service-row:nth-child(3) { order: 0; }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .about-image { display: flex; justify-content: center; }
  .about-image img { max-width: 280px; }
  .about-text .section-tag { text-align: center; }

  .studio-strip { height: 140px; }

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

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

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-meta { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-links { justify-content: center; }
  .footer-brand { align-items: center; }
  .footer-nav { flex-direction: column; align-items: center; }
  .footer-copy { text-align: center; }

  .audio-player { padding: 24px 20px; }
  .player-time { font-size: 0.875rem; }
  .footer-copy { font-size: 0.875rem; }
  .form-privacy-notice { font-size: 0.875rem; }
}

@media (max-width: 480px) {
  :root { --section-padding: 56px 0; }
  .hero-sub { letter-spacing: 0.08em; }
  .service-row { padding: 24px 20px; }
  .testimonial-card { padding: 24px 20px; }
  .studio-strip { height: 100px; }
}
