/* =========================================================
   TOKENS
   ========================================================= */
:root {
  --paper: #fafaf9;
  --ink: #121212;
  --ink-soft: #6e6e73;
  --void: #0b0b0c;
  --void-soft: #a8a8ad;
  --amber: #a8763e;
  --amber-deep: #8a5f30;
  --line: #e5e4df;
  --line-dark: #262624;

  --font-display: 'Archivo', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --gutter: clamp(24px, 5vw, 64px);
  --section-pad: clamp(72px, 12vw, 160px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.mono { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.02em; color: var(--ink-soft); text-transform: uppercase; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 20px;
}
.eyebrow--light { color: var(--amber); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.12em;
}
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--amber); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
}
.nav__toggle span {
  width: 22px; height: 2px; background: var(--ink); display: block;
}

@media (max-width: 760px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px;
    gap: 16px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(80px, 16vw, 180px) var(--gutter) var(--section-pad);
  text-align: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.hero__sub {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-size: 18px;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { opacity: 0.85; }
.section--dark .btn--primary { background: var(--amber); color: #0b0b0c; }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.section--dark .btn--ghost { border-color: var(--void-soft); color: var(--paper); }

/* =========================================================
   SECTIONS (generic)
   ========================================================= */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.section--dark {
  max-width: none;
  background: var(--void);
  color: var(--paper);
}
.section--dark > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.01em;
  margin: 0 0 48px;
}
.section__title--light { color: var(--paper); }

/* =========================================================
   MISSION
   ========================================================= */
.mission { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.mission__statement {
  max-width: 760px;
  margin: 0 auto 56px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pillars {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pillar {
  padding: 0 24px;
  border-left: 1px solid var(--line);
}
.pillar:first-child { border-left: none; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--amber);
}
.pillar p { margin: 0; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .pillar { border-left: none; padding: 0; }
}

/* =========================================================
   FEATURED RELEASE
   ========================================================= */
.featured__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.featured__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 8px;
}
.featured__desc { color: var(--void-soft); margin-top: 16px; max-width: 440px; }
.featured__player { display: flex; justify-content: center; }
.bandcamp-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  line-height: 0;
}
@media (max-width: 820px) {
  .featured__grid { grid-template-columns: 1fr; text-align: center; }
  .featured__desc { margin-left: auto; margin-right: auto; }
}

/* =========================================================
   GRIDS (shared)
   ========================================================= */
.grid { display: grid; gap: 32px; }
.grid--artists { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--services { grid-template-columns: 1fr 1fr; gap: 40px; }
.grid--catalog { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--merch { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
@media (max-width: 760px) {
  .grid--services { grid-template-columns: 1fr; }
}

/* Artists */
.artist-card__photo {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  margin-bottom: 16px;
}
.artist-card h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 1.1rem; }
.artist-card__bio { color: var(--ink-soft); font-size: 14px; margin: 0 0 12px; }
.artist-card__links { display: flex; gap: 16px; font-size: 13px; font-weight: 600; }
.artist-card__links a { border-bottom: 1px solid var(--line); }

/* Services */
.service-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
}
.section:not(.section--dark) .service-card--outline { background: transparent; border: 1px solid var(--line); }
.section--dark .service-card { border: 1px solid var(--line-dark); }
.service-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 8px 0 12px; }
.service-card p { margin: 0 0 8px; }
.section--dark .service-card p:not(.mono):not(.price) { color: var(--void-soft); }
.price { font-weight: 600; color: var(--amber); }
.link-arrow { display: inline-block; margin-top: 16px; font-weight: 600; font-size: 14px; border-bottom: 1px solid currentColor; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery__item { aspect-ratio: 3/4; border-radius: 14px; }
@media (max-width: 760px) { .gallery { grid-column: 1; } }

/* Catalog */
.release-card {
  background: none; border: none; padding: 0; text-align: left; color: inherit;
}
.release-card__art { aspect-ratio: 1/1; border-radius: 16px; margin-bottom: 14px; transition: transform 0.2s ease; }
.release-card:hover .release-card__art { transform: scale(1.02); }
.release-card h3 { margin: 4px 0 4px; font-family: var(--font-display); font-size: 1.05rem; }
.release-card .tag { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* Merch */
.merch-card__img { aspect-ratio: 1/1; border-radius: 16px; margin-bottom: 14px; }
.merch-card h3 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1rem; }
.merch-note { margin-top: 40px; color: var(--void-soft); font-size: 14px; }
.merch-note a { color: var(--amber); border-bottom: 1px solid var(--amber); }

/* =========================================================
   MODAL
   ========================================================= */
.modal {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,0.7);
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal__panel {
  position: relative;
  background: var(--void);
  color: var(--paper);
  border-radius: 20px;
  padding: 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
}
.modal__panel h3 { font-family: var(--font-display); margin: 8px 0 24px; }
.modal__close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--paper);
  font-size: 24px; line-height: 1;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-form { max-width: 560px; }
.form-row { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 14px; font-weight: 600; }
.form-row input, .form-row select, .form-row textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus,
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
.form-note { margin-top: 16px; color: var(--amber); font-weight: 600; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px var(--gutter) 32px;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer__tag { color: var(--ink-soft); font-size: 14px; margin-top: 8px; }
.footer__contact-link { font-weight: 700; font-size: 15px; }
.footer__social { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.newsletter label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 8px; }
.newsletter__row { display: flex; gap: 8px; }
.newsletter__row input {
  flex: 1; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--line); font-family: inherit;
}
.newsletter__row button {
  padding: 10px 16px; border-radius: 8px; border: none; background: var(--ink); color: var(--paper); font-weight: 600; font-size: 14px;
}
.footer__legal { max-width: 1180px; margin: 40px auto 0; color: var(--ink-soft); font-size: 12px; }
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
