/* R&G Goldstar — Vintage Hi-Fi & Vinyl Journal / Warm Minimal */
:root {
  --bg: #f4eee2;
  --paper: #ebe3d2;
  --ink: #1f1810;
  --muted: #6b5d4a;
  --burgundy: #6a1b2a;
  --burgundy-deep: #4a0f1c;
  --gold: #b8893c;
  --line: #d7ccb5;
  --max: 1280px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, .body-sans { font-family: 'Inter', sans-serif; }

/* Issue band */
.issue-band {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
}
.issue-band span { margin: 0 14px; }
.issue-band .gold { color: var(--gold); }

/* Nav */
.nav { background: var(--bg); border-bottom: 1px solid var(--ink); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 58px; width: auto; }
.nav-links { display: flex; gap: 38px; font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.nav-links a { color: var(--ink); transition: color .2s; padding-bottom: 4px; border-bottom: 1px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--burgundy); border-bottom-color: var(--gold); }

/* Hero */
.hero { padding: 80px 32px 100px; border-bottom: 1px solid var(--line); }
.hero .container { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--burgundy); font-weight: 700;
  margin-bottom: 30px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--gold); }
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 30px;
}
.hero h1 em { font-style: italic; color: var(--burgundy); }
.lede { color: var(--muted); font-size: 19px; max-width: 540px; margin-bottom: 32px; }
.byline {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  display: flex; gap: 28px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.byline .author { color: var(--burgundy); }
.hero-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  border: 1px solid var(--gold);
}
.hero-img::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 80px; height: 80px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  border-radius: 50%;
  border: 2px solid var(--gold);
  z-index: 2;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(8%); }

/* Sections */
section { padding: 100px 32px; }
.container { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -.5px;
  line-height: 1;
}
.section-title em { font-style: italic; color: var(--burgundy); }
.section-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700;
  color: var(--burgundy);
  border-bottom: 1.5px solid var(--burgundy);
  padding-bottom: 4px;
}
.section-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* Article list — linear journal style */
.journal {
  border-top: 1px solid var(--line);
}
.entry {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}
.entry-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.entry-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; filter: sepia(6%); }
.entry:hover .entry-img img { transform: scale(1.04); }
.entry-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  margin-bottom: 14px;
  display: flex; gap: 18px;
}
.entry-meta .cat { color: var(--burgundy); }
.entry h3 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.3px;
  transition: color .2s;
}
.entry:hover h3 { color: var(--burgundy); }
.entry p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }
.entry .read {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--burgundy); font-weight: 700;
}
.entry .read::after { content: ' →'; }

/* Pull quote */
.pull {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 32px;
  text-align: center;
}
.pull blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
  max-width: 960px;
  margin: 0 auto 24px;
  font-weight: 500;
}
.pull blockquote em { color: var(--gold); }
.pull cite {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-style: normal; color: var(--gold);
}

/* Newsletter */
.newsletter {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter h2 {
  font-family: 'Lora', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.5px;
}
.newsletter h2 em { font-style: italic; color: var(--burgundy); }
.newsletter p { color: var(--muted); margin-top: 18px; font-size: 17px; }
.newsletter-form { display: flex; gap: 0; margin-top: 26px; max-width: 480px; }
.newsletter-form input {
  flex: 1; padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--ink);
  border-right: none;
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--ink); outline: none;
}
.btn {
  display: inline-block;
  padding: 18px 32px;
  background: var(--burgundy);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--burgundy);
  cursor: pointer;
  transition: background .25s;
}
.btn:hover { background: var(--ink); border-color: var(--ink); }

/* Sub-page hero */
.sub-hero { padding: 70px 32px 50px; border-bottom: 1px solid var(--line); }
.sub-hero .container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: end; }
.sub-hero h1 { font-family: 'Lora', serif; font-size: clamp(46px, 6.5vw, 80px); font-weight: 600; line-height: 1.05; letter-spacing: -.5px; }
.sub-hero h1 em { font-style: italic; color: var(--burgundy); }
.sub-hero p { color: var(--muted); font-size: 17px; }

/* Article page */
.article-page { padding: 80px 32px 100px; }
.article-page .container { max-width: 760px; margin: 0 auto; }
.art-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  margin-bottom: 22px;
  display: flex; gap: 22px;
}
.art-meta .cat { color: var(--burgundy); }
.article-page h1 {
  font-family: 'Lora', serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -.5px;
}
.standfirst {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.article-page .byline {
  margin-bottom: 50px;
}
.lead-img { width: 100%; aspect-ratio: 3/2; overflow: hidden; border-radius: 4px; margin-bottom: 50px; }
.lead-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(8%); }
.article-page p { font-size: 18px; line-height: 1.8; margin-bottom: 24px; color: var(--ink); }
.article-page p:first-of-type::first-letter {
  font-family: 'Lora', serif;
  font-size: 64px; line-height: .85;
  float: left; padding: 8px 12px 0 0;
  color: var(--burgundy);
  font-weight: 600;
}
.article-page h2 {
  font-family: 'Lora', serif;
  font-size: 30px; font-weight: 600;
  margin: 48px 0 18px;
  letter-spacing: -.3px;
}
.article-page h2 em { font-style: italic; color: var(--burgundy); }
.article-page blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 24px; line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 30px;
  margin: 36px 0;
  color: var(--burgundy);
}
.article-end { text-align: center; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 4px; color: var(--muted); text-transform: uppercase; }
.back-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--burgundy); font-weight: 700;
  margin-bottom: 40px;
  display: inline-block;
}
.back-link:hover { color: var(--gold); }

/* Footer */
footer { background: var(--burgundy-deep); color: var(--bg); padding: 80px 32px 30px; }
.foot-grid { max-width: var(--max); margin: 0 auto 50px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-grid h4 { font-family: 'Lora', serif; font-style: italic; font-size: 22px; font-weight: 600; margin-bottom: 20px; color: var(--gold); }
.foot-grid p, .foot-grid a { font-family: 'Inter', sans-serif; color: rgba(244,238,226,.7); font-size: 14px; margin-bottom: 8px; display: block; }
.foot-grid a:hover { color: var(--bg); }
.foot-bottom { max-width: var(--max); margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(244,238,226,.5); }

/* Legal */
.legal { max-width: 760px; margin: 0 auto; padding: 100px 32px; }
.legal h1 { font-family: 'Lora', serif; font-size: 60px; font-weight: 600; margin-bottom: 10px; letter-spacing: -1px; }
.legal h1 em { font-style: italic; color: var(--burgundy); }
.legal .updated { font-family: 'Inter', sans-serif; color: var(--muted); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 50px; }
.legal h2 { font-family: 'Lora', serif; font-size: 26px; font-weight: 600; margin: 36px 0 12px; font-style: italic; }
.legal p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }

@media (max-width: 880px) {
  .hero .container, .newsletter .container, .sub-hero .container, .entry, .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { font-size: 11px; gap: 14px; }
  section, .hero, .article-page { padding: 60px 24px; }
  .section-head { flex-direction: column; align-items: start; gap: 20px; }
}
