/* ============================================================
   6418 Partners — Global Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,900&family=Inter:wght@400;500;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* --- Custom Properties --- */
:root {
  --ink: #14110F;
  --paper: #FAF8F3;
  --pine: #1F3D2E;
  --soil: #8C7355;
  --grey: #5C5650;
  --hairline: #D4CFC4;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* --- Links --- */
a {
  color: var(--pine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

a:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 2px;
  border-radius: 1px;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: var(--font-body);
}

p {
  color: var(--grey);
  font-size: 1.0625rem;
  line-height: 1.72;
}

p + p {
  margin-top: 1.1em;
}

ul, ol {
  padding-left: 1.4em;
  color: var(--grey);
  font-size: 1.0625rem;
  line-height: 1.72;
}

li {
  margin-bottom: 0.5em;
}

li:last-child {
  margin-bottom: 0;
}

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

/* --- Mono / Citation --- */
.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--soil);
  text-transform: uppercase;
  text-decoration: none;
}

/* --- Eyebrow label --- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--soil);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.25rem;
}

/* --- Prose wrapper --- */
.prose {
  max-width: 68ch;
}

/* --- Layout containers --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Section spacing --- */
.section {
  padding: 6rem 0;
  border-top: 1px solid var(--hairline);
}

.section:first-of-type {
  border-top: none;
}

/* --- Hero section --- */
.hero {
  padding: 7rem 0 6rem;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}

.hero .subhead {
  font-size: 1.2rem;
  color: var(--grey);
  font-weight: 400;
  max-width: 56ch;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero .intro-para {
  max-width: 62ch;
  margin-bottom: 2.5rem;
  color: var(--grey);
}

/* --- Sticky Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--paper);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-header__wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__wordmark:hover {
  opacity: 0.85;
}

.site-logo {
  display: block;
  height: 38px;
  width: auto;
}

.site-logo--footer {
  height: 44px;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.site-nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--grey);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.site-nav__links a:hover {
  color: var(--ink);
}

.site-nav__links a:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 2px;
  border-radius: 1px;
}

.site-nav__links a.active {
  color: var(--pine);
}

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 2px;
}

.nav-toggle svg {
  display: block;
}

/* --- Mobile nav --- */
.mobile-nav {
  display: none;
  background-color: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__inner {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav__inner a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
}

.mobile-nav__inner a:hover {
  color: var(--pine);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  line-height: 1;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--pine);
  color: var(--paper);
  border: 1px solid var(--pine);
}

.btn-primary:hover {
  background-color: #162c20;
  border-color: #162c20;
  color: var(--paper);
}

.btn-secondary {
  background-color: transparent;
  color: var(--pine);
  border: 1px solid var(--pine);
}

.btn-secondary:hover {
  background-color: var(--pine);
  color: var(--paper);
}

/* Header CTA button */
.site-nav .btn-primary {
  font-size: 0.8125rem;
  padding: 0.55rem 1.2rem;
}

/* --- Tables --- */
.table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

table th {
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  text-align: left;
  padding: 0.875rem 1.25rem;
}

table td {
  color: var(--grey);
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
  line-height: 1.6;
}

table tr:last-child td {
  border-bottom: none;
}

table td.mono-cell,
table td:first-child {
  font-weight: 500;
  color: var(--ink);
}

.table-step {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--soil);
  letter-spacing: 0.06em;
}

/* --- Two-column settled/unsettled layout --- */
.two-col-analysis {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 3rem;
  margin: 2rem 0;
}

.two-col-analysis__divider {
  background-color: var(--hairline);
  align-self: stretch;
}

.two-col-analysis__col h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid currentColor;
}

.two-col-analysis__col--settled h3 {
  color: var(--pine);
  border-color: var(--pine);
}

.two-col-analysis__col--unsettled h3 {
  color: var(--soil);
  border-color: var(--soil);
}

.two-col-analysis__col ul {
  list-style: none;
  padding: 0;
}

.two-col-analysis__col li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.two-col-analysis__col li:last-child {
  border-bottom: none;
}

.two-col-full {
  grid-column: 1 / -1;
  padding-top: 2rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--hairline);
}

