/* =========================================================
   IGNITE LAWRENCE — Handmade / Local Board Edition
   Less polished. More ink, stamp, and county.
   ========================================================= */

:root {
  /* Warmer, ground-level palette — less pure black, more earth */
  --ink: #1C1814;
  --ink-soft: #3A342C;
  --parchment: #EDE4D4;
  --parchment-dim: #E0D5C2;
  --parchment-deep: #D2C5AE;
  --ember: #C45A1E;
  --ember-dark: #9A4416;
  --ember-glow: rgba(196, 90, 30, 0.35);
  --river: #3D4F5A;
  --river-dark: #2C3A43;
  --ridge: #4A5F45;
  --ridge-dark: #3A4A36;
  --brass: #A8863A;
  --brass-light: #C4A04E;
  --white: #F8F3E9;
  --line: rgba(28, 24, 20, 0.16);
  --line-strong: rgba(28, 24, 20, 0.28);
  --shadow: 0 3px 10px rgba(28, 24, 20, 0.12), 0 1px 2px rgba(28, 24, 20, 0.07);
  --shadow-hover: 0 8px 22px rgba(28, 24, 20, 0.16), 0 2px 6px rgba(28, 24, 20, 0.09);
  --shadow-deep: 0 12px 28px rgba(28, 24, 20, 0.2);
  --radius: 6px;
  --radius-sm: 4px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    /* heavier paper grain */
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 1px,
      rgba(23, 28, 25, 0.028) 1px,
      rgba(23, 28, 25, 0.028) 2px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 3px,
      rgba(23, 28, 25, 0.012) 3px,
      rgba(23, 28, 25, 0.012) 4px
    ),
    radial-gradient(ellipse 1000px 520px at 8% -10%, rgba(184, 84, 30, 0.09), transparent 55%),
    radial-gradient(ellipse 700px 480px at 98% 5%, rgba(63, 88, 66, 0.07), transparent 50%),
    var(--parchment);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3, .display {
  font-family: 'Zilla Slab', Georgia, 'Times New Roman', serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
a { color: inherit; }

/* ===== Header — taller, warmer dark, more presence ===== */
header {
  background: #1A1612;
  color: var(--parchment);
  padding: 28px 24px 26px;
  border-bottom: 7px solid var(--ember);
  position: relative;
  overflow: hidden;
}

/* faint horizontal grain in header */
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 13px,
    rgba(255,255,255,0.018) 13px,
    rgba(255,255,255,0.018) 14px
  );
  pointer-events: none;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--brass) 15%, 
    var(--brass-light) 50%, 
    var(--brass) 85%, 
    transparent 100%);
  opacity: 0.75;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 0 28px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Stamp — rubber stamp / branding iron feel */
.stamp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ember);
  border: 3px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow:
    0 0 0 2px #1A1612,
    0 3px 0 rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%;
}

.stamp span {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 20px;
  color: #F8F3E9;
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  letter-spacing: -0.03em;
}

.brand-text .wordmark {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1.05;
  color: var(--parchment);
}

.brand-text .tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 4px;
  opacity: 0.9;
}

nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

nav button {
  background: transparent;
  border: 1.5px solid rgba(232, 224, 208, 0.2);
  color: var(--parchment);
  padding: 8px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.15s ease;
  letter-spacing: 0.02em;
}

nav button:hover {
  border-color: var(--brass);
  color: var(--brass-light);
  background: rgba(156, 123, 56, 0.12);
}

nav button.active {
  background: var(--ember);
  border-color: var(--ember-dark);
  color: #F6F1E6;
  box-shadow: 0 2px 0 rgba(0,0,0,0.25);
}

/* ===== Main ===== */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 28px 64px;
}

.view { display: none; }
.view.active { display: block; }

/* ===== Hero ===== */
.hero {
  text-align: left;
  padding: 4px 0 32px;
  border-bottom: 2px solid var(--line-strong);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.15;
  max-width: 720px;
}

