*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #050402;
  --off-black: #050402;
  --card-bg: #0a0806;
  --card-bg-hover: #100e0a;
  --card-bg-featured: #080706;
  --border: rgba(212, 175, 90, 0.1);
  --border-hover: rgba(232, 200, 114, 0.26);
  --border-gold: rgba(201, 168, 76, 0.38);
  --white: #f5efe3;
  --cream: #ddd0b4;
  --gold: #c4a03d;
  --gold-light: #e4c56a;
  --gold-bright: #f2da82;
  --gold-dim: #8a7032;
  --gold-glow: rgba(212, 175, 55, 0.22);
  --gold-btn: #9a7d42;
  --gold-btn-hover: #ad8f4c;
  --muted: #736a5c;
  --text-on-gold: #0f0d08;
  --hero-veil-dark: rgba(5, 4, 2, 0.72);
  --hero-veil-mid: rgba(18, 14, 6, 0.28);
  --photo-grade: brightness(0.86) contrast(1.05) saturate(0.9);
  --photo-grade-hover: brightness(0.94) contrast(1.05) saturate(0.94);
}

html {
  scroll-behavior: smooth;
  background: #050402;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.nav-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.9;
  white-space: nowrap;
}
nav.scrolled {
  background: rgba(5, 4, 2, 0.94);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
nav ul {
  list-style: none;
  display: flex;
  gap: 48px;
  margin-left: auto;
}
nav ul a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
nav ul a:hover { opacity: 1; color: var(--gold-light); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 96px 60px 72px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050402 url('images/CardImg.png') right center / cover no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 8% 35%, rgba(212, 175, 55, 0.12) 0%, transparent 65%),
    url('images/gold%20bg.png') left center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--hero-veil-dark) 0%,
    var(--hero-veil-mid) 45%,
    transparent 62%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 540px;
  max-width: 100%;
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--white);
  position: relative;
}
.hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(232, 200, 114, 0.65);
  color: transparent;
}
.hero-subtitle {
  margin-top: 32px;
  font-size: 19px;
  font-style: italic;
  color: var(--white);
  opacity: 0.82;
  max-width: 440px;
  line-height: 1.65;
}
.hero-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}
.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-gold);
  background: var(--gold-btn);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-btn-hover);
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--border-hover);
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-bright);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-1px);
}

.hero-scroll-wrap {
  position: absolute;
  bottom: 40px;
  left: 28%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll::before {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(228, 197, 106, 0.5), transparent);
  order: -1;
}

/* ─── SECTION COMMON ─── */
section { padding: 120px 60px; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 60px;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.35) 50%,
    transparent 100%
  );
}

/* ─── SECTIONS (hero visual thread) ─── */
#artists,
#merch,
#contact {
  position: relative;
  overflow: hidden;
  background: var(--off-black);
}
#artists::before,
#merch::before,
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 50% at 10% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 68%),
    linear-gradient(
      90deg,
      var(--hero-veil-dark) 0%,
      var(--hero-veil-mid) 38%,
      transparent 58%
    );
  opacity: 0.85;
  pointer-events: none;
}
#artists > *:not(.suit-deco),
#merch > *:not(.suit-deco),
#contact > *:not(.suit-deco) {
  position: relative;
  z-index: 1;
}

/* ─── ARTISTS ─── */
#artists .section-title {
  margin-bottom: 48px;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 228px;
  gap: 2px;
  background: var(--border);
}
.artist-card {
  background: var(--card-bg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.artist-card:hover { background: var(--card-bg-hover); }
.artist-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 4, 2, 0.9) 0%,
      rgba(5, 4, 2, 0.45) 36%,
      transparent 58%
    ),
    linear-gradient(
      90deg,
      rgba(5, 4, 2, 0.5) 0%,
      rgba(18, 14, 6, 0.15) 42%,
      transparent 62%
    );
  pointer-events: none;
  z-index: 2;
}
.artist-card.featured::after {
  background:
    linear-gradient(
      to top,
      rgba(5, 4, 2, 0.92) 0%,
      rgba(5, 4, 2, 0.48) 34%,
      transparent 56%
    ),
    linear-gradient(
      90deg,
      var(--hero-veil-dark) 0%,
      var(--hero-veil-mid) 44%,
      transparent 62%
    );
}
.artist-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: var(--photo-grade);
  transition: transform 0.45s ease, filter 0.3s ease;
}
.artist-card:hover .artist-card-img {
  transform: scale(1.05);
  filter: var(--photo-grade-hover);
}
.artist-card.featured .artist-card-img {
  object-position: center 12%;
}
.artist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, var(--gold-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.artist-card:hover::before { opacity: 1; }
.artist-number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  z-index: 5;
}
.artist-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 52px;
  line-height: 1;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.24em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228, 200, 114, 0.28);
  opacity: 0.85;
  mix-blend-mode: soft-light;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}
