/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
  --ink: #2B1810;
  --parchment: #F0E6D2;
  --parchment-2: #E6D8BC;
  --wine: #7A1F2B;
  --wine-dark: #591620;
  --gold: #C9A227;
  --forest: #3F5B44;

  --display: "Fraunces", "Georgia", serif;
  --body: "Literata", "Georgia", serif;
  --mono: "IBM Plex Mono", monospace;

  --max: 1120px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Embroidery divider (signature element)
   ========================================================================== */
.stitch {
  height: 22px;
  width: 100%;
  background-image:
    repeating-linear-gradient(115deg, var(--gold) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(65deg, var(--gold) 0 2px, transparent 2px 22px);
  background-position: center;
  opacity: 0.85;
}
.stitch.on-dark {
  background-image:
    repeating-linear-gradient(115deg, var(--parchment) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(65deg, var(--parchment) 0 2px, transparent 2px 22px);
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  background: var(--ink);
  color: var(--parchment);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--parchment);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a {
  text-decoration: none;
  color: var(--parchment-2);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--gold); border-color: var(--gold); }

.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(240,230,212,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  text-decoration: none;
}
.socials a:hover, .socials a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}
.socials svg { width: 15px; height: 15px; fill: currentColor; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--parchment-2);
  color: var(--parchment);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 1rem;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-row { flex-wrap: wrap; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    padding: 18px 0 6px;
    border-top: 1px solid rgba(240,230,212,0.2);
    margin-top: 10px;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--wine);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,39,0.18), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(201,162,39,0.14), transparent 45%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px 76px;
  position: relative;
}
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0 0 18px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.03;
  margin: 0 0 22px;
  max-width: 15ch;
}
.hero p {
  max-width: 52ch;
  font-size: 1.12rem;
  color: rgba(240,230,212,0.92);
  margin: 0 0 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  transition: background 0.15s, color 0.15s;
}
.btn:hover, .btn:focus-visible { background: transparent; color: var(--gold); }
.btn.ghost {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(240,230,212,0.5);
}
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   Section shell
   ========================================================================== */
section.block { padding: 76px 0; }
.block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.block-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0;
}
.block-head .see-all {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  color: var(--wine);
  border-bottom: 1px solid var(--wine);
  padding-bottom: 2px;
}

/* ==========================================================================
   Concerts
   ========================================================================== */
.concert-list {
  display: flex;
  flex-direction: column;
}
.concert {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--parchment-2);
}
.concert:last-child { border-bottom: 1px solid var(--parchment-2); }
.concert .when {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--wine);
}
.concert .when strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.concert .where { font-family: var(--display); font-size: 1.15rem; }
.concert .where small {
  display: block;
  font-family: var(--body);
  font-size: 0.92rem;
  color: #5b4a3a;
  font-style: italic;
}
.concert .btn { padding: 10px 20px; font-size: 0.75rem; }

@media (max-width: 640px) {
  .concert { grid-template-columns: 1fr; gap: 8px; }
}

/* ==========================================================================
   News cards
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--parchment-2);
}
.news-card .thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--forest), #274430);
  position: relative;
}
.news-card .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(240,230,212,0.06) 0 8px, transparent 8px 16px);
}
.news-card .body { padding: 20px 22px 24px; }
.news-card .date {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wine);
}
.news-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 8px 0 10px;
  line-height: 1.3;
}
.news-card a.more {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
}

@media (max-width: 880px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  background: var(--ink);
  color: var(--parchment);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.about h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 14px;
}
.about p { color: rgba(240,230,212,0.85); margin: 0; }

@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ==========================================================================
   Band members
   ========================================================================== */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.member-card { text-align: left; }
