/* ─── Magazine Design ─── */

:root {
  --bg: #f8f6f0;
  --paper: #ffffff;
  --ink: #1a1814;
  --muted: #736b5e;
  --rule: #d9d0c0;
  --accent: #b33a2e;
  --accent-soft: #f0d6d2;
  --radius: 0;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141210;
    --paper: #1c1a16;
    --ink: #e0d7c8;
    --muted: #8a8174;
    --rule: #3a342c;
    --accent: #d65c4f;
    --accent-soft: #3a1e1a;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Iowan Old Style", "Charter", Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3 {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

a {
  color: var(--accent);
  text-underline-offset: 0.15em;
  transition: opacity 0.15s;
}
a:hover { opacity: 0.75; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--accent); color: #fff;
  padding: 0.5rem 1rem; z-index: 100; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ─── Masthead ─── */

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}

.masthead-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--ink); opacity: 1; }

.masthead-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ─── Feature / Hero ─── */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding: 1.5rem 0 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.feature-image {
  aspect-ratio: 4 / 3;
  background: var(--rule);
  width: 100%;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 0 0 0.75em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.feature-headline {
  font-size: 3rem;
  margin: 0 0 0.3em;
  line-height: 1.05;
}

.feature-byline {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1em;
}

.feature-link {
  font-weight: 500;
}

.feature-excerpt {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 45ch;
  margin: 0;
}

/* ─── Section Headings ─── */

.section-heading {
  font-size: 1.8rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.3em;
  border-bottom: 2px solid var(--ink);
  display: inline-block;
}

.section {
  margin-bottom: 3.5rem;
}

/* ─── Releases (list style) ─── */

.releases-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.release-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.release-row:last-child { border-bottom: none; }

.release-row-art {
  aspect-ratio: 1 / 1;
  background: var(--rule);
  width: 100%;
}

.release-row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.release-row-title {
  font-size: 1.25rem;
  margin: 0 0 0.15em;
}

.release-row-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.release-row-desc {
  font-size: 0.9rem;
  margin: 0 0 0.5em;
  line-height: 1.5;
  max-width: 50ch;
}

.release-row-link {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ─── Two-column layout (About + Press) ─── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1rem;
}

.two-col p {
  max-width: 55ch;
}

/* ─── Pull Quotes ─── */

.pull-quote {
  margin: 0 0 1.5rem;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 3px solid var(--accent);
}

.pull-quote p {
  margin: 0 0 0.4em;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
}

.pull-quote footer {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pull-quote cite { font-style: normal; }

/* ─── Embed Placeholder ─── */

.player-section {
  margin-bottom: 3.5rem;
}

.embed-placeholder {
  background: var(--paper);
  border: 2px dashed var(--rule);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.embed-placeholder p { margin: 0.3em 0; }

/* ─── Buttons ─── */

.button {
  display: inline-block;
  padding: 0.55rem 1.5rem;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: opacity 0.15s;
}
.button:hover { opacity: 0.85; color: var(--bg); }

/* ─── Contact Form ─── */

.contact-form {
  max-width: 45ch;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.form-status { margin-top: 0.75rem; font-size: 0.9rem; }

/* ─── Footer ─── */

.site-footer {
  margin-top: 4rem;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.footer-links a:hover { color: var(--ink); opacity: 1; }

.site-footer .attribution {
  font-size: 0.75rem;
  opacity: 0.6;
  margin: 0;
}

/* ─── Reduced Motion ─── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Mobile ─── */

@media (max-width: 720px) {
  body { padding: 0 1rem; }

  .feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-headline { font-size: 2.2rem; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .release-row {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .masthead {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .masthead-nav { gap: 1rem; }
  .release-row { grid-template-columns: 1fr; }
  .release-row-art { max-width: 120px; }
}
