:root {
  --bg: #fffcfcbe;
  --surface: #f5f5f5;
  --surface2: #eeeeee;
  --gold: #000000;
  --gold-light: #000000;
  --gold-glow: rgba(0, 0, 0, 0.1);
  --text: #000000;
  --muted: #333333;
  --accent: #000000;
  --white: #ffffff;
  --font-primary: 'DM Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-mono: 'Space Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 1.5rem;
}


h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
}

body,
p,
button,
a {
  font-family: var(--font-primary);
}

.mono {
  font-family: var(--font-mono);
}

/* Custom Cursor */
.cursor .cursor {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle,
      transparent 10px,
      var(--gold) 11px,
      var(--gold) 100%);

  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), transparent);
  transition: 0.4s, padding 0.4s;
}

nav.scrolled {
  padding: 0.8rem 4rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  height: 60px;
  cursor: pointer;
}

.logo img {
  height: 120%;
  width: auto;
  object-fit: contain;
  transform: translateY(-10%);
}

.logo span {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--white);
  background: var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}

/* Accessibility: Cursor fallback */
body.cursor-disabled {
  cursor: auto;
}

body.cursor-disabled .cursor {
  display: none;
}

/* ===== HOME ===== */
#home {
  position: relative;
  overflow: hidden;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 4rem;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.8s 0.4s both;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  color: transparent;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  animation: white 0.8s 0.4s both;
}

.hero h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero h2 .outline {
  -webkit-text-stroke: 1px rgba(0, 0, 0);
  color: transparent;
}

.hero-sub {
  max-width: 420px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 3rem;
  animation: var(--white).8s 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: var(--white) 0.8s 0.8s both;
}

.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(201, 150, 58, 0.15);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 150, 58, 0.3);
}

.btn-outline {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--muted);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Waveform animation */
.waveform {
  position: absolute;
  right: 4rem;
  bottom: 15%;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 120px;
  animation: fadeIn 1.2s 1s both;
}

.wave-bar {
  width: 3px;
  background: linear-gradient(to top, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: wave var(--d, 1.2s) ease-in-out infinite alternate;
  opacity: 0.7;
}

@keyframes wave {
  from {
    height: var(--min, 10px);
  }

  to {
    height: var(--max, 80px);
  }
}

/* Vinyl graphic */
.vinyl {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  animation: spin 20s linear infinite, fadeIn 1s 0.5s both;
  opacity: 0.12;
}

.vinyl circle {
  fill: none;
  stroke: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 4rem;
  padding: 2rem 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  animation: fadeUp 0.8s 1s both;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* Sections */
section {
  padding: 6rem 4rem;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}



/* ===== ABOUT ===== */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 500px;
  min-height: 420px;
}

/* ---- Premium Studio Card ---- */
.about-studio-card {
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(201, 150, 58, 0.25);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(201, 150, 58, 0.08);
  position: relative;
}

.about-studio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9963a, transparent);
}

/* Topbar */
.asc-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.asc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.asc-dot.red {
  background: #ff5f57;
}

.asc-dot.yellow {
  background: #febc2e;
}

.asc-dot.green {
  background: #28c840;
}

.asc-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: rgba(201, 150, 58, 0.7);
  margin-left: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Spectrum */
.asc-spectrum {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem 1.5rem 0.5rem;
  position: relative;
}

.asc-spectrum-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 100%;
  height: 140px;
}

.asc-bar {
  flex: 1;
  min-width: 4px;
  border-radius: 2px 2px 0 0;
  animation: spectrumPulse var(--sd, 0.8s) ease-in-out infinite alternate;
  min-height: 4px;
}

@keyframes spectrumPulse {
  from {
    height: var(--smin, 8px);
    opacity: 0.5;
  }

  to {
    height: var(--smax, 60px);
    opacity: 1;
  }
}

.asc-spectrum-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.15);
  margin-top: 0.6rem;
  text-align: center;
}

/* Info grid */
.asc-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.asc-info-item {
  padding: 1.2rem 0.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.asc-info-item:last-child {
  border-right: none;
}

.asc-info-item:hover {
  background: rgba(201, 150, 58, 0.05);
}

.asc-info-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #c9963a;
  line-height: 1;
}

.asc-info-key {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.35rem;
  text-transform: uppercase;
}

/* Status bar */
.asc-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.asc-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b30;
  animation: recPulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes recPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 5px rgba(255, 59, 48, 0);
  }
}

.asc-status-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.about-text .quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s;
}

