@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;700;900&family=Space+Grotesk:wght@400;500&display=swap');

:root {
  --bg: #0b0b0b;
  --fg: #f4f1ea;
  --muted: #8a8a8a;
  --line: #2a2a2a;
  --accent: #b8322a;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

img { max-width: 100%; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--fg);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }

.logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark .logo-img { height: 64px; width: auto; display: block; }
.logo-mark span { color: var(--muted); font-weight: 500; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.hero .index-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -2px;
  max-width: 1100px;
}
.hero p {
  margin-top: 28px;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}
.hero .scroll-cue {
  margin-top: 60px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}

/* ---------- Section headers (numbered, Noun-style) ---------- */
.section { padding: 120px 0; border-bottom: 1px solid var(--line); }
.section.tight { padding: 80px 0; }
.section-head {
  display: flex;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 48px;
}
.section-head .num {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
}
.section-head h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.col-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 14px;
}
.col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
p.body-text { color: var(--fg); text-align: justify; font-size: 16px; margin-bottom: 16px; }
p.body-text.muted { color: var(--muted); }

ul.plain { list-style: none; }
ul.plain li { padding: 6px 0; border-top: 1px solid var(--line); font-size: 15px; }
ul.plain li:last-child { border-bottom: 1px solid var(--line); }

/* ---------- Roster grid ---------- */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--line);
}
.artist-card {
  background: var(--bg);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.artist-card .ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #1c1c1c, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--line);
  font-size: 12px;
  letter-spacing: 2px;
}
.artist-card .artist-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.artist-card .artist-photo.pos-solance {
  object-position: center 40%;
}
.artist-card .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0) 65%);
  pointer-events: none;
}
.artist-card .info {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.artist-card .info h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
}
.artist-card .info p {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
}
.artist-links {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.artist-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--muted);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.artist-links a:hover { border-color: var(--fg); }

/* ---------- Roster teaser (home) ---------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--line);
}
.teaser-grid .artist-card { aspect-ratio: 3/4; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 28px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--fg); }
.form-field textarea { resize: vertical; min-height: 100px; }

.btn {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 36px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn:hover { opacity: 0.85; }

.contact-info { font-size: 16px; }
.contact-info .row { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-info .row:last-child { border-bottom: 1px solid var(--line); }
.contact-info .label { font-size: 12px; letter-spacing: 2px; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; }
.contact-info .value { font-size: 20px; }

/* ---------- Footer ---------- */
footer {
  padding: 32px 0;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--muted);
}
footer a:hover { color: var(--fg); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cols-4, .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .cols-2 { grid-template-columns: 1fr; gap: 40px; }

  .nav .wrap { height: 72px; }
  .logo-mark .logo-img { height: 52px; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 22px;
    gap: 8px;
    display: none;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; width: 100%; padding: 14px 0; font-size: 15px; border-top: 1px solid var(--line); opacity: 1; }
  .nav-links li { width: 100%; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 22px; }
  .cols-4, .cols-3, .teaser-grid, .roster-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section.tight { padding: 48px 0; }
  .hero { min-height: 78vh; }
  .btn { width: 100%; text-align: center; }
  .contact-info .value { font-size: 17px; }
}
@media (max-width: 400px) {
  .logo-mark span { display: none; }
}
