:root {
  --dark: #2d2d2d;
  --light: #fca810;
  --bg: var(--dark);
  --bg-soft: #262626;
  --bg-card: #353535;
  --bg-glass: rgba(45, 45, 45, 0.92);
  --gold: var(--light);
  --text: #f4f4f4;
  --text-muted: #b5b5b5;
  --line: rgba(252, 168, 16, 0.22);
  --line-soft: rgba(255, 255, 255, 0.1);
  --font: "Montserrat", system-ui, sans-serif;
  --serif: var(--font);
  --sans: var(--font);
  --radius: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* Waveform motif */
.wave-divider {
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 48' preserveAspectRatio='none'%3E%3Cpath d='M0 24 L20 8 L40 32 L60 12 L80 36 L100 16 L120 28 L140 10 L160 38 L180 18 L200 30 L220 14 L240 34 L260 20 L280 26 L300 12 L320 36 L340 22 L360 28 L380 16 L400 24' fill='none' stroke='%23fca810' stroke-width='1.5' opacity='0.35'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: 0.6;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(45,45,45,0.5) 0%, rgba(45,45,45,0.15) 40%, rgba(45,45,45,0.88) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(45,45,45,0.88) 0%, transparent 50%),
    radial-gradient(ellipse 70% 45% at 75% 15%, rgba(252, 168, 16, 0.14) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  background: rgba(45, 45, 45, 0.65);
  backdrop-filter: blur(8px);
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light);
  box-shadow: 0 0 12px var(--light);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8.5vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 900px;
  margin-bottom: 28px;
}
.hero h1 .gold {
  color: var(--light);
  font-weight: 800;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s;
  cursor: pointer;
  border: 0;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--light);
  color: var(--dark);
}
.btn-primary:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}
.btn-dark {
  background: var(--dark);
  color: var(--light);
}
.btn-dark:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.btn-ghost {
  background: var(--dark);
  color: var(--light);
  border: 1px solid var(--light);
}
.btn-ghost:hover {
  background: var(--light);
  color: var(--dark);
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 720px;
}
.hero-service {
  background: rgba(45, 45, 45, 0.88);
  backdrop-filter: blur(12px);
  padding: 22px 24px;
  transition: background 0.35s, color 0.35s;
  cursor: default;
  border: none;
  text-align: left;
  font-family: var(--font);
  color: inherit;
}
.hero-service.active {
  background: var(--light);
}
.hero-service.active span,
.hero-service.active strong {
  color: var(--dark);
}
.hero-service span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 6px;
  font-weight: 700;
}
.hero-service strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.hero-dot {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active {
  background: var(--light);
  width: 48px;
}

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-soft);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .wave-icon {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STUDIOS (featured) ===== */
.studios-featured {
  padding: 120px 0 100px;
  position: relative;
}
.studios-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.4;
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}
.sec-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.sec-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--light);
}
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 640px;
}
.sec-head h2 em {
  font-style: italic;
  color: var(--gold);
}
.sec-head .meta {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.65;
  font-weight: 300;
}

.studio-showcase {
  margin-bottom: 20px;
}
.studio-showcase .studio-panel {
  min-height: 480px;
}

.studio-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line-soft);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}
.studio-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(245, 166, 35, 0.15);
}
.studio-panel .panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.studio-panel:hover .panel-bg { transform: scale(1.05); }
.studio-panel--music .panel-bg { background-image: url('https://melrosestudios.online/test/assets/hero-studio.png'); }
.studio-panel--podcast .panel-bg { background-image: url('https://melrosestudios.online/test/assets/studio-podcast.jpg'); }
.studio-panel--film .panel-bg { background-image: url('https://melrosestudios.online/test/assets/studio-film.jpg'); }
.studio-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45,45,45,0.95) 0%, rgba(45,45,45,0.4) 45%, rgba(45,45,45,0.15) 100%);
  z-index: 1;
}
.studio-panel-body {
  position: relative;
  z-index: 2;
  padding: 36px;
}
.studio-panel-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--light);
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 14px;
}
.studio-panel h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
}
.studio-panel .lead {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 400px;
  font-weight: 300;
}
.studio-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
}
.studio-panel-link:hover { gap: 16px; }

.studio-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.studio-row .studio-panel { min-height: 320px; }

/* ===== ROSTER ===== */
.artists-section {
  padding: 100px 0 110px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
}

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

.artist-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line-soft);
  transition: transform 0.45s, box-shadow 0.45s;
}
.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.artist-card .card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.artist-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
  filter: saturate(0.85) contrast(1.05);
}
.artist-card:hover .card-img img { transform: scale(1.06); }
.artist-card .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45,45,45,0.92) 0%, rgba(45,45,45,0.35) 55%, rgba(45,45,45,0.2) 100%);
  z-index: 1;
}

