/* ─────────────────────────────────────────────────────────────
   Circum Vaga — site stylesheet
   Design language taken from the Circum Vaga Sponsorship Pack:
   cream paper, ink panels, Caslon display headings in red,
   Figtree body copy, teal letter‑spaced labels, hairline rules.
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Libre+Caslon+Display&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Tokens ── */
:root {
  --cream:      #f7f3ea;
  --cream-2:    #ece4d4;
  --paper:      #fffdf7;
  --ink:        #1c2b30;
  --ink-2:      #26373d;
  --ink-3:      #4a5960;
  --red:        #a61e2a;
  --red-2:      #8c1822;
  --teal:       #2f6f66;
  --blush:      #e8b7a9;
  --text:       #2e3a3e;
  --text-2:     #4a5458;
  --muted:      #767676;
  --rule:       #cfc4b0;
  --rule-soft:  #e4e7e6;
  --on-ink:     #f7f3ea;
  --on-ink-2:   rgba(247,243,234,0.72);
  --on-ink-rule: rgba(247,243,234,0.18);

  --serif:      'Libre Caslon Display', 'Libre Caslon Text', Georgia, 'Times New Roman', serif;
  --serif-text: 'Libre Caslon Text', Georgia, 'Times New Roman', serif;
  --sans:       'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --w-wide:     1120px;
  --w-narrow:   760px;
  --gutter:     clamp(16px, 4vw, 40px);
  --r:          2px;
  --shadow:     0 12px 40px rgba(28,43,48,0.10);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-underline-offset: 3px; }
a:hover { color: var(--red-2); }
ul[role="list"], ol[role="list"] { list-style: none; }
strong { font-weight: 600; color: var(--ink); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--ink); color: var(--on-ink);
  padding: 10px 16px; border-radius: var(--r); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ── Typography ── */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 6.4vw, 72px); color: var(--red); }
h2 { font-size: clamp(32px, 4.4vw, 48px); color: var(--red); margin-bottom: 18px; }
h3 { font-size: clamp(22px, 2.4vw, 26px); margin-bottom: 8px; }
h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow--red { color: var(--red); }
.eyebrow--muted { color: var(--muted); }

.lead {
  font-family: var(--serif-text);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 34em;
}
.lead + .prose { margin-top: 24px; }
.prose p { margin-bottom: 14px; color: var(--text-2); max-width: 36em; }
.prose p:last-child { margin-bottom: 0; }
.small { font-size: 14px; color: var(--muted); }

