.wave-sep {
  color: color-mix(in oklab, var(--bg-elev) 54%, transparent);
}
.wave-sep svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Feature blocks with media */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}
@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.feature-image,
.about-image {
  position: relative;
}
.feature-image::after,
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      60% 40% at 20% 10%,
      rgba(199, 174, 106, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
  mix-blend-mode: overlay;
}
.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms ease,
    box-shadow 600ms ease;
  filter: saturate(120%) contrast(112%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.feature-copy p {
  color: var(--muted);
}
.feature-grid:hover .feature-image img {
  transform: scale(1.07);
  filter: saturate(125%) contrast(116%);
}
.about-image img {
  transform: scale(1.02);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms ease;
  filter: saturate(116%) contrast(110%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}
.about-image:hover img {
  transform: scale(1.06);
  filter: saturate(122%) contrast(114%);
}
:root {
  --bg: #0e0e10; /* near black */
  --bg-elev: #141416;
  --text: #f5f6f7;
  --muted: #b7bbc0;
  --brand: #c7ae6a; /* primary gold */
  --brand-2: #b99a45; /* secondary gold */
  --border: #26272b;
  --success: #3fbf7f;
}

* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0f0f12 0%, #0d0d10 40%, #0c0c0e 100%);
  line-height: 1.6;
}

/* Aurora background */
.fx-aurora {
  position: fixed;
  inset: -20% -10%;
  pointer-events: none;
  background: radial-gradient(
      60% 40% at 20% 20%,
      rgba(199, 174, 106, 0.14),
      transparent 60%
    ),
    radial-gradient(
      55% 35% at 80% 10%,
      rgba(185, 154, 69, 0.12),
      transparent 60%
    ),
    radial-gradient(
      75% 55% at 50% 80%,
      rgba(231, 210, 150, 0.1),
      transparent 60%
    );
  filter: blur(90px) saturate(120%);
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  transform: translateZ(0);
  animation: auroraMove 18s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes auroraMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate3d(-2%, 1%, 0) scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(2%, -1%, 0) scale(1.02);
    opacity: 0.8;
  }
}

/* Film grain to remove banding */
.fx-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(140%) blur(8px);
  background: color-mix(in oklab, var(--bg-elev) 86%, transparent);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled {
  background: color-mix(in oklab, var(--bg-elev) 98%, black 2%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}
.brand.small .brand-mark {
  height: 22px;
}
.brand-mark {
  height: 28px;
  display: block;
}
.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.site-nav {
  display: none;
  gap: 18px;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.site-nav a:hover {
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  padding: 2px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.lang-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
}
.lang-btn.is-active {
  background: var(--brand);
  color: #111;
}

@media (min-width: 820px) {
  .site-nav {
    display: inline-flex;
  }
}

/* Hero */
.hero {
  padding: clamp(96px, 10vw, 160px) 0 clamp(72px, 8vw, 120px);
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(108%) contrast(108%) brightness(0.5);
  opacity: 0;
  transition: opacity 400ms ease;
  display: block;
  pointer-events: none;
  max-width: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      60% 60% at 30% 30%,
      rgba(0, 0, 0, 0.3),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}
.hero-visual {
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
  justify-items: center;
}
.tilt-card {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 4/3;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(199, 174, 106, 0.12),
    rgba(185, 154, 69, 0.1)
  );
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 120ms ease, box-shadow 200ms ease;
}
.tilt-card img {
  width: 76%;
  height: auto;
  position: absolute;
  inset: 0;
  margin: auto;
  transform: translateZ(20px);
}
.tilt-card .glare {
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 70%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
  transform: translateY(-40%) rotate(8deg);
  mix-blend-mode: overlay;
  filter: blur(10px);
  pointer-events: none;
}
.tilt-card:hover {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

/* Animated equalizer */
.eq-bars {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 10px;
  gap: 6px;
  align-items: end;
  height: 60px;
}
.eq-bars::before,
.eq-bars::after {
  content: "";
}
.eq-bars > i {
  display: block;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  border-radius: 2px;
  animation: bounce 1200ms ease-in-out infinite;
}
.eq-bars > i:nth-child(odd) {
  animation-delay: 120ms;
}
.eq-bars > i:nth-child(3n) {
  animation-delay: 240ms;
}
.eq-bars > i:nth-child(4n) {
  animation-delay: 360ms;
}
@keyframes bounce {
  0%,
  100% {
    height: 12px;
    opacity: 0.8;
  }
  40% {
    height: 60px;
    opacity: 1;
  }
  70% {
    height: 22px;
    opacity: 0.9;
  }
}
.hero-title {
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
  font-weight: 800;
}
.hero-sub {
  margin: 0 0 24px 0;
  color: var(--muted);
  max-width: 64ch;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
}
.btn-primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #111;
  border-color: #0000;
}
.btn-ghost {
  background: #0000;
  color: var(--text);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn {
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}
.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(199, 174, 106, 0.28);
}
.btn-ghost {
  position: relative;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(199, 174, 106, 0),
    rgba(199, 174, 106, 0.8),
    rgba(199, 174, 106, 0)
  );
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 240ms ease;
}
.btn-ghost:hover::after {
  transform: scaleX(1);
}

