/* ==========================================================================
   jeffmielke.com — design system
   Editorial, warm-neutral, one accent. Light + dark.
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }
ul[class] { list-style: none; padding: 0; }

/* --- Tokens --------------------------------------------------------------- */
:root {
  --paper:    #FBF8F4;
  --paper-2:  #F4EFE8;
  --ink:      #16130F;
  --ink-2:    #3E382F;
  --muted:    #6E665A;
  --line:     #E4DCD1;
  --line-2:   #D2C8BA;
  --accent:   #A8452A;
  --accent-h: #8C3620;
  --accent-w: #F6E8E1;
  /* Screenshots are light-background mockups: their panel stays light in both themes. */
  --canvas:   #ECE6DE;
  --canvas-line: #DCD3C7;
  --on-canvas: #46403A;

  --shadow-sm: 0 1px 2px rgba(30,22,14,.05), 0 4px 14px -6px rgba(30,22,14,.10);
  --shadow-md: 0 2px 6px rgba(30,22,14,.06), 0 22px 48px -22px rgba(30,22,14,.24);

  --font-display: "Fraunces", "Iowan Old Style", Palatino, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step--2: 0.78rem;
  --step--1: 0.875rem;
  --step-0:  1.0625rem;
  --step-1:  1.1875rem;
  --step-2:  clamp(1.35rem, 1.05rem + 0.9vw, 1.75rem);
  --step-3:  clamp(1.7rem, 1.25rem + 1.9vw, 2.5rem);
  --step-4:  clamp(2.1rem, 1.4rem + 3.2vw, 3.5rem);
  --step-5:  clamp(2.6rem, 1.4rem + 5.6vw, 5.25rem);

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --wide: 1240px;
  --mid: 940px;
  --text: 34rem;

  --sp-section: clamp(4.5rem, 9vw, 9rem);

  --radius: 14px;
  --radius-lg: 22px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:    #131211;
    --paper-2:  #1C1A18;
    --ink:      #F3EFE8;
    --ink-2:    #CFC8BC;
    --muted:    #9A9184;
    --line:     #2D2A26;
    --line-2:   #3D3831;
    --accent:   #E8825E;
    --accent-h: #F19B7C;
    --accent-w: #2A1D17;
    --canvas:   #E7E1D8;
    --canvas-line: #D3CABE;
    --on-canvas: #46403A;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 4px 14px -6px rgba(0,0,0,.5);
    --shadow-md: 0 2px 6px rgba(0,0,0,.35), 0 22px 48px -22px rgba(0,0,0,.75);
  }
}
:root[data-theme="dark"] {
  --paper:    #131211;
  --paper-2:  #1C1A18;
  --ink:      #F3EFE8;
  --ink-2:    #CFC8BC;
  --muted:    #9A9184;
  --line:     #2D2A26;
  --line-2:   #3D3831;
  --accent:   #E8825E;
  --accent-h: #F19B7C;
  --accent-w: #2A1D17;
  --canvas:   #E7E1D8;
  --canvas-line: #D3CABE;
  --on-canvas: #46403A;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 4px 14px -6px rgba(0,0,0,.5);
  --shadow-md: 0 2px 6px rgba(0,0,0,.35), 0 22px 48px -22px rgba(0,0,0,.75);
}

/* --- Base ----------------------------------------------------------------- */
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-feature-settings: "kern", "liga", "cv11";
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* --- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--mid { max-width: var(--mid); }
.prose { max-width: var(--text); }
.section { padding-block: var(--sp-section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.rule { border: 0; border-top: 1px solid var(--line); }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 2rem; }

/* --- Typography helpers --------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 6rem;
}
.eyebrow--plain::after { display: none; }

.lede { font-size: var(--step-2); line-height: 1.45; color: var(--ink-2); letter-spacing: -0.011em; }
.muted { color: var(--muted); }
.small { font-size: var(--step--1); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); font-family: var(--font-sans); font-weight: 650; letter-spacing: -0.01em; line-height: 1.35; }

.prose p + p { margin-top: 1.05em; }
.prose h3 { margin-top: 2.25em; margin-bottom: .5em; }

/* --- Links & buttons ------------------------------------------------------ */
.link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 550;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size .25s ease, color .2s ease;
}
.link:hover { color: var(--accent-h); background-size: 0% 1px; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: .01em;
}
.arrow-link svg { transition: transform .25s cubic-bezier(.4,0,.2,1); }
.arrow-link:hover svg { transform: translateX(4px); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper-2); }

