/* ==========================================================================
   Mark Noel for Sheriff — 2026
   Colors are sampled from the campaign star logo.
   ========================================================================== */

/* Fonts are self-hosted (SIL Open Font License) so the site makes no third-party requests. */
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-standard-normal.woff2") format("woff2-variations");
  font-weight: 100 900; font-stretch: 62% 125%; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-standard-italic.woff2") format("woff2-variations");
  font-weight: 100 900; font-stretch: 62% 125%; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/figtree-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 300 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/figtree-latin-wght-italic.woff2") format("woff2-variations");
  font-weight: 300 900; font-style: italic; font-display: swap;
}

:root {
  --navy: #22246a;
  --navy-deep: #151747;
  --red: #c4203a;
  --red-dark: #a0182e;
  --gold: #ffd10a;
  --green: #265e39;
  --green-light: #e8f0e6;
  --sky: #2f6fb3;

  --ink: #1d2230;
  --ink-soft: #4a5263;
  --line: #d9dde3;
  --paper: #ffffff;
  --paper-warm: #f6f4ee;

  --font-display: "Archivo", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Figtree", "Helvetica Neue", Arial, system-ui, sans-serif;

  --step--1: clamp(0.875rem, 0.85rem + 0.1vw, 0.95rem);
  --step-0: clamp(1.0625rem, 1rem + 0.25vw, 1.1875rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3: clamp(1.9rem, 1.5rem + 2vw, 2.9rem);
  --step-4: clamp(2.3rem, 1.7rem + 3vw, 3.9rem);

  --radius: 14px;
  --shadow: 0 10px 30px -12px rgb(21 23 71 / 0.35);
  --container: 72rem;
  --gutter: clamp(1rem, 4vw, 2rem);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { margin: 0 0 1em; }
a { color: var(--navy); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--red); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--gold); color: var(--ink); padding: .6rem 1rem; border-radius: 6px; font-weight: 700; }
.skip-link:focus { top: 1rem; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); max-width: 42rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 0.8em 1.5em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .15s, color .15s, transform .15s;
  line-height: 1.1;
}
.btn:hover { transform: translateY(-1px); }
.btn--donate { background: var(--red); color: #fff; }
.btn--donate:hover { background: var(--red-dark); color: #fff; }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); color: #fff; }
.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(255 255 255 / 0.97);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: 4.5rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.brand img { width: 3.25rem; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 750; font-size: 1.3rem; color: var(--red); }
.brand__office { font-size: .95rem; font-weight: 600; letter-spacing: .01em; color: var(--navy); }

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.site-nav a:not(.btn) {
  display: block; padding: .5rem .7rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  color: var(--navy); text-decoration: none; border-radius: 6px;
}
.site-nav a:not(.btn):hover { background: var(--green-light); color: var(--green); }
.site-nav a[aria-current="page"] { color: var(--red); box-shadow: inset 0 -3px 0 var(--gold); border-radius: 0; }

.nav-toggle {
  display: none;
  width: 2.75rem; height: 2.75rem;
  border: 0; border-radius: 8px; background: var(--navy); cursor: pointer;
  place-items: center;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 1.3rem; height: 2px; background: #fff; border-radius: 2px;
  position: relative; transition: transform .2s, opacity .2s;
}
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 64.01em) {
  .site-nav { display: flex; align-items: center; gap: .75rem; }
}
@media (max-width: 64em) {
  .js .nav-toggle { display: grid; }
  .site-nav {
    position: absolute; inset: 100% 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.25rem;
    box-shadow: var(--shadow);
  }
  .site-nav ul { flex-direction: column; margin-bottom: .75rem; }
  .site-nav a:not(.btn) { padding: .8rem .25rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.1rem; }
  .site-nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--gold); padding-left: .75rem; }
  .site-nav .btn { width: 100%; }
  .js .site-nav:not(.is-open) { display: none; }
  /* Without JavaScript the menu stays in normal flow and fully visible. */
  .no-js .site-nav { position: static; box-shadow: none; }
  .no-js .site-header__inner { flex-wrap: wrap; }
  .no-js .site-header { position: static; }
}

