/* Five Se7en Collective — refined palette + editorial type */
:root {
  --gold: #c4b078;
  --gold-dark: #a8925c;
  --gold-soft: rgba(196, 176, 120, 0.22);
  --cream: #f9f7f3;
  --white: #ffffff;
  --black: #0a0a0a;
  --muted: #4a4a4a;
  --font: "Montserrat", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--black);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ——— Header ——— */
.site-header {
  position: relative;
  z-index: 20;
  background: var(--gold);
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
}

.header-brand:hover .header-wordmark,
.header-brand:focus-visible .header-wordmark {
  opacity: 0.92;
}

.header-brand:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

/* White disc so full-color emblem reads on gold bar (no invert filter). */
.header-logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}

.header-brand:hover .header-logo-wrap,
.header-brand:focus-visible .header-logo-wrap {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-wordmark {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  max-width: min(42vw, 11rem);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  padding: 0.55rem 0.9rem;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem 1.65rem;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.88;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 5px;
  opacity: 1;
}

/* ——— Hero ——— */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.25rem 1.5rem 3rem;
  text-align: center;
  background: var(--white);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 35%,
    rgba(196, 176, 120, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero-logo {
  width: min(70vw, 360px);
  height: auto;
  display: block;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  margin: 0 0 2rem;
  max-width: 22rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--muted);
}

.hero-sub {
  margin: 0 0 2.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  min-height: 48px;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  background: var(--black);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--gold);
  transform: translateY(-1px);
}

.cta-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.cta-btn--ghost {
  background: transparent;
  color: var(--black);
}

.cta-btn--ghost:hover,
.cta-btn--ghost:focus-visible {
  background: var(--gold-soft);
  color: var(--black);
  box-shadow: none;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--gold);
  padding: 2rem 1.5rem 2.25rem;
  flex-shrink: 0;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.footer-tagline {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
}

.social-row--icons {
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-row--icons li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  color: var(--white);
}

.social-icon:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.footer-meta {
  margin: 1.5rem 0 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.footer-mail {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s ease;
}

.footer-mail:hover,
.footer-mail:focus-visible {
  border-color: var(--white);
}

/* ——— Mobile ——— */
@media (max-width: 900px) {
  .header-wordmark {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(180deg, #b8a46a 0%, var(--gold-dark) 100%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .site-header {
    flex-wrap: wrap;
  }

  .site-header.is-open .site-nav {
    max-height: 480px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem 1.75rem 1.5rem;
    gap: 0.65rem;
  }

  .site-nav a {
    display: block;
    padding: 0.45rem 0;
  }
}

@media (max-width: 480px) {
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-logo {
    width: min(82vw, 320px);
    margin-bottom: 1rem;
  }
}

/* ——— Home: releases ——— */
.home-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.releases-section {
  padding: 3.5rem 1.5rem 4.5rem;
  background: var(--cream);
  border-top: 1px solid rgba(196, 176, 120, 0.35);
}

.releases-section .section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.section-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-blurb {
  margin: 0 0 2.25rem;
  max-width: 40rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.35rem;
}

.release-card {
  border: 1px solid var(--black);
  padding: 1.35rem 1.4rem;
  background: var(--white);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.release-card:hover {
  box-shadow: 6px 6px 0 var(--gold);
  transform: translateY(-3px);
}

.release-card .release-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.release-card time {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.6rem;
}

.release-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.release-card p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: #383838;
}

.release-card a {
  color: var(--black);
  text-decoration: none;
}

.release-card a:hover,
.release-card a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.release-card .release-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.release-actions a {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
}

.release-actions a:hover,
.release-actions a:focus-visible {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ——— Inner pages ——— */
.page-main {
  flex: 1;
  padding: 2.75rem 1.5rem 4rem;
  background: var(--white);
}

.page-inner {
  max-width: 680px;
  margin: 0 auto;
}

.page-inner--wide {
  max-width: 1000px;
}

.page-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
}

.lead {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: #2a2a2a;
}

.text-block p {
  margin: 0 0 1.05rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.text-block p:last-child {
  margin-bottom: 0;
}

.link-inline {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-inline:hover,
.link-inline:focus-visible {
  color: var(--gold-dark);
}

.cta-block {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--gold-soft);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 1.5rem;
}

/* Embeds */
.embed-wrap {
  margin: 1.75rem 0;
  border: 1px solid var(--black);
  background: var(--cream);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--gold-soft);
}

.embed-wrap--spotify iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.embed-caption {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #444;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Roster */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.roster-card {
  border: 1px solid var(--black);
  padding: 1.35rem 1.25rem;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.roster-card:hover {
  background: var(--gold-soft);
  box-shadow: 4px 4px 0 var(--gold);
}

.roster-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.roster-card span {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.5;
}

.roster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.roster-links a {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1px;
}

.roster-links a:hover,
.roster-links a:focus-visible {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Discography */
.disco-table-wrap {
  overflow-x: auto;
  margin-top: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.disco-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.disco-table th,
.disco-table td {
  text-align: left;
  padding: 0.8rem 0.75rem;
  border-bottom: 1px solid #e8e4dc;
  vertical-align: top;
}

.disco-table th {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6rem;
  color: #333;
  background: var(--gold-soft);
}

.disco-table tbody tr:hover {
  background: rgba(196, 176, 120, 0.1);
}

.disco-table a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.disco-table a:hover,
.disco-table a:focus-visible {
  border-color: var(--black);
}

/* ——— Discography page (dense layout) ——— */
.page-inner--disco {
  max-width: 1120px;
}

.disco-page .lead {
  max-width: 48rem;
}

.disco-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 0 0 2.25rem;
}

.disco-stat {
  border: 1px solid var(--black);
  padding: 1rem 0.85rem;
  text-align: center;
  background: var(--cream);
}

.disco-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.disco-stat span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.disco-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
  margin: 0 0 2.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.disco-toc a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.disco-toc a:hover,
.disco-toc a:focus-visible {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

.disco-section {
  margin-bottom: 2.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(196, 176, 120, 0.35);
}

.disco-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.disco-section h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.disco-section .section-desc {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 42rem;
}

.disco-table--dense th,
.disco-table--dense td {
  padding: 0.5rem 0.5rem;
  font-size: 0.74rem;
}

.disco-table .cell-muted {
  color: #777;
  font-size: 0.7rem;
}

.disco-type-pill {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.45rem;
  line-height: 1.2;
}

.disco-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin-top: 1.25rem;
}

.disco-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--black);
  border: 1px solid var(--black);
  background: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.disco-chip:hover,
.disco-chip:focus-visible {
  background: var(--gold-soft);
  box-shadow: 2px 2px 0 var(--gold);
}

.disco-marquee {
  margin: 2rem 0 0;
  padding: 0.75rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
  text-align: center;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 1.25rem;
}

.video-tile {
  border: 1px solid var(--black);
  overflow: hidden;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--gold-soft);
}

.video-tile h2 {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Merch / product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.35rem;
  margin-top: 1.5rem;
}

.product-card {
  border: 1px solid var(--black);
  padding: 1.5rem 1.35rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--gold);
}

.product-card h2 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card p {
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.product-card .cta-btn {
  align-self: flex-start;
  margin-top: auto;
}

.note {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.65;
}

.back-top {
  display: inline-block;
  margin-top: 2.25rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
}

.back-top:hover,
.back-top:focus-visible {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.page-main code {
  font-size: 0.85em;
  padding: 0.15em 0.35em;
  background: var(--gold-soft);
  border-radius: 3px;
}

.contact-card {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--black);
  background: var(--cream);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-card a {
  font-weight: 600;
  color: var(--black);
}
