/* ============================================================
   Stephen Barber portfolio — shared stylesheet
   Direction 1A. Typography-first, flat surfaces, no shadows.
   ============================================================ */

/* ---------- Fonts (self-hosted WOFF2, latin subset) ---------- */
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/assets/fonts/newsreader.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/newsreader-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/publicsans.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibmplexmono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibmplexmono-500.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --paper: #F6F7F9;
  --surface-2: #F1F3F6;
  --ink: #22262E;
  --muted: #565C66;
  --faint: #8A909A;
  --line: #E2E4E9;
  --accent: #C40F63;
  --accent-tint: #F0A6C6;
  --panel-support: #C4CAD4;

  --serif: "Newsreader", Georgia, serif;
  --sans: "Public Sans", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --gutter: 72px;
  --measure-body: 680px;
  --placeholder: repeating-linear-gradient(135deg, #EDEFF3 0 11px, #E7E9EE 11px 12px);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

/* Visible focus on every interactive element */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}

/* Visually hidden (available to screen readers, off-screen visually) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------- Shared inline placeholder ---------- */
.ph {
  background: var(--placeholder);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.ph span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
}
.ph-3-2 { aspect-ratio: 3 / 2; }
.ph-4-5 { aspect-ratio: 4 / 5; }
.ph-3-4 { aspect-ratio: 3 / 4; }
.ph-1-1 { aspect-ratio: 1 / 1; }
.ph-wide { aspect-ratio: 16 / 7; }

/* Real images occupy the same aspect boxes; crop handled so exact pixel
   dimensions of the source don't matter and the layout never shifts. */
img.asset {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--surface-2);
}

/* ---------- Header / nav ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--gutter);
  gap: 24px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-desktop {
  display: flex;
  gap: 36px;
  font-size: 15px;
}
.nav-desktop a {
  color: var(--muted);
  padding-bottom: 2px;
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a[aria-current="page"] {
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
}
.header-back {
  font-size: 14px;
  color: var(--muted);
}
.header-back:hover { color: var(--ink); }

/* Mobile disclosure nav (no JS required) */
.nav-mobile { display: none; }
.nav-mobile > summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
}
.nav-mobile > summary::-webkit-details-marker { display: none; }
.nav-mobile[open] > summary { color: var(--ink); }
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 4px;
}
.nav-mobile-links a {
  font-size: 17px;
  color: var(--muted);
  padding: 8px 0;
}
.nav-mobile-links a[aria-current="page"] { color: var(--ink); }

/* ---------- Layout helpers ---------- */
main { display: block; }
.section { padding-left: var(--gutter); padding-right: var(--gutter); }
.rule-top-line { border-top: 1px solid var(--line); }
.rule-top-ink { border-top: 1px solid var(--ink); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--faint);
}

/* Running-text link style: colour + underline (never colour alone) */
.link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.link-ink {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}
.link-ink:hover,
.link:hover { opacity: 0.78; }

/* ---------- Hero (home) ---------- */
.hero {
  padding: 112px var(--gutter) 96px;
  max-width: 1112px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 7.2vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 28px 0 32px;
}
.hero .intro {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}

/* Generic page title (Thinking, Making, Work) */
.page-head {
  padding: 96px var(--gutter) 64px;
  max-width: 900px;
}
.page-head h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
}
.page-head .standfirst {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 600px;
}

/* ---------- Home: selected work ---------- */
.work-band-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 40px var(--gutter) 0;
  border-top: 1px solid var(--line);
}
.work-band-head .title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
}
.tile-grid {
  padding: 32px var(--gutter) 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  align-items: start;
}
.tile .tile-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 18px 0 8px;
}
.tile .tile-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
}
.tile:hover .tile-title { color: var(--accent); }

/* ---------- Home: personal strip ---------- */
.also {
  border-top: 1px solid var(--line);
  background: var(--surface-2);
  padding: 56px var(--gutter);
}
.also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 28px;
}
.also-item .name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.also-item:hover .name { color: var(--accent); }
.also-item .desc {
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 48px;
  font-size: 15px;
  flex-wrap: wrap;
}
.footer-links .place { color: var(--muted); }
.colophon {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  max-width: 320px;
  text-align: right;
  line-height: 1.5;
}

