/* ─────────────────────────────────────────────────────────────
   Pressgang Mutiny — main.css
   Dark, warm, modern folk. No costume.
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --bg:           #0c0a08;
  --bg-card:      #131009;
  --bg-elevated:  #1c1610;
  --text:         #f0e8d8;
  --text-muted:   #907c68;
  --text-faint:   #4a3e30;
  --accent:       #1a6fa8;
  --accent-light: #2a8fd0;
  --border:       #241c14;
  --border-light: #302418;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w:        1100px;
  --gutter:       clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0,30 C10,24 20,36 30,30 C40,24 50,36 60,30' fill='none' stroke='%23ffffff' stroke-width='0.4' stroke-opacity='0.03'/%3E%3Cpath d='M0,50 C10,44 20,56 30,50 C40,44 50,56 60,50' fill='none' stroke='%23ffffff' stroke-width='0.4' stroke-opacity='0.03'/%3E%3Cpath d='M0,10 C10,4 20,16 30,10 C40,4 50,16 60,10' fill='none' stroke='%23ffffff' stroke-width='0.4' stroke-opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-light); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin-bottom: 1.2rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

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

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }
.nav-logo:hover { color: var(--text); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 0.4rem 0.9rem;
  border-radius: 0;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
  }
  .nav-mobile-toggle { display: block; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero-content {
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  padding-left: max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.hero-subtagline {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.65;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,10,8,0.85) 0%, transparent 18%);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(224,92,26,0.15) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    height: 55vw;
    max-height: 420px;
  }
  .hero-image::after {
    background: linear-gradient(to top, var(--bg) 0%, transparent 50%);
  }
  .hero-content {
    padding: 3rem var(--gutter) 2rem;
  }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-light);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Album strip ─────────────────────────────────────────────── */
.albums {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-block: 3rem;
}

.album-card {
  text-align: center;
}

.album-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.album-card:hover img { border-color: var(--accent); }

.album-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.album-card .year {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Tour ────────────────────────────────────────────────────── */
.tour-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

.tour-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.tour-item:hover { background: var(--bg-card); margin-inline: -1rem; padding-inline: 1rem; }

.tour-date {
  font-family: var(--font-display);
  text-align: center;
  line-height: 1.1;
}

.tour-date .day {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.tour-date .month {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tour-info h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.tour-info .location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tour-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 0;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  white-space: nowrap;
}

.tour-tag.festival { border-color: var(--accent); color: var(--accent); }

@media (max-width: 600px) {
  .tour-item { grid-template-columns: 60px 1fr; }
  .tour-tag { display: none; }
}

/* ── Podcast hero ────────────────────────────────────────────── */
.podcast-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 64px;
}

.podcast-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.podcast-hero-video iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translateX(-50%);
  opacity: 0.5;
}

.podcast-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--bg) 15%, rgba(12,10,8,0.6) 60%, rgba(12,10,8,0.3) 100%);
}

.podcast-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.podcast-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.podcast-hero-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 55ch;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── Episode grid ────────────────────────────────────────────── */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.episode-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
  color: var(--text);
}
.episode-card:hover { border-color: var(--accent); color: var(--text); }

.episode-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-elevated);
}
.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}
.episode-card:hover .episode-thumb img { opacity: 0.85; }

.episode-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(0,0,0,0.3);
}
.episode-card:hover .episode-play { opacity: 1; }

.episode-info {
  padding: 1.25rem;
  flex: 1;
}
.episode-info h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.3; }
.episode-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── Notable appearances ─────────────────────────────────────── */
.notable-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