/* ── Layout ── */
.container { width: 100%; max-width: var(--w-wide); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--w-narrow); }
section { padding: clamp(56px, 8vw, 104px) 0; }
section + section.section--tight { padding-top: 0; }
.section--ink { background: var(--ink); color: var(--on-ink); }
.section--ink h2, .section--ink h3 { color: var(--on-ink); }
.section--ink .lead { color: var(--on-ink); }
.section--ink .prose p, .section--ink .small { color: var(--on-ink-2); }
.section--ink .eyebrow { color: var(--blush); }
.section--ink strong { color: #fff; }
.section--paper { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section--sand { background: var(--cream-2); }

.section-head { max-width: 40em; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: clamp(24px, 3vw, 40px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.rule { border: 0; border-top: 1px solid var(--rule); margin: clamp(40px, 6vw, 72px) 0; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,243,234,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.brand img { height: 36px; width: auto; }
.brand-name {
  font-family: var(--serif);
  font-size: 17px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); text-decoration: none;
  padding: 10px 14px; border-bottom: 2px solid transparent;
  transition: color .15s;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--red); border-bottom-color: var(--red); }
.nav .nav-cta {
  margin-left: 12px; color: var(--on-ink); background: var(--ink);
  border-radius: var(--r); padding: 10px 18px; border-bottom: 0;
}
.nav .nav-cta:hover, .nav .nav-cta[aria-current="page"] { background: var(--red); color: #fff; border-bottom: 0; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--rule); border-radius: var(--r);
  width: 44px; height: 44px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 68px;
    background: var(--cream); border-bottom: 1px solid var(--rule);
    flex-direction: column; align-items: stretch; padding: 8px var(--gutter) 16px; gap: 0;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--rule-soft); font-size: 13px; }
  .nav a[aria-current="page"] { border-bottom-color: var(--rule-soft); }
  .nav .nav-cta { margin: 12px 0 0; text-align: center; padding: 14px; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--r);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn--red { background: var(--red); color: #fff; border-color: var(--red); }
.btn--red:hover { background: var(--red-2); border-color: var(--red-2); color: #fff; }
.btn--ink { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-2); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--on-ink); }
.btn--cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--cream:hover { background: #fff; color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--on-ink); border-color: rgba(247,243,234,0.4); }
.btn--ghost-light:hover { border-color: var(--on-ink); color: #fff; }
.btn--block { width: 100%; text-align: center; }
.btn { flex-wrap: wrap; }
.btn svg { width: 16px; height: 16px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.text-link {
  font-weight: 600; color: var(--red); text-decoration: none;
  border-bottom: 1px solid var(--blush); padding-bottom: 1px;
}
.text-link:hover { border-bottom-color: var(--red); }

/* ── Hero (home) ── */
.hero {
  padding: clamp(40px, 7vw, 88px) 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-topline {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--rule); padding-bottom: 16px; margin-bottom: clamp(36px, 6vw, 64px);
}
.hero-topline .eyebrow { margin: 0; }
.hero-mark {
  --mark: clamp(180px, 28vw, 260px);
  width: var(--mark); height: var(--mark); margin: 0 auto clamp(28px, 4vw, 44px);
  border-radius: 50%; background: var(--paper);
  border: 1px solid var(--teal);
  box-shadow: inset 0 0 0 5px var(--paper), inset 0 0 0 6px var(--rule);
  display: flex; align-items: center; justify-content: center;
}
.hero-mark img { height: 64%; width: auto; }
.hero h1 {
  font-size: clamp(44px, 8.5vw, 96px);
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1; margin-bottom: 14px;
}
.hero-sub {
  font-family: var(--serif-text); font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px); color: var(--ink);
  display: inline-flex; align-items: center; gap: 18px; margin-bottom: 28px;
}
.hero-sub::before, .hero-sub::after { content: ""; width: 40px; height: 1px; background: var(--ink); }
.hero p.hero-text {
  font-size: 17px; color: var(--text-2); max-width: 32em; margin: 0 auto 32px;
}
.hero-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: clamp(44px, 7vw, 80px); }
.hero-band {
  background: var(--red); color: #fff;
  padding: clamp(24px, 4vw, 40px) 0;
  text-align: left;
}
.hero-band .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.hero-band p {
  font-family: var(--serif-text); font-size: clamp(17px, 2vw, 21px); line-height: 1.45;
  max-width: 30em; color: #fff;
}
.hero-band .band-link {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
  color: #fff; text-decoration: none; white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 2px;
}
.hero-band .band-link:hover { border-bottom-color: #fff; }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lead { max-width: 36em; }

/* ── Numbered benefit list (pack p.2) ── */
.benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(24px, 4vw, 56px); }
@media (max-width: 640px) { .benefits { grid-template-columns: 1fr; } }
.benefit { border-top: 1px solid var(--ink); padding: 22px 0 30px; }
.benefit h3 { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.benefit .num { font-family: var(--serif-text); font-style: italic; color: var(--red); font-size: 0.85em; }
.benefit p { font-size: 15px; color: var(--text-2); max-width: 28em; }

/* ── Pull quote ── */
.quote {
  background: var(--cream-2); padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  display: flex; gap: 20px; align-items: flex-start;
}
.quote::before {
  content: "\201C"; font-family: var(--serif); font-size: 64px; line-height: 0.6;
  color: var(--red); margin-top: 12px;
}
.quote p {
  font-family: var(--serif-text); font-style: italic;
  font-size: clamp(19px, 2.4vw, 24px); line-height: 1.45; color: var(--ink);
}
.quote cite { display: block; font-style: normal; font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
.section--ink .quote { background: var(--ink-2); }
.section--ink .quote::before { color: var(--blush); }
.section--ink .quote p { color: var(--on-ink); }

/* ── Stat row ── */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stat { padding: 28px 24px; border-right: 1px solid var(--rule); }
.stat:last-child { border-right: 0; }
.stat .display { font-size: clamp(36px, 4.5vw, 52px); color: var(--red); line-height: 1; margin-bottom: 8px; }
.stat p { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: 0; }
}

/* ── Cause cards ── */
.cause {
  background: var(--ink-2); border: 1px solid var(--on-ink-rule);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 12px;
}
.cause .tag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); font-weight: 600; }
.cause h3 { color: #fff; }
.cause p { font-size: 15px; color: var(--on-ink-2); }
.cause a { color: var(--blush); margin-top: auto; font-weight: 600; font-size: 14px; text-decoration: none; }
.cause a:hover { color: #fff; }

/* ── Packages (pack p.3) ── */
.packages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 32px); align-items: stretch; }
@media (max-width: 760px) { .packages { grid-template-columns: 1fr; } }
.package {
  background: var(--paper); border: 1px solid var(--rule);
  padding: clamp(26px, 3.4vw, 40px);
  display: flex; flex-direction: column;
}
.package--featured { background: var(--ink); border-color: var(--ink); color: var(--on-ink); }
.package .level { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--teal); margin-bottom: 12px; }
.package--featured .level { color: var(--blush); }
.package h3 { font-size: clamp(26px, 3vw, 32px); margin-bottom: 18px; }
.package--featured h3 { color: #fff; }
.package .price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid var(--rule); margin-bottom: 22px; }
.package--featured .price { border-bottom-color: var(--on-ink-rule); }
.package .price .display { font-size: clamp(44px, 5vw, 60px); line-height: 1; color: var(--ink); }
.package--featured .price .display { color: #fff; }
.package .price small { font-size: 13px; color: var(--muted); max-width: 12em; line-height: 1.4; }
.package--featured .price small { color: var(--on-ink-2); }
.package ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.package li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--text-2); }
.package--featured li { color: var(--on-ink-2); }
.package--featured li strong { color: #fff; }
.tick { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; color: var(--teal); }
.package--featured .tick { color: var(--blush); }
.package .btn { margin-top: auto; }

/* ── Comparison table (pack p.3) ── */
.compare { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { padding: 16px 12px; text-align: left; border-bottom: 1px solid var(--rule); }
.compare th { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--ink); border-bottom-color: var(--ink); padding-top: 0; }
.compare th:not(:first-child), .compare td:not(:first-child) { text-align: center; width: 22%; }
.compare td:first-child { color: var(--text-2); }
.compare .tick { margin: 0 auto; display: block; }
.compare .tick--red { color: var(--red); }
.compare .dash { color: var(--rule); }
.compare .word { font-weight: 600; }
.compare .word--red { color: var(--red); }
.compare .word--teal { color: var(--teal); }

/* ── Steps (pack p.4) ── */
.steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(24px, 4vw, 56px); }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 1px solid var(--ink); padding: 22px 0 34px; }
.step .display { font-size: 36px; color: var(--red); margin-bottom: 8px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-2); max-width: 28em; }

