/* ============================================
   KATHI IZATT FOR BEAR LAKE COUNTY COMMISSIONER
   Campaign Website Stylesheet — Mobile First
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy: #1B3A5C;
  --gold: #D4A03C;
  --white: #FFFFFF;
  --near-black: #1A1A1A;
  --lake-blue: #7BA7BC;
  --lake-blue-light: #E8F1F5;
  --navy-dark: #132A42;
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Source Sans 3', sans-serif;
  --text-muted: #666666;
  --error-red: #c0392b;
  --text-light: #888888;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--near-black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy);
  text-decoration: none;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.5rem 1rem;
  font-family: var(--body-font);
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

/* --- Visually Hidden (honeypot, etc.) --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Section Base --- */
.section {
  padding: 4rem 0;
}

/* --- Section Headlines --- */
.section__headline {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
}

.section__headline--left {
  text-align: left;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  width: 100%;
  max-width: 400px;
}

.btn-primary:hover {
  background-color: #c0912e;
  transform: scale(1.02);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border: 2px solid var(--navy);
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
  width: 100%;
  max-width: 400px;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.02);
}

.btn-secondary:active {
  transform: scale(0.98);
}

/* --- Image Placeholders --- */
.image-placeholder {
  background: var(--navy);
  border: 2px dashed var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font);
  font-size: 0.875rem;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