/* Sections */
.section {
  padding: clamp(84px, 9vw, 140px) 0;
  scroll-margin-top: 84px;
}
.section-title {
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0 0 20px 0;
}
.section.band {
  background: color-mix(in oklab, var(--bg-elev) 54%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -1px 0 rgba(0, 0, 0, 0.55);
}
.section[data-reveal],
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 18px 0;
  max-width: 72ch;
}

/* Media grid (work) */
.media-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
}
@media (min-width: 720px) {
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1040px) {
  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #0d0d0f;
}
.media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(110%) contrast(105%);
  transform: scale(1.02);
  transition: transform 300ms ease, filter 300ms ease;
}
.media-card:hover img {
  transform: scale(1.06);
  filter: saturate(120%) contrast(110%);
}
.media-card figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
}
.media-credit {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

/* Process */
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 820px) {
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.process-step {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.step-num {
  position: absolute;
  right: 10px;
  bottom: -8px;
  font-size: 56px;
  color: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}
@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: block;
}

/* FAQ */
.faq details {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}
.faq details + details {
  margin-top: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}

/* Capabilities redesigned */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
}
@media (min-width: 720px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1040px) {
  .capabilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.cap-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  background: linear-gradient(
    180deg,
    rgba(199, 174, 106, 0.08),
    rgba(185, 154, 69, 0.06)
  );
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease,
    border-color 200ms ease;
}
.cap-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    200px 120px at var(--mx, -20%) var(--my, -20%),
    rgba(199, 174, 106, 0.1),
    transparent 60%
  );
  pointer-events: none;
}
.cap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-color: color-mix(in oklab, var(--brand) 50%, var(--border));
}
.cap-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(199, 174, 106, 0.18),
    rgba(185, 154, 69, 0.12)
  );
  color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--border);
}
.cap-card p {
  margin: 2px 0 0 0;
}

/* Testimonials carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  align-items: stretch;
  transition: transform 400ms ease;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.8);
  color: var(--text);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.carousel-btn:hover {
  background: rgba(32, 32, 32, 0.95);
}
.carousel-btn.prev {
  left: -8px;
}
.carousel-btn.next {
  right: -8px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.carousel-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}
.carousel-dots i.is-active {
  background: var(--brand);
  opacity: 1;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    120px 60px at var(--mx, -10%) var(--my, -10%),
    rgba(199, 174, 106, 0.08),
    transparent 60%
  );
}
.quote-mark {
  position: absolute;
  right: 14px;
  bottom: -8px;
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  pointer-events: none;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: conic-gradient(
    from 0deg at 50% 50%,
    var(--brand),
    var(--brand-2)
  );
  color: #111;
}
.testimonial-name {
  margin: 4px 0 8px 0;
}
.testimonial-quote {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  filter: brightness(1.05);
}

.social-link .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 1;
}

.social-link.is-placeholder {
  color: var(--muted);
  border-style: dashed;
  pointer-events: none;
  box-shadow: none;
  opacity: 0.7;
}

.socials-section {
  background: color-mix(in oklab, var(--bg-elev) 82%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.socials-lead {
  color: var(--muted);
  max-width: 520px;
}

.social-link--youtube {
  background: #ff0000;
  border-color: #ff4d4d;
  color: #ffffff;
}

.social-link--facebook {
  background: #0866ff;
  border-color: #3b8bff;
  color: #ffffff;
}

.social-link--linkedin {
  background: #0a66c2;
  border-color: #3f8bdb;
  color: #ffffff;
}

.social-link--x {
  background: #0f0f10;
  border-color: #2a2a2d;
  color: #ffffff;
}

.social-link--tiktok {
  background: linear-gradient(135deg, #25f4ee 0%, #000000 55%, #fe2c55 100%);
  border-color: #4bd7d1;
  color: #ffffff;
}

.social-link--amazon-music {
  background: #00a8e1;
  border-color: #33bae7;
  color: #0c0c0e;
}

.social-link--deezer {
  background: linear-gradient(135deg, #ff0092 0%, #c6ff00 100%);
  border-color: rgba(255, 255, 255, 0.24);
  color: #0c0c0e;
}

.social-link--spotify {
  background: #1db954;
  border-color: #4bd67e;
  color: #0c0c0e;
}

.social-link.is-placeholder {
  background: color-mix(in oklab, var(--bg-elev) 92%, #1b1b1d 8%);
  border-color: color-mix(in oklab, var(--border) 80%, transparent);
  color: color-mix(in oklab, var(--muted) 82%, #6d6f75 18%);
}

.social-link.is-placeholder:hover,
.social-link.is-placeholder:focus-visible {
  transform: none;
  box-shadow: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.form-row {
  display: grid;
  gap: 8px;
}
label {
  font-weight: 600;
  color: var(--text);
}
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: #0d0d0f;
  border: 1px solid var(--border);
  color: var(--text);
}
.form-actions {
  margin-top: 6px;
}
.contact-form {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.form-hint {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 0 0;
}

/* Footer */
.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--border);
  background: transparent;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 12px;
}
.footer-nav a:hover {
  color: var(--text);
}
.copyright {
  color: var(--muted);
  margin: 0;
}

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