.team-card:hover {
  border-color: var(--gold);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface2);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.team-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0, 0, 0, 0.08);
}

.project-card {
  background: var(--surface);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.project-card:hover {
  background: var(--surface2);
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.project-card:hover .project-arrow {
  transform: translate(4px, -4px);
}

.project-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  display: inline-block;
}

.project-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.project-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.project-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.project-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
}

/* ===== TRACKS ===== */
.tracks-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--surface);
  transition: background 0.3s;
  cursor: pointer;
}

.track-item:hover {
  background: var(--surface2);
}

.track-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  width: 2rem;
  text-align: center;
}

.track-play {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.track-item:hover .track-play {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.track-info {
  flex: 1;
}

.track-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.track-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.track-duration {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
}

.track-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 32px;
  width: 120px;
}

.tw-bar {
  width: 2px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1px;
  transition: background 0.3s;
}

.track-item:hover .tw-bar {
  background: rgba(0, 0, 0, 0.7);
}

.tw-bar.active {
  background: var(--gold) !important;
}

/* Audio player bar */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  z-index: 990;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-bar.visible {
  transform: translateY(0);
}

.player-progress-wrap {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(201, 150, 58, 0.1);
  cursor: pointer;
}

.player-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #c9963a, #e6c17a);
  box-shadow: 0 0 8px rgba(201, 150, 58, 0.4);
  transition: width 0.1s linear;
}

.player-track-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text);
  flex: 1;
}

.player-track-name span {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--gold);
  display: block;
  margin-top: 0.2rem;
  letter-spacing: 0.12em;
}

.player-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.player-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}

.player-btn:hover {
  color: var(--gold);
}

.player-btn.play-pause {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 3rem 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), transparent);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.plan-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.plan-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.plan-price sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.plan-features li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.plan-features li::before {
  content: '—';
  color: var(--gold);
}

.plan-features li.included {
  color: var(--text);
}

/* ===== FEEDBACK ===== */
.feedback-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.review-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  border-color: rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.review-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.review-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.review-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 0.9rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #d9534f;
  background: rgba(217, 83, 79, 0.05);
}

.form-error {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: #d9534f;
  margin-top: 0.3rem;
  display: none;
}

.form-error.show {
  display: block;
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-group select option {
  background: var(--surface);
}

.stars-input {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}

.star-btn:hover {
  transform: scale(1.2);
}

/* .star-btn.active,
.star-btn:hover {
  color: var(--gold);
} */

/* ===== CONTACT ===== */
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-detail-text label {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--text);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--muted);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.social-icon {
  font-size: 1rem;
}