.member-photo {
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--wine), var(--wine-dark));
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}
.member-card h4 {
  font-family: var(--display);
  color: var(--parchment);
  font-size: 1.15rem;
  margin: 0 0 2px;
}
.member-card .role {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 0 10px;
}
.member-card .bio {
  color: rgba(240,230,212,0.8);
  font-size: 0.92rem;
  margin: 0;
}
@media (max-width: 780px) {
  .member-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .member-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Album / book promo
   ========================================================================== */
.promo {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: center;
}
.promo .cover {
  aspect-ratio: 3/4;
  background:
    linear-gradient(160deg, var(--wine) 0%, var(--wine-dark) 100%);
  border: 6px solid #fff;
  box-shadow: 0 18px 40px rgba(43,24,16,0.25);
  position: relative;
}
.promo .cover::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(201,162,39,0.6);
}
.promo h2 { font-family: var(--display); font-size: 2rem; margin: 0 0 16px; }
.promo p { max-width: 48ch; color: #4a3b2d; margin: 0 0 26px; }

@media (max-width: 780px) {
  .promo { grid-template-columns: 1fr; }
  .promo .cover { max-width: 240px; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid div {
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--parchment-2), #cbb98f);
}
.gallery-grid div:nth-child(3n+1) { background: linear-gradient(160deg, var(--wine), var(--wine-dark)); }
.gallery-grid div:nth-child(4n+2) { background: linear-gradient(160deg, var(--forest), #274430); }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  background: var(--parchment-2);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact h2 { font-family: var(--display); font-size: 2rem; margin: 0 0 16px; }
.contact-detail { margin: 0 0 10px; font-family: var(--mono); font-size: 0.95rem; }
.contact-detail span { color: var(--wine); display: inline-block; width: 90px; }

@media (max-width: 780px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(240,230,212,0.75);
  padding: 40px 0 30px;
  font-size: 0.85rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links a { text-decoration: none; color: rgba(240,230,212,0.75); }
.footer-links a:hover { color: var(--gold); }

/* ==========================================================================
   Nav active state (multi-page site)
   ========================================================================== */
.nav-links a.is-active { color: var(--gold); border-color: var(--gold); }

/* ==========================================================================
   Inner-page hero (subpages)
   ========================================================================== */
.page-hero {
  background: var(--wine);
  color: var(--parchment);
  padding: 56px 0 46px;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 8px 0 0;
}
.page-hero .eyebrow { margin: 0; }

.empty-note { color: #5b4a3a; font-style: italic; }
.about .empty-note { color: rgba(240,230,212,0.75); }

/* ==========================================================================
   Past concerts (muted list)
   ========================================================================== */
.concert-list.muted .concert { opacity: 0.6; }
.concert-list.muted .btn { display: none; }

/* ==========================================================================
   News article detail
   ========================================================================== */
.article { max-width: 72ch; }
.article-cover {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--parchment-2);
  margin-bottom: 30px;
}
.article-body p { margin: 0 0 20px; font-size: 1.05rem; }

/* ==========================================================================
   Albums
   ========================================================================== */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.album-card { text-align: left; }
.album-cover {
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--wine), var(--wine-dark));
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 30px rgba(43,24,16,0.18);
  margin-bottom: 16px;
}
.album-card h3 { font-family: var(--display); font-size: 1.25rem; margin: 0 0 2px; }
.album-card .year { font-family: var(--mono); font-size: 0.78rem; color: var(--wine); margin: 0 0 10px; }
.album-card .desc { color: #4a3b2d; font-size: 0.92rem; margin: 0; }

@media (max-width: 880px) {
  .album-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .album-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Public contact form
   ========================================================================== */
.site-form { max-width: 480px; }
.site-form label {
  display: block;
  margin: 16px 0 6px;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wine);
}
.site-form input[type=text],
.site-form input[type=email],
.site-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9b98f;
  background: #fff;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
}
.site-form textarea { resize: vertical; }
.site-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-notice {
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  border-left: 3px solid var(--wine);
}
.form-notice.success { border-color: var(--forest); background: rgba(63,91,68,0.08); }
.form-notice.error { border-color: #8a2f2f; background: rgba(138,47,47,0.08); }