.notable-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.notable-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.notable-loc {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── About ───────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-image-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.aig-main img,
.aig-secondary img,
.aig-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aig-main {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.aig-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.aig-secondary > div {
  aspect-ratio: 1;
  overflow: hidden;
}

.aig-wide {
  width: 100%;
  aspect-ratio: 16/5;
  overflow: hidden;
}

.about-text .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-gallery { order: -1; }
}

/* ── Quotes ──────────────────────────────────────────────────── */
.quotes {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.quotes-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 780px;
}

.quote-card {
  padding: 0;
  background: none;
  border: none;
}

.quote-card:nth-child(even) {
  padding-left: clamp(2rem, 8vw, 6rem);
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.quote-text::before { content: '\2014\2009'; color: var(--accent); }

.quote-source {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Rotating quotes ─────────────────────────────────────────── */
.quotes-section {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.quotes-rotating {
  position: relative;
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rotating-quote {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease;
  margin: 0;
  padding: 0;
  max-width: 700px;
}
.rotating-quote.active {
  opacity: 1;
}
.rotating-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin: 0 0 0.4rem;
}
.rotating-quote-cite {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
  display: block;
}

/* ── Pull quote (standalone) ─────────────────────────────────── */
.pull-quote-band {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pull-quote cite {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ── Podcast section ─────────────────────────────────────────── */
.podcast-feature {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
}

.podcast-feature img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 600px) {
  .podcast-feature { grid-template-columns: 1fr; }
  .podcast-feature img { max-width: 160px; }
}

/* ── Press / EPK ─────────────────────────────────────────────── */
.bio-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.bio-tab {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
  margin-bottom: -1px;
}

.bio-tab.active,
.bio-tab:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.bio-panel { display: none; }
.bio-panel.active { display: block; }

.press-quotes-list { list-style: none; }
.press-quotes-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.press-quotes-list li:last-child { border-bottom: none; }

.press-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.press-quote-source {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.festival-list {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
}
.festival-list li {
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  break-inside: avoid;
  color: var(--text-muted);
}
.festival-list li::before {
  content: '— ';
  color: var(--accent);
}

@media (max-width: 600px) {
  .festival-list { columns: 1; }
}

.epk-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── News ────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.news-card:hover { border-color: var(--accent); }

.news-card-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.news-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Single page (news article etc.) ────────────────────────── */
.page-header {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.page-header h1 { margin-bottom: 1rem; }

.article-body {
  max-width: 68ch;
}

.article-body p { margin-bottom: 1.4rem; }
.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h3 { margin: 2rem 0 0.75rem; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding-block: 3rem 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  padding-block: 3rem;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.footer-brand span { color: var(--accent); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

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

.footer-social a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--text); }

.mailing-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mailing-form input[type="email"] {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.6rem 0.85rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.mailing-form input[type="email"]::placeholder { color: var(--text-faint); }
.mailing-form input[type="email"]:focus { border-color: var(--accent); }

.mailing-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.mailing-form button:hover { background: var(--accent-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.canada-council {
  font-size: 0.72rem;
  color: var(--text-faint);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Members grid ────────────────────────────────────────────── */
.members-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.member-card {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.member-photo {
  width: 120px;
  min-width: 120px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.member-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  flex: 1;
}

.member-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.member-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

@media (max-width: 520px) {
  .member-card {
    flex-direction: column;
  }
  .member-photo {
    width: 90px;
    min-width: 90px;
  }
}

.about-prose {
  max-width: 68ch;
}
.about-prose p { margin-bottom: 1.4rem; }

/* ── Photo gallery ──────────────────────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 0.5rem;
}

.photo-gallery__item {
  overflow: hidden;
  background: var(--bg-elevated);
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-gallery__item:hover img { transform: scale(1.03); }

/* Layout: big left, two stacked right, then wide stage shot */
.photo-gallery__item:nth-child(1) { grid-column: 1 / 8; grid-row: 1; aspect-ratio: 4/3; }
.photo-gallery__item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; aspect-ratio: 3/4; }
.photo-gallery__item:nth-child(3) { grid-column: 1 / 5; grid-row: 2; aspect-ratio: 1; }
.photo-gallery__item:nth-child(4) { grid-column: 5 / 9; grid-row: 2; aspect-ratio: 1; }
.photo-gallery__item:nth-child(5) { grid-column: 9 / 13; grid-row: 2; aspect-ratio: 1; }

@media (max-width: 700px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  .photo-gallery__item { grid-column: unset !important; grid-row: unset !important; aspect-ratio: 1 !important; }
}

/* EPK press photo grid */
.epk-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.epk-photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.epk-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.epk-photo__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
}

@media (max-width: 600px) {
  .epk-photos { grid-template-columns: 1fr; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

.page-top-pad { padding-top: calc(64px + 1.5rem); }

/* ── Nautical treatment ─────────────────────────────────────── */

/* Subtle chart/map overlay on hero */
.hero {
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='60' cy='60' r='58' fill='none' stroke='%231a6fa8' stroke-width='0.3' stroke-opacity='0.12'/%3E%3Ccircle cx='60' cy='60' r='40' fill='none' stroke='%231a6fa8' stroke-width='0.3' stroke-opacity='0.10'/%3E%3Ccircle cx='60' cy='60' r='20' fill='none' stroke='%231a6fa8' stroke-width='0.3' stroke-opacity='0.08'/%3E%3Cline x1='60' y1='2' x2='60' y2='118' stroke='%231a6fa8' stroke-width='0.3' stroke-opacity='0.08'/%3E%3Cline x1='2' y1='60' x2='118' y2='60' stroke='%231a6fa8' stroke-width='0.3' stroke-opacity='0.08'/%3E%3Cline x1='18' y1='18' x2='102' y2='102' stroke='%231a6fa8' stroke-width='0.2' stroke-opacity='0.06'/%3E%3Cline x1='102' y1='18' x2='18' y2='102' stroke='%231a6fa8' stroke-width='0.2' stroke-opacity='0.06'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.hero-content, .hero-image {
  position: relative;
  z-index: 1;
}

/* Rope divider between sections */
.rope-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 0.5rem 0;
  opacity: 0.35;
}
.rope-divider svg {
  width: 100%;
  height: 12px;
}

/* Compass rose decoration on pull quote */
.pull-quote-band {
  position: relative;
}
.pull-quote-band::before {
  content: '✦';
  position: absolute;
  left: calc((100% - var(--max-w)) / 2 + 1rem);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.4;
}

/* Section label anchor feel */
.section-label {
  letter-spacing: 0.14em;
}

/* ── Videos section ──────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.video-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.video-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-card);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ── Releases section ────────────────────────────────────────── */
.release-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.release-block:first-of-type {
  border-top: none;
  padding-top: 1rem;
}
.release-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.release-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.release-title {
  margin: 0 0 0.25rem;
  font-size: 1.3rem;
}
.release-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.release-dsp-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.dsp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.dsp-btn {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.dsp-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Music page ─────────────────────────────────────────────── */
.music-album {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.music-album:last-child {
  border-bottom: none;
}
.music-album-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.music-album-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.music-album-meta {
  flex: 1;
}
.music-album-title {
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}
.music-album-year {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.music-album-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .music-album-header { flex-direction: column; gap: 1rem; }
  .music-album-thumb { width: 90px; height: 90px; }
}

/* ── Album cover grid (Music listing page) ───────────────── */
.album-cover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.album-cover-card {
  display: block;
  text-align: center;
  color: var(--text);
  transition: transform 0.2s;
}
.album-cover-card:hover {
  color: var(--text);
  transform: translateY(-4px);
}
.album-cover-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.album-cover-card:hover .album-cover-card-img {
  border-color: var(--accent);
}
.album-cover-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.album-cover-card:hover .album-cover-card-img img {
  transform: scale(1.03);
}
.album-cover-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.album-cover-card-year {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.album-cover-grid--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 800px) {
  .album-cover-grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .album-cover-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (max-width: 380px) {
  .album-cover-grid,
  .album-cover-grid--four { grid-template-columns: 1fr; max-width: 280px; }
}

/* ── Album landing page ──────────────────────────────────── */
.album-landing {
  display: grid;
  grid-template-columns: minmax(200px, 380px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: 2rem;
}
.album-landing-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
}
.album-landing-info {
  padding-top: 0.5rem;
}
.album-landing-info h1 {
  margin-bottom: 0.5rem;
}
.album-landing-year {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.album-landing-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.album-landing-listen-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.album-landing-dsp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 700px) {
  .album-landing {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .album-landing-cover { max-width: 300px; }
}

/* ── Video cards (Videos page) ───────────────────────────── */
.video-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
  color: var(--text);
}
.video-card:hover {
  border-color: var(--accent);
  color: var(--text);
}
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-elevated);
}
.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}
.video-card:hover .video-card-thumb img { opacity: 0.85; }
.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(0,0,0,0.3);
}
.video-card:hover .video-card-play { opacity: 1; }
.video-card-info {
  padding: 1rem 1.25rem 1.25rem;
}
.video-card-info h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.video-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.video-featured-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .video-featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .video-featured-grid,
  .video-featured-grid--two { grid-template-columns: 1fr; }
}