.image-placeholder--hero {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.image-placeholder--portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.image-placeholder--landscape {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.image-placeholder--ultrawide {
  width: 100%;
  aspect-ratio: 21 / 9;
}

/* ============================================
   FACEBOOK FLOAT BUTTON
   ============================================ */
.facebook-float {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1877F2;
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.facebook-float:hover {
  background: #1565C0;
  transform: scale(1.03);
}

.facebook-float__text {
  display: none;
}

@media (min-width: 768px) {
  .facebook-float__text {
    display: inline;
  }

  .facebook-float {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* ============================================
   HERO SECTION — YARD SIGN STYLE
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(19, 42, 66, 0.88) 0%,
      rgba(19, 42, 66, 0.7) 45%,
      rgba(27, 58, 92, 0.15) 75%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(19, 42, 66, 0.5) 0%,
      transparent 40%
    );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 5rem 1.5rem 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* On mobile, keep the CTA button narrow so it doesn't cover Kathi */
.hero__cta {
  max-width: 220px;
}

/* --- NAME LOCKUP: This is the brand mark --- */
.hero__name-lockup {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.hero__firstname {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
}

.hero__lastname {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 7rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  line-height: 0.9;
  margin-top: 0.05em;
}

/* --- TAGLINE --- */
.hero__tagline {
  font-family: var(--heading-font);
  font-weight: 600;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

/* ============================================
   INFO BANNER — Between hero and content
   ============================================ */
.info-banner {
  background: var(--gold);
  padding: 0.875rem 0;
}

.info-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.info-banner__office {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-banner__divider {
  display: none;
}

.info-banner__election {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy-dark);
}

@media (min-width: 768px) {
  .info-banner__inner {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .info-banner__divider {
    display: inline;
    color: var(--navy-dark);
    opacity: 0.4;
  }

  .info-banner__office {
    font-size: 1.0625rem;
  }

  .info-banner__election {
    font-size: 1rem;
  }
}

/* ============================================
   PILLARS SECTION
   ============================================ */
.pillars {
  background: var(--white);
}

.pillars__grid {
  display: grid;
  gap: 2rem;
}

.pillar {
  border-top: 3px solid var(--gold);
  padding: 2rem 1.5rem;
  background: var(--white);
}

.pillar__icon {
  color: var(--gold);
  margin-bottom: 1rem;
}

.pillar__headline {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pillar__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--near-black);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--lake-blue-light);
}

.about__grid {
  display: grid;
  gap: 2rem;
}

.about__images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__image {
  max-width: 400px;
  margin: 0 auto;
}

.about__photo {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about__photo-caption {
  text-align: center;
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: var(--text-muted, #666666);
  margin-top: 0.5rem;
  font-style: italic;
}

.about__text p {
  margin-bottom: 1rem;
}

.about__text p:last-child {
  margin-bottom: 0;
}

#ed-reference[data-enabled="false"] {
  display: none;
}

#ed-reference[data-enabled="true"] {
  display: inline;
}

/* ============================================
   ENDORSEMENTS SECTION
   ============================================ */
.endorsements {
  background: var(--white);
}

.endorsements__grid {
  display: grid;
  gap: 1.5rem;
}

.endorsement-card {
  background: var(--lake-blue-light);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  border-radius: 0 4px 4px 0;
}

.endorsement-card__quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--near-black);
  margin-bottom: 1rem;
}

.endorsement-card__quote::before {
  content: "\201C";
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.endorsement-card__name {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
}

.endorsement-card__title {
  font-size: 0.8125rem;
  color: var(--lake-blue);
}

/* ============================================
   VOTE / GOTV SECTION
   ============================================ */
.vote {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.vote .section__headline,
.vote__headline {
  color: var(--white);
}

.vote__lead {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.vote__lead strong {
  color: var(--gold);
}

.vote__detail {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.vote__detail strong {
  color: var(--gold);
}

.vote__info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.vote__dates {
  display: grid;
  gap: 1rem;
}

.vote__date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.vote__date-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.vote__date-value {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--gold);
}

/* GOTV Phase: Early Voting (urgency) */
.vote.phase-early-voting {
  background: var(--gold);
  color: var(--navy-dark);
}

.vote.phase-early-voting .section__headline,
.vote.phase-early-voting .vote__headline {
  color: var(--navy-dark);
}

.vote.phase-early-voting .vote__lead strong,
.vote.phase-early-voting .vote__detail strong {
  color: var(--navy-dark);
  text-decoration: underline;
}

.vote.phase-early-voting .vote__date-value {
  color: var(--navy-dark);
}

.vote.phase-early-voting .vote__info {
  border-top-color: rgba(27, 58, 92, 0.3);
}

/* GOTV Phase: Election Day (maximum urgency) */
.vote.phase-election-day {
  background: var(--gold);
  color: var(--navy-dark);
}

.vote.phase-election-day .section__headline,
.vote.phase-election-day .vote__headline {
  color: var(--navy-dark);
  font-size: 2.25rem;
}

.vote.phase-election-day .vote__lead strong,
.vote.phase-election-day .vote__detail strong {
  color: var(--navy-dark);
}

.vote.phase-election-day .vote__date-value {
  color: var(--navy-dark);
}

.vote.phase-election-day .vote__info {
  border-top-color: rgba(27, 58, 92, 0.3);
}

/* ============================================
   DONATE SECTION
   ============================================ */
.donate {
  background: var(--white);
  text-align: center;
}

.donate__content {
  max-width: 600px;
  margin: 0 auto;
}

.donate__copy {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  color: var(--near-black);
}

.donate__cta {
  display: inline-block;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  margin-bottom: 1rem;
}

.donate__disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact {
  background: var(--lake-blue-light);
}

.contact__content {
  max-width: 600px;
  margin: 0 auto;
}

.contact__subhead {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--near-black);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--body-font);
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

.required {
  color: var(--error-red);
}

.form-optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.8125rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--near-black);
  background: var(--white);
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 160, 60, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Custom select dropdown */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--near-black);
  pointer-events: none;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
}

.contact__submit {
  margin-top: 0.5rem;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 1.0625rem;
  color: var(--near-black);
}

/* Form error */
.form-error {
  text-align: center;
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 4px;
  margin-top: 1rem;
}

.form-error a {
  color: var(--navy);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 3rem 0 2rem;
}

.footer__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer__social-link {
  color: var(--white);
  transition: color 0.2s ease;
}

.footer__social-link:hover {
  color: var(--gold);
}

.footer__website {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.footer__disclaimer {
  font-size: 0.8125rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer__copyright {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 58, 92, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
  z-index: 1000;
  gap: 0.75rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.mobile-cta__btn {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  text-align: center;
  width: auto;
  max-width: none;
}

.mobile-cta .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

.mobile-cta .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

/* ============================================
   FADE-IN ON SCROLL
   ============================================ */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE: TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section__headline {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .hero__content {
    padding: 4rem 2rem 3rem;
  }

  .hero__firstname {
    font-size: 5rem;
  }

  .hero__lastname {
    font-size: 10rem;
  }

  .hero__tagline {
    font-size: 1.5rem;
  }

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

  .pillars__grid .pillar:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
  }

  .pillar__headline {
    font-size: 1.5rem;
  }

  .about__grid {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: center;
  }

  .about__image {
    max-width: none;
  }

  .about__images {
    position: relative;
  }

  .about__text .section__headline {
    text-align: left;
  }

  .endorsements__grid {
    grid-template-columns: 1fr 1fr;
  }

  .vote__dates {
    grid-template-columns: repeat(3, 1fr);
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
  }

  /* mobile-cta already hidden by default (display:none in base) — no override needed */
}

/* ============================================
   RESPONSIVE: DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0;
  }

  .section {
    padding: 6rem 0;
  }

  .section__headline {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  body {
    font-size: 1.125rem;
  }

  /* Hero: yard sign layout on desktop */
  .hero {
    min-height: 80vh;
    align-items: center;
  }

  .hero__content {
    padding: 5rem 2rem 4rem 4rem;
    max-width: 60%;
  }

  .hero__firstname {
    font-size: 6rem;
    letter-spacing: 0.18em;
  }

  .hero__lastname {
    font-size: 13rem;
    letter-spacing: 0.05em;
  }

  .hero__name-lockup {
    margin-bottom: 1.5rem;
  }

  .hero__tagline {
    font-size: 1.75rem;
  }

  /* Pillars: three columns */
  .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .pillars__grid .pillar:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .pillar {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-radius: 0 0 4px 4px;
  }

  .pillar__headline {
    font-size: 1.75rem;
  }

  /* About: widen gap on desktop (grid-template-columns already set at 768px) */
  .about__grid {
    gap: 4rem;
  }

  /* Endorsements: three columns */
  .endorsements__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* GOTV election day larger text */
  .vote.phase-election-day .section__headline,
  .vote.phase-election-day .vote__headline {
    font-size: 3rem;
  }

  .donate__disclaimer {
    font-size: 0.875rem;
  }
}

/* ============================================
   DONATE MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--near-black);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.modal__close:hover {
  color: var(--gold);
}

.modal__title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.modal__body {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--near-black);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal__cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.modal__alt-link {
  display: block;
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: var(--navy);
  text-decoration: underline;
}

/* ============================================
   HERO RESPONSIVE — LARGE DESKTOP (1440px+)
   ============================================ */
@media (min-width: 1440px) {
  .hero__firstname {
    font-size: 7rem;
  }

  .hero__lastname {
    font-size: 15rem;
  }
}

/* ============================================
   MOBILE CTA — SHOW ONLY ON SMALL SCREENS
   ============================================ */
@media (max-width: 767px) {
  .mobile-cta {
    display: flex;
  }
}

/* ============================================
   EARLY VOTING / ELECTION DAY PULSE
   ============================================ */
@keyframes subtle-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.vote.phase-early-voting .vote__headline,
.vote.phase-election-day .vote__headline {
  animation: subtle-pulse 2.5s ease-in-out infinite;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .hero__overlay,
  .mobile-cta,
  .footer__social,
  #contact form,
  .contact__submit,
  .donate__cta,
  .skip-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }

  .hero {
    min-height: auto;
    background: none;
  }

  .hero__content {
    color: #000;
    position: static;
    padding: 1rem;
  }

  .hero__firstname,
  .hero__lastname,
  .hero__tagline {
    color: #000;
  }

  .facebook-float,
  .info-banner {
    display: none;
  }

  .section__headline {
    color: #000;
  }

  .vote {
    background: #eee;
    color: #000;
  }

  .vote .section__headline,
  .vote__headline,
  .vote__lead,
  .vote__detail {
    color: #000;
  }

  .vote__date-value {
    color: #000;
  }

  .footer {
    background: none;
    color: #000;
    border-top: 1px solid #000;
  }

  .footer__website,
  .footer__disclaimer,
  .footer__copyright,
  .footer__title {
    color: #000;
  }

  .image-placeholder {
    background: #ddd;
    color: #333;
    border-color: #999;
  }
}