.founder-pill {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 3;
  background: var(--light);
  color: var(--dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.artist-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px 32px;
}
.artist-position {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.artist-name {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 10px;
}
.artist-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.artist-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  font-weight: 500;
}
.artist-listen { color: var(--text-muted); display: inline-flex; align-items: center; gap: 10px; transition: color 0.25s; }
.artist-card:hover .artist-listen { color: var(--gold); }
.artist-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.artist-card:hover .artist-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

/* ===== RELEASES ===== */
.releases-section { padding: 110px 0 100px; }

.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.release-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  transition: transform 0.4s, border-color 0.4s;
}
.release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3);
}
.release-cover {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45,45,45,0.6) 100%);
}
.release-meta { padding: 16px 18px 20px; }
.release-artist {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}
.release-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 6px;
}
.release-detail {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

/* ===== ACTIVATIONS ===== */
.activations-section {
  padding: 110px 0 100px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
}
.activations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.activation {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}
.activation-img {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.activation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.activation:hover .activation-img img { transform: scale(1.04); }
.activation-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-card) 0%, transparent 50%);
}
.activation-tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  background: rgba(45,45,45,0.8);
  backdrop-filter: blur(8px);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--line);
}
.activation-body { padding: 32px 36px 36px; }
.activation-body h3 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.activation-body .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
}
.activation-body p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.7;
}
.activation-body ul { list-style: none; margin-bottom: 24px; }
.activation-body li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.activation-body li span { color: var(--text); }
.activation-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.activation-link:hover { gap: 14px; }

/* ===== ABOUT ===== */
.about-section { padding: 120px 0; position: relative; overflow: hidden; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-soft);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(245, 166, 35, 0.15) 100%);
}
.about-visual .floating-stat {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  display: flex;
  gap: 12px;
}
.about-stat-box {
  flex: 1;
  background: rgba(45,45,45,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.about-stat-box .num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-box .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 300;
}
.about-prose .pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.35;
  color: var(--gold);
  margin: 32px 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}
.about-prose .brand-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  margin-top: 28px;
}
.about-prose .signature {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== STATS ===== */
.stats-strip {
  padding: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--light);
  font-weight: 800;
  margin-bottom: 10px;
}
.stat-num sup { font-size: 0.35em; }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== PRESS ===== */
.press-section { padding: 100px 0; }
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.press-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}
.press-card:hover {
  border-color: rgba(245, 166, 35, 0.25);
  transform: translateY(-2px);
}
.press-card .sec-label { margin-bottom: 18px; }
.press-card h4 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.press-card h4 em { font-style: italic; color: var(--gold); }
.press-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.65;
}
.press-card .cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  gap: 8px;
  transition: gap 0.25s;
}
.press-card .cta:hover { gap: 14px; }

/* ===== CONTACT ===== */
.contact-bar {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--dark) url('https://melrosestudios.online/test/assets/hero-studio.png') center / cover no-repeat;
}
.contact-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(45,45,45,0.94) 0%, rgba(45,45,45,0.78) 45%, rgba(45,45,45,0.55) 100%);
}
.contact-inner { position: relative; z-index: 1; }
.contact-bar h2 {
  font-family: var(--font);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 800px;
}
.contact-bar h2 em { color: var(--light); font-style: normal; }
.contact-bar p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
}
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-light {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}
.btn-outline-light:hover {
  background: var(--light);
  color: var(--dark);
}

/* ===== FOOTER ===== */
footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--line-soft);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.footer-brand p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.7;
  font-weight: 300;
}
.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; font-size: 16px; font-weight: 300; }
.footer-col a { color: var(--text-muted); transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .socials { display: flex; gap: 24px; }
.footer-bottom .socials a:hover { color: var(--gold); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-badge .pulse { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1024px) {
  .studio-showcase { grid-template-columns: 1fr; }
  .studio-row { grid-template-columns: 1fr; }
  .releases-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 16/10; max-height: 400px; }
}

@media (max-width: 900px) {
.hero { padding-top: 120px; min-height: auto; padding-bottom: 60px; }
  .hero-services { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: 1fr; }
  .activations-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .releases-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-cols { gap: 32px; }
}

.footer-legal { display: flex; flex-direction: column; gap: 8px; }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366 !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.footer-whatsapp:hover { color: #6ef09a !important; text-decoration: underline; }

.btn-whatsapp, a.btn-whatsapp, a.btn.btn-whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  border: 1px solid #25D366 !important;
  font-weight: 600;
}
.btn-whatsapp:hover, a.btn-whatsapp:hover, a.btn.btn-whatsapp:hover {
  background: #1ebe57 !important;
  color: #fff !important;
  border-color: #1ebe57 !important;
}
.btn-outline-light[href*="wa.me"],
a.btn.btn-outline-light[href*="wa.me"] {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
  font-weight: 600;
}
.btn-outline-light[href*="wa.me"]:hover,
a.btn.btn-outline-light[href*="wa.me"]:hover {
  background: #1ebe57 !important;
  color: #fff !important;
  border-color: #1ebe57 !important;
}
.alt-contact .alt-row a[href*="wa.me"] {
  color: #25D366 !important;
  font-weight: 600;
  font-size: 18px;
}


.socials a { display: inline-flex; align-items: center; gap: 8px; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; flex: 0 0 16px; }
.social-icon svg { width: 16px; height: 16px; display: block; }
.social-text { display: inline; }