/* ===================================================================
   Records — editorial section on amandasavinon.com
   Scoped stylesheet. Shares brand palette with the main site but
   declares its own rules so Records doesn't inherit main-site cascade.
   =================================================================== */

:root {
  /* Palette mirrors amandasavinon.com exactly. Terracotta is the brand's
     warm editorial accent (its italic-emphasis color); green (sage-dark /
     olive) owns every action — buttons and links. No blue anywhere. */
  --cream:        #f6f3ec;
  --cream-card:   #faf9f5;
  --cream-edge:   #ede8dd;
  --charcoal:     #2c2c2c;
  --charcoal-lt:  #4a4a4a;
  --charcoal-footer: #3a3f38;
  --sage:         #b8c5a8;
  --sage-dark:    #c0825a;
  --sage-deep:    #d8b48f;
  --olive:        #8a8278;
  --terracotta:   #c0825a;
  --terracotta-dk:#a96e48;
  --gold:         #b89a5a;
  --hairline:     #e3ddd0;

  --accent:       var(--terracotta);   /* display + editorial accent */
  --action:       var(--sage-dark);    /* buttons / links */
  --action-hover: var(--olive);

  --font-display: 'Cardo', Georgia, 'Times New Roman', serif;
  --font-body:    'Lora', Georgia, 'Times New Roman', serif;
  --font-ui:      'Inter', 'Helvetica Neue', system-ui, sans-serif;

  --ease-lux: cubic-bezier(0.22, 0.61, 0.36, 1);

  --max-page: 1120px;
  --max-read: 680px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.records {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
  font-kerning: normal;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.records-skip {
  position: absolute;
  top: -100px; left: 8px;
  background: var(--charcoal); color: #fff;
  padding: 8px 14px; border-radius: 0 0 6px 6px;
  font-family: var(--font-ui); font-size: 0.85rem;
  z-index: 999;
  transition: top 0.15s;
}
.records-skip:focus { top: 0; }

/* Visible focus treatment for keyboard users. Default browser outlines
   were being swallowed on anchors with border-bottom styling — this
   gives every interactive element a consistent sage ring. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.chip:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 3px;
  border-radius: 3px;
}

.eyebrow, .record-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}

.record-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.65rem; letter-spacing: 0.1em;
  background: var(--gold); color: #fff;
  border-radius: 10px;
  vertical-align: 1px;
  font-weight: 700;
}

/* ============================================================ NAV */
.records-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
}
.records-nav-inner {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.records-logo {
  font-family: var(--font-ui);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--charcoal);
}
.records-menu {
  display: flex; gap: 30px; align-items: center;
}
.records-menu a {
  position: relative;
  font-family: var(--font-ui);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal-lt);
  padding-bottom: 3px;
  transition: color 0.3s var(--ease-lux);
}
.records-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-lux);
}
.records-menu a:hover { color: var(--charcoal); }
.records-menu a:hover::after { transform: scaleX(1); }

/* Persistent, top-of-page email CTA — the brand's green action color. */
.records-menu-cta {
  color: #fff !important;
  background: var(--action);
  padding: 10px 18px 9px !important;
  border-radius: 3px;
  transition: background 0.3s var(--ease-lux), transform 0.3s var(--ease-lux);
}
.records-menu-cta::after { display: none; }
.records-menu-cta:hover { color: #fff !important; background: var(--action-hover); transform: translateY(-1px); }

/* ============================================================ MAIN layout */
main {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================ HERO (landing)
   Visual-first: section identity on the left, the lead essay as a large
   image-led feature on the right — so the page opens on imagery + a story,
   not a wall of display type. */
.records-hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: 64px 0 72px;
  margin-bottom: 72px;
  border-bottom: 1px solid var(--hairline);
}
.records-hero-intro { max-width: 500px; }
.records-hero-title {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--accent);
  margin: 4px 0 20px;
}
.records-hero-dek {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--charcoal-lt);
  max-width: 420px;
  margin-bottom: 28px;
}
.records-hero-cue {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--action);
  border-bottom: 1px solid var(--sage-deep);
  padding-bottom: 3px;
  transition: color 0.3s var(--ease-lux), border-color 0.3s var(--ease-lux);
}
.records-hero-cue:hover { color: var(--charcoal); border-bottom-color: var(--charcoal); }

.records-hero-feature {
  display: block;
  background: var(--cream-card);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux);
}
.records-hero-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -22px rgba(44, 40, 32, 0.30);
  border-color: var(--accent);
}
.records-hero-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream-edge);
}
.records-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-lux);
}
.records-hero-feature:hover .records-hero-img img { transform: scale(1.04); }
.records-hero-feature-body { padding: 26px 30px 30px; }
.records-hero-feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.16;
  color: var(--charcoal);
  margin-bottom: 12px;
  transition: color 0.3s var(--ease-lux);
}
.records-hero-feature:hover .records-hero-feature-title { color: var(--accent); }
.records-hero-feature-dek {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal-lt);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 54ch;
}
.records-hero-readon { color: var(--action); font-weight: 600; }

/* ============================================================ MASTHEAD (landing) */
.records-mast {
  padding: 100px 0 56px;
  margin-bottom: 8px;
  max-width: 800px;
  border-bottom: 1px solid var(--hairline);
}
.records-mast h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.8vw, 4.25rem);
  line-height: 1.06;
  color: var(--accent);
  margin-bottom: 22px;
  letter-spacing: -0.012em;
}
.records-mast-dek {
  font-size: 1.12rem;
  color: var(--charcoal-lt);
  max-width: 620px;
  line-height: 1.7;
}

/* Category-variant masthead reads as a subsection, not a front door —
   smaller display size, same typographic feel. */
.records-mast-category { padding: 60px 0 40px; }
.records-mast-category h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

/* Empty-state for a category with no posts yet. */
.records-empty {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal-lt);
  padding: 40px 0;
  text-align: center;
}

/* ============================================================ EDITOR'S PICKS */
.records-section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  color: var(--accent);
  margin-bottom: 30px;
}

.records-picks {
  margin-bottom: 80px;
}
.records-picks-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  grid-auto-rows: min-content;
}
/* Two picks of deliberately different proportion — a tall portrait beside a
   wider landscape — so curation reads as a magazine spread, not two tiles. */
.records-picks-duo {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  gap: 36px;
  align-items: start;
}
.records-pick--tall .records-pick-img { aspect-ratio: 4 / 5; }
.records-pick--wide .records-pick-img { aspect-ratio: 3 / 2; }
.records-pick--wide { margin-top: 36px; }
.records-pick {
  display: block;
  background: var(--cream-card);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux);
}
.records-pick:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(44, 40, 32, 0.28);
  border-color: var(--accent);
}
.records-pick-lead {
  grid-row: span 2;
}
.records-pick-img {
  aspect-ratio: 3 / 2;
  background: var(--cream-edge);
  overflow: hidden;
}
.records-pick-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-lux);
}
.records-pick:hover .records-pick-img img { transform: scale(1.045); }
.records-pick-img-placeholder,
.records-card-img-placeholder {
  background: linear-gradient(135deg, var(--cream-edge) 0%, rgba(138, 158, 116, 0.25) 100%);
}
.records-pick-body {
  padding: 16px 18px 20px;
}
.records-pick-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 8px;
  transition: color 0.3s var(--ease-lux);
}
.records-pick:hover .records-pick-body h3 { color: var(--accent); }
.records-pick-lead .records-pick-body h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.15;
}
.records-pick-dek {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--charcoal-lt);
  margin-bottom: 10px;
  line-height: 1.5;
}
.records-pick-meta {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--olive);
  letter-spacing: 0.04em;
}

/* ============================================================ CATEGORIES */
.records-categories {
  margin-bottom: 36px;
}
.records-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  background: var(--cream-card);
  transition: color 0.3s var(--ease-lux), border-color 0.3s var(--ease-lux), background 0.3s var(--ease-lux);
}
.chip:hover { border-color: var(--accent); color: var(--charcoal); }
.chip-active {
  background: var(--charcoal); color: #fff; border-color: var(--charcoal);
}
.chip-active:hover { color: #fff; border-color: var(--charcoal); }

/* ============================================================ ARCHIVE */
.records-archive {
  padding-bottom: 80px;
}
/* Three-up grid with smaller cards. Shape varies by ROW — landscape rows and
   portrait rows alternate — so the page reads editorial, not a uniform block,
   while every row's cards still align cleanly (no ragged gaps). */
.records-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 30px;
}
.records-card {
  display: block;
}
.records-card-img {
  aspect-ratio: 3 / 2;
  background: var(--cream-edge);
  margin-bottom: 14px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(44, 40, 32, 0.06);
}
/* Every other row of three runs portrait instead of landscape. */
.records-card:nth-child(6n+4) .records-card-img,
.records-card:nth-child(6n+5) .records-card-img,
.records-card:nth-child(6n+6) .records-card-img { aspect-ratio: 4 / 5; }
.records-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-lux);
}
.records-card:hover .records-card-img img { transform: scale(1.045); }
.records-card-img-placeholder {
  background: linear-gradient(135deg, var(--cream-edge), var(--sage-deep) 200%);
  opacity: 0.3;
}
.records-card-body { padding: 0 2px; }
.records-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--charcoal);
  margin-bottom: 7px;
  transition: color 0.3s var(--ease-lux);
}
.records-card:hover .records-card-title { color: var(--accent); }
.records-card-dek {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--charcoal-lt);
  margin-bottom: 9px;
}
.records-card-meta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--olive);
  letter-spacing: 0.03em;
}

/* ============================================================ SUBSCRIBE */
.records-subscribe {
  margin: 24px 0 88px;
  padding: 64px 32px 68px;
  background: var(--cream-card);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  text-align: center;
}
.records-subscribe .records-section-title {
  margin-bottom: 18px;
}
.records-subscribe-dek {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--charcoal);
  max-width: 520px;
  margin: 0 auto 14px;
  line-height: 1.5;
}
.records-subscribe-note {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--olive);
  margin-bottom: 26px;
}
.records-subscribe-link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 34px;
  background: var(--action);
  color: #fff;
  border-radius: 3px;
  transition: background 0.3s var(--ease-lux), transform 0.3s var(--ease-lux);
}
.records-subscribe-link:hover { background: var(--action-hover); transform: translateY(-1px); }

/* ============================================================ ARTICLE (/nowwhat/:slug) */
.record {
  max-width: var(--max-read);
  margin: 0 auto;
  padding: 40px 0 80px;
}
.record-crumb {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--olive);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.record-crumb a { color: var(--olive); border-bottom: 1px solid transparent; transition: border-color 0.15s; }
.record-crumb a:hover { border-bottom-color: var(--olive); }

.record-header {
  margin-bottom: 32px;
}
.record-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.record-dek {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--charcoal-lt);
  margin-bottom: 18px;
  line-height: 1.5;
}
.record-meta {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--olive);
  letter-spacing: 0.04em;
}

.record-hero {
  margin: 28px 0 44px;
}
.record-hero-frame {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-edge);
  box-shadow: inset 0 0 0 1px rgba(44, 40, 32, 0.06);
}
.record-hero-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Caption + photo credit — small italic line beneath any image. Used on the
   hero (heroCredit frontmatter) and on in-body <figure> images. */
.record-caption,
.record-body figure figcaption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--charcoal-lt);
  margin-top: 9px;
}

/* In-body images: wrap in <figure><img><figcaption>…</figcaption></figure>. */
.record-body figure {
  margin: 32px 0;
}
.record-body figure img {
  display: block;
  width: 100%;
  border-radius: 4px;
}

.record-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
}
.record-body p { margin-bottom: 18px; }
/* Drop cap on the opening paragraph — set in Cardo, the section's display face. */
.record-body > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4.1rem;
  line-height: 0.82;
  margin: 0.08em 0.1em 0 0;
  color: var(--accent);
}
.record-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--accent);
  margin: 36px 0 14px;
}
.record-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 28px 0 10px;
}
.record-body a {
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-deep);
  transition: color 0.15s, border-color 0.15s;
}
.record-body a:hover { color: var(--charcoal); border-bottom-color: var(--charcoal); }
.record-body blockquote {
  margin: 48px 0;
  padding: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 1.9rem);
  line-height: 1.4;
  color: var(--accent);
}
.record-body blockquote::before {
  content: "";
  display: block;
  width: 40px; height: 2px;
  margin: 0 auto 26px;
  background: var(--accent);
}
.record-body blockquote p { margin-bottom: 0; }
.record-body blockquote p + p { margin-top: 14px; }
.record-body strong { color: var(--charcoal); }
.record-body em { color: var(--charcoal); }
.record-body hr {
  border: 0;
  border-top: 1px solid var(--cream-edge);
  margin: 36px 0;
}

.record-signoff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 48px 0 28px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}

.record-cta {
  background: var(--cream-card);
  border: 1px solid var(--hairline);
  border-left: 2px solid var(--accent);
  padding: 24px 26px;
  margin: 20px 0 40px;
  border-radius: 0 4px 4px 0;
}
.record-cta p {
  font-size: 1rem;
  color: var(--charcoal-lt);
  line-height: 1.55;
  margin: 0;
}
.record-cta a {
  color: var(--sage-dark);
  font-weight: 700;
  border-bottom: 1px solid var(--sage-deep);
}

