@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

/* ==========================================================================
   at-access-off – Designsystem
   ========================================================================== */

:root {
  --ink: #1d3630;
  --ink-soft: #40564f;
  --ink-mute: #6b7d76;
  --paper: #f2ede1;
  --surface: #fbf8f2;
  --sand: #e7dfcd;
  --accent: #c2542c;
  --accent-soft: #f0d9cd;
  --sage: #93ac9c;
  --sage-soft: #dbe5dd;
  --line: #d9d0bd;
  --line-strong: #b9ae97;
  --white: #fff;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 2px;
  --shadow: 0 1px 2px rgba(29, 54, 48, .06), 0 12px 32px -20px rgba(29, 54, 48, .35);

  --step-1: clamp(.82rem, .8rem + .1vw, .88rem);
  --step0: clamp(1rem, .97rem + .16vw, 1.09rem);
  --step1: clamp(1.15rem, 1.09rem + .3vw, 1.35rem);
  --step2: clamp(1.4rem, 1.28rem + .6vw, 1.85rem);
  --step3: clamp(1.75rem, 1.5rem + 1.2vw, 2.6rem);
  --step4: clamp(2.1rem, 1.6rem + 2.4vw, 3.6rem);
  --step5: clamp(2.6rem, 1.7rem + 4vw, 5.2rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 6rem; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step0);
  line-height: 1.68;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; margin: 0; }
h1 { font-size: var(--step5); letter-spacing: -.035em; }
h2 { font-size: var(--step3); }
h3 { font-size: var(--step1); letter-spacing: -.01em; }
p { margin: 0 0 1.15em; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--surface); padding: .85rem 1.25rem; font-weight: 600;
}
.skip:focus { left: 1rem; top: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem; font-size: .92rem; font-weight: 600;
  text-decoration: none; border: 1px solid var(--ink); border-radius: 100px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn-solid { background: var(--ink); color: var(--surface); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--surface); transform: translateY(-2px); }

