:root {
  --ink: #0e1f24;
  --ink-soft: #2e4b52;
  --muted: #5f7479;
  --paper: #f7faf8;
  --white: #ffffff;
  --line: #dce8e6;
  --mint: #6ee7b7;
  --mint-dark: #16a477;
  --sky: #5fb8d9;
  --gold: #f4c95d;
  --coral: #ed8a72;
  --shadow: 0 24px 70px rgba(14, 31, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6%;
  background: rgba(247, 250, 248, 0.9);
  border-bottom: 1px solid rgba(220, 232, 230, 0.8);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--mint-dark);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 58px;
  min-height: 760px;
  padding: 76px 6% 60px;
  overflow: hidden;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 16px;
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: 76px;
  line-height: 0.95;
  font-weight: 820;
}

h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-lede {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(14, 31, 36, 0.2);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-illustration {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, #ffffff 0%, #f3f8f7 55%, #edf4f2 100%);
  box-shadow: var(--shadow);
  padding: 20px;
}
.hero-pathway {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.pathway-stage {
  min-height: 110px;
  border: 1px solid #d5e5e1;
  border-radius: 16px;
  background: #ffffff;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 12px;
}

.pathway-stage p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-soft);
}

.stage-current { background: #f7fbfa; }
.stage-plan { background: #f2f8f6; }
.stage-secure { background: #ecf5f2; }

.stage-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #8bb3a7;
  background: radial-gradient(circle at 40% 40%, #71ac9a 0%, #3a846f 70%, #2b6d5c 100%);
}

.pathway-line {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7eb8a7 0%, #3f8874 100%);
}

.pathway-node {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #4c917c;
}

.pathway-node.secure { background: #2e725f; }

.hero-guidance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-guidance-strip span {
  border: 1px solid #d4e3df;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
}

.hero-boundary-note {
  border: 1px solid #d8e6e2;
  border-radius: 14px;
  background: #f8fcfb;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.boundary-shield {
  width: 22px;
  height: 26px;
  border-radius: 10px 10px 12px 12px;
  border: 1px solid #8eb5a8;
  background: linear-gradient(180deg, #71aa99 0%, #3f8571 100%);
  clip-path: polygon(50% 0%, 100% 18%, 100% 62%, 50% 100%, 0% 62%, 0% 18%);
  flex-shrink: 0;
}

.hero-boundary-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 700;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-band div {
  min-height: 124px;
  padding: 28px 6%;
  background: var(--white);
}

.signal-number {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.signal-band p {
  max-width: 350px;
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.section {
  padding: 70px 6%;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 30px;
}

.outcome-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.outcome-card,
.package-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 31, 36, 0.06);
}

.outcome-card:nth-child(2),
.package-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.outcome-card:nth-child(2) p,
.package-card.featured p,
.package-card.featured li {
  color: #d8e6e3;
}

.outcome-card:nth-child(3) .card-kicker,
.package-card:nth-child(3) .card-kicker {
  color: #c46f3f;
}

.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  max-width: 980px;
}

.process-grid .outcome-card {
  min-height: 220px;
}

.buyer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 6%;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 31, 36, 0.06);
}

.buyer-cta div {
  max-width: 760px;
}

.buyer-cta h3,
.buyer-cta p {
  margin-bottom: 0;
}

.buyer-cta h3 {
  font-size: 28px;
}

.buyer-cta .eyebrow {
  margin-bottom: 8px;
}

.compact-callout {
  padding-top: 54px;
  padding-bottom: 46px;
}

.compact-callout .section-heading {
  max-width: 780px;
  margin-bottom: 0;
}

.compact-callout h2 {
  max-width: 680px;
}

.portal-section {
  background: #edf4f1;
}

.roadmap-preview {
  padding-top: 56px;
  padding-bottom: 60px;
}

.roadmap-preview .section-heading {
  max-width: 760px;
}

.roadmap-preview h2 {
  font-size: 36px;
}

.roadmap-preview p {
  font-size: 16px;
}

.portal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.portal-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-button,
.scanner-options button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-soft);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.tab-button {
  padding: 14px 16px;
}

.tab-button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.portal-panel {
  display: none;
  min-height: 300px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portal-panel.active {
  display: block;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-row div {
  min-height: 104px;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
}

.metric-row span,
.calculator-result span,
.scan-result span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.metric-row strong {
  color: var(--ink);
  font-size: 30px;
}

.timeline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.timeline div,
.service-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline p,
.service-list p {
  margin: 0;
}

.status {
  width: 14px;
  height: 14px;
  margin-top: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.status.done {
  background: var(--mint-dark);
}

.status.active {
  background: var(--gold);
}

.status.next {
  background: var(--sky);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list div {
  display: block;
}

.service-list h3 {
  font-size: 20px;
}

.invoice-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.invoice-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700;
}

.invoice-row:last-child {
  border-bottom: 0;
}

.invoice-head {
  background: var(--ink);
  color: var(--white);
}

.locked-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8f6 100%);
}

.lock-icon {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.access-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.access-list span {
  min-height: 42px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.access-card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.access-card.secure {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.access-card.secure p {
  color: #d8e6e3;
}

.access-grid .conversation-box {
  grid-column: 1 / -1;
}

.conversation-box {
  display: grid;
  gap: 16px;
}

.client-line,
.advisor-line,
.advisor-note {
  max-width: 680px;
  margin: 0;
  padding: 18px 20px;
  border-radius: 8px;
  font-size: 18px;
}

.client-line {
  justify-self: start;
  background: var(--paper);
  color: var(--ink-soft);
}

.advisor-line {
  justify-self: end;
  background: var(--ink);
  color: var(--white);
}

.advisor-note {
  justify-self: end;
  background: #e7f8f1;
  color: var(--ink);
  font-weight: 800;
}

.scanner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1fr);
  gap: 42px;
  align-items: center;
}

.scanner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
}

.scanner-options {
  display: grid;
  gap: 10px;
}

.scanner-options button {
  padding: 14px 16px;
}

.scanner-options button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.scan-result {
  min-height: 270px;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.scan-result h3 {
  font-size: 30px;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.calculator-section {
  background: var(--ink);
  color: var(--white);
}

.calculator-section .eyebrow {
  color: var(--mint);
}

.calculator-section p {
  color: #d8e6e3;
}

.calculator {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.2fr;
  gap: 18px;
}

.calculator label,
.calculator-result {
  min-height: 166px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #e8f3f1;
  font-weight: 800;
}

.calculator input {
  width: 100%;
  margin: 28px 0 18px;
  accent-color: var(--mint);
}

.calculator label span {
  display: block;
  color: var(--mint);
  font-size: 28px;
}

.calculator-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.calculator-result span {
  color: var(--muted);
}

.calculator-result strong {
  color: var(--ink);
  font-size: 42px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 64px 6%;
  background: var(--white);
}

.final-cta div {
  max-width: 850px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 6%;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer img {
  width: 180px;
}

.site-footer p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.assessment-section {
  background: #edf4f1;
}

.intake-grid,
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.intake-card,
.theme-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intake-card.secure {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.intake-card.secure p {
  color: #d8e6e3;
}

.brand-hero {
  padding-bottom: 40px;
}

.logo-options {
  display: grid;
  gap: 24px;
  padding-top: 20px;
}

.logo-option {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 31, 36, 0.06);
}

.logo-option.selected {
  border-color: rgba(22, 164, 119, 0.5);
  box-shadow: 0 24px 60px rgba(22, 164, 119, 0.14);
}

.logo-option img {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-option strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7f8f1;
  color: var(--ink);
  font-size: 14px;
}

.theme-options {
  background: #edf4f1;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.swatches span {
  display: block;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(14, 31, 36, 0.12);
}

.swatch.ink {
  background: #0e1f24;
}

.swatch.ink-soft {
  background: #2e4b52;
}

.swatch.mint {
  background: #6ee7b7;
}

.swatch.gold {
  background: #f4c95d;
}

.swatch.paper {
  background: #f7faf8;
}

.swatch.board-ink {
  background: #111827;
}

.swatch.board-slate {
  background: #334155;
}

.swatch.board-teal {
  background: #14b8a6;
}

.swatch.board-gold {
  background: #eab308;
}

.swatch.board-paper {
  background: #f8fafc;
}

.swatch.practice-ink {
  background: #172a3a;
}

.swatch.practice-teal {
  background: #0b6e69;
}

.swatch.practice-sky {
  background: #7dd3fc;
}

.swatch.practice-gold {
  background: #f59e0b;
}

.swatch.practice-paper {
  background: #f6f7f1;
}

.merch-hero {
  padding-bottom: 30px;
}

.merch-grid-section {
  padding-top: 20px;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.merch-card {
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 31, 36, 0.06);
}

.merch-card.recommended {
  border-color: rgba(22, 164, 119, 0.5);
  box-shadow: 0 24px 60px rgba(22, 164, 119, 0.14);
}

.merch-card.wide {
  grid-column: span 2;
}

.merch-card img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
}

.print-rules {
  background: #edf4f1;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rule-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 1280px) {
  .site-header {
    gap: 16px;
  }

  .brand img {
    width: 188px;
  }

  .nav-links {
    gap: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .hero-section,
  .scanner-section,
  .portal-layout,
  .scanner {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .portal-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .calculator {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-option,
  .intake-grid,
  .theme-grid,
  .merch-grid,
  .rule-grid {
    grid-template-columns: 1fr;
  }

  .merch-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 190px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
  }

  .nav-links a {
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero-section {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-pathway {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pathway-line {
    height: 34px;
    width: 4px;
    justify-self: center;
    background: linear-gradient(180deg, #7eb8a7 0%, #3f8874 100%);
  }

  .pathway-node {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -6px;
    transform: translateX(-50%);
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 21px;
  }

  p,
  .hero-lede {
    font-size: 17px;
  }

  .signal-band,
  .outcome-grid,
  .package-grid,
  .process-grid,
  .metric-row,
  .calculator {
    grid-template-columns: 1fr;
  }

  .portal-tabs {
    grid-template-columns: 1fr;
  }

  .invoice-row {
    grid-template-columns: 1fr;
  }

  .access-list,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .buyer-cta,
  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page ul {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.public-intake-static {
  margin: 0 0 38px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  display: grid;
  gap: 10px;
}

.form-warning {
  color: #9b2f16;
  font-weight: 700;
}

.form-note {
  font-size: 14px;
}

.trustfit-section h1 { font-size: 52px; }
.trustfit-form { display: grid; gap: 22px; }
.trustfit-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 14px; }
.trustfit-grid label { display: grid; gap: 8px; font-weight: 700; color: var(--ink-soft); text-transform: capitalize; }
.trustfit-grid select { min-height: 46px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); padding: 8px 10px; color: var(--ink); }
.form-warning { color: #8d2e1a; font-weight: 700; }

@media (max-width: 480px) {
  .site-header {
    padding: 16px 5%;
  }

  .brand img {
    width: 170px;
  }

  .nav-links {
    font-size: 13px;
    gap: 6px;
    padding: 4px;
  }

  .nav-links a {
    min-height: 38px;
    padding: 7px 10px;
  }

  h1 {
    font-size: 38px;
    line-height: 1;
  }

  .hero-actions {
    gap: 10px;
  }
}