.coming-soon-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
  width: fit-content;
  position: relative;
  z-index: 4;
}
.artist-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.3s;
  position: relative;
  z-index: 4;
}
.artist-card:hover .artist-name { opacity: 1; }
.artist-genre {
  font-size: 13px;
  font-style: italic;
  color: var(--cream);
  opacity: 0.72;
  line-height: 1.5;
  margin-top: 6px;
  position: relative;
  z-index: 4;
}
.artist-card.featured {
  grid-column: span 2;
}
.artist-card.featured .artist-name { font-size: 48px; }
.artist-card.featured .artist-placeholder {
  font-size: 48px;
  letter-spacing: 0.28em;
}
.artist-card-accent .artist-placeholder {
  font-size: 56px;
  letter-spacing: 0.32em;
}
.artist-card:nth-child(4) .artist-card-img {
  object-position: center 35%;
}
.artist-card-accent .artist-card-img {
  object-position: 30% center;
}
.artist-card-accent .artist-accent-link {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.45);
  padding-bottom: 2px;
  margin-top: 4px;
  position: relative;
  z-index: 4;
  transition: color 0.2s, border-color 0.2s;
}
.artist-accent-link:hover {
  color: var(--gold-bright);
  border-color: var(--gold-light);
}

/* ─── MERCH ─── */
.merch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.merch-text p {
  font-size: 19px;
  line-height: 1.65;
  font-style: italic;
  color: var(--white);
  opacity: 0.82;
  margin-bottom: 32px;
  max-width: 420px;
}
.merch-notify {
  display: flex;
  gap: 0;
  max-width: 400px;
}
.merch-notify input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-hover);
  border-right: none;
  padding: 14px 20px;
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.merch-notify input::placeholder { color: var(--muted); }
.merch-notify input:focus { border-color: var(--border-gold); }
.merch-notify button {
  background: var(--gold-btn);
  border: none;
  padding: 14px 28px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-on-gold);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.merch-notify button:hover {
  background: var(--gold-btn-hover);
  box-shadow: 0 0 20px var(--gold-glow);
}
.merch-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.merch-item {
  background: var(--card-bg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.merch-item:hover { background: var(--card-bg-hover); }
.merch-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 4, 2, 0.88) 0%,
      rgba(5, 4, 2, 0.4) 30%,
      transparent 58%
    ),
    linear-gradient(
      90deg,
      rgba(5, 4, 2, 0.4) 0%,
      transparent 55%
    );
  pointer-events: none;
  z-index: 2;
}
.merch-item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: var(--photo-grade);
  transition: transform 0.45s ease, filter 0.3s ease;
}
.merch-item:hover .merch-item-img {
  transform: scale(1.05);
  filter: var(--photo-grade-hover);
}
.merch-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
  line-height: 1;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.32;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}
