@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');

:root {
  --paper: #f7f4ed;
  --paper-2: #fffdf8;
  --ink: #15201c;
  --ink-soft: #4c574f;
  --ink-faint: #7d8880;
  --rust: #c2502a;
  --pine: #1e453f;
  --gold: #b98a2e;
  --line: #ddd6c7;
  --line-soft: #eae4d7;
  --shadow: 0 24px 60px -32px rgba(21, 32, 28, .35);
  --radius: 3px;
  --measure: 68ch;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  font-feature-settings: "kern" 1;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
h1, h2, h3, h4 { font-family: Fraunces, Georgia, serif; font-weight: 600; letter-spacing: -.025em; margin: 0; }
p { margin: 0 0 1.15em; }

.wrap { width: min(1240px, 100% - 48px); margin-inline: auto; }
.wrap-narrow { width: min(880px, 100% - 48px); margin-inline: auto; }
.label {
  font-family: Inter, sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--rust);
}
.label-muted { color: var(--ink-faint); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper);
  padding: 12px 18px; z-index: 200;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Utility bar + header ---------- */
.utility {
  background: var(--pine); color: #dfe6e1; font-size: 12.5px; letter-spacing: .02em;
}
.utility-inner { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; align-items: center; }
.utility a { border-bottom: 1px solid rgba(255, 255, 255, .25); }
.utility a:hover { border-color: #fff; color: #fff; }
.utility-meta { display: flex; gap: 22px; align-items: center; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(247, 244, 237, .96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 82px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.brand-logo {
  display: block;
  height: 38px;
  width: auto;
  min-width: 158px;
  max-width: none;
  flex-shrink: 0;
}
.brand-logo--footer { height: 34px; min-width: 140px; }
.brand-logo--footer .logo-title { fill: #f7f4ed; }
.brand-logo--footer .logo-sub { fill: #a7b3ac; }
.brand-logo--footer .logo-ring { stroke: #f7f4ed; }
.brand-logo--footer .logo-n { fill: #f7f4ed; }
.brand-mark {
  width: 42px; height: 42px; flex: none; border: 1.5px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center; font-family: Fraunces, serif; font-size: 19px; font-weight: 700;
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 4px; border-radius: 50%;
  border: 1px dashed rgba(21, 32, 28, .35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: Fraunces, serif; font-size: 21px; font-weight: 700; letter-spacing: -.03em; }
.brand-tag { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }

.primary-nav { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px;
  font-size: 14.5px; font-weight: 600; border-radius: 2px;
}
.nav-link:hover, .nav-item:hover > .nav-link { background: var(--line-soft); }
.nav-link[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--rust); }
.chev { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .55; }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; min-width: 288px; background: var(--paper-2);
  border: 1px solid var(--line); box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: .18s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: 9px 12px; font-size: 14.5px; }
.dropdown a:hover { background: var(--line-soft); }
.dropdown a span { display: block; font-size: 12.5px; color: var(--ink-faint); font-weight: 400; }
.dropdown a b { font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; border: 1px solid var(--ink); background: transparent; padding: 10px 14px; font-weight: 600; font-size: 14px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; font-size: 14.5px; font-weight: 600; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper-2); transition: .18s ease; cursor: pointer;
}
.btn:hover { background: var(--rust); border-color: var(--rust); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper-2); border-color: var(--ink); }
.btn-rust { background: var(--rust); border-color: var(--rust); }
.btn-rust:hover { background: var(--ink); border-color: var(--ink); }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }

/* ---------- Home hero ---------- */
.hero { padding: 74px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; }
.hero h1 { font-size: clamp(44px, 5.6vw, 82px); line-height: .98; margin: 20px 0 22px; }
.hero h1 em { font-style: normal; color: var(--rust); }
.hero-lead { font-size: 19.5px; color: var(--ink-soft); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-proof { display: flex; gap: 30px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-proof div b { font-family: Fraunces, serif; font-size: 27px; display: block; line-height: 1.1; }
.hero-proof div span { font-size: 12.5px; color: var(--ink-faint); }
.hero-media { position: relative; }
.hero-media .main { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.hero-media .inset {
  position: absolute; right: -26px; bottom: -30px; width: 44%; aspect-ratio: 1;
  object-fit: cover; border: 8px solid var(--paper); box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute; left: -28px; top: 30px; background: var(--paper-2); border: 1px solid var(--line);
  padding: 14px 16px; max-width: 190px; box-shadow: var(--shadow);
}
.hero-badge b { font-family: Fraunces, serif; font-size: 15px; display: block; }
.hero-badge span { font-size: 12px; color: var(--ink-faint); }

.marquee { border-block: 1px solid var(--line); background: var(--paper-2); overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee-track > span { padding: 14px 26px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.marquee-track > span i { font-style: normal; color: var(--rust); margin-left: 22px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 60px 0; }
.section-dark { background: var(--pine); color: #eef2ef; }
.section-dark .section-head p, .section-dark .card p { color: #c3cec8; }
.section-ink { background: var(--ink); color: var(--paper); }
.section-head { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: end; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(32px, 3.9vw, 52px); line-height: 1.04; margin-top: 12px; }
.section-head p { color: var(--ink-soft); margin: 0; max-width: 52ch; }
.section-head-simple { display: block; margin-bottom: 36px; }

/* Featured editorial block */
.feature { display: grid; grid-template-columns: 1.08fr .92fr; border: 1px solid var(--line); background: var(--paper-2); }
.feature-media { position: relative; }
.feature-media img { height: 100%; width: 100%; object-fit: cover; min-height: 420px; }
.feature-flag { position: absolute; top: 0; left: 0; background: var(--rust); color: #fff; padding: 9px 16px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.feature-body { padding: 46px 44px; }
.feature-body h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.06; margin: 14px 0 16px; }
.feature-body p { color: var(--ink-soft); }
.feature-list { list-style: none; padding: 0; margin: 24px 0 30px; border-top: 1px solid var(--line); }
.feature-list li { display: flex; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.feature-list li b { font-family: Fraunces, serif; color: var(--rust); flex: none; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { background: var(--paper-2); border: 1px solid var(--line); display: flex; flex-direction: column; transition: .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-media { position: relative; overflow: hidden; }
.card-media img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; transition: .5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-tag {
  position: absolute; left: 14px; bottom: 14px; background: var(--paper-2); padding: 5px 11px;
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 23px; line-height: 1.16; margin: 8px 0 10px; }
.card-body p { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }
.card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--ink-faint); border-top: 1px solid var(--line-soft); padding-top: 14px; }
.card-foot .go { color: var(--rust); font-weight: 600; }

/* Numbered process */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(255, 255, 255, .18); }
.step { padding: 34px 30px; border-right: 1px solid rgba(255, 255, 255, .18); }
.step:last-child { border-right: 0; }
.step b { font-family: Fraunces, serif; font-size: 13px; letter-spacing: .2em; color: var(--gold); display: block; margin-bottom: 12px; }
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { font-size: 14.5px; margin: 0; color: #c3cec8; }

/* Data table */
.table-wrap { border: 1px solid var(--line); background: var(--paper-2); overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
thead th { text-align: left; background: var(--line-soft); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; padding: 14px 18px; font-weight: 700; }
tbody td { padding: 14px 18px; border-top: 1px solid var(--line-soft); vertical-align: top; }
tbody tr:nth-child(even) { background: rgba(221, 214, 199, .18); }
td b { font-weight: 600; }

/* Quotes / letters */
.letters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.letter { background: var(--paper-2); border: 1px solid var(--line); padding: 30px; }
.letter p { font-family: Fraunces, serif; font-size: 18.5px; line-height: 1.44; }
.letter footer { font-size: 13px; color: var(--ink-faint); border-top: 1px solid var(--line-soft); padding-top: 14px; }
.stars { color: var(--gold); letter-spacing: .18em; font-size: 13px; margin-bottom: 14px; }

/* Accordion */
.accordion { border-top: 1px solid var(--line); }
details.qa { border-bottom: 1px solid var(--line); }
details.qa summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative;
  font-family: Fraunces, serif; font-size: 20px; font-weight: 600;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+"; position: absolute; right: 8px; top: 16px; font-family: Inter, sans-serif;
  font-size: 24px; color: var(--rust); font-weight: 400;
}
details.qa[open] summary::after { content: "–"; }
details.qa .qa-body { padding: 0 60px 22px 0; color: var(--ink-soft); font-size: 16px; }

/* CTA band */
.cta-band { background: var(--ink); color: var(--paper); padding: 66px 0; }
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; }
.cta-inner h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; }
.cta-inner p { color: #bfc8c2; margin: 14px 0 0; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.cta-actions .btn:hover { background: var(--rust); border-color: var(--rust); color: #fff; }
.cta-actions .btn-outline { background: transparent; color: var(--paper); }

/* ---------- Article pages ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--rust); z-index: 80; width: 0; }
.breadcrumb { padding: 18px 0; font-size: 13px; color: var(--ink-faint); border-bottom: 1px solid var(--line-soft); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; color: var(--line); }
.breadcrumb a:hover { color: var(--rust); }

.article-head { padding: 54px 0 40px; }
.article-head h1 { font-size: clamp(38px, 5.2vw, 70px); line-height: 1; max-width: 20ch; margin: 18px 0 22px; }
.standfirst { font-size: 20px; color: var(--ink-soft); max-width: 62ch; }
.byline { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-faint); }
.byline b { color: var(--ink); font-weight: 600; }

.hero-figure { margin: 0; }
.hero-figure img { width: 100%; height: min(58vw, 620px); object-fit: cover; }
figcaption { font-size: 12.5px; color: var(--ink-faint); padding: 12px 0; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.article-layout { display: grid; grid-template-columns: 282px minmax(0, 1fr); gap: 72px; padding: 62px 0 40px; align-items: start; }
.sidebar { position: sticky; top: 108px; display: flex; flex-direction: column; gap: 30px; }
.side-block { border-top: 2px solid var(--ink); padding-top: 16px; }
.side-block h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-family: Inter, sans-serif; font-weight: 700; margin-bottom: 14px; }
.toc { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { counter-increment: toc; border-bottom: 1px solid var(--line-soft); }
.toc a { display: flex; gap: 12px; padding: 10px 0; font-size: 14px; color: var(--ink-soft); }
.toc a::before { content: counter(toc, decimal-leading-zero); color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.toc a:hover, .toc a.active { color: var(--rust); }
.toc a.active::before { color: var(--rust); }
.side-facts { list-style: none; margin: 0; padding: 0; font-size: 14px; }
.side-facts li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.side-facts span { color: var(--ink-faint); }
.side-facts b { font-weight: 600; text-align: right; }
.side-note { background: var(--paper-2); border: 1px solid var(--line); padding: 22px; font-size: 14px; }
.side-note h4 { border: 0; margin-bottom: 8px; }
.side-note p { margin-bottom: 14px; color: var(--ink-soft); }

.prose { max-width: var(--measure); font-size: 17.5px; }
.prose > p:first-of-type::first-letter {
  float: left; font-family: Fraunces, serif; font-size: 68px; line-height: .82;
  padding: 6px 12px 0 0; color: var(--rust);
}
.prose h2 { font-size: clamp(27px, 2.9vw, 38px); line-height: 1.1; margin: 58px 0 16px; }
.prose h2 .num { display: block; font-family: Inter, sans-serif; font-size: 11.5px; letter-spacing: .18em; color: var(--rust); font-weight: 700; margin-bottom: 10px; }
.prose h3 { font-size: 21px; margin: 32px 0 10px; }
.prose p, .prose li { color: #2c3832; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.2em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--rust); border-bottom: 1px solid rgba(194, 80, 42, .35); }
.prose a:hover { border-color: var(--rust); }
.prose strong { font-weight: 600; }

.callout { border: 1px solid var(--line); border-left: 4px solid var(--rust); background: var(--paper-2); padding: 24px 26px; margin: 34px 0; }
.callout h4 { font-family: Inter, sans-serif; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--rust); margin-bottom: 8px; }
.callout p:last-child { margin-bottom: 0; }
.callout-warn { border-left-color: var(--gold); }
.callout-warn h4 { color: var(--gold); }

.pullquote { margin: 46px 0; padding: 0 0 0 30px; border-left: 2px solid var(--ink); }
.pullquote p { font-family: Fraunces, serif; font-size: 26px; line-height: 1.32; margin-bottom: 10px; }
.pullquote cite { font-style: normal; font-size: 13px; color: var(--ink-faint); letter-spacing: .04em; }

.timeline { list-style: none; margin: 32px 0; padding: 0; border-left: 1px solid var(--line); }
.timeline li { position: relative; padding: 0 0 26px 28px; }
.timeline li::before {
  content: ""; position: absolute; left: -5px; top: 8px; width: 9px; height: 9px;
  background: var(--rust); border-radius: 50%;
}
.timeline b { display: block; font-family: Inter, sans-serif; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.timeline h4 { font-size: 19px; margin: 4px 0 6px; }
.timeline p { font-size: 15.5px; margin: 0; color: var(--ink-soft); }

.checklist { list-style: none; padding: 0; margin: 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.checklist li { position: relative; padding-left: 28px; font-size: 15.5px; }
.checklist li::before {
  content: ""; position: absolute; left: 4px; top: 8px; width: 11px; height: 6px;
  border-left: 2px solid var(--rust); border-bottom: 2px solid var(--rust); transform: rotate(-45deg);
}
.figure-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 40px 0; }
.figure-duo img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.figure-duo figcaption { font-size: 12px; padding-top: 9px; }
.prose .table-wrap { margin: 34px 0; }

.author-box { display: grid; grid-template-columns: 64px 1fr; gap: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; margin-top: 54px; }
.author-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--pine); color: var(--paper); display: grid; place-items: center; font-family: Fraunces, serif; font-size: 22px; }
.author-box h4 { font-size: 18px; margin-bottom: 4px; }
.author-box p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ---------- Page hero variants ---------- */
.page-hero { padding: 62px 0 52px; }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 74px); line-height: 1; max-width: 22ch; margin: 18px 0 20px; }
.page-hero p { font-size: 19px; color: var(--ink-soft); max-width: 60ch; }
.page-hero-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.page-hero-split img { aspect-ratio: 5 / 4; object-fit: cover; width: 100%; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; padding: 20px 0 80px; align-items: start; }
.info-card { background: var(--pine); color: #e7ede9; padding: 38px; }
.info-card h3 { font-size: 26px; color: #fff; margin-bottom: 18px; }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .16); font-size: 15px; }
.info-row b { display: block; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-row a { border-bottom: 1px solid rgba(255, 255, 255, .3); }
form { background: var(--paper-2); border: 1px solid var(--line); padding: 38px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15.5px; padding: 13px 14px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 0; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--rust); outline-offset: -2px; }
.field textarea { min-height: 158px; resize: vertical; }
.field-hint { font-size: 12.5px; color: var(--ink-faint); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); }
.consent input { width: 18px; height: 18px; margin-top: 3px; }
.form-status { display: none; margin-top: 20px; padding: 16px 18px; background: rgba(30, 69, 63, .08); border-left: 3px solid var(--pine); font-size: 15px; }
.form-status.visible { display: block; }

/* ---------- Legal ---------- */
.legal-layout { display: grid; grid-template-columns: 262px minmax(0, 1fr); gap: 68px; padding: 40px 0 80px; align-items: start; }
.legal-body { max-width: 74ch; }
.legal-body h2 { font-size: 27px; margin: 48px 0 12px; }
.legal-body h3 { font-size: 18px; margin: 26px 0 8px; }
.legal-body p, .legal-body li { color: #2c3832; font-size: 16.5px; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 7px; }
.legal-meta { display: flex; gap: 26px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-faint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; margin-top: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: #101a16; color: #d9e0db; padding: 72px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 46px; }
.footer-top h4 { font-family: Inter, sans-serif; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: #8f9c94; margin-bottom: 18px; }
.footer-brand .brand-mark { border-color: rgba(255, 255, 255, .5); color: #fff; }
.footer-brand .brand-mark::after { border-color: rgba(255, 255, 255, .3); }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: 15px; color: #a7b3ac; margin: 20px 0 0; max-width: 34ch; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14.5px; color: #c3ccc6; }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: 14.5px; color: #c3ccc6; font-style: normal; }
.footer-contact a { border-bottom: 1px solid rgba(255, 255, 255, .25); }
.footer-contact div { margin-bottom: 12px; }
.footer-bottom {
  margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .13);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: #8b978f;
}
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 55; width: 46px; height: 46px;
  border: 1px solid var(--ink); background: var(--paper-2); color: var(--ink); cursor: pointer;
  display: grid; place-items: center; opacity: 0; pointer-events: none; transition: .2s;
}
.to-top.visible { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--ink); color: var(--paper); }

/* ---------- Cookie ---------- */
.cookie {
  position: fixed; z-index: 120; inset: auto 0 0 0; background: var(--paper-2);
  border-top: 2px solid var(--ink); box-shadow: 0 -20px 50px -30px rgba(0, 0, 0, .4);
  display: none; padding: 26px 0;
}
.cookie.open { display: block; }
.cookie-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 44px; align-items: center; }
.cookie h3 { font-size: 23px; margin-bottom: 8px; }
.cookie p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.cookie p a { color: var(--rust); border-bottom: 1px solid rgba(194, 80, 42, .4); }
.cookie-actions { display: flex; flex-direction: column; gap: 10px; }
.cookie-prefs { display: none; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); gap: 18px; grid-template-columns: repeat(3, 1fr); }
.cookie-prefs.open { display: grid; }
.pref { border: 1px solid var(--line); padding: 16px 18px; font-size: 13.5px; color: var(--ink-soft); }
.pref label { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); font-size: 14.5px; margin-bottom: 6px; }
.pref input { width: 17px; height: 17px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .article-layout, .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 26px; }
  .sidebar > * { flex: 1 1 260px; }
  .prose { max-width: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 940px) {
  .wrap, .wrap-narrow { width: min(100% - 36px, 1240px); }
  .nav-toggle { display: inline-block; }
  .primary-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper-2);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: 14px 18px 22px;
    max-height: 76vh; overflow-y: auto;
  }
  .primary-nav.open { display: flex; }
  .nav-link { padding: 13px 4px; font-size: 16px; border-bottom: 1px solid var(--line-soft); }
  .chev { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-bottom: 1px solid var(--line-soft); padding: 4px 0 12px 12px; min-width: 0;
  }
  .header-cta .btn { display: none; }
  .hero-grid, .section-head, .feature, .cta-inner, .page-hero-split, .contact-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; }
  .hero-media .inset { right: 12px; bottom: -22px; width: 38%; }
  .hero-badge { left: 12px; }
  .grid-3, .grid-4, .letters, .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .feature-body { padding: 34px 28px; }
  .cookie-grid { gap: 22px; }
  .cookie-prefs { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16.5px; }
  .utility-inner { flex-direction: column; gap: 6px; text-align: center; font-size: 11.5px; }
  .utility-meta { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .section { padding: 60px 0; }
  .grid-3, .grid-2, .grid-4, .letters, .steps, .figure-duo, .form-grid, .checklist { grid-template-columns: 1fr; }
  .hero-media .main { aspect-ratio: 4 / 3.4; }
  .hero-media .inset, .hero-badge { display: none; }
  .prose { font-size: 17px; }
  .prose > p:first-of-type::first-letter { font-size: 54px; }
  .article-head h1, .page-hero h1 { max-width: none; }
  .hero-figure img { height: 62vw; }
  .info-card, form { padding: 26px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .to-top { right: 14px; bottom: 14px; }
  .byline { gap: 14px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