/* ---------- Home hero ---------- */
.hero {
  position: relative; isolation: isolate;
  color: #fff;
  padding-block: clamp(3rem, 8vw, 6.5rem) clamp(3.5rem, 9vw, 7rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgb(21 23 71 / 0.92) 0%, rgb(21 23 71 / 0.72) 45%, rgb(21 23 71 / 0.25) 100%),
    linear-gradient(0deg, rgb(21 23 71 / 0.55), transparent 40%);
}
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
.hero__copy { max-width: 38rem; }
.hero .eyebrow { color: var(--gold); text-transform: none; letter-spacing: .01em; font-size: var(--step-1); }
.hero h1 { color: #fff; font-size: var(--step-4); margin-bottom: .35em; }
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--gold); }
.hero__sub { font-size: var(--step-1); line-height: 1.5; color: rgb(255 255 255 / 0.92); margin-bottom: 1.75rem; }
.hero__photo { justify-self: center; width: min(62vw, 22rem); margin: 0; }
.hero__photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%;
  border-radius: 20px; border: 5px solid #fff; box-shadow: 0 25px 50px -15px rgb(0 0 0 / .6);
}
.hero__photo figcaption { text-align: center; font-size: var(--step--1); margin-top: .75rem; color: rgb(255 255 255 / .9); }
@media (min-width: 52em) {
  .hero__grid { grid-template-columns: 1.4fr 1fr; }
  .hero__photo { justify-self: end; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--warm { background: var(--paper-warm); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head { max-width: 46rem; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .lede { margin-inline: auto; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.9rem);
  box-shadow: 0 1px 2px rgb(0 0 0 / .04);
}
.card h3 { font-size: var(--step-1); margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card--pillar { border-top: 5px solid var(--gold); }
.card--pillar:nth-child(2) { border-top-color: var(--green); }
.card--pillar:nth-child(3) { border-top-color: var(--red); }
.card__icon {
  width: 3rem; height: 3rem; border-radius: 12px; display: grid; place-items: center;
  background: var(--green-light); color: var(--green); margin-bottom: 1rem;
}
.card__icon svg { width: 1.6rem; height: 1.6rem; }

/* Credentials strip */
.creds { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.creds li { display: flex; gap: .85rem; align-items: flex-start; }
.creds svg { flex: none; width: 2rem; height: 2rem; color: var(--gold); }
.creds strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: #fff; }
.creds span { color: rgb(255 255 255 / .85); font-size: var(--step--1); line-height: 1.4; display: block; }

/* Two sides of the county */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 52em) { .split { grid-template-columns: 1fr 1fr; } .split--reverse > :first-child { order: 2; } }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 40% 50%; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .7rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 70% no-repeat;
}

/* 100-day phases */
.phases { counter-reset: phase; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.phase { position: relative; background: #fff; border-radius: var(--radius); padding: 1.6rem 1.6rem 1.4rem; border: 1px solid var(--line); }
.phase__days {
  display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--navy);
  background: var(--gold); padding: .25rem .7rem; border-radius: 999px; margin-bottom: .8rem;
}
.phase h3 { font-size: var(--step-1); }
.phase ul { margin: 0; padding-left: 1.1rem; }
.phase li { margin-bottom: .4rem; }

/* Election band */
.vote-band { background: var(--gold); color: var(--navy-deep); padding-block: 1.5rem; }
.vote-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.vote-band p { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); }
.vote-band .countdown { font-weight: 800; }

/* Endorsements */
.quotes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.quote { margin: 0; background: #fff; border-radius: var(--radius); padding: 1.6rem; border-left: 5px solid var(--gold); box-shadow: var(--shadow); }
.quote blockquote { margin: 0 0 1rem; font-size: var(--step-0); font-style: italic; }
.quote figcaption { display: flex; align-items: center; gap: .75rem; font-size: var(--step--1); color: var(--ink-soft); }
.quote figcaption img { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; }
.quote figcaption strong { display: block; color: var(--navy); font-size: 1rem; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, #2c3a8a); color: #fff; padding-block: clamp(2.5rem, 6vw, 4rem); }
.cta-band__inner { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; font-size: var(--step-2); margin-bottom: .25em; }
.cta-band p { margin: 0; color: rgb(255 255 255 / .88); }

/* ---------- Interior pages ---------- */
.page-hero {
  background:
    linear-gradient(100deg, rgb(21 23 71 / .95) 30%, rgb(21 23 71 / .7)),
    var(--hero-img, none) center 35% / cover no-repeat,
    var(--navy);
  color: #fff;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 5px solid var(--gold);
}
.page-hero h1 { color: #fff; font-size: var(--step-4); margin: 0; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .lede { color: rgb(255 255 255 / .9); margin: .75rem 0 0; }
.page-body { padding-block: clamp(2.5rem, 6vw, 4rem); }
.prose { max-width: 46rem; }
.page-body--wide .prose { max-width: none; }
.prose h2 { font-size: var(--step-2); margin-top: 2.2em; padding-top: .2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .45rem; }
.prose li::marker { color: var(--green); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.prose blockquote { margin: 1.5rem 0; padding: .5rem 0 .5rem 1.25rem; border-left: 4px solid var(--gold); font-size: var(--step-1); color: var(--navy); font-style: italic; }
.prose img { border-radius: var(--radius); }
.prose .card, .prose .phases, .prose .grid { margin-block: 1.5rem; }

.issue { padding-block: 1.25rem; border-top: 1px solid var(--line); scroll-margin-top: 6rem; }
.issue:first-of-type { border-top: 0; }
.issue h2 { margin-top: 0; }
.toc { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0 !important; margin: 0 0 2.5rem; }
.toc li { margin: 0; }
.toc a { display: inline-block; padding: .4rem .85rem; border-radius: 999px; background: var(--green-light); color: var(--green); font-weight: 600; font-size: .95rem; text-decoration: none; }
.toc a:hover { background: var(--green); color: #fff; }

.faq details { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .85rem; background: #fff; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.25rem; position: relative;
  font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: var(--step-1); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.25rem; top: 50%; translate: 0 -50%; font-size: 1.6rem; color: var(--green); }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 1.25rem 1.1rem; }

.about-intro { display: grid; gap: 2rem; align-items: start; margin-bottom: 2rem; }
@media (min-width: 46em) { .about-intro { grid-template-columns: 16rem 1fr; } }
.about-intro img { border-radius: var(--radius); box-shadow: var(--shadow); }

.timeline { list-style: none; padding: 0 !important; margin: 1.5rem 0 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: .55rem; top: .4rem; bottom: .4rem; width: 3px; background: var(--line); }
.timeline li { position: relative; padding-left: 2.5rem; margin-bottom: 1.5rem; }
.timeline li::before { content: ""; position: absolute; left: 0; top: .35rem; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--gold); border: 3px solid var(--navy); }
.timeline h3 { font-size: var(--step-1); margin: 0 0 .25rem; }
.timeline .when { font-family: var(--font-display); font-weight: 700; color: var(--green); font-size: .9rem; letter-spacing: .06em; }
.timeline p { margin: 0; }

.info-list { list-style: none; padding: 0 !important; display: grid; gap: .85rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.info-list li { margin: 0; background: var(--paper-warm); border-radius: 10px; padding: 1rem 1.15rem; }
.info-list strong { display: block; color: var(--navy); }
.info-list span { display: block; font-size: var(--step--1); color: var(--ink-soft); }

.dates { list-style: none; padding: 0 !important; margin: 0 0 1.5rem; }
.dates li { display: grid; grid-template-columns: minmax(7.5rem, auto) 1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); margin: 0; }
.dates time { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.dates li.is-key { background: #fff8d6; margin-inline: -.75rem; padding-inline: .75rem; border-radius: 8px; border-bottom: 0; }

.contact-cards .card { text-align: center; }
.contact-cards .card a { font-weight: 700; font-size: var(--step-1); word-break: break-word; }

.form-embed { width: 100%; min-height: 900px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }

.note { background: #fff8d6; border-left: 4px solid var(--gold); padding: .85rem 1.1rem; border-radius: 0 8px 8px 0; font-size: var(--step--1); }

.link-list { list-style: none; padding: 0 !important; }
.link-list li { padding: .85rem 0; border-bottom: 1px solid var(--line); margin: 0; }
.link-list a { font-weight: 700; }
.link-list span { display: block; color: var(--ink-soft); font-size: var(--step--1); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgb(255 255 255 / .85); font-size: var(--step--1); }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--gold); }
.site-footer__grid { display: grid; gap: 2rem; padding-block: 3rem 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.site-footer__brand img { background: #fff; border-radius: 50%; padding: .4rem; width: 5.5rem; }
.site-footer__tag { font-family: var(--font-display); font-weight: 700; color: var(--gold); margin-top: .9rem; font-size: 1rem; }
.site-footer__nav ul { list-style: none; margin: 0; padding: 0; }
.site-footer__nav li { margin-bottom: .45rem; }
.site-footer__nav a { text-decoration: none; }
.site-footer__follow { font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: .5rem; }
.social-links { list-style: none; margin: 0; padding: 0; display: flex; gap: .6rem; flex-wrap: wrap; }
.social-links a {
  display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: rgb(255 255 255 / .1); color: #fff; transition: background-color .15s, color .15s;
}
.social-links a:hover { background: var(--gold); color: var(--navy-deep); }
.social-links--dark a { background: var(--navy); }
.site-footer__legal { border-top: 1px solid rgb(255 255 255 / .15); padding-block: 1.25rem 1.5rem; }
.site-footer__legal p { margin: 0 0 .3rem; }
.paid-for {
  display: inline-block; border: 1px solid rgb(255 255 255 / .5); padding: .3rem .7rem; border-radius: 4px;
  color: #fff; font-weight: 600; margin-bottom: .6rem !important;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
@media print {
  .site-header, .cta-band, .vote-band, .site-footer__nav, .social-links { display: none !important; }
  .hero, .page-hero { color: #000; background: none !important; }
  .hero h1, .page-hero h1 { color: #000; }
}

.no-tracking { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; margin-top: .5rem !important; color: rgb(255 255 255 / .85); }
.no-tracking svg { flex: none; color: var(--gold); display: inline-block; }
/* Archivo is set semi-expanded throughout for a patrol-lettering feel; the H1 a touch wider. */
h1, h2, h3, h4, .eyebrow, .btn, .brand__name, .site-nav a, .creds strong, .phase__days,
.vote-band p, .faq summary, .timeline .when, .dates time, .site-footer__tag, .site-footer__follow { font-stretch: 110%; }
h1 { font-weight: 680; font-stretch: 112%; letter-spacing: 0.015em; }
.hero h1 { line-height: 1.12; }
.eyebrow { font-stretch: 115%; }
.site-nav a, .btn { font-stretch: 105%; }