/* Dividers with reveal animation */
.gold-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible .gold-line,
.visible .gold-line {
  width: 60px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes textShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.highlight-shine {
  background: linear-gradient(90deg, #000, #c9963a, #000, #c9963a, #000);
  background-size: 200% auto;
  color: transparent !important;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShine 4s linear infinite;
  display: inline-block;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LAYOUT UTILITIES (replacing inline styles) ===== */
.section-center {
  text-align: center;
}

.section-surface {
  padding: 6rem 4rem;
  background: var(--surface);
}

.section-top {
  padding-top: 10rem;
}

.section-intro {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 3rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Services grid (previously had inline display:grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Service card v2 — used in the full Services page */
.service-card-v2 {
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: var(--surface);
  transition: all 0.3s ease;
}

.service-card-v2:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card-v2 h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-card-v2 p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* About "How We Work" section */
.about-approach {
  max-width: 800px;
  margin-top: 3rem;
}

.approach-lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.approach-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.approach-list {
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.approach-list li {
  margin-bottom: 0.8rem;
}

.approach-list strong {
  color: var(--text);
}

.about-text a {
  color: var(--text);
  text-decoration-color: var(--gold);
  text-underline-offset: 0.2em;
}

.seo-faq {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: left;
}

.seo-faq h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
}

.seo-faq p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* section.contact-grid: layout for the contact section used as a grid wrapper */
section.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ===== MOBILE MENU ===== */
/* ===== MOBILE MENU (Glassmorphism) ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(30px) saturate(200%) brightness(1.1);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.08);
}

.mobile-menu.open {
  display: flex;
  animation: glassReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes glassReveal {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    transform: scale(1);
  }
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, letter-spacing 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
  animation: menuReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

/* Staggered delays for links */
.mobile-menu a:nth-child(2) {
  animation-delay: 0.08s;
}

.mobile-menu a:nth-child(3) {
  animation-delay: 0.13s;
}

.mobile-menu a:nth-child(4) {
  animation-delay: 0.18s;
}

.mobile-menu a:nth-child(5) {
  animation-delay: 0.23s;
}

.mobile-menu a:nth-child(6) {
  animation-delay: 0.28s;
}

.mobile-menu a:nth-child(7) {
  animation-delay: 0.33s;
}

.mobile-menu a:nth-child(8) {
  animation-delay: 0.38s;
}

.mobile-menu a:hover {
  color: #000000;
  letter-spacing: 0.08em;
  transform: translateX(10px);
}

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-close:hover {
  transform: rotate(90deg);
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
  color: #000000;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet landscape */
@media (max-width: 1024px) {

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section.contact-grid {
    gap: 3rem;
  }
}

/* Tablet portrait & large phones */
@media (max-width: 900px) {

  /* Hide cursor on touch devices (also handled in JS) */
  .cursor {
    display: none;
  }

  nav {
    padding: 1.4rem 2rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 101;
  }

  .hero {
    padding: 7rem 2rem 2rem;
    height: auto;
    min-height: 100svh;
  }

  section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-top {
    padding-top: 6rem;
  }

  .section-surface {
    padding: 4rem 2rem;
  }

  .waveform {
    display: none;
  }

  .vinyl {
    display: none;
  }

  .hero-stats {
    padding: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }


  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  section.contact-grid,
  #contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Restore track waveforms but make them more compact */
  .track-waveform {
    display: flex;
    width: 80px;
    gap: 1px;
  }

  .tw-bar {
    width: 1.5px;
  }

  .player-bar {
    padding: 1rem 2rem;
    gap: 1rem;
  }

  .player-track-name {
    font-size: 0.85rem;
  }

  /* Prevent iOS zoom on form focus */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  .mobile-menu a {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Small phones */
@media (max-width: 640px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .logo {
    height: 50px;
  }

  .logo img {
    height: 100%;
    max-width: 160px;
    transform: translateY(-5%);
  }

  section {
    padding: 4rem 1.5rem;
  }

  .section-top {
    padding-top: 5rem;
  }

  .section-surface {
    padding: 3rem 1.5rem;
  }

  .section-center {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 2rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-sub {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.85rem 1.5rem;
    font-size: 0.62rem;
    text-align: center;
    width: 100%;
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }


  .team-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* About studio card – hidden on small phones */
  .about-visual {
    display: none;
  }

  .about-text .quote {
    font-size: 1.1rem;
    padding-left: 1rem;
  }

  .track-waveform {
    width: 60px;
  }

  .track-duration {
    display: none;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .contact-detail {
    flex-direction: column;
  }

  .social-links {
    flex-direction: column;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }

  .player-bar {
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1rem;
    align-items: center;
  }

  .player-controls {
    width: 100%;
    justify-content: center;
  }

  .player-track-name {
    text-align: center;
    font-size: 0.85rem;
    width: 100%;
  }

  .player-track-name span {
    text-align: center;
    margin: 0 auto;
    display: inline-block;
  }

  .player-progress-wrap {
    top: 0;
    height: 3px;
  }

  .mobile-menu a {
    font-size: 1.4rem;
  }

  .mobile-close {
    right: 1.5rem;
    top: 1.5rem;
  }
}

/* Extra small phones */
@media (max-width: 380px) {

  .hero h1,
  .hero h2 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .section-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .asc-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .asc-info-item:nth-child(2) {
    border-right: none;
  }

  .asc-info-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Touch device: disable custom cursor */
@media (hover: none) and (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }
}

/* ===== ABOUT VISUAL — tablet & mobile responsive ===== */

/* Tablet portrait (≤900px): single-column layout, card shows above text */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    display: block;
    /* ensure it's visible */
    height: 380px;
    min-height: 320px;
    width: 100%;
  }

  .about-studio-card {
    width: 100%;
    height: 100%;
  }

  /* Slightly reduce spectrum bar area on tablet */
  .asc-spectrum-bars {
    height: 110px;
  }
}


@media (max-width: 640px) {

  /* Must match base selector specificity */
  #about .about-grid {
    display: block;
    width: 100%;
  }

  .about-visual {
    display: none !important;
  }

  .about-text {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .about-text p,
  .about-text .quote,
  .about-text ul,
  .about-text button {
    width: 100%;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
  }

  .about-text .quote {
    font-size: 1rem;
    padding-left: 1rem;
    margin: 1.2rem 0;
  }

  #about section.section-top {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    overflow-x: hidden;
  }
}

/* Extra coverage for 320px */
@media (max-width: 375px) {
  #about .about-grid {
    display: block;
    width: 100%;
  }

  #about section.section-top {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-text p {
    font-size: 0.9rem;
    line-height: 1.75;
  }
}

/* ===== CONTACT GRID — 3 children layout ===== */

/* Desktop: social sits below contact-info in column 1 */
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3rem 6rem;
  align-items: start;
}

.contact-info {
  grid-column: 1;
  grid-row: 1;
}

.contact-form-side {
  grid-column: 2;
  grid-row: 1 / 3;
  /* spans both rows on desktop */
}

.contact-social {
  grid-column: 1;
  grid-row: 2;
}

/* Tablet & mobile: single column — social appears after form naturally */
@media (max-width: 900px) {
  #contact .contact-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    gap: 3rem;
  }

  .contact-info {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-form-side {
    grid-column: 1;
    grid-row: 2;
  }

  .contact-social {
    grid-column: 1;
    grid-row: 3;
    /* below the form */
  }

  .contact-social .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  .contact-social .social-links {
    flex-direction: column;
  }

  .contact-social .social-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {

  /* Section headings */
  #tracks h3 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
    padding: 0 1.5rem;
    text-align: left;
  }

  /* Track list container */
  #tracks .tracks-list {
    margin-bottom: 2.5rem !important;
    padding: 0;
    width: 100%;
  }

  /* Each track row */
  .track-item {
    padding: 1rem 1.5rem;
    gap: 0.8rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  /* Track number */
  .track-num {
    display: none;
  }

  /* Play button */
  .track-play {
    width: 34px;
    height: 34px;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  /* Track title & meta */
  .track-info {
    flex: 1;
    min-width: 0;
  }

  .track-title {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .track-meta {
    font-size: 0.55rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Waveform — visible on mobile, compact size */
  .track-waveform {
    display: flex;
    width: 50px;
    height: 28px;
    gap: 1.5px;
    align-items: center;
    flex-shrink: 0;
  }

  .tw-bar {
    width: 2px;
    border-radius: 1px;
  }

  /* Duration */
  .track-duration {
    font-size: 0.62rem;
    flex-shrink: 0;
    color: var(--muted);
  }

  /* Section padding fix */
  #tracks section.section-top {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }
}

@media (max-width: 375px) {
  #tracks h3 {
    font-size: 1.1rem !important;
    padding: 0 1.2rem;
  }

  .track-item {
    padding: 0.9rem 1.2rem;
    gap: 0.6rem;
  }

  .track-title {
    font-size: 0.88rem;
  }

  /* Waveform slightly smaller on 375px */
  .track-waveform {
    display: flex;
    width: 40px;
    height: 24px;
    gap: 1px;
  }

  .tw-bar {
    width: 1.5px;
  }

  /* Hide duration on very small screens to make room */
  .track-duration {
    display: none;
  }
}

@media (max-width: 320px) {
  .track-waveform {
    width: 32px;
    gap: 1px;
  }

  .track-title {
    font-size: 0.82rem;
  }

  .track-item {
    padding: 0.8rem 1rem;
    gap: 0.5rem;
  }
}

/* Responsive Contact Section Order Fix */
@media (max-width: 1024px) {
  #contact .contact-grid {
    display: flex;
    flex-direction: column;
  }

  .contact-info {
    order: 1;
    width: 100%;
  }

  .contact-form-side {
    order: 2;
    width: 100%;
  }

  .contact-social {
    order: 3;
    width: 100%;
  }
}

/* Small Screen Safety Fix */
@media (max-width: 480px) {
  #contact .contact-grid {
    padding: 0 1rem;
  }
}


/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background-color: #25D366;
  /* WhatsApp green */
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.wa-float:hover {
  background-color: #1ebe5d;
  /* slightly darker green */
  transform: scale(1.1);
  transition: all 0.3s ease;
}





#musicAdBar {
#musicAdBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background: #000 url('image/background.png') center/contain no-repeat;
}

/* Overlay for readability */
.ad-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-end;
}

/* Layout */
.ad-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Image */
.ad-img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

/* Text */
.ad-text {
  flex: 1;
  line-height: 1.4;
}

.ad-text strong {
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.ad-text span {
  font-size: 0.9rem;
  color: #c9963a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA */
.ad-btn {
  background: #1DB954;
  padding: 12px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Close */
#closeAd {
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  transition: transform 0.3s;
}

#closeAd:hover {
  transform: scale(1.2);
  color: #ff5f57;
}

/* Prevent overlap */
body {
  padding-top: 100px;
}