/* ==========================================================================
   Sidewinder Sam — Stylesheet
   Hand-written, plain CSS. No preprocessor, no build step — edit directly
   and refresh the browser. Organized top to bottom:
   1. Custom properties (design tokens)
   2. Reset & base
   3. Typography
   4. Layout helpers
   5. Navigation
   6. Buttons
   7. Hero
   8. Cards (release / album / location / frontier)
   9. Sections (latest release, county line, stories, footer)
   10. Frontier Stories archive theme
   11. About / Contact page specifics
   12. Utilities & accessibility
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
  --charcoal: #221e1a;
  --charcoal-light: #332c25;
  --charcoal-lighter: #443a30;
  --cream: #f1e8d8;
  --cream-dim: #ded0b4;
  --paper: #e7dbc0;
  --tan: #c7a671;
  --leather: #6e4429;
  --rust: #b4502e;
  --rust-dark: #8f3c22;
  --sage: #7e9074;
  --dusty: #8e4335;
  --gold: #c09a2e;

  --font-display: "Rye", serif;
  --font-heading: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --content-width: 1180px;
  --shadow-card: 0 8px 30px -12px rgba(0, 0, 0, 0.45);
}

/* 2. Reset & base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; font-weight: 600; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* 3. Typography ------------------------------------------------------------ */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rust);
}
.text-tan { color: var(--tan); }
.text-muted { color: rgba(241, 232, 216, 0.7); }
.text-faint { color: rgba(241, 232, 216, 0.4); }

/* 4. Layout helpers ---------------------------------------------------- */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 640px) { .section { padding: 5.5rem 0; } }
.section-tight { padding: 3.5rem 0; }

.section-alt {
  background: var(--charcoal-light);
  border-bottom: 1px solid rgba(68, 58, 48, 0.6);
  border-top: 1px solid rgba(68, 58, 48, 0.6);
}
.section-paper { background: var(--paper); color: var(--leather); position: relative; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  gap: 1rem;
}
.divider .line { height: 1px; width: 4rem; background: rgba(199, 166, 113, 0.3); }
.divider svg { color: rgba(199, 166, 113, 0.5); height: 20px; width: 20px; }
.divider img.divider-mark { height: 26px; width: auto; opacity: 0.55; }

/* 5. Navigation ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(34, 30, 26, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(68, 58, 48, 0.6);
}
.nav {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .nav { padding: 0.75rem 2rem; } }

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}
.brand svg { height: 2.25rem; width: 2.25rem; color: var(--gold); }
.brand img.brand-mark-img { height: 2.1rem; width: auto; }
.brand span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
@media (min-width: 640px) { .brand span { font-size: 1.75rem; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(241, 232, 216, 0.85);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--cream);
}
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle .bar {
  position: absolute;
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-icon { position: relative; width: 1.5rem; height: 1rem; }
.nav-toggle .bar:nth-child(1) { top: 0; }
.nav-toggle .bar:nth-child(2) { top: 7px; }
.nav-toggle .bar:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(68, 58, 48, 0.6);
  background: var(--charcoal);
  transition: max-height 0.3s ease-in-out;
}
@media (min-width: 768px) { .mobile-menu { display: none; } }
.mobile-menu.open { max-height: 24rem; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.75rem 1.25rem; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0.5rem;
  border-radius: 4px;
  color: rgba(241, 232, 216, 0.9);
  text-decoration: none;
  font-weight: 500;
}
.mobile-menu a:hover { background: var(--charcoal-light); color: var(--gold); }

/* 6. Buttons --------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--rust); color: var(--cream); box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--rust-dark); }
.btn-outline { border-color: rgba(199, 166, 113, 0.5); color: var(--cream); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-solid { border-color: rgba(241, 232, 216, 0.6); background: rgba(34, 30, 26, 0.3); color: var(--cream); backdrop-filter: blur(2px); }
.btn-outline-solid:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-leather { border-color: rgba(110, 68, 41, 0.4); color: var(--leather); }
.btn-outline-leather:hover { border-color: var(--leather); background: var(--leather); color: var(--cream); }

/* 7. Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 35%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 0%, rgba(34,30,26,0.55) 55%, rgba(34,30,26,0.1) 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(34,30,26,0.35) 0%, transparent 55%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("/images/grain.svg");
  background-size: 300px;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 8rem 1.25rem 4rem;
}
@media (min-width: 640px) { .hero-content { padding: 8rem 2rem 6rem; } }
.hero-content svg { height: 3.5rem; width: 3.5rem; color: var(--gold); opacity: 0.9; margin-bottom: 1.5rem; }
.hero-content img.hero-mark { height: 3.25rem; width: auto; opacity: 0.9; margin-bottom: 1.5rem; }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
@media (min-width: 640px) { .hero-content h1 { font-size: 6rem; } }
.hero-content .subtitle {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--tan);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
@media (min-width: 640px) { .hero-content .subtitle { font-size: 1.5rem; } }
.hero-content .genres {
  margin-top: 0.5rem;
  max-width: 32rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(241, 232, 216, 0.7);
}
.hero-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bob 1.6s infinite ease-in-out;
  color: rgba(241, 232, 216, 0.7);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator { animation: none; }
}

/* Latest release ----------------------------------------------------------- */
.latest-release {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .latest-release { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.latest-release .cover-wrap { order: 1; max-width: 26rem; margin: 0 auto; width: 100%; }
.latest-release .info { order: 2; }
@media (min-width: 768px) {
  .latest-release .cover-wrap { order: 2; }
  .latest-release .info { order: 1; }
}
.latest-release h2 { margin-top: 0.75rem; font-size: 2.25rem; color: var(--cream); }
@media (min-width: 640px) { .latest-release h2 { font-size: 3rem; } }
.latest-release .meta { margin-top: 0.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--tan); }
.latest-release .desc { margin-top: 1.25rem; max-width: 32rem; font-size: 1rem; line-height: 1.7; color: rgba(241, 232, 216, 0.8); }
.latest-release .ctas { margin-top: 2rem; }

.latest-release-boxed {
  border: 1px solid rgba(68, 58, 48, 0.7);
  background: var(--charcoal-light);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 640px) { .latest-release-boxed { padding: 2.5rem; } }
@media (min-width: 768px) { .latest-release-boxed { grid-template-columns: 1fr 1fr; } }

/* 8. Cards ------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(68, 58, 48, 0.7);
  background: var(--charcoal-light);
  box-shadow: var(--shadow-card);
}
.card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.card h3 { font-size: 1.25rem; color: var(--cream); }
.card a.card-title-link { text-decoration: none; }
.card a.card-title-link:hover h3 { color: var(--gold); }
.card .meta { margin-top: 0.25rem; font-size: 0.85rem; color: var(--tan); }
.card .desc { font-size: 0.9rem; line-height: 1.6; color: rgba(241, 232, 216, 0.75); }
.card .card-footer { margin-top: auto; padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.cover-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--charcoal-light), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(199, 166, 113, 0.6);
}
.cover-art.paper-tone { background: var(--paper); color: rgba(110, 68, 41, 0.7); }
.cover-art img { width: 100%; height: 100%; object-fit: cover; }
.cover-art img.placeholder-mark { width: 42%; height: auto; object-fit: contain; opacity: 0.4; }
.cover-art svg { height: 33%; width: 33%; opacity: 0.4; }
.cover-art .label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.badge-coming-soon {
  white-space: nowrap;
  border: 1px solid rgba(192, 154, 46, 0.5);
  border-radius: 999px;
  padding: 0.125rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.location-card { display: grid; overflow: hidden; }
@media (min-width: 640px) { .location-card { grid-template-columns: 2fr 3fr; } }
.location-card .cover-art { aspect-ratio: 4 / 3; }
@media (min-width: 640px) { .location-card .cover-art { aspect-ratio: auto; height: 100%; } }
.location-card .location-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.location-card h3 { font-size: 1.25rem; color: var(--cream); }
.location-card .tagline { font-size: 0.9rem; font-weight: 500; color: var(--tan); }
.location-card .desc { font-size: 0.9rem; line-height: 1.6; color: rgba(241, 232, 216, 0.75); }

.frontier-card { border-bottom: 1px solid rgba(110, 68, 41, 0.25); padding: 1.5rem 0; }
.frontier-card:first-child { padding-top: 0; }
.frontier-card:last-child { border-bottom: none; }
.frontier-card .row { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.25rem 1rem; }
.frontier-card h3 { font-size: 1.125rem; color: var(--leather); }
.frontier-card .era { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(110, 68, 41, 0.6); }
.frontier-card .summary { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.6; color: rgba(110, 68, 41, 0.85); }
.frontier-card .status { margin-top: 0.75rem; font-size: 0.8rem; font-style: italic; color: rgba(110, 68, 41, 0.5); }

/* Streaming links ------------------------------------------------------- */
.streaming-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.streaming-links a, .streaming-links .disabled {
  display: inline-block;
  border-radius: 2px;
  border: 1px solid rgba(199, 166, 113, 0.4);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  background: var(--charcoal-light);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.streaming-links a:hover { border-color: var(--gold); color: var(--gold); }
.streaming-links .disabled { cursor: default; color: rgba(241, 232, 216, 0.35); background: transparent; }
.streaming-links.compact a, .streaming-links.compact .disabled { padding: 0.4rem 0.75rem; font-size: 0.75rem; }

/* 9. Page header band ----------------------------------------------------- */
.page-header { border-bottom: 1px solid rgba(68, 58, 48, 0.6); background: var(--charcoal-light); }
.page-header .container { padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 640px) { .page-header .container { padding-top: 5rem; padding-bottom: 5rem; } }
.page-header h1 { margin-top: 0.75rem; font-size: 2.25rem; color: var(--cream); }
@media (min-width: 640px) { .page-header h1 { font-size: 3rem; } }
.page-header .lede { margin-top: 1rem; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: rgba(241, 232, 216, 0.75); }
.page-header svg.brand-mark { height: 3rem; width: 3rem; color: var(--gold); margin-bottom: 1.5rem; }

.paper-header { border-bottom: 1px solid rgba(110, 68, 41, 0.2); position: relative; }
.paper-header .container { padding-top: 4rem; padding-bottom: 4rem; position: relative; z-index: 1; }
@media (min-width: 640px) { .paper-header .container { padding-top: 6rem; padding-bottom: 6rem; } }
.paper-header h1 { font-family: var(--font-display); font-size: 3rem; letter-spacing: 0.02em; color: var(--leather); }
@media (min-width: 640px) { .paper-header h1 { font-size: 3.75rem; } }
.paper-header .eyebrow { color: rgba(110, 68, 41, 0.55); }
.paper-header p.lede { margin-top: 1.5rem; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: rgba(110, 68, 41, 0.8); }
.paper-header p.note { margin-top: 1rem; max-width: 42rem; font-size: 0.9rem; font-style: italic; line-height: 1.6; color: rgba(110, 68, 41, 0.55); }

/* Welcome to County Line section (homepage) ------------------------------- */
.county-line-intro { text-align: center; position: relative; }
.county-line-intro .container { position: relative; z-index: 1; }
.county-line-intro h2 { margin-top: 0.75rem; font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 0.02em; color: var(--leather); }
@media (min-width: 640px) { .county-line-intro h2 { font-size: 3rem; } }
.county-line-intro blockquote {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(110, 68, 41, 0.9);
}
.county-line-intro .body { margin: 1.5rem auto 0; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: rgba(110, 68, 41, 0.75); }

/* Story cards (homepage) --------------------------------------------------- */
.story-cards-heading { text-align: center; font-size: 1.875rem; color: var(--cream); }
@media (min-width: 640px) { .story-cards-heading { font-size: 2.25rem; } }
.story-card {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  border: 1px solid rgba(68, 58, 48, 0.7);
  background: var(--charcoal-light);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.story-card:hover { border-color: rgba(192, 154, 46, 0.6); }
.story-card h3 { font-size: 1.125rem; color: var(--cream); }
.story-card:hover h3 { color: var(--gold); }
.story-card p { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.6; color: rgba(241, 232, 216, 0.7); }

/* Coming soon list ----------------------------------------------------------- */
.upcoming-list { display: grid; gap: 0.75rem 2rem; }
@media (min-width: 640px) { .upcoming-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .upcoming-list { grid-template-columns: repeat(3, 1fr); } }
.upcoming-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(68, 58, 48, 0.6);
  color: rgba(241, 232, 216, 0.75);
}
.upcoming-list .genre-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(241, 232, 216, 0.35); }

.empty-note {
  margin-top: 3.5rem;
  border: 1px dashed var(--charcoal-lighter);
  border-radius: 2px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.empty-note p:first-child { font-family: var(--font-heading); font-size: 1.125rem; color: rgba(241, 232, 216, 0.7); }
.empty-note p:last-child { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(241, 232, 216, 0.45); }

/* 10. Footer -------------------------------------------------------------- */
.site-footer { border-top: 1px solid rgba(68, 58, 48, 0.6); background: var(--charcoal); }
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3rem 0;
}
@media (min-width: 768px) { .footer-grid { flex-direction: row; justify-content: space-between; } }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand svg { height: 2rem; width: 2rem; color: var(--gold); }
.footer-brand img.brand-mark-img { height: 1.85rem; width: auto; }
.footer-brand span { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.02em; }
.footer-col p.tagline { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(241, 232, 216, 0.7); }
.footer-col p.motto { margin-top: 1rem; font-size: 0.9rem; font-style: italic; color: rgba(241, 232, 216, 0.5); max-width: 22rem; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 2.5rem; font-size: 0.9rem; }
@media (min-width: 640px) { .footer-nav { display: flex; gap: 2.5rem; } }
.footer-nav a { color: rgba(241, 232, 216, 0.75); text-decoration: none; }
.footer-nav a:hover { color: var(--gold); }
.footer-social-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(241, 232, 216, 0.5); }
.footer-social { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.footer-social a { color: rgba(241, 232, 216, 0.75); text-decoration: none; }
.footer-social a:hover { color: var(--gold); }
.footer-social .soon { color: rgba(241, 232, 216, 0.35); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(68, 58, 48, 0.6);
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(241, 232, 216, 0.45);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* 11. About page ------------------------------------------------------------ */
.about-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1.1fr 1fr; } }
.about-grid h2 { font-size: 1.5rem; color: var(--cream); }
.about-grid h2:not(:first-child) { margin-top: 3rem; }
.about-grid p { margin-top: 1rem; font-size: 1rem; line-height: 1.7; color: rgba(241, 232, 216, 0.8); }
.about-aside {
  border: 1px solid rgba(68, 58, 48, 0.7);
  background: var(--charcoal-light);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  align-self: start;
}
.about-aside h2 { font-size: 1.125rem; color: var(--cream); }
.about-aside dl { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 0.9rem; }
.about-aside dt { font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--tan); }
.about-aside dd { margin: 0.25rem 0 0; color: rgba(241, 232, 216, 0.75); }

/* Contact page --------------------------------------------------------------- */
.contact-list { display: grid; gap: 1rem; }
@media (min-width: 640px) { .contact-list { grid-template-columns: repeat(2, 1fr); } }
.contact-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(68, 58, 48, 0.7);
  background: var(--charcoal-light);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
}
.contact-list .label { font-family: var(--font-heading); font-size: 1.125rem; color: var(--cream); }
.contact-list .soon { font-size: 0.9rem; font-style: italic; color: rgba(241, 232, 216, 0.35); }
.contact-list a.visit-btn {
  border: 1px solid rgba(199, 166, 113, 0.4);
  border-radius: 2px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
}
.contact-list a.visit-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Music detail page ------------------------------------------------------- */
.back-link { display: inline-block; padding: 2.5rem 0 0; font-size: 0.9rem; color: var(--tan); text-decoration: none; }
.back-link:hover { color: var(--gold); }
.release-detail { display: grid; gap: 2.5rem; padding: 2.5rem 0 5rem; }
@media (min-width: 768px) { .release-detail { grid-template-columns: 1fr 1fr; align-items: start; } }
.release-detail h1 { margin-top: 0.75rem; font-size: 2.5rem; color: var(--cream); }
@media (min-width: 640px) { .release-detail h1 { font-size: 3rem; } }
.release-detail .meta { margin-top: 0.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--tan); }
.release-detail .desc { margin-top: 1.5rem; font-size: 1rem; line-height: 1.7; color: rgba(241, 232, 216, 0.8); }
.release-detail .block { margin-top: 2rem; }
.release-detail .block h2 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(241, 232, 216, 0.5); }
.release-detail .block .content { margin-top: 0.5rem; }
.release-detail .credits { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.9rem; color: rgba(241, 232, 216, 0.7); }
.tracklist { display: flex; flex-direction: column; }
.tracklist li {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: baseline;
  column-gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(68, 58, 48, 0.5);
  font-size: 0.9rem;
  color: rgba(241, 232, 216, 0.8);
}
.tracklist li:last-child { border-bottom: none; }
.tracklist .track-number { color: var(--tan); font-variant-numeric: tabular-nums; }
.tracklist .track-title { min-width: 0; }
.tracklist .track-duration { color: rgba(241, 232, 216, 0.35); font-size: 0.8rem; font-variant-numeric: tabular-nums; text-align: right; }
.release-detail a.lyrics-link { font-size: 0.9rem; font-weight: 500; color: var(--gold); text-decoration: none; }
.release-detail a.lyrics-link:hover { text-decoration: underline; }