.record-back {
  margin-top: 24px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
}
.record-back a { color: var(--olive); border-bottom: 1px solid transparent; transition: border-color 0.15s; }
.record-back a:hover { border-bottom-color: var(--olive); }

.record-related {
  margin: 64px 0 24px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-edge);
}
.record-related-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.record-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.record-related-grid .records-card-title {
  font-size: 1.05rem;
}

/* ============================================================ START HERE */
.records-start {
  max-width: 760px;
  padding: 56px 0 80px;
}
.records-start h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.1;
}
.records-start-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal-lt);
  margin-bottom: 40px;
}
.records-start-picks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.records-start-pick {
  display: block;
  background: var(--cream-card);
  border: 1px solid var(--cream-edge);
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color 0.15s, transform 0.15s;
}
.records-start-pick:hover {
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}
.records-start-pick h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.records-start-pick p { font-size: 0.95rem; color: var(--charcoal-lt); line-height: 1.55; }

/* ============================================================ 404 */
.records-404 {
  max-width: 640px;
  padding: 88px 0 120px;
  text-align: left;
}
.records-404 h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--accent);
  line-height: 1.05;
  margin-bottom: 20px;
}
.records-404-lede {
  font-size: 1.15rem;
  color: var(--charcoal-lt);
  margin-bottom: 28px;
  line-height: 1.65;
}
.records-404-cta {
  font-family: var(--font-ui);
  font-size: 0.9rem;
}
.records-back-link {
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-deep);
  transition: color 0.15s, border-color 0.15s;
}
.records-back-link:hover {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}
.records-404-sep { color: var(--olive); margin: 0 6px; }

