/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --bg: #1a1d22;
  --bg-subtle: #22252c;
  --bg-chip: #262933;
  --text: #e8e7e2;
  --text-2: #b0b2bc;
  --text-dim: #72767f;
  --border: #2c2f37;
  --border-dim: #24272e;
  --accent: oklch(74% 0.15 150);
  --accent-dim: oklch(45% 0.09 150);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.02) inset;

  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Inter', system-ui, sans-serif;
  --measure: 64rem;
  --measure-narrow: 52rem;
  --measure-prose: 42rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::selection { background: var(--accent); color: var(--bg); }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { min-height: 100dvh; display: flex; flex-direction: column; }

.container {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.75rem, 5vw, 3rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 6vw, 5.5rem);
}

.container--narrow { max-width: 56rem; }

/* ─── Brand + nav ────────────────────────────────────────── */
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--mono); }
.brand__cursor { color: var(--accent); font-weight: 600; font-size: 1.15rem; line-height: 1; position: relative; top: -0.02em; animation: blink 1.1s steps(1) infinite; }
.brand__word { color: var(--text); font-weight: 500; font-size: 1rem; letter-spacing: 0.02em; }
.brand__word a { border: none; color: inherit; }
.brand__word a:hover { color: var(--accent); }
.brand__dot { color: var(--text-dim); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; margin-left: auto; }

.site-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-nav a {
  color: var(--text-dim);
  border: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--accent); border-bottom-color: var(--accent); }
.site-nav a[aria-current="page"] { color: var(--text); }

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero { display: flex; flex-direction: column; gap: 1.5rem; max-width: var(--measure-narrow); }
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__line {
  font-family: var(--sans);
  font-size: clamp(2.05rem, 4.2vw, 2.85rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.024em;
  color: var(--text);
  max-width: 28ch;
}
.hero__line em { font-style: normal; color: var(--accent); }
.hero__sub {
  font-family: var(--sans);
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 58ch;
}

/* ─── Section skeleton ───────────────────────────────────── */
section { display: flex; flex-direction: column; gap: 2.25rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.section__head { display: flex; align-items: baseline; gap: 1rem; }
.section__label {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.section__rule { flex: 1; height: 1px; background: var(--border-dim); }
.section__more {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.section__more:hover, .section__more:focus-visible { color: var(--accent); border-bottom-color: var(--accent); }

/* ─── Work entries ───────────────────────────────────────── */
.work { display: flex; flex-direction: column; gap: 3.5rem; }
.work__item { display: grid; gap: 1.5rem; }
.work__head { display: flex; flex-direction: column; gap: 0.5rem; }
.work__name {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.work__name a { border: none; color: inherit; }
.work__name a:hover { color: var(--accent); }
.work__tag { font-family: var(--mono); font-size: 0.85rem; color: var(--text-dim); letter-spacing: 0.01em; }
.work__desc { font-family: var(--sans); font-size: 1.0625rem; line-height: 1.7; color: var(--text-2); max-width: 64ch; }
.work__more {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  align-self: start;
}
.work__more::after { content: " →"; color: var(--accent); }
.work__more:hover, .work__more:focus-visible { color: var(--accent); border-bottom-color: var(--accent); }

/* Callout: measurable outcome */
.outcome {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-subtle));
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}
.outcome__label {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding-top: 0.2rem;
  white-space: nowrap;
}

/* Diagram box */
.diagram {
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-2);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}
.diagram pre { margin: 0; white-space: pre; font-family: inherit; }
.diagram .accent { color: var(--accent); }
.diagram .dim { color: var(--text-dim); }

/* Patterns list */
.patterns {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}
@media (min-width: 720px) { .patterns { grid-template-columns: 1fr 1fr; gap: 0.55rem 2rem; } }
.patterns li { display: flex; gap: 0.6rem; align-items: baseline; }
.patterns li::before { content: "→"; color: var(--accent); flex-shrink: 0; font-weight: 500; }

/* Stack chips */
.stack { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 0.5rem; }
.stack span {
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dim);
  background: var(--bg-chip);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Metadata row */
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-dim);
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.meta__item { display: flex; align-items: baseline; gap: 0.5rem; }
.meta__item strong { color: var(--text-2); font-weight: 500; }

/* ─── Article (essays + case studies) ────────────────────── */
.article { display: flex; flex-direction: column; gap: 1.75rem; max-width: var(--measure-prose); }
.article--wide { max-width: var(--measure-narrow); }
.article__eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.article__title {
  font-family: var(--sans);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.024em;
  color: var(--text);
  max-width: 24ch;
}
.article__dek {
  font-family: var(--sans);
  font-size: 1.125rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 58ch;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-dim);
}
.article__meta strong { color: var(--text-2); font-weight: 500; }