.hero p {
  font-size: 16.5px;
  max-width: 720px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 26px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-card {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  border: 2px solid var(--line-strong);
  border-top: 5px solid var(--ember);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-card .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ember-dark);
  font-weight: 600;
}

.cta-card h3 {
  margin: 6px 0 5px;
  font-size: 18px;
  color: var(--ink);
}

.cta-card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.cta-card.synergy {
  border-top-color: var(--ridge);
}

.cta-card.synergy .eyebrow {
  color: var(--ridge-dark);
}

/* ===== Section heads ===== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.section-head h2 {
  font-size: 23px;
  margin: 0;
  color: var(--ink);
}

.section-head .count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.search-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.search-row input {
  flex: 1;
  min-width: 200px;
  padding: 10px 13px;
  border: 2px solid var(--line-strong);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color 0.15s;
}

.search-row input:focus {
  outline: none;
  border-color: var(--ember);
}

.search-row input::placeholder {
  color: #8B8578;
}

/* ===== Cards ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}

.card {
  background: var(--white);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 16px 14px;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.card .badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--ember);
  color: #F6F1E6;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 2px;
  font-weight: 600;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.card.synergy-card .badge {
  background: var(--ridge);
}

.card h3 {
  font-size: 16.5px;
  margin: 5px 0 4px;
  color: var(--ink);
  line-height: 1.25;
}

.card .cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ember-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.card.synergy-card .cat {
  color: var(--ridge-dark);
}

.card p.desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 11px;
}

.card .meta {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
  border-top: 1px dashed var(--line-strong);
  padding-top: 9px;
}

.card .meta strong {
  color: var(--ink);
  font-weight: 600;
}

.empty-state {
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 38px 22px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  background: rgba(246, 241, 230, 0.5);
}

/* ===== Forms ===== */
.form-wrap {
  background: var(--white);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px 20px;
  max-width: 680px;
}

.form-wrap h2 {
  margin-top: 0;
  font-size: 21px;
}

.form-wrap .sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.5;
}

label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 14px 0 5px;
  color: var(--ink-soft);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--parchment);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--ember);
  background: var(--white);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.hint {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.btn {
  margin-top: 18px;
  background: var(--ember);
  color: #F6F1E6;
  border: none;
  border-radius: 3px;
  box-shadow: 0 3px 0 var(--ember-dark);
  padding: 11px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--ember-dark);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--ember-dark);
}

.btn.secondary {
  background: var(--river);
  box-shadow: 0 3px 0 var(--river-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 2px solid var(--line-strong);
}

.btn.small {
  padding: 7px 14px;
  font-size: 12px;
  margin-top: 0;
}

.btn.danger {
  background: #9A4532;
  box-shadow: 0 3px 0 #7A3426;
}

.form-msg {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
}

.form-msg.ok {
  color: var(--ridge-dark);
}

.toggle-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.toggle-row button {
  flex: 1;
  padding: 10px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--ink);
}

.toggle-row button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--parchment);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 7px;
  margin-top: 4px;
}

.category-grid label {
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--parchment);
  padding: 8px 10px;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.15s, background 0.15s;
}

.category-grid label:has(input:checked) {
  border-color: var(--ember);
  background: rgba(184, 84, 30, 0.1);
}

.category-grid input[type=checkbox] {
  width: auto;
  accent-color: var(--ember);
  cursor: pointer;
}

.cat-error {
  font-size: 12.5px;
  color: #9A4532;
  font-weight: 600;
  margin-top: 6px;
  display: none;
}

.chip-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.chip {
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.15s;
  color: var(--ink);
}

.chip:hover {
  border-color: var(--brass);
}

.chip.active {
  background: var(--river);
  color: var(--white);
  border-color: var(--river-dark);
}

.chip.clear-chip {
  background: transparent;
  border-style: dashed;
  color: var(--ink-soft);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.tag-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  padding: 3px 8px;
  font-weight: 600;
}

/* ===== Admin ===== */
.admin-gate {
  max-width: 400px;
  background: var(--white);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  margin: 0 auto;
}