/* ============================================================ FOOTER */
.records-footer {
  background: var(--charcoal-footer);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 56px;
  margin-top: 40px;
}
.records-footer-inner {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.records-footer-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 22px;
}
.records-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 26px;
}
.records-footer-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease-lux), border-color 0.3s var(--ease-lux);
}
.records-footer-links a:hover {
  color: #fff;
  border-bottom-color: var(--terracotta);
}
.records-footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-ui);
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 860px) {
  .records-picks-grid {
    grid-template-columns: 1fr;
  }
  .records-pick-lead {
    grid-row: span 1;
  }
  .records-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 0 48px;
    margin-bottom: 56px;
  }
  .records-hero-intro { max-width: none; }
  .records-picks-duo {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .records-pick--wide { margin-top: 0; }
  .records-pick--tall .records-pick-img { aspect-ratio: 3 / 2; }
  .records-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  html { font-size: 16px; }
  main { padding: 0 16px; }
  .records-nav-inner { padding: 14px 16px; flex-wrap: wrap; gap: 12px; }
  .records-menu { gap: 18px; }
  .records-menu a { font-size: 0.72rem; }
  .records-mast { padding: 60px 0 40px; }
  .records-archive-grid { grid-template-columns: 1fr; gap: 36px; }
  .records-subscribe { padding: 48px 22px 52px; }
  .record-body > p:first-of-type::first-letter { font-size: 3.4rem; }
  .records-footer-links { gap: 18px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   "Now What?" — ported flip/Newsreader design (landing + headers)
   ============================================================ */
.records.home { background: #ece5d8; }
.nw-home-hd, .nw-hd, .nw-page, .nw-mast-h, .nw-mast-tag, .nw-mast-by,
.nw-nav, .nw-navmenu, .nw-wm, .nw-card, .nw-lead-h, .nw-lead-d,
.nw-card-h, .nw-card-d, .nw-restlabel, .nw-date {
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
}
/* Home masthead header */
.nw-home-hd { border-bottom: 1px solid #e3ddd0; }
.nw-nav { max-width: 1100px; margin: 0 auto; padding: 16px 28px; display: flex; justify-content: center; gap: 26px; border-bottom: 1px solid #e3ddd0; }
.nw-nav a { font-weight: 600; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #c0825a; }
.nw-mast { text-align: center; padding: 44px 24px 34px; max-width: 820px; margin: 0 auto; }
.nw-mast-h { font-weight: 600; color: #c0825a; letter-spacing: -0.01em; font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1; margin: 0; }
.nw-mast-tag { font-size: clamp(1.25rem, 2.4vw, 1.65rem); color: #5e574d; max-width: 660px; margin: 16px auto 0; line-height: 1.45; }
.nw-mast-by { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #8a8278; margin-top: 18px; }
/* "Read" CTA beneath the lead story */
.nw-read { display: inline-block; margin-top: 18px; font-family: 'Inter', system-ui, sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: #c0825a; color: #fff; padding: 11px 32px; border-radius: 3px; transition: background 0.3s ease; }
.nw-lead a:hover .nw-read { background: #a96e48; }
/* Slim header (inner pages) */
.nw-hd { border-bottom: 1px solid #e3ddd0; }
.nw-hd-in { max-width: 1080px; margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.nw-wm { font-style: italic; font-weight: 500; font-size: 1.3rem; color: #c0825a; }
.nw-nvt { display: none; }
.nw-ham { display: none; }
.nw-navmenu { display: flex; }
.nw-navmenu a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #c0825a; margin-left: 24px; }
/* Landing */
.nw-page { max-width: 1040px; margin: 30px auto; background: #faf9f5; border: 1px solid #e3ddd0; border-radius: 10px; box-shadow: 0 18px 50px -30px rgba(40,34,24,.5); padding: 40px 0; overflow: hidden; }
.nw-date { font-size: 0.72rem; letter-spacing: 0.04em; color: #8a8278; text-transform: uppercase; }
.nw-lead { max-width: 960px; margin: 0 auto; padding: 0 15px; }
.nw-lead a { display: block; }
.nw-lead img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 5px; margin-bottom: 20px; }
.nw-lead-h { font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.14; margin: 0 0 12px; color: #2c2c2c; }
.nw-lead-d { font-style: italic; font-size: 1.2rem; color: #5e574d; line-height: 1.5; max-width: 62ch; margin: 0; }
.nw-lead .nw-date { display: block; margin-top: 14px; }
.nw-grid { max-width: 960px; margin: 42px auto 0; padding: 42px 15px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 40px 36px; border-top: 1px solid #e3ddd0; }
.nw-card { display: block; }
.nw-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; margin-bottom: 13px; }
.nw-card .nw-date { display: block; margin-bottom: 6px; }
.nw-card-h { font-weight: 700; font-size: 1.35rem; line-height: 1.2; margin: 0 0 7px; color: #2c2c2c; }
.nw-card-d { font-size: 0.96rem; color: #5e574d; line-height: 1.5; margin: 0; }
.nw-rest { max-width: 960px; margin: 46px auto 0; padding: 40px 15px 0; border-top: 1px solid #e3ddd0; }
.nw-restlabel { text-align: center; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #c0825a; margin: 0 0 28px; }
.nw-g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
.nw-g3 .nw-card-h { font-size: 1.12rem; }
.nw-g3 .nw-card-d { font-size: 0.9rem; }
@media (max-width: 680px) {
  .nw-page { margin: 18px 12px; border-radius: 8px; padding: 30px 0; }
  .nw-mast { padding: 34px 18px 24px; }
  .nw-mast-h { font-size: clamp(2.4rem, 13vw, 3.4rem); }
  .nw-nav { flex-wrap: wrap; gap: 9px 16px; padding: 13px 16px; }
  .nw-lead { padding: 0 20px; }
  .nw-grid { grid-template-columns: 1fr; gap: 32px; padding: 34px 20px 0; }
  .nw-rest { padding: 34px 20px 0; }
  .nw-g3 { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .nw-hd-in { display: grid; grid-template-columns: 36px 1fr 36px; align-items: center; padding: 13px 16px; }
  .nw-ham { display: flex; flex-direction: column; gap: 5px; cursor: pointer; grid-column: 1; justify-self: start; }
  .nw-ham span { display: block; width: 22px; height: 2px; background: #c0825a; }
  .nw-wm { grid-column: 2; justify-self: center; font-size: 1.2rem; }
  .nw-navmenu { grid-column: 1 / -1; position: absolute; top: 100%; left: 0; right: 0; background: #faf9f5; border-bottom: 1px solid #e3ddd0; flex-direction: column; display: none; padding: 4px 0; z-index: 5; }
  .nw-navmenu a { margin: 0; padding: 13px 20px; font-size: 0.78rem; }
  .nw-nvt:checked ~ .nw-navmenu { display: flex; }
}

/* ---- Article (click-in) page ---- */
body.records { background: #ece5d8; }
.nw-article, .nw-t, .nw-dek, .nw-byline, .nw-metasub, .nw-crumb, .nw-cap,
.nw-body, .nw-cta, .nw-rel-title, .nw-back { font-family: 'Newsreader', Georgia, 'Times New Roman', serif; }
.nw-article { max-width: 840px; margin: 34px auto; background: #faf9f5; border: 1px solid #e3ddd0; border-radius: 10px; box-shadow: 0 18px 50px -30px rgba(40,34,24,.5); padding: 44px 0 8px; overflow: hidden; color: #2c2c2c; line-height: 1.7; }
.nw-col { max-width: 660px; margin: 0 auto; padding: 0 30px; }
.nw-crumb { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #8a8278; margin-bottom: 20px; }
.nw-crumb a { color: #8a8278; }
.nw-t { font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.14; letter-spacing: -0.01em; color: #2c2c2c; margin-bottom: 18px; }
.nw-dek { font-style: italic; font-size: 1.24rem; color: #5e574d; line-height: 1.5; margin-bottom: 18px; }
.nw-byline { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #2c2c2c; }
.nw-metasub { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: #8a8278; margin-top: 5px; padding-bottom: 8px; }
.nw-hero { margin: 26px 0 8px; }
.nw-hero-frame { display: block; aspect-ratio: 16/9; overflow: hidden; background: #e3ddd0; }
.nw-hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.nw-cap { font-style: italic; font-size: 0.82rem; color: #5e574d; margin: 9px auto 0; max-width: 660px; padding: 0 30px; }
.nw-body { font-size: 1.08rem; line-height: 1.78; color: #2c2c2c; padding-top: 30px; }
.nw-body p { margin-bottom: 18px; }
.nw-body > p:first-of-type::first-letter { float: left; font-weight: 600; font-size: 4rem; line-height: 0.82; margin: 0.08em 0.1em 0 0; color: #c0825a; }
.nw-body h2 { font-family: 'Newsreader', Georgia, serif; font-weight: 600; font-size: 1.5rem; line-height: 1.25; color: #c0825a; margin: 36px 0 14px; }
.nw-body em { font-style: italic; }
.nw-body strong { font-weight: 700; }
.nw-body a { color: #c0825a; border-bottom: 1px solid #d8b48f; }
.nw-body blockquote { margin: 42px 0; text-align: center; font-style: italic; font-size: clamp(1.5rem, 3vw, 1.9rem); line-height: 1.38; color: #c0825a; }
.nw-body blockquote p { margin: 0; }
.nw-figure { margin: 34px 0; }
.nw-figure img { display: block; width: 100%; border-radius: 4px; }
.nw-figure figcaption { font-style: italic; font-size: 0.82rem; color: #5e574d; margin-top: 9px; }
/* Portrait/tall images shouldn't fill the column — cap and center them. */
.nw-figure.nw-portrait img { max-width: 440px; margin-left: auto; margin-right: auto; }
.nw-figure.nw-portrait figcaption { max-width: 440px; margin-left: auto; margin-right: auto; text-align: center; }
.nw-cta { margin: 18px 30px 8px; background: #f3ece1; border: 1px solid #e3ddd0; border-left: 2px solid #c0825a; border-radius: 0 6px 6px 0; padding: 28px 30px; text-align: center; }
.nw-cta p { font-size: 1.06rem; color: #5e574d; line-height: 1.55; margin-bottom: 18px; }
.nw-cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.nw-cta-b { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: #c0825a; color: #fff; padding: 13px 26px; border-radius: 3px; }
.nw-cta-b2 { font-size: 0.82rem; font-weight: 600; color: #c0825a; text-decoration: underline; text-underline-offset: 3px; }
.nw-rel { max-width: 840px; margin: 30px auto 0; padding: 0 30px; }
.nw-rel-title { font-style: italic; font-weight: 500; font-size: 1.5rem; color: #c0825a; margin-bottom: 20px; }
.nw-rel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.nw-rel .nw-card img { aspect-ratio: 4/3; margin-bottom: 12px; }
.nw-rel .nw-card .nw-date { display: block; margin-bottom: 4px; }
.nw-back { max-width: 840px; margin: 26px auto 0; padding: 0 30px 8px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #8a8278; }
.nw-back a { color: #8a8278; }
@media (max-width: 680px) {
  .nw-article { margin: 16px 12px; border-radius: 8px; padding: 32px 0 8px; }
  .nw-col { padding: 0 22px; }
  .nw-t { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .nw-cap, .nw-rel, .nw-back { padding-left: 22px; padding-right: 22px; }
  .nw-rel-grid { grid-template-columns: 1fr; gap: 26px; }
  .nw-cta { margin: 18px 16px 8px; padding: 24px 20px; }
}