/* --- Numbered list (step by step) --- */
.step-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.step-list__item {
  counter-increment: steps;
  padding: 2rem 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 1.5rem;
}

.step-list__item:first-child {
  border-top: 1px solid var(--hairline);
}

.step-list__item::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--soil);
  letter-spacing: 0.06em;
  padding-top: 0.25rem;
}

.step-list__item h3 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

/* --- FAQ Accordion --- */
.faq-list {
  list-style: none;
  padding: 0;
}

.faq-item {
  border-top: 1px solid var(--hairline);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.faq-question:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 2px;
}

.faq-question:hover {
  color: var(--pine);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  margin-top: 0.15rem;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--pine);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::before {
  width: 100%;
  height: 1.5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer__inner {
  padding-bottom: 1.75rem;
}

.faq-answer__inner p {
  font-size: 0.9375rem;
}

.faq-answer__inner ul {
  font-size: 0.9375rem;
  margin-top: 0.75rem;
}

.faq-item.is-open .faq-answer {
  max-height: 1000px;
}

/* --- Segment sections (Who This Is For) --- */
.segment-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--hairline);
}

.segment-section:first-of-type {
  border-top: none;
}

.segment-section h2 {
  margin-bottom: 1.1rem;
}

/* --- Form styles --- */
.form-wrap {
  max-width: 640px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background-color: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 1px;
  padding: 0.7rem 0.875rem;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--hairline);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pine);
  outline: none;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 1px;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C5650' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 2rem;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--hairline);
  font-size: 0.9375rem;
}

.form-message--success {
  border-color: var(--pine);
  color: var(--pine);
  background-color: rgba(31, 61, 46, 0.04);
}

.form-message--error {
  border-color: #8B2020;
  color: #8B2020;
  background-color: rgba(139, 32, 32, 0.04);
}

.fine-print {
  margin-top: 2.5rem;
  font-size: 0.78125rem;
  color: var(--grey);
  line-height: 1.65;
  max-width: 62ch;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--ink);
  color: var(--paper);
  padding: 5rem 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(212, 207, 196, 0.18);
}

.site-footer__wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
}

.site-footer__wordmark:hover {
  opacity: 0.8;
}

.site-footer__tagline {
  font-size: 0.875rem;
  color: var(--hairline);
  line-height: 1.6;
  max-width: 32ch;
}

.site-footer__nav-heading {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--soil);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.site-footer__nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__nav-links a {
  font-size: 0.875rem;
  color: var(--hairline);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__nav-links a:hover {
  color: var(--paper);
}

.site-footer__disclosure {
  font-size: 0.78125rem;
  color: var(--hairline);
  line-height: 1.7;
  opacity: 0.75;
}

.site-footer__citation {
  padding: 1.5rem 0;
  text-align: center;
}

.site-footer__citation span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--soil);
  text-transform: uppercase;
}

/* --- Plain unordered list (no icon cards) --- */
.plain-list {
  list-style: disc;
  padding-left: 1.4em;
}

.plain-list li {
  color: var(--grey);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 0.6em;
}

/* --- Inline link (body text) --- */
.inline-link {
  color: var(--pine);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* --- "What We Are" section note --- */
.section-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--pine);
  background-color: rgba(31, 61, 46, 0.04);
}

.section-note p {
  font-size: 0.9375rem;
  color: var(--grey);
  margin: 0;
}

/* --- CTA block --- */
.cta-block {
  margin-top: 3rem;
}

/* --- Footer social links --- */
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: #ffffff;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-social:hover {
  opacity: 1;
}

/* --- Scroll animation --- */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }

  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   Responsive — Tablet & Mobile
   ============================================================ */

/* --- Large tablet: tighten header at mid-widths --- */
@media (max-width: 1100px) {
  .site-nav__links {
    gap: 0.875rem;
  }

  .site-nav {
    gap: 0.875rem;
  }

  .site-nav .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .site-logo {
    height: 34px;
  }
}