.merch-item-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
}
.merch-item-status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  opacity: 0.82;
  line-height: 1.65;
  margin-bottom: 60px;
  max-width: 440px;
}
.contact-links { display: flex; flex-direction: column; gap: 0; }
.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s;
  cursor: pointer;
}
.contact-link:last-child { border-bottom: 1px solid var(--border); }
.contact-link:hover { border-color: var(--border-gold); }
.contact-link:hover .link-label { color: var(--gold-light); }
.link-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--white);
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}
.contact-link:hover .link-label { opacity: 1; }
.link-arrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}
.contact-link:hover .link-arrow { color: var(--gold); transform: translateX(4px); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); font-style: italic; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--border-gold);
  background: rgba(18, 14, 8, 0.4);
}
.field select {
  cursor: pointer;
  color: var(--muted);
}
.field select option { background: var(--card-bg); color: var(--white); }
.form-submit {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}
.form-note {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  margin-top: 16px;
  text-align: right;
}
.success-msg {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: right;
  margin-top: 12px;
}
.error-msg {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #c97a6a;
  text-align: right;
  margin-top: 12px;
}

/* ─── FOOTER ─── */
footer {
  padding: 48px 60px;
  border-top: 1px solid var(--border-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050402 url('images/gold%20bg.png') center / cover no-repeat;
  filter: var(--photo-grade);
}
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      var(--hero-veil-dark) 0%,
      var(--hero-veil-mid) 42%,
      rgba(5, 4, 2, 0.75) 100%
    );
  pointer-events: none;
}
.footer-logo,
.footer-copy,
.footer-links {
  position: relative;
  z-index: 2;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.15em;
  color: var(--white);
}
.footer-logo span { color: var(--gold-light); }
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(232, 228, 220, 0.72);
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

/* ─── RESPONSIVE (fixed px — no clamp/calc/min) ─── */

/* 8K / ultra-wide */
@media (min-width: 3840px) {
  nav { padding: 40px 180px; }
  #hero { padding: 130px 180px 96px; }
  section { padding: 180px 180px; }
  footer { padding: 72px 180px; }
  .hero-content { width: 760px; }
  .hero-title { font-size: 260px; }
  .hero-subtitle { font-size: 26px; max-width: 560px; }
  .hero-scroll-wrap { left: 26%; }
  .section-title { font-size: 128px; margin-bottom: 80px; }
  #artists .section-title { margin-bottom: 56px; }
  .artists-grid {
    max-width: 2600px;
    margin: 0 auto;
    grid-auto-rows: 300px;
  }
  .merch-inner {
    gap: 140px;
    max-width: 2600px;
    margin: 0 auto;
  }
  .merch-text p { font-size: 22px; max-width: 520px; }
  .contact-grid {
    gap: 160px;
    max-width: 2600px;
    margin: 0 auto;
  }
  .contact-info h3 { font-size: 26px; max-width: 520px; }
  .artist-card { padding: 40px 36px; }
  .artist-card.featured .artist-name { font-size: 56px; }
  .artist-name { font-size: 40px; }
  .artist-number { top: 36px; right: 36px; }
  .merch-item-icon { font-size: 64px; }
  .footer-logo { font-size: 32px; }
  .suit-deco { font-size: 560px; }
}

/* 4K / QHD wide */
@media (min-width: 2560px) and (max-width: 3839px) {
  nav { padding: 36px 140px; }
  #hero { padding: 120px 140px 88px; }
  section { padding: 160px 140px; }
  footer { padding: 64px 140px; }
  .hero-content { width: 680px; }
  .hero-title { font-size: 220px; }
  .hero-subtitle { font-size: 24px; max-width: 520px; }
  .section-title { font-size: 112px; margin-bottom: 76px; }
  .artists-grid {
    max-width: 2400px;
    margin: 0 auto;
    grid-auto-rows: 268px;
  }
  .merch-inner {
    gap: 132px;
    max-width: 2400px;
    margin: 0 auto;
  }
  .contact-grid {
    gap: 150px;
    max-width: 2400px;
    margin: 0 auto;
  }
  .artist-card.featured .artist-name { font-size: 52px; }
  .suit-deco { font-size: 520px; }
}

