* { box-sizing: border-box; }
:root {
  --bg: #0b0b0d;
  --fg: #f5f7fb;
  --muted: #9aa3b2;
  --line: #1e1f25;
  --brand: #ffffff;
  --accent: #e5e7eb;
}
/* Note: intentionally no global font-size override here to preserve user's preferred sizing */
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; top: -999px; }
.skip:focus { left: 12px; top: 12px; background: #111; color: #fff; padding: 8px 12px; border-radius: 6px; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(11,11,13,0.75); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .5px; }
.logo { height: 1.25rem; width: auto; filter: invert(1) brightness(1.2) drop-shadow(0 1px 0 rgba(255,255,255,.2)); vertical-align: middle; max-height: 48px; }
.inline-logo { height: 2rem; width: auto; vertical-align: middle; margin-left: 8px; filter: invert(1); max-height: 46px; }

/* Safety: in case inherited font-size is large, ensure logo never exceeds header height */
.site-header .logo { max-height: 48px; }
.wordmark { text-transform: uppercase; font-weight: 800; font-size: 14px; color: var(--brand); }
.nav a { color: var(--fg); text-decoration: none; margin-left: 16px; font-weight: 600; }
.nav a:hover { color: var(--accent); }
.hero { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-inner { padding: 96px 0 72px; }
.hero-title { font-size: clamp(32px, 6vw, 64px); line-height: 1.02; margin: 0 0 14px; letter-spacing: -0.02em; }
.hero-sub { color: var(--muted); margin: 0 0 24px; font-size: 18px; }
.cta-row { display: flex; gap: 14px; align-items: center; }
.btn { display: inline-block; background: #fff; color: #000; padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 800; border: 1px solid #fff; }
.btn:hover { background: transparent; color: #fff; }
/* Pill variant used for prominent CTAs (match .btn appearance) */
.btn--pill {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  font-weight: 800;
}
.btn--pill:hover { background: transparent; color: #fff; }
.link { color: var(--fg); text-decoration: none; }
.link:hover { color: var(--accent); }
.page-hero { padding: 56px 0 24px; border-bottom: 1px solid var(--line); background: #0d0e12; }
.page-hero .hero-title { font-size: clamp(28px, 4vw, 48px); }
.page-hero .hero-sub { color: var(--muted); }
.hero-marquee { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-marquee::before, .hero-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; pointer-events: none; }
.hero-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.hero-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.hero-marquee .track { display: inline-flex; align-items: center; gap: 64px; padding: 14px 20px; white-space: nowrap; text-transform: uppercase; font-weight: 700; letter-spacing: .06em; color: var(--muted); font-size: 18px; will-change: transform; pointer-events: none; }
.hero-marquee .track span { opacity: .9; }
.section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.section--alt { background: #0d0e12; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.section h2 { font-size: 24px; margin: 0; }
.muted { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.grid .card { grid-column: span 4; }
.card { padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: #0f1117; box-shadow: 0 2px 12px rgba(0,0,0,.25); }
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--accent); }
.artist-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.artist-card { padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: #0f1117; }
.artist-meta h3 { margin: 0 0 4px; }
.artist-vertical { display: grid; gap: 18px; }
.album-card { display: grid; grid-template-columns: 280px 1fr; gap: 16px; align-items: stretch; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #0f1117; box-shadow: 0 2px 12px rgba(0,0,0,.25); transition: transform .2s ease, box-shadow .2s ease; }
.album-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.35); }
.album-art { border-radius: 12px; overflow: hidden; background: #0c0d11; display: grid; place-items: center; border: 1px solid var(--line); }
.album-art img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; display: block; }

/* Improve scroll performance by containing layout and hinting composite-only operations */
.album-art { contain: paint layout; will-change: transform; }
.album-art img { backface-visibility: hidden; transform: translateZ(0); }
.album-meta h3 { margin: 0 0 6px; font-size: 20px; }
.album-meta p { margin: 0 0 10px; color: var(--accent); }
.album-card .actions { margin-top: auto; }
.form { margin-top: 22px; max-width: 720px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-weight: 600; font-size: 14px; }
.field input, .field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0f1117;
  color: var(--fg);
}
.field input::placeholder, .field textarea::placeholder { color: #677086; }
.actions { display: flex; gap: 12px; align-items: center; }
.form-status { margin-top: 8px; color: var(--muted); font-size: 14px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.contact-card { padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: #0f1117; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-list a { color: var(--fg); text-decoration: none; }
.contact-list a:hover { color: var(--accent); }
.site-footer { padding: 22px 0; color: var(--muted); }
.fade-up { will-change: transform, opacity; }
.contact-strip { border-top: 1px solid var(--line); background: rgba(11,11,13,0.6); }
.contact-strip .container { padding: 12px 20px; }
.contact-strip a { color: var(--fg); text-decoration: none; font-weight: 700; }
.contact-strip button {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #fff;
  font-weight: 800;
  cursor: pointer;
}
.contact-strip button:hover { background: transparent; color: #fff; }
.contact-page-wrapper { min-height: 80vh; display: flex; align-items: center; background: var(--bg); padding: 48px 0; }
/* Contact card with fixed aspect ratio of 556x706 (responsive up to 556px width). */
.contact-card {
  width: min(556px, 92%);
  aspect-ratio: 556 / 706;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact-card .form-scroll {
  overflow: auto;
  flex: 1 1 auto;
  padding-top: 8px;
}
.contact-card .text-center { margin-bottom: 8px; }
@media (max-width: 640px) {
  .header-inner { height: auto; padding: 10px 0; flex-direction: column; align-items: center; gap: 8px; }
  .brand { gap: 8px; }
  .wordmark { font-size: 12px; }
  /* Nav becomes a centered row with bigger tap targets */
  .nav { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .nav a { margin-left: 0; padding: 10px 8px; font-size: 15px; }

  /* Make hero paddings and CTA friendlier on mobile */
  .hero-inner { padding: 56px 0 36px; }
  .cta-row { width: 100%; display: flex; justify-content: center; }
  .cta-row .btn, .cta-row .btn--pill { width: min(320px, 92%); display: block; }

  .grid .card { grid-column: span 12; }
  .album-card { grid-template-columns: 1fr; }
  .album-art { height: auto; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Section headings should stack nicely */
  .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* reduce marquee density */
  .hero-marquee .track { gap: 32px; font-size: 15px; }

  /* Contact strip and buttons full width */
  .contact-strip .container { padding: 8px 12px; }
  .contact-strip button { width: 100%; padding: 12px; }
}