/* ── Contact panel (pack p.4) ── */
.contact-panel {
  background: var(--ink); color: var(--on-ink);
  padding: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center;
}
.contact-panel > div { min-width: 0; }
.contact-panel .eyebrow { color: var(--blush); margin-bottom: 10px; }
.contact-panel h3 { color: #fff; font-size: clamp(26px, 3vw, 34px); margin-bottom: 22px; }
.contact-list { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px 24px; align-items: baseline; }
.contact-list dt { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); font-weight: 600; }
.contact-list dd { min-width: 0; overflow-wrap: anywhere; }
.contact-list dd a { color: var(--on-ink); text-decoration: underline; text-decoration-color: rgba(247,243,234,0.4); }
.contact-list dd a:hover { color: #fff; text-decoration-color: #fff; }
.contact-mark {
  width: 150px; height: 150px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.contact-mark img { height: 62%; width: auto; }
@media (max-width: 640px) {
  .contact-panel { grid-template-columns: 1fr; }
  .contact-panel .contact-mark { display: none; }
  .contact-list { grid-template-columns: 1fr; gap: 4px; }
  .contact-list dd { margin-bottom: 12px; }
}

/* ── Sponsor wall ── */
.sponsor-wall { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 900px) { .sponsor-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.sponsor-slot {
  aspect-ratio: 5 / 3; border: 1px dashed var(--rule);
  display: grid; place-items: center; text-align: center;
  padding: 16px; color: var(--muted); font-size: 13px; text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.sponsor-slot:hover { border-color: var(--red); color: var(--red); background: var(--paper); }
.sponsor-slot--main { grid-column: span 2; aspect-ratio: auto; border-style: solid; border-color: var(--ink); color: var(--ink); background: var(--paper); }
.sponsor-slot--main:hover { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.sponsor-slot .display { font-size: 22px; display: block; margin-bottom: 4px; color: inherit; }
@media (max-width: 900px) { .sponsor-slot--main { grid-column: span 2; } }

/* ── CTA band ── */
.cta-band { background: var(--red); color: #fff; padding: clamp(40px, 6vw, 72px) 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { font-family: var(--serif-text); font-style: italic; font-size: 19px; color: rgba(255,255,255,0.85); }
.cta-band .btn--cream:hover { background: #fff; }

/* ── Data tables (winners) ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-top: 1px solid var(--ink); }
.table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }
.table th, .table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: top; }
.table th { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--ink); white-space: nowrap; }
.table td { color: var(--text-2); }
.table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.table tr.is-current td { background: var(--paper); }
.table .empty { text-align: center; color: var(--muted); padding: 40px 12px; font-family: var(--serif-text); font-style: italic; font-size: 16px; }
.table .pos { font-family: var(--serif); color: var(--red); font-size: 18px; }
.tbd { color: var(--muted); font-style: italic; font-weight: 400; }

/* ── Champion banner ── */
.champ {
  background: var(--ink); color: var(--on-ink);
  padding: clamp(22px, 3vw, 32px) clamp(24px, 3vw, 36px);
  display: flex; align-items: center; gap: 24px; margin-bottom: clamp(32px, 4vw, 48px);
}
.champ .champ-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.champ .champ-icon svg { width: 26px; height: 26px; }
.champ .eyebrow { color: var(--blush); margin-bottom: 4px; }
.champ .display { font-size: clamp(22px, 3vw, 30px); color: #fff; }
.champ .small { color: var(--on-ink-2); margin-top: 2px; }

/* ── Tabs ── */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--rule); margin-bottom: clamp(32px, 4vw, 48px); }
.tab {
  background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px;
  padding: 14px 22px; font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); cursor: pointer;
  transition: color .15s;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--red); border-bottom-color: var(--red); }
.tab-panel[hidden] { display: none; }

/* ── Blog ── */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 40px); }
.chip {
  background: transparent; border: 1px solid var(--rule); border-radius: 999px;
  padding: 8px 16px; font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--on-ink); }
.post {
  background: var(--paper); border: 1px solid var(--rule);
  padding: clamp(22px, 3vw, 30px); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.post:hover { border-color: var(--ink); box-shadow: var(--shadow); transform: translateY(-2px); }
.post[hidden] { display: none; }
.post-meta { display: flex; gap: 14px; align-items: center; font-size: 12px; color: var(--muted); }
.post-tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--teal); }
.post h3 { font-size: 22px; color: var(--ink); }
.post p { font-size: 15px; color: var(--text-2); }
.post .read-more { margin-top: auto; padding-top: 8px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--red); }
.post--placeholder { border-style: dashed; background: transparent; align-items: center; justify-content: center; text-align: center; color: var(--muted); min-height: 220px; }
.post--placeholder:hover { transform: none; box-shadow: none; border-color: var(--rule); }
.post--placeholder svg { width: 32px; height: 32px; color: var(--rule); margin-bottom: 4px; }
.post--placeholder p { font-family: var(--serif-text); font-style: italic; }