/* --- Nav ------------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.nav[data-scrolled="true"] { border-bottom-color: var(--line); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.nav__brand span { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav__link {
  text-decoration: none;
  font-size: var(--step--1);
  font-weight: 520;
  color: var(--ink-2);
  transition: color .2s ease;
  white-space: nowrap;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--accent); }
.nav__theme {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 2.15rem; height: 2.15rem;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink-2);
  transition: border-color .2s ease, color .2s ease;
  flex: none;
}
.nav__theme:hover { border-color: var(--ink-2); color: var(--ink); }
.nav__theme .icon-dark { display: none; }
:root[data-theme="dark"] .nav__theme .icon-dark { display: block; }
:root[data-theme="dark"] .nav__theme .icon-light { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .nav__theme .icon-dark { display: block; }
  :root:not([data-theme="light"]) .nav__theme .icon-light { display: none; }
}
@media (max-width: 640px) {
  .nav__link--hide-sm { display: none; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero { padding-top: clamp(3.5rem, 8vw, 7rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero__title {
  font-size: var(--step-5);
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 144;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "SOFT" 8, "WONK" 1, "opsz" 144;
}
.hero__lede { margin-top: 1.75rem; max-width: 40rem; font-size: var(--step-2); line-height: 1.45; color: var(--ink-2); }
.hero__meta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  align-items: center;
  font-size: var(--step--1);
  color: var(--muted);
}
.hero__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-2); }
.hero__cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }

/* --- Pillars -------------------------------------------------------------- */
.pillars {
  display: grid;
  gap: clamp(1.75rem, 3vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  counter-reset: pillar;
}
.pillar { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.pillar__n {
  font-family: var(--font-sans);
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--accent);
  display: block;
  margin-bottom: .75rem;
}
.pillar h3 { font-size: var(--step-2); margin-bottom: .6rem; }
.pillar p { color: var(--muted); font-size: var(--step--1); line-height: 1.6; }

/* --- Work cards ----------------------------------------------------------- */
.work { display: grid; gap: clamp(4rem, 8vw, 7.5rem); }

.case {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .case { grid-template-columns: 1fr 1.12fr; }
  .case--flip .case__media { order: -1; }
}

.case__body { max-width: 34rem; }
.case__client {
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.case__title { font-size: var(--step-3); margin: .7rem 0 .9rem; }
.case__title a { text-decoration: none; background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0% 1.5px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .3s ease, color .25s ease; padding-bottom: 3px; }
.case:hover .case__title a { color: var(--accent); background-size: 100% 1.5px; }
.case__desc { color: var(--ink-2); }

.case__stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.25rem; margin-top: 1.75rem; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.15rem);
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 60;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  display: block;
}
.stat__label { font-size: var(--step--2); color: var(--muted); margin-top: .45rem; display: block; max-width: 11rem; line-height: 1.4; }

.case__link { margin-top: 1.9rem; }

/* Media panel — screenshots sit on a stable light canvas in both themes */
.panel {
  background: var(--canvas);
  border: 1px solid var(--canvas-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.75rem);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.panel--flush { padding: 0; }
.panel img { border-radius: 6px; }
.panel--flush img { border-radius: var(--radius-lg); }
.case__media .panel img { transition: transform .5s cubic-bezier(.2,.6,.3,1); }
.case:hover .case__media .panel img { transform: scale(1.018); }

.panel-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(.75rem, 2vw, 1.5rem);
  align-items: center;
  width: 100%;
}

/* --- Games ---------------------------------------------------------------- */
/* Game shots are dark, full-bleed phone captures — they carry their own
   background, so they get a device frame rather than the light --canvas panel. */