.pending-row {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.pending-row .info {
  flex: 1;
  min-width: 200px;
}

.pending-row .info h4 {
  margin: 0 0 3px;
  font-size: 14.5px;
}

.pending-row .info p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.pending-row .actions {
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

.admin-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.admin-tabs button {
  padding: 7px 14px;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}

.admin-tabs button.active {
  background: var(--river);
  border-color: var(--river-dark);
  color: var(--white);
}

.admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
}

.loading {
  text-align: center;
  padding: 36px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 26px 18px 32px;
  font-size: 12px;
  color: var(--ink-soft);
  border-top: 2px solid var(--line-strong);
  margin-top: 44px;
  line-height: 1.85;
}

footer a {
  color: var(--ember-dark);
  font-weight: 600;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== Impact strip ===== */
.impact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.impact-stat {
  background: #1A1612;
  color: var(--parchment);
  border-radius: var(--radius);
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-deep);
  border-top: 4px solid var(--ember);
  position: relative;
}

.impact-stat .num {
  font-family: 'Zilla Slab', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--brass-light);
  line-height: 1;
}

.impact-stat .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--parchment-dim);
  margin-top: 8px;
  opacity: 0.9;
}

/* ===== Reasons ===== */
.reasons-section {
  margin-bottom: 36px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.reason-card {
  background: var(--white);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 16px 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.reason-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.reason-icon {
  font-size: 24px;
  margin-bottom: 9px;
  line-height: 1;
}

.reason-card h4 {
  font-family: 'Zilla Slab', serif;
  font-size: 16px;
  margin: 0 0 7px;
  color: var(--ink);
}

.reason-card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ===== Success story cards ===== */
.story-card {
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
  position: relative;
}
.story-quote-mark {
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1;
  color: var(--brass);
  opacity: 0.5;
  margin-bottom: -10px;
}
.story-card h4 {
  font-size: 16px;
  margin: 6px 0 8px;
  color: var(--ink);
}
.story-body {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 14px;
}
.story-footer {
  border-top: 1px dashed var(--line);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.story-business {
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
}
.story-resource {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ember-dark);
}

/* ===== Featured ===== */
.featured-card {
  background: var(--white);
  border: 2px solid var(--line-strong);
  border-left: 6px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  margin-bottom: 36px;
}

.featured-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--brass);
  font-weight: 700;
}

.featured-card h3 {
  font-size: 20px;
  margin: 6px 0 7px;
  color: var(--ink);
}

.featured-card p.desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 540px;
  margin: 0 0 9px;
}

/* ===== Sticker ===== */
.sticker-wrap {
  display: flex;
  justify-content: flex-start;
}

.sticker {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #1A1612;
  border: 8px solid var(--brass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--parchment);
  box-shadow: 0 6px 20px rgba(23, 28, 25, 0.3);
  position: relative;
}

.sticker::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1.5px dashed rgba(184, 150, 76, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.sticker-stamp {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ember);
  border: 3px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.3);
}

.sticker-inner-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticker-il {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 22px;
  color: #F6F1E6;
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}

.sticker-headline {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--brass-light);
  line-height: 1.15;
}

.sticker-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  color: var(--parchment-dim);
}

.sticker-brand {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  margin-top: 2px;
  color: var(--parchment);
}

.sticker-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-top: 8px;
  color: var(--brass);
}

/* Print */
@media print {
  header, nav, footer, .section-head, #view-sticker > p, #view-sticker .btn, #view-sticker .hint, main > *:not(#view-sticker) {
    display: none !important;
  }
  body { background: white !important; }
  #view-sticker.active { display: block !important; }
  .sticker-wrap { justify-content: center; margin-top: 40px; }
}

/* Mobile */
@media (max-width: 640px) {
  .hero h1 { font-size: 28px; }
  .hero-ctas { flex-direction: column; }
  .cta-card { min-width: 100%; }
  nav button { padding: 7px 11px; font-size: 12px; }
  .impact-stat .num { font-size: 28px; }
  .stamp { width: 50px; height: 50px; }
  .stamp span { font-size: 16px; }
  .brand-text .wordmark { font-size: 20px; }
}