/* ── Newsletter ── */
.newsletter { background: var(--ink); color: var(--on-ink); padding: clamp(32px, 5vw, 56px); text-align: center; }
.newsletter .eyebrow { color: var(--blush); }
.newsletter h2 { color: #fff; }
.newsletter p { color: var(--on-ink-2); max-width: 30em; margin: 0 auto 28px; }
.newsletter form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter input { flex: 1; min-width: 220px; }
.newsletter .form-note { margin: 16px auto 0; font-size: 13px; color: var(--blush); min-height: 1.4em; }

/* ── Forms ── */
label { font-size: 13px; font-weight: 600; color: var(--ink); }
input, textarea, select {
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 13px 16px; width: 100%; outline: none; transition: border-color .15s;
}
input:focus, textarea:focus, select:focus { border-color: var(--teal); }
.newsletter input { background: rgba(255,255,255,0.06); border-color: rgba(247,243,234,0.3); color: #fff; }
.newsletter input::placeholder { color: rgba(247,243,234,0.5); }
.newsletter input:focus { border-color: var(--blush); }

/* ── Thank‑you sign‑off (pack p.4) ── */
.signoff { text-align: center; padding: clamp(40px, 6vw, 64px) 0; }
.signoff .display { font-size: clamp(32px, 4vw, 44px); color: var(--red); margin-bottom: 8px; }
.signoff p { font-family: var(--serif-text); font-style: italic; font-size: 18px; color: var(--ink); }

/* ── Footer ── */
.site-footer { border-top: 1px solid var(--rule); background: var(--cream); padding: 40px 0; }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 30px; width: auto; }
.footer-brand span { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--ink-3); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink-3); text-decoration: none; }
.footer-links a:hover { color: var(--red); }
.footer-meta { width: 100%; font-size: 13px; color: var(--muted); padding-top: 20px; border-top: 1px solid var(--rule-soft); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-meta a { color: var(--muted); }
.footer-meta a:hover { color: var(--red); }

/* ── Print ── */
@media print {
  .site-header, .site-footer, .nav-toggle, .cta-band, .newsletter, .skip-link { display: none !important; }
  body { background: #fff; }
  section { padding: 24px 0; }
}