/* Explicit column counts: auto-fit leaves a lone orphan card at five items. */
.game-grid {
  display: grid;
  gap: clamp(1.75rem, 2.6vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 560px)  { .game-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .game-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .game-grid { grid-template-columns: repeat(5, 1fr); gap: clamp(1.25rem, 1.8vw, 1.75rem); } }

.game {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.game__shot {
  border-radius: 20px;
  overflow: hidden;
  background: #0B0A12;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-md);
  aspect-ratio: 900 / 1957;
  transition: transform .45s cubic-bezier(.2,.6,.3,1);
}
.game__shot img { width: 100%; height: 100%; object-fit: cover; }
.game:hover .game__shot { transform: translateY(-6px); }

/* column-reverse puts the badge above the title regardless of how the title wraps */
.game__head { display: flex; flex-direction: column-reverse; align-items: flex-start; gap: .55rem; }
.game__name { font-size: var(--step-2); letter-spacing: -0.02em; }
.game__badge {
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: .15rem .5rem;
  white-space: nowrap;
}
.game__tag { font-weight: 600; color: var(--ink); font-size: var(--step--1); line-height: 1.5; }
.game__desc { color: var(--muted); font-size: var(--step--1); line-height: 1.6; }
.game__note {
  font-size: var(--step--2);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .01em;
}
.game__link { margin-top: auto; padding-top: .35rem; }

/* --- Quotes --------------------------------------------------------------- */
.quotes {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}
.quote {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.quote blockquote { font-size: var(--step--1); line-height: 1.65; color: var(--ink-2); }
.quote figcaption { font-size: var(--step--2); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: auto; }
.quote::before {
  content: "";
  width: 1.75rem; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.pull {
  border-left: 2px solid var(--accent);
  padding-left: clamp(1.25rem, 3vw, 2rem);
  margin-block: clamp(2rem, 4vw, 3rem);
}
.pull blockquote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-variation-settings: "SOFT" 4, "WONK" 0, "opsz" 40;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pull figcaption { margin-top: 1rem; font-size: var(--step--2); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* --- Case study page ------------------------------------------------------ */
.cs-hero { padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.cs-hero__title { font-size: var(--step-4); margin: 1rem 0 1.5rem; max-width: 20ch; }
.cs-hero__lede { max-width: 40rem; }

.facts {
  display: grid;
  gap: 1.75rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  padding-block: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact dt { font-size: var(--step--2); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.fact dd { font-size: var(--step--1); color: var(--ink-2); line-height: 1.5; }

.cards {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.card {
  border-top: 2px solid var(--line-2);
  padding-top: 1.15rem;
}
.card h4 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: var(--step--1); line-height: 1.6; }

.role-list { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.role h4 { margin-bottom: .55rem; color: var(--ink); }
.role p { color: var(--muted); font-size: var(--step--1); line-height: 1.6; }
.role p + p { margin-top: .6rem; }

/* Process steps */
.steps { display: grid; gap: clamp(3rem, 6vw, 5.5rem); counter-reset: step; }
.step { display: grid; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
@media (min-width: 900px) {
  .step { grid-template-columns: 1fr 1.25fr; }
  .step--flip .step__media { order: -1; }
  .step--full { grid-template-columns: 1fr; }
}
.step__body { max-width: 32rem; position: sticky; top: 6.5rem; }
@media (max-width: 899px) { .step__body { position: static; } }
.step__n {
  counter-increment: step;
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: .13em;
  color: var(--accent);
  display: block;
  margin-bottom: .75rem;
}
.step__n::before { content: "STEP " counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: .8rem; }
.step p { color: var(--ink-2); font-size: var(--step-0); }
.step p + p { margin-top: .85rem; }
.step ul { margin-top: .9rem; padding-left: 1.1rem; color: var(--ink-2); }
.step ul li { margin-bottom: .4rem; }
.step ul li::marker { color: var(--accent); }

.figure { display: grid; gap: .85rem; }
.figure figcaption { font-size: var(--step--2); color: var(--muted); line-height: 1.5; }
.figure-grid { display: grid; gap: clamp(1rem, 2vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); align-items: stretch; }
/* Equal-height panels so captions sit on a common baseline across the row. */
.figure-grid .figure { grid-template-rows: 1fr auto; }
.figure-grid .panel { height: 100%; width: 100%; }

/* Outcome metrics */
.metrics {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}
.metric { border-top: 2px solid var(--accent); padding-top: 1.1rem; }
.metric__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3rem);
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 90;
  line-height: 1;
  letter-spacing: -0.035em;
  display: block;
}
.metric__label { font-size: var(--step--1); color: var(--muted); margin-top: .6rem; display: block; line-height: 1.5; }

.band { background: var(--paper-2); border-block: 1px solid var(--line); }

.learned { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.learned p { color: var(--ink-2); }

/* Next case */
.next {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  text-decoration: none;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.next__label { font-size: var(--step--2); font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.next__title { font-family: var(--font-display); font-size: var(--step-3); letter-spacing: -0.025em; transition: color .25s ease; }
.next:hover .next__title { color: var(--accent); }

/* --- Contact / footer ----------------------------------------------------- */
.contact__title { font-size: var(--step-4); max-width: 16ch; }
.footer { border-top: 1px solid var(--line); padding-block: 2.5rem 3rem; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: center; font-size: var(--step--1); color: var(--muted); }
.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer a { text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: var(--accent); }

/* --- Reveal on scroll ----------------------------------------------------- */
/* Scoped to .js so the page is fully visible if JavaScript never runs. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.6,.3,1), transform .7s cubic-bezier(.2,.6,.3,1); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* --- Utilities ------------------------------------------------------------ */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }
.center { text-align: center; margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: clamp(2rem, 4vw, 3.25rem); }
.mt-4 { margin-top: clamp(2.75rem, 6vw, 4.5rem); }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
