/* Nomarch Press Kit — matches PDF design */

:root {
  --bg: #15131b;
  --bg-elevated: #1c1a24;
  --bg-card-copper: #261e19;
  --bg-card-teal: #192429;
  --text: #f5f0e6;
  --text-muted: #9a9590;
  --text-dim: #6b6662;
  --copper: #c4784a;
  --copper-muted: #9a6b4f;
  --teal: #5aaba8;
  --teal-muted: #4a8f8c;
  --border: rgba(255, 255, 255, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --nav-height: 4.5rem;
  --section-pad: clamp(3rem, 6vw, 5rem);
  --content-max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(21, 19, 27, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 1.5rem;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--copper);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* Sections */
.section {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + var(--section-pad)) var(--section-pad) var(--section-pad);
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 1rem;
}

.label-muted {
  color: var(--text-muted);
}

.label-copper {
  color: var(--copper-muted);
}

.headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Cover */
.section-cover {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cover-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-cover.jpg") center / cover no-repeat;
  filter: grayscale(100%);
}

.cover-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.cover-logo {
  position: relative;
  z-index: 1;
  width: min(90vw, 56rem);
  padding: 0 1.5rem 3rem;
}

.cover-logo img {
  width: 100%;
  height: auto;
}

/* Intro / EPK title */
.section-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(196, 120, 74, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(90, 171, 168, 0.1) 0%, transparent 50%),
    var(--bg);
}

.section-intro .label-muted {
  position: absolute;
  top: calc(var(--nav-height) + 2rem);
  left: var(--section-pad);
}

.intro-logo {
  max-width: min(90vw, 42rem);
  margin: 0 auto 2.5rem;
}

.intro-logo img {
  width: 100%;
}

.intro-meta {
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
}

.pronunciation {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.intro-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.genre-tags {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin: 0;
}

.tag-copper {
  color: var(--copper);
}

.tag-teal {
  color: var(--teal);
}

.tag-separator {
  color: var(--text-dim);
  margin: 0 0.5rem;
}

/* Bio */
.section-bio {
  background: var(--bg);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.bio-content p:not(.label):not(.lead) {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.at-a-glance {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
}

.at-a-glance dl {
  margin: 0;
}

.glance-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.glance-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.glance-row:first-of-type {
  padding-top: 0;
}

.glance-row dt {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}

.glance-row dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

/* The Duo */
.section-duo {
  background: var(--bg);
}

.duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.member-card {
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem;
  text-align: left;
}

.member-card-copper {
  background: var(--bg-card-copper);
}

.member-card-teal {
  background: var(--bg-card-teal);
}

.member-photo {
  width: 13rem;
  max-width: 100%;
  margin: 0 0 1.5rem;
}

.member-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.member-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.member-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
}

.member-card-teal .member-role {
  color: var(--teal);
}

/* Music */
.section-music {
  background: var(--bg);
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.release-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.release-year {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.release-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.release-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 1.25rem;
}

.release-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.release-link:hover {
  color: var(--text);
}

.live-label {
  margin-bottom: 1.25rem;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.live-video {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.live-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.live-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.live-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  transition: background 0.2s;
}

.live-caption:hover {
  background: rgba(255, 255, 255, 0.03);
}

.live-play {
  color: var(--copper);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.live-title {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Rider */
.section-rider {
  background: var(--bg);
}

.rider-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.rider-main p:not(.label) {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.stage-card {
  margin-top: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.stage-label {
  margin-bottom: 1.25rem;
}

.stage-members {
  display: flex;
  gap: 2.5rem;
}

.stage-member h4 {
  font-size: 1.1rem;
  margin: 0.75rem 0 0.25rem;
}

.member-photo-sm {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}

.member-photo-sm img {
  width: 112%;
  height: 112%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate(-5.5%, -5.5%);
}

.member-photo-copper {
  border-color: var(--copper);
}

.member-photo-teal {
  border-color: var(--teal);
}

.stage-member .member-role {
  color: var(--copper-muted);
}

.stage-member:last-child .member-role {
  color: var(--teal);
}

.needed-items table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.needed-items td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.needed-items tr:last-child td {
  border-bottom: none;
}

.needed-items td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  color: var(--copper);
  font-weight: 500;
}

/* Stage Plan */
.section-stage-plan {
  background: var(--bg);
}

.stage-plan-wrap {
  overflow: hidden;
}

.stage-plan-wrap img {
  width: 100%;
  display: block;
}

/* Connect */
.section-connect {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

.connect-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-connect.jpg") center / cover no-repeat;
  filter: grayscale(100%);
}

.connect-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.connect-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--nav-height) + 2rem) var(--section-pad) var(--section-pad);
}

.connect-headline {
  max-width: var(--content-max);
  margin: 0 auto 1.5rem;
}

.connect-panel {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  background: rgba(30, 24, 20, 0.92);
  border: 1px dashed rgba(196, 120, 74, 0.45);
  border-radius: 12px;
  padding: 2rem;
}

.connect-booking .email-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.connect-booking a {
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  transition: color 0.2s;
}

.connect-booking a:hover {
  color: var(--copper);
}

.press-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.connect-social {
  display: flex;
  gap: 1rem;
}

.social-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(21, 19, 27, 0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.social-card:hover {
  border-color: rgba(196, 120, 74, 0.4);
}

.social-icon {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}

.social-card .label {
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 900px) {
  .bio-grid,
  .rider-grid,
  .connect-panel {
    grid-template-columns: 1fr;
  }

  .releases-grid {
    grid-template-columns: 1fr;
  }

  .duo-grid,
  .live-grid {
    grid-template-columns: 1fr;
  }

  .connect-social {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(21, 19, 27, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
  }

  .stage-members {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-intro .label-muted {
    position: static;
    margin-bottom: 2rem;
  }
}