/* --- Tablet: ~900px --- */
@media (max-width: 900px) {
  .two-col-analysis {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .two-col-analysis__col {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--hairline);
  }

  .two-col-analysis__col:last-of-type {
    border-bottom: none;
  }

  .two-col-analysis__divider {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .step-list__item {
    gap: 0 1.25rem;
  }
}

/* --- Tablet: 768px — typography, spacing, layout (nav stays visible) --- */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2.1rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.55rem;
  }

  h3 {
    font-size: 1.075rem;
  }

  /* Remove desktop h1 width cap — constrains badly on tablet/mobile */
  .hero h1 {
    max-width: none;
  }

  /* Spacing */
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .section + .section {
    border-top: 1px solid var(--hairline);
  }

  .container,
  .container--narrow {
    padding: 0 1.5rem;
  }

  /* Header */
  .site-header__inner {
    padding: 0 1.5rem;
    height: 60px;
  }

  .site-logo {
    height: 32px;
  }

  /* Compress nav links further at tablet width */
  .site-nav__links {
    gap: 0.625rem;
  }

  .site-nav__links a {
    font-size: 0.8125rem;
  }

  .site-nav .btn-primary {
    padding: 0.45rem 0.875rem;
    font-size: 0.775rem;
  }

  /* Intro paragraph size */
  .intro-para {
    font-size: 0.9375rem;
  }

  .subhead {
    font-size: 1.075rem;
  }

  /* CTA blocks */
  .cta-block {
    margin-top: 2rem;
  }

  /* Plain list */
  .plain-list li {
    padding: 0.5rem 0;
  }

  /* Steps */
  .step-list__item {
    grid-template-columns: 2.25rem 1fr;
    gap: 0 1rem;
  }

  /* Two-col analysis */
  .two-col-analysis {
    margin: 1.5rem 0;
  }

  .two-col-full {
    padding-top: 1.5rem;
  }

  /* Tables — horizontal scroll */
  .table-wrap {
    margin: 1.5rem -1.5rem;
    padding: 0 1.5rem;
  }

  table {
    min-width: 500px;
    font-size: 0.875rem;
  }

  table th,
  table td {
    padding: 0.75rem 1rem;
  }

  /* Form — stays 2-col at tablet, no extra horizontal padding */
  .form-wrap {
    max-width: 100%;
    padding: 0;
  }

  .form-submit .btn {
    padding: 0.875rem 1.75rem;
  }

  /* FAQ */
  .faq-question {
    padding: 1.1rem 0;
    font-size: 1rem;
  }

  /* Segment sections */
  .segment-section {
    padding: 2rem 0;
  }

  /* Footer */
  .site-footer {
    padding-top: 3rem;
  }

  .site-footer__citation {
    padding: 1.25rem 0;
  }
}

/* --- Mobile: 640px — hamburger nav, single-col form --- */
@media (max-width: 640px) {
  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .container,
  .container--narrow {
    padding: 0 1.25rem;
  }

  .site-header__inner {
    padding: 0 1.25rem;
    height: 56px;
  }

  /* Hide desktop nav, show hamburger */
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile nav drawer */
  .mobile-nav__inner {
    padding: 1.25rem 1.25rem 1.75rem;
    gap: 0;
  }

  .mobile-nav__inner a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--hairline);
  }

  .mobile-nav__inner a:first-child {
    border-top: none;
  }

  .mobile-nav__inner .btn-primary {
    display: block;
    margin-top: 1.25rem;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-bottom: none;
  }

  /* Form — single column */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-field--full {
    grid-column: 1;
  }

  .form-submit .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  /* CTA full-width on mobile */
  .cta-block .btn {
    display: block;
    text-align: center;
    width: 100%;
  }

  /* Footer — single column */
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .site-logo--footer {
    height: 36px;
  }

  /* Table scroll */
  .table-wrap {
    margin: 1.5rem -1.25rem;
    padding: 0 1.25rem;
  }
}

/* --- Small phones: 480px and below --- */
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero {
    padding: 2.75rem 0 2rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .site-logo {
    height: 28px;
  }

  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.875rem 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .plain-list li {
    font-size: 1rem;
  }

  .subhead {
    font-size: 1rem;
  }
}