/* Full HD+ / large desktop */
@media (min-width: 1920px) and (max-width: 2559px) {
  nav { padding: 32px 100px; }
  #hero { padding: 110px 100px 80px; }
  section { padding: 140px 100px; }
  footer { padding: 56px 100px; }
  .hero-content { width: 600px; }
  .hero-title { font-size: 200px; }
  .hero-subtitle { font-size: 22px; max-width: 480px; }
  .section-title { font-size: 104px; margin-bottom: 72px; }
  #artists .section-title { margin-bottom: 52px; }
  .artists-grid {
    max-width: 2000px;
    margin: 0 auto;
    grid-auto-rows: 248px;
  }
  .merch-inner {
    gap: 120px;
    max-width: 2000px;
    margin: 0 auto;
  }
  .contact-grid {
    gap: 140px;
    max-width: 2000px;
    margin: 0 auto;
  }
  .suit-deco { font-size: 480px; }
}

/* Standard large desktop */
@media (min-width: 1601px) and (max-width: 1919px) {
  .hero-title { font-size: 168px; }
  .hero-content { width: 560px; }
  .section-title { font-size: 88px; }
  .artists-grid { grid-auto-rows: 236px; }
}

@media (max-width: 1600px) {
  .hero-title { font-size: 152px; }
  .hero-content { width: 520px; }
  .section-title { font-size: 76px; }
}

@media (max-width: 1440px) {
  .hero-title { font-size: 140px; }
  .hero-content { width: 500px; }
  .section-title { font-size: 72px; }
  .artists-grid { grid-auto-rows: 224px; }
}

@media (max-width: 1280px) {
  nav { padding: 26px 48px; }
  #hero { padding: 92px 48px 68px; }
  section { padding: 108px 48px; }
  footer { padding: 44px 48px; }
  .hero-title { font-size: 128px; }
  .hero-content { width: 480px; }
  .hero-scroll-wrap { left: 29%; }
  .section-title { font-size: 68px; margin-bottom: 52px; }
  .merch-inner { gap: 64px; }
  .contact-grid { gap: 72px; }
  .artists-grid { grid-auto-rows: 216px; }
}

@media (max-width: 1200px) {
  nav { padding: 24px 40px; }
  #hero { padding: 88px 40px 64px; }
  section { padding: 100px 40px; }
  footer { padding: 40px 40px; }
  .hero-title { font-size: 120px; }
  .hero-content { width: 460px; }
  .hero-scroll-wrap { left: 30%; }
  .merch-inner { gap: 56px; }
  .contact-grid { gap: 64px; }
  .section-title { font-size: 64px; margin-bottom: 48px; }
  #artists .section-title { margin-bottom: 44px; }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero-title { font-size: 104px; }
  .hero-content { width: 420px; }
  .hero-subtitle { font-size: 18px; max-width: 400px; }
  .section-title { font-size: 56px; margin-bottom: 44px; }
  .merch-inner { grid-template-columns: 1fr; gap: 48px; }
  .merch-visual { max-width: 520px; width: 100%; }
  .merch-text p { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-info h3 { margin-bottom: 40px; max-width: 100%; }
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 212px;
  }
  .artist-card.featured { grid-column: span 2; }
  .artist-number { top: 24px; right: 24px; }
}