.prose { display: flex; flex-direction: column; gap: 1.5rem; max-width: 68ch; font-family: var(--sans); font-size: 1.0625rem; line-height: 1.75; color: var(--text-2); }
.prose p { max-width: 68ch; }
.prose p strong { color: var(--text); font-weight: 500; }
.prose em { font-style: italic; color: var(--text); }
.prose h2 {
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 1.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-dim);
}
.prose h3 { font-family: var(--sans); font-size: 1.25rem; font-weight: 600; color: var(--text); margin-top: 1rem; letter-spacing: -0.012em; }
.prose ul:not(.patterns):not(.engagements) {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.prose ul:not(.patterns):not(.engagements) li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.6;
}
.prose ul:not(.patterns):not(.engagements) li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.875rem;
  position: absolute;
  left: 0;
  top: 0;
}
.prose blockquote {
  font-family: var(--sans);
  font-style: italic;
  color: var(--text);
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  max-width: 60ch;
}
.prose code {
  font-family: var(--mono);
  font-size: 0.875em;
  background: var(--bg-chip);
  padding: 0.05em 0.35em;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
}

/* ─── Methodology ────────────────────────────────────────── */
.method { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .method { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.method__item { display: flex; flex-direction: column; gap: 0.55rem; }
.method__title {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.method__title::before { content: "→ "; color: var(--accent); }
.method__body {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 50ch;
  padding-left: 1.25rem;
}

/* ─── Engagement tiers ───────────────────────────────────── */
.tiers { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 720px) { .tiers { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.tier {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.tier__name {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.tier__shape {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--text);
}
.tier__duration {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tier__duration .tier__price {
  color: var(--accent);
  letter-spacing: 0.08em;
}
.tier__cta {
  margin-top: auto;
  padding-top: 0.75rem;
}
.tier__body {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
}
.tier__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.55;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-dim);
}
.tier__list li { display: flex; gap: 0.5rem; align-items: baseline; }
.tier__list li::before { content: "▹"; color: var(--accent); flex-shrink: 0; }

/* ─── Available for (legacy / footnote use) ──────────────── */
.engagements { display: grid; grid-template-columns: 1fr; gap: 0.85rem; font-family: var(--mono); font-size: 0.95rem; color: var(--text-2); }
@media (min-width: 640px) { .engagements { grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; } }
.engagements div { display: flex; gap: 0.6rem; align-items: baseline; line-height: 1.6; }
.engagements div::before { content: "▹"; color: var(--accent); flex-shrink: 0; }

/* ─── Writing index list ─────────────────────────────────── */
.writing-list { display: flex; flex-direction: column; gap: 2.25rem; }
.writing-list__item { display: flex; flex-direction: column; gap: 0.65rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-dim); }
.writing-list__item:last-child { border-bottom: none; padding-bottom: 0; }
.writing-list__date {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.writing-list__title {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.28;
  color: var(--text);
}
.writing-list__title a { border: none; color: inherit; }
.writing-list__title a:hover { color: var(--accent); }
.writing-list__dek {
  font-family: var(--sans);
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 64ch;
}

/* ─── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.85rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.975rem;
}
.contact-grid dt {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  padding-top: 0.3rem;
}
.contact-grid dd { color: var(--text); }

/* ─── Back link ──────────────────────────────────────────── */
.back-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  align-self: start;
}
.back-link::before { content: "← "; color: var(--accent); }
.back-link:hover, .back-link:focus-visible { color: var(--accent); border-bottom-color: var(--accent); }

/* ─── Links ──────────────────────────────────────────────── */
a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 140ms ease, border-color 140ms ease;
  padding-bottom: 1px;
}
a:hover, a:focus-visible { color: var(--accent); border-bottom-color: var(--accent); }
a:focus-visible { outline: none; }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  padding: 2rem clamp(1.75rem, 5vw, 3rem) 3rem;
  max-width: var(--measure);
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid var(--border-dim);
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Buttons (CTA) ──────────────────────────────────────── */
.btn {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: 6px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 80ms ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: color-mix(in srgb, var(--accent) 86%, white);
  border-color: color-mix(in srgb, var(--accent) 86%, white);
  color: var(--bg);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-link {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
}
.btn-link:hover, .btn-link:focus-visible { color: var(--accent); border-bottom-color: var(--accent); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.75rem;
}

/* ─── Closing CTA aside (case studies + essays) ──────────── */
.cta-aside {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2.75rem;
  padding: 2rem 2.25rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: var(--measure-prose);
}
.cta-aside h3 {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text);
}
.cta-aside p {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 60ch;
}
.cta-aside__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.25rem;
}

/* ─── About section ──────────────────────────────────────── */
.about {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: var(--measure-prose);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
}
.about p strong { color: var(--text); font-weight: 600; }

/* ─── Mobile tightening ──────────────────────────────────── */
@media (max-width: 720px) {
  html, body { font-size: 16px; }

  .container {
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 1.75rem);
    gap: 2.25rem;
  }

  /* Brand + nav: stack on narrow */
  .brand { flex-wrap: wrap; gap: 0.4rem 0.75rem; }
  .site-nav {
    flex: 1 1 100%;
    margin-left: 0;
    gap: 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    padding-top: 0.25rem;
  }

  /* Section rhythm */
  section { gap: 1.5rem; padding-top: 1.75rem; }
  .section__head { gap: 0.65rem; }
  .section__label { font-size: 0.7rem; letter-spacing: 0.18em; }
  .section__more { font-size: 0.68rem; }

  /* Hero */
  .hero { gap: 1rem; }
  .hero__line { font-size: 1.85rem; line-height: 1.2; max-width: none; }
  .hero__sub { font-size: 1rem; }
  .hero__eyebrow { font-size: 0.7rem; }
  .hero-cta { gap: 0.6rem; padding-top: 0.5rem; }
  .hero-cta .btn { font-size: 0.78rem; padding: 0.7rem 1.05rem; flex: 1 1 auto; justify-content: center; }

  /* Project proofs */
  .work { gap: 2.25rem; }
  .work__item { gap: 1rem; }
  .work__name { font-size: 1.2rem; }
  .work__tag { font-size: 0.78rem; }
  .work__desc { font-size: 0.9375rem; line-height: 1.6; }
  .outcome { font-size: 0.85rem; padding: 0.85rem 1rem; gap: 0.65rem; }
  .outcome__label { font-size: 0.68rem; }
  .stack span { font-size: 0.7rem; padding: 0.2rem 0.55rem; }
  .meta { font-size: 0.68rem; gap: 0.85rem; }

  /* Diagram blocks: smaller mono so wide tables don't horizontal-scroll */
  .diagram { font-size: 0.7rem; padding: 0.85rem 1rem; line-height: 1.5; }

  /* Writing list */
  .writing-list { gap: 1.5rem; }
  .writing-list__item { gap: 0.5rem; padding-bottom: 1.25rem; }
  .writing-list__title { font-size: 1.1rem; }
  .writing-list__dek { font-size: 0.95rem; }

  /* How I work */
  .method { gap: 1.25rem; }
  .method__title { font-size: 0.85rem; }
  .method__body { font-size: 0.9rem; padding-left: 1rem; }

  /* About */
  .about { font-size: 0.95rem; line-height: 1.7; gap: 0.85rem; }

  /* Engagement tiers */
  .tiers { gap: 0.75rem; }
  .tier { padding: 1.25rem; gap: 0.7rem; }
  .tier__shape { font-size: 1.1rem; }
  .tier__body { font-size: 0.9rem; }
  .tier__list { font-size: 0.8rem; padding-top: 0.6rem; gap: 0.4rem; }
  .tier__cta { padding-top: 0.5rem; }

  /* Article (essay + case study heads) */
  .article { gap: 1.1rem; }
  .article__title { font-size: 1.7rem; line-height: 1.2; }
  .article__dek { font-size: 1rem; }
  .article__meta { font-size: 0.7rem; gap: 0.85rem; }

  /* Prose body */
  .prose { font-size: 0.975rem; gap: 1.1rem; }
  .prose h2 { font-size: 0.78rem; margin-top: 1rem; }
  .prose h3 { font-size: 1.05rem; margin-top: 0.6rem; }

  /* Closing CTA */
  .cta-aside { padding: 1.25rem 1.25rem; gap: 0.85rem; margin-top: 2rem; }
  .cta-aside h3 { font-size: 1.15rem; }
  .cta-aside p { font-size: 0.9375rem; }
  .cta-aside__buttons { gap: 0.75rem; flex-direction: column; align-items: stretch; }
  .cta-aside__buttons .btn { justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 5.5rem 1fr; font-size: 0.92rem; gap: 0.6rem 0.85rem; }
  .contact-grid dt { font-size: 0.7rem; }

  /* Footer */
  footer { padding: 1.5rem clamp(1.25rem, 4vw, 1.75rem) 2rem; font-size: 0.7rem; gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  a { transition: none; }
  .brand__cursor { animation: none; }
  .btn { transition: none; }
}