/* ---------- Editorial index rows (Work, Thinking) ---------- */
.index-list { border-top: 1px solid var(--ink); }
.index-row {
  display: grid;
  align-items: baseline;
  gap: 40px;
  padding: 40px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.index-row:last-child { border-bottom: 1px solid var(--ink); }

/* Work index: number / title / client+sector */
.work-row { grid-template-columns: 60px 1fr 240px; gap: 32px; }
.work-row .num {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
}
.work-row .r-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  color: var(--ink);
}
.work-row:hover .r-title { color: var(--accent); }
.work-row .r-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
}

/* Thinking index: date / title+dek / topic */
.think-row { grid-template-columns: 140px 1fr 180px; }
.think-row .date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--faint);
  text-transform: uppercase;
}
.think-row .t-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
}
.think-row:hover .t-title { color: var(--accent); }
.think-row .dek {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 560px;
}
.think-row .topic {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: right;
}

/* More projects (compact) */
.more {
  padding: 56px var(--gutter) 88px;
}
.more h2 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 24px;
}
.more-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  max-width: 780px;
}
.more-item:last-child { border-bottom: 1px solid var(--line); }
.more-item .m-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}
.more-item .m-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 6px;
}

/* ---------- Case study ---------- */
.case-title {
  padding: 88px var(--gutter) 56px;
  max-width: 900px;
}
.case-title .case-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.case-title h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.context-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.context-cell {
  padding: 24px var(--gutter);
  border-right: 1px solid var(--line);
}
.context-cell:last-child { border-right: none; }
.context-cell .c-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
}
.context-cell .c-value {
  font-size: 15px;
  color: var(--ink);
}
.case-body {
  padding: 72px var(--gutter);
  max-width: calc(780px + var(--gutter) * 2);
}
.case-section { margin-bottom: 56px; }
.case-section .s-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.case-section p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 20px;
}
.case-section p:last-child { margin-bottom: 0; }
.case-section p.muted { color: var(--muted); }
.case-inline-img {
  margin: 0 0 56px;
}

/* Metric callout — full-bleed dark panel */
.metric {
  border-top: 1px solid var(--ink);
  background: var(--ink);
  padding: 96px var(--gutter);
}
.metric .m-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-tint);
  margin-bottom: 28px;
}
.metric .m-figure {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(64px, 13vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.metric .m-figure .mid { color: var(--accent-tint); }
.metric .m-phrase {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 900px;
}
.metric .m-support {
  font-size: 18px;
  line-height: 1.55;
  color: var(--panel-support);
  margin-top: 28px;
  max-width: 560px;
}

.case-tail { padding: 48px var(--gutter); }
.award-line {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.award-line .a-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.award-line .a-text {
  font-size: 16px;
  color: var(--ink);
}
.role-line {
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 780px;
}

/* ---------- Article (Thinking) ---------- */
.article-head {
  padding: 96px var(--gutter) 56px;
  max-width: calc(760px + var(--gutter) * 2);
  margin: 0 auto;
}
.article-meta {
  display: flex;
  gap: 20px;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 12px;
  margin-bottom: 28px;
}
.article-meta .topic {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-meta .date { color: var(--faint); }
.article-head h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
}
.article-head .standfirst {
  font-size: 21px;
  line-height: 1.55;
  color: var(--muted);
}
.article-body {
  padding: 0 var(--gutter) 72px;
  max-width: calc(680px + var(--gutter) * 2);
  margin: 0 auto;
}
.article-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 28px;
}
.article-body blockquote {
  margin: 0 0 48px;
  padding: 0 0 0 32px;
  border-left: 3px solid var(--accent);
}
.article-body blockquote p {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  color: var(--ink);
  margin: 20px 0 20px;
}
.article-body p:last-child { margin-bottom: 0; }

/* ---------- Making ---------- */
.strand {
  border-top: 1px solid var(--line);
  padding: 64px var(--gutter);
}
.strand.first { border-top: 1px solid var(--ink); }
.strand-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.strand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.05;
  color: var(--ink);
}
.strand-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 16px;
}
.music-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.release-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.release cap,
.release .cap {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  margin-top: 10px;
}
.before {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.before .lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 680px;
  margin-bottom: 48px;
}
.bands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.band { border-top: 1px solid var(--ink); padding-top: 24px; }
.band-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  gap: 16px;
}
.band-head .b-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  color: var(--ink);
}
.band-head .b-years {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.band p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.before .close {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
  margin-top: 40px;
}
.strand-head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 32px;
}
.strand-head-row .caption {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 320px;
  text-align: right;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ai-list { border-top: 1px solid var(--line); }
.ai-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.ai-row .ai-date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--faint);
}
.ai-row .ai-text { font-size: 17px; color: var(--ink); }