.text-link { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link:hover { color: var(--ink); }

/* ---------- Masthead ---------- */

.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 60; transition: width .1s linear; }

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242, 237, 225, .88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.masthead.is-stuck { border-bottom-color: var(--line); background: rgba(242, 237, 225, .96); }
.masthead-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--ink); color: var(--surface); border-radius: 12px 12px 12px 3px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -.02em; }
.brand-text small { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-mute); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  position: relative; text-decoration: none; font-size: .93rem; font-weight: 500; padding: .35rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after, .nav a.is-section::after { transform: scaleX(1); }
.nav a[aria-current="page"], .nav a.is-section { color: var(--accent); }
.nav a.is-section::after { background: var(--line-strong); }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; cursor: pointer; padding: 0; }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 4px auto; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  max-width: var(--wrap); margin: 0 auto; padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(2.5rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 em { font-style: italic; color: var(--accent); margin-right: .14em; }
.hero .lead { font-size: var(--step1); color: var(--ink-soft); max-width: 33ch; margin: 1.6rem 0 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-stats { display: flex; gap: 2.5rem; margin: 3rem 0 0; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-stats dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.hero-stats dd { margin: .3rem 0 0; font-family: var(--serif); font-size: 1.9rem; font-weight: 600; }

.hero-media { margin: 0; position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 190px 190px var(--radius) var(--radius); }
.hero-media figcaption {
  position: absolute; left: -1.5rem; bottom: 2rem; background: var(--surface);
  border: 1px solid var(--line); padding: 1rem 1.25rem; box-shadow: var(--shadow); max-width: 15rem;
}
.hero-media figcaption strong { display: block; font-family: var(--serif); font-size: 1.05rem; }
.hero-media figcaption span { font-size: .8rem; color: var(--ink-mute); }

/* ---------- Marquee ---------- */

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--surface); padding: .9rem 0; }
.marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; animation: slide 38s linear infinite; padding-right: 3rem; }
.marquee-track span { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }
.marquee-track span::after { content: "◆"; margin-left: 3rem; color: var(--accent); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Bands ---------- */

.band { max-width: var(--wrap); margin: 0 auto; padding: clamp(3.5rem, 7vw, 6.5rem) var(--gutter); }
.band.alt { max-width: none; background: var(--surface); border-block: 1px solid var(--line); }
.band.alt > * { max-width: var(--wrap); margin-inline: auto; }
.band-head {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end; margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.band-head p { color: var(--ink-soft); margin: 0; }
.band-more { margin-top: 2.5rem; }

/* ---------- Cards ---------- */

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card-media { display: block; overflow: hidden; aspect-ratio: 3 / 2; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.6rem 1.6rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.kicker { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.card h3 { margin: .7rem 0 .6rem; font-size: var(--step2); }
.card h3 a { text-decoration: none; }
.card h3 a:hover { color: var(--accent); }
.card p { font-size: .93rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.card-meta { margin-top: auto; display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .76rem; color: var(--ink-mute); }

/* ---------- Feature ---------- */

.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border-block: 1px solid var(--line); }
.feature-media { margin: 0; }
.feature-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.feature-copy { background: var(--sage-soft); padding: clamp(2.5rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.feature-copy h2 { max-width: 18ch; margin-bottom: 1.2rem; }
.feature-copy p { color: var(--ink-soft); }
.tick-list { list-style: none; padding: 0; margin: .5rem 0 2rem; }
.tick-list li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; font-size: .93rem; }
.tick-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Principles ---------- */

.principles { max-width: var(--wrap); margin: 0 auto; padding: clamp(3.5rem, 7vw, 6rem) var(--gutter); }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { background: var(--paper); padding: 2rem 1.6rem; }
.principle span { font-family: var(--serif); font-size: .9rem; font-weight: 700; color: var(--accent); letter-spacing: .05em; }
.principle h3 { margin: .8rem 0 .6rem; }
.principle p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Quote band ---------- */

.quote-band { background: var(--ink); color: var(--paper); text-align: center; padding: clamp(3.5rem, 7vw, 6rem) var(--gutter); }
.quote-band blockquote { font-family: var(--serif); font-size: var(--step3); line-height: 1.25; max-width: 24ch; margin: 0 auto 1.5rem; }
.quote-band p { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin: 0; }

/* ---------- Newsletter strip ---------- */

.strip {
  max-width: var(--wrap); margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  padding: clamp(2.2rem, 4vw, 3.6rem); background: var(--accent-soft); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
.strip h2 { font-size: var(--step3); max-width: 16ch; }
.strip p { color: var(--ink-soft); margin: 1rem 0 0; }
.strip-form label { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field-row { display: flex; gap: .6rem; margin: .7rem 0 .9rem; }
.field-row input { flex: 1; min-width: 0; border: 1px solid var(--ink); background: var(--surface); padding: .95rem 1.1rem; font: inherit; font-size: .95rem; }
.field-row button { border: 1px solid var(--ink); background: var(--ink); color: var(--surface); padding: 0 1.6rem; font: inherit; font-weight: 600; cursor: pointer; }
.field-row button:hover { background: var(--accent); border-color: var(--accent); }
.field-hint { font-size: .78rem; color: var(--ink-mute); }
.form-status { font-size: .88rem; font-weight: 600; color: var(--accent); min-height: 1.2em; margin: .4rem 0 0; }

/* ---------- Page head ---------- */

.page-head { max-width: var(--wrap); margin: 0 auto; padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter) clamp(2rem, 4vw, 3rem); }
.page-head h1 { max-width: 18ch; }
.page-intro { max-width: 62ch; margin-top: 1.8rem; }
.page-intro .intro { font-size: var(--step1); color: var(--ink-soft); }
.crumbs { margin-bottom: 1.8rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 0; font-size: .78rem; color: var(--ink-mute); }
.crumbs li + li::before { content: "/"; margin-right: .55rem; color: var(--line-strong); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.stamp { display: inline-block; margin-top: 1.8rem; padding: .5rem .9rem; border: 1px solid var(--line-strong); font-size: .78rem; letter-spacing: .06em; }

/* ---------- Article ---------- */

.article-head { max-width: var(--wrap); margin: 0 auto; padding: clamp(2rem, 4vw, 3.5rem) var(--gutter) 2rem; }
.article-head h1 { max-width: 20ch; }
.article-head .lead { font-size: var(--step1); color: var(--ink-soft); max-width: 60ch; margin: 1.6rem 0 2rem; }
.byline { display: flex; flex-wrap: wrap; gap: .6rem 2rem; padding-top: 1.3rem; border-top: 1px solid var(--line); font-size: .82rem; color: var(--ink-mute); }
.byline strong { color: var(--ink); }

.hero-figure { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.hero-figure img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.hero-figure figcaption, .inline-figure figcaption { font-size: .82rem; color: var(--ink-mute); padding-top: .8rem; border-top: 1px solid var(--line); margin-top: .8rem; }

.facts {
  max-width: var(--wrap); margin: clamp(2rem, 4vw, 3rem) auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: transparent;
}
.facts > div { border-top: 2px solid var(--ink); padding: 1rem 1rem 1rem 0; }
.facts dt { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.facts dd { margin: .4rem 0 0; font-family: var(--serif); font-size: 1.28rem; font-weight: 600; }

.article-grid {
  max-width: var(--wrap); margin: clamp(2.5rem, 5vw, 4rem) auto clamp(3rem, 6vw, 5rem);
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem);
}
.sidebar-inner { position: sticky; top: 6.5rem; }
.side-title { font-size: .74rem; font-family: var(--sans); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.toc { list-style: none; padding: 0; margin: 1rem 0 2rem; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a {
  display: block; padding: .42rem 0 .42rem 1.8rem; font-size: .86rem; text-decoration: none;
  color: var(--ink-soft); position: relative; transition: color .18s ease;
}
.toc a::before { content: counter(toc, decimal-leading-zero); position: absolute; left: 0; font-size: .7rem; color: var(--line-strong); }
.toc a:hover, .toc a.active { color: var(--accent); }
.toc a.active::before { color: var(--accent); }
.side-note { border-top: 1px solid var(--line); padding-top: 1rem; font-size: .8rem; color: var(--ink-mute); }

.prose { max-width: 68ch; }
.prose > .intro { font-size: var(--step1); color: var(--ink-soft); }
.prose h2 { margin: 3rem 0 1.1rem; font-size: var(--step3); scroll-margin-top: 7rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 2rem 0 .7rem; }
.prose a { color: var(--accent); text-underline-offset: 3px; }

.rich-list, .checklist { padding-left: 0; list-style: none; margin: 0 0 1.6rem; }
.rich-list li { position: relative; padding-left: 1.7rem; margin-bottom: .7rem; }
.rich-list li::before { content: ""; position: absolute; left: .3rem; top: .68em; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
ol.rich-list { counter-reset: n; }
ol.rich-list li::before { content: counter(n); counter-increment: n; background: none; width: auto; height: auto; top: 0; left: 0; font-weight: 700; color: var(--accent); font-size: .85rem; }
.checklist li { position: relative; padding-left: 2rem; margin-bottom: .65rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 15px; height: 15px;
  border: 1.5px solid var(--ink); border-radius: 3px;
}
.checklist li::after { content: ""; position: absolute; left: 5px; top: .62em; width: 5px; height: 9px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }

.note { margin: 2.2rem 0; padding: 1.5rem 1.7rem; border-left: 3px solid var(--accent); background: var(--surface); }
.note h3 { font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; }
.note p { margin: 0; font-size: .96rem; }
.note-info { border-left-color: var(--sage); background: var(--sage-soft); }
.note-info h3 { color: var(--ink-soft); }

.pull { margin: 2.8rem 0; padding: 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 1.8rem 0; }
.pull blockquote { margin: 0; font-family: var(--serif); font-size: var(--step2); line-height: 1.3; }
.pull figcaption { margin-top: .9rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }

.inline-figure { margin: 2.5rem 0; }
.inline-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.table-wrap { margin: 2.2rem 0; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
caption { text-align: left; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); padding-bottom: .8rem; }
th, td { text-align: left; padding: .85rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--ink); color: var(--surface); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; border-bottom: 0; }
tbody th { font-weight: 600; }
tbody tr:nth-child(even) { background: var(--surface); }

.timeline { list-style: none; padding: 0; margin: 2.2rem 0; }
.timeline li { display: grid; grid-template-columns: 88px 1fr; gap: 1.4rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.tl-when { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); padding-top: .25rem; }
.timeline h3 { font-size: 1.06rem; margin-bottom: .35rem; }
.timeline p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.timeline.wide { max-width: var(--wrap); }

/* ---------- FAQ ---------- */

.faq { margin: 3.5rem 0 0; }
.faq h2 { margin-bottom: 1.2rem; }
details { border-top: 1px solid var(--line); }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-weight: 600; font-size: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--accent); transition: transform .2s ease;
}
details[open] summary::after { content: "–"; }
details[open] summary { color: var(--accent); }
.faq-a { padding: 0 2.5rem 1.4rem 0; }
.faq-a p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.faq-group { margin-bottom: 3.5rem; }
.faq-group .group-lead { color: var(--ink-mute); font-size: .95rem; margin-bottom: 1.2rem; }
.faq-layout { margin-top: 0; }

/* ---------- Author + related ---------- */

.author-box { display: grid; grid-template-columns: 84px 1fr; gap: 1.5rem; margin: 3.5rem 0 0; padding: 2rem; background: var(--surface); border: 1px solid var(--line); }
.avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--ink); color: var(--surface); display: grid; place-items: center; font-family: var(--serif); font-size: 1.6rem; }
.author-box h2 { font-size: var(--step1); margin-bottom: .2rem; }
.author-box .role { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.author-box p:last-child { margin: 0; font-size: .93rem; color: var(--ink-soft); }

.related { max-width: var(--wrap); margin: 0 auto clamp(3rem, 6vw, 5rem); padding: clamp(2rem, 4vw, 3rem) var(--gutter) 0; border-top: 1px solid var(--line); }
.related h2 { margin-bottom: 1.8rem; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mini-card { display: grid; grid-template-columns: 96px 1fr; gap: 1.1rem; align-items: center; text-decoration: none; border: 1px solid var(--line); background: var(--surface); padding: .8rem; transition: border-color .2s ease, transform .2s ease; }
.mini-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.mini-card img { width: 96px; height: 84px; object-fit: cover; }
.mini-card h3 { font-size: 1.02rem; margin-top: .35rem; }

/* ---------- Team ---------- */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { background: var(--paper); border: 1px solid var(--line); padding: 2rem; }
.team-card .avatar { margin-bottom: 1.2rem; }
.team-card .role { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: .3rem 0 .9rem; }
.team-card p:last-child { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Contact ---------- */

.contact { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter) clamp(3rem, 6vw, 5rem); display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-cards { display: grid; gap: 1.2rem; }
.contact-card { border: 1px solid var(--line); background: var(--surface); padding: 1.8rem; }
.contact-card.accent { background: var(--sage-soft); }
.contact-card .big { font-family: var(--serif); font-size: 1.22rem; line-height: 1.45; margin: 0; }
.big-link { font-family: var(--serif); font-size: 1.3rem; text-decoration: none; border-bottom: 1px solid var(--accent); }
.big-link:hover { color: var(--accent); }
.contact-card .small { font-size: .85rem; color: var(--ink-mute); margin: .9rem 0 0; }

.contact-form { border: 1px solid var(--line); background: var(--surface); padding: clamp(1.6rem, 3vw, 2.6rem); }
.contact-form h2 { font-size: var(--step2); margin-bottom: .6rem; }
.form-note { font-size: .85rem; color: var(--ink-mute); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .45rem; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line-strong); background: var(--white); padding: .8rem .9rem;
  font: inherit; font-size: .95rem; color: var(--ink); border-radius: var(--radius);
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }
.check { display: flex; align-items: flex-start; gap: .6rem; font-size: .86rem; margin-bottom: 1.4rem; color: var(--ink-soft); }
.check input { margin-top: .25rem; }

.directions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.directions h3 { margin-bottom: .5rem; }
.directions p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* ---------- Legal ---------- */

body.legal .page-head { background: var(--ink); color: var(--paper); max-width: none; }
body.legal .legal-head > * { max-width: var(--wrap); margin-inline: auto; }
body.legal .page-head .eyebrow { color: var(--sage); }
body.legal .page-head .intro { color: var(--sand); }
body.legal .crumbs { color: var(--sage); }
body.legal .stamp { border-color: var(--sage); color: var(--sand); }
.legal-prose h2 { font-size: var(--step2); margin-top: 2.6rem; }
.legal-prose section:first-child h2 { margin-top: 0; }
.legal-prose p { font-size: .96rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */

.site-foot { background: var(--ink); color: var(--sand); padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem; }
.foot-top { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.foot-logo { font-family: var(--serif); font-size: 2rem; color: var(--paper); margin-bottom: 1rem; }
.foot-brand p { font-size: .9rem; max-width: 34ch; color: var(--sage); }
.foot-brand address { font-style: normal; font-size: .88rem; line-height: 1.9; margin-top: 1.2rem; }
.foot-brand address a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(242,237,225,.35); }
.foot-brand address a:hover { border-color: var(--accent); color: var(--accent); }
.foot-col h3 { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 1rem; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: .55rem; }
.foot-col a { font-size: .9rem; text-decoration: none; color: var(--sand); }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  max-width: var(--wrap); margin: clamp(2.5rem, 5vw, 4rem) auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(242, 237, 225, .16);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 2rem;
  font-size: .78rem; color: var(--sage);
}

/* ---------- To top + consent ---------- */

.to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--ink); background: var(--paper); color: var(--ink); font-size: 1.1rem;
  cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 40;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }

.consent {
  position: fixed; z-index: 70; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  max-width: 62rem; margin: 0 auto; background: var(--surface); border: 1px solid var(--ink);
  box-shadow: 0 20px 60px -25px rgba(29, 54, 48, .6);
  padding: 1.6rem 1.8rem; display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2.5rem; align-items: center;
}
.consent[hidden] { display: none; }
.consent h2 { font-size: 1.25rem; margin-bottom: .4rem; }
.consent p { font-size: .86rem; color: var(--ink-soft); margin: 0; }
.consent a { color: var(--accent); }
.consent-actions { display: flex; gap: .7rem; }
.consent-actions button { padding: .8rem 1.4rem; font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer; border-radius: 100px; border: 1px solid var(--ink); }
.consent-actions .ghost { background: transparent; color: var(--ink); }
.consent-actions .ghost:hover { background: var(--sand); }
.consent-actions .solid { background: var(--ink); color: var(--surface); }
.consent-actions .solid:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .card-grid, .mini-grid, .team-grid, .principle-grid, .directions { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 200px minmax(0, 1fr); gap: 2.5rem; }
  .facts { grid-template-columns: repeat(2, 1fr); gap: 0 1.5rem; }
}

@media (max-width: 900px) {
  .masthead-inner { height: 68px; }
  .burger { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 0 var(--gutter);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav.open { max-height: 24rem; padding-block: 1rem 1.5rem; }
  .nav a { width: 100%; padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .hero .lead { max-width: none; }
  .hero-media img { aspect-ratio: 4 / 3; border-radius: 120px 120px var(--radius) var(--radius); }
  .hero-media figcaption { left: 1rem; bottom: 1rem; }
  .hero-stats { gap: 1.5rem; justify-content: space-between; }
  .band-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .feature { grid-template-columns: 1fr; }
  .feature-media img { min-height: 300px; }
  .strip { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .contact { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .consent { grid-template-columns: 1fr; }
  .hero-figure img { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .card-grid, .mini-grid, .team-grid, .principle-grid, .directions, .grid-2 { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .facts > div { padding-bottom: .8rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem 2rem; }
  .author-box { grid-template-columns: 1fr; }
  .mini-card { grid-template-columns: 76px 1fr; }
  .mini-card img { width: 76px; height: 70px; }
  .timeline li { grid-template-columns: 1fr; gap: .4rem; }
  .foot-top { grid-template-columns: 1fr; }
  .consent-actions { flex-direction: column; }
  .consent-actions button { width: 100%; }
  .to-top { right: 1rem; bottom: 1rem; }
  .pull blockquote { font-size: var(--step1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

@media print {
  .masthead, .site-foot, .consent, .to-top, .strip, .sidebar, .related, .progress { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .article-grid { grid-template-columns: 1fr; }
  a { text-decoration: none; color: #000; }
}