/* Small tablet */
@media (max-width: 900px) {
  nav ul { gap: 32px; }
  .hero-title { font-size: 96px; }
  .hero-content { width: 380px; }
  .hero-scroll-wrap { left: 32%; }
  .section-title { font-size: 52px; }
  .artists-grid { grid-auto-rows: 204px; }
  .artist-card { padding: 28px 22px; }
  .artist-card.featured .artist-name { font-size: 42px; }
  .artist-name { font-size: 32px; }
  .merch-visual { max-width: 100%; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  nav {
    padding: 18px 24px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .nav-eyebrow {
    font-size: 9px;
    letter-spacing: 0.22em;
    white-space: normal;
    max-width: 100%;
    flex: 1 1 100%;
    order: 2;
  }
  nav ul {
    gap: 28px;
    margin-left: 0;
    order: 1;
  }
  #hero {
    align-items: flex-end;
    padding: 88px 24px 56px;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-content { width: 100%; }
  .hero-title { font-size: 88px; }
  .hero-subtitle {
    font-size: 18px;
    max-width: 100%;
    margin-top: 24px;
  }
  .hero-cta { margin-top: 32px; }
  .hero-bg { background-position: 75% center; }
  .hero-scroll-wrap { bottom: 24px; left: 50%; }
  section { padding: 80px 24px; }
  .section-title { font-size: 48px; margin-bottom: 40px; }
  #artists .section-title { margin-bottom: 36px; }
  .artists-grid { grid-auto-rows: 196px; }
  .artist-card { padding: 26px 22px; }
  .artist-card.featured .artist-name { font-size: 40px; }
  .artist-placeholder { font-size: 44px; }
  .artist-card.featured .artist-placeholder { font-size: 42px; }
  .artist-card-accent .artist-placeholder { font-size: 48px; }
  .contact-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .link-arrow { font-size: 11px; }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 24px;
  }
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .suit-deco { font-size: 280px; }
}

/* Large phones */
@media (max-width: 600px) {
  .hero-title { font-size: 72px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }
  .section-title { font-size: 40px; margin-bottom: 36px; }
  .artists-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .artist-card.featured { grid-column: span 1; }
  .artist-card.featured .artist-name { font-size: 36px; }
  .artist-card.featured .artist-placeholder { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .merch-notify {
    flex-direction: column;
    max-width: 100%;
  }
  .merch-notify input {
    border-right: 1px solid var(--border-hover);
    width: 100%;
  }
  .merch-notify button { width: 100%; padding: 14px 20px; }
  .merch-visual { max-width: 100%; }
  .form-submit { justify-content: stretch; }
  .form-submit .btn-primary { width: 100%; text-align: center; }
  .artist-number { top: 20px; right: 20px; }
}

/* Standard phones */
@media (max-width: 480px) {
  .hero-title { font-size: 64px; }
  .hero-subtitle { font-size: 17px; }
  .section-title { font-size: 38px; }
  .artists-grid { grid-auto-rows: 192px; }
  .artist-name { font-size: 30px; }
  .coming-soon-badge {
    font-size: 8px;
    letter-spacing: 0.24em;
    padding: 4px 10px;
  }
  .merch-item-icon { font-size: 48px; }
}

/* Small phones */
@media (max-width: 400px) {
  nav { padding: 14px 16px; }
  nav ul { gap: 16px; width: 100%; justify-content: space-between; }
  nav ul a { font-size: 10px; letter-spacing: 0.1em; }
  .nav-eyebrow { font-size: 8px; letter-spacing: 0.16em; }
  #hero { padding: 80px 16px 48px; }
  section { padding: 64px 16px; }
  .hero-title { font-size: 58px; }
  .hero-subtitle { font-size: 16px; margin-top: 20px; }
  .hero-cta { margin-top: 24px; gap: 12px; }
  .btn-primary, .btn-ghost { font-size: 10px; padding: 13px 20px; }
  .section-title { font-size: 36px; margin-bottom: 32px; }
  .artists-grid { grid-auto-rows: 184px; }
  .artist-card { padding: 22px 16px; }
  .artist-name { font-size: 28px; }
  .artist-genre { font-size: 12px; }
  .artist-placeholder { font-size: 36px; letter-spacing: 0.18em; }
  .artist-card.featured .artist-placeholder { font-size: 34px; }
  .artist-card-accent .artist-placeholder { font-size: 40px; }
  .artist-accent-link { font-size: 9px; letter-spacing: 0.18em; }
  .merch-text p { font-size: 17px; }
  .contact-info h3 { font-size: 19px; margin-bottom: 32px; }
  .link-label { font-size: 16px; }
  footer { padding: 28px 16px; }
  .footer-logo { font-size: 22px; }
  .footer-copy { font-size: 9px; }
  .hero-scroll-wrap { bottom: 16px; }
  .hero-scroll::before { height: 40px; }
}

/* Very small (320px class devices) */
@media (max-width: 360px) {
  .hero-title { font-size: 52px; }
  .section-title { font-size: 32px; }
  .artists-grid { grid-auto-rows: 176px; }
  .artist-card.featured .artist-name { font-size: 32px; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ─── CARD SUIT DECO ─── */
.suit-deco {
  position: absolute;
  font-size: 400px;
  color: rgba(212, 175, 90, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