/* ---------- About ---------- */
.about-grid {
  padding: 96px var(--gutter) 64px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}
.about-narrative { max-width: 640px; }
.about-narrative h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 40px;
}
.about-narrative p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-narrative p:last-child { margin-bottom: 0; }
.now-panel {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 24px;
}
.now-panel .now-label {
  color: var(--faint);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 128px var(--gutter);
}
.contact .intro {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 620px;
}
.contact .email {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 6px;
}
.contact .email:hover { color: var(--accent); }
.contact-blocks {
  display: flex;
  gap: 56px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.contact-blocks .cb-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
.contact-blocks .cb-value { font-size: 17px; color: var(--ink); }

/* ---------- 404 ---------- */
.notfound { padding: 128px var(--gutter); max-width: 680px; }
.notfound h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.notfound p { font-size: 19px; color: var(--muted); margin-bottom: 24px; }

/* ============================================================
   Responsive — single breakpoint at 720px (desktop / mobile)
   ============================================================ */
@media (max-width: 720px) {
  :root { --gutter: 24px; }

  .nav-desktop { display: none; }
  .nav-mobile { display: block; }

  .hero { padding: 48px var(--gutter) 40px; }
  .hero h1 { margin-top: 18px; }
  .hero .intro { font-size: 16px; }

  .page-head { padding: 48px var(--gutter) 32px; }
  .about-grid { padding: 48px var(--gutter) 40px; }

  .work-band-head { padding-top: 28px; }
  .tile-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 48px; }

  .also-grid { grid-template-columns: 1fr; gap: 8px; }
  .also-item .desc { display: none; }
  .also-item .name { font-size: 20px; margin: 0; padding: 6px 0; }

  .site-footer { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-links { gap: 8px 32px; }
  .colophon { text-align: left; max-width: none; }

  /* Editorial rows collapse */
  .work-row { grid-template-columns: 1fr; gap: 8px; padding: 28px var(--gutter); }
  .work-row .num { font-size: 12px; }
  .work-row .r-meta { text-align: left; }
  .think-row { grid-template-columns: 1fr; gap: 10px; padding: 28px var(--gutter); }
  .think-row .topic { text-align: left; }

  /* Case study */
  .case-title { padding: 48px var(--gutter) 32px; }
  .context-bar { grid-template-columns: 1fr; }
  .context-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .context-cell:last-child { border-bottom: none; }
  .case-body { padding: 48px var(--gutter); }
  .case-section p { font-size: 17px; }
  .metric { padding: 56px var(--gutter); }

  /* Article */
  .article-head { padding: 48px var(--gutter) 32px; }
  .article-body { padding: 0 var(--gutter) 48px; }
  .article-body blockquote p { font-size: 24px; }

  /* Making */
  .strand { padding: 48px var(--gutter); }
  .music-grid { grid-template-columns: 1fr; gap: 32px; }
  .release-row { gap: 16px; }
  .bands { grid-template-columns: 1fr; gap: 32px; }
  .strand-head-row { flex-direction: column; gap: 12px; }
  .strand-head-row .caption { text-align: left; }
  .photo-grid { grid-template-columns: 1fr 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-narrative p { font-size: 17px; }

  /* Contact */
  .contact { padding: 64px var(--gutter); }
  .contact-blocks { gap: 32px; }
}

/* Respect reduced-motion (no animations here, but honour intent) */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
