/* Lending Hands Healthcare — site styles
   Palette: navy #1B3A57 · orange #F7941D (logo) · cream #FAF7F2 · blue-gray #5E7C8F · charcoal #33373D */

:root {
  --navy: #087FBD;
  --navy-dark: #045985;
  --orange: #F89932;
  --orange-dark: #D67A1A;
  --cream: #FAF7F2;
  --bluegray: #5E7C8F;
  --charcoal: #33373D;
  --line: #E5DFD5;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(8, 127, 189, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem; /* 18px base — senior-friendly */
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: Merriweather, Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--navy); }
a:hover { color: var(--orange-dark); }

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--navy-dark);
  padding: 0.6rem 1rem;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-link img { width: 230px; height: auto; }

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
}

.site-nav a:hover { background: var(--navy-dark); color: var(--white); }

.site-nav a[aria-current="page"] {
  background: var(--orange);
  color: var(--navy-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--white);
  border-radius: 6px;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2C5878 70%, var(--bluegray) 100%);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 1.25rem;
}

.hero h1 { color: var(--white); margin-bottom: 0.4em; }

.hero p {
  max-width: 640px;
  margin: 0 auto 1.5em;
  font-size: 1.2rem;
}

.hero--page { padding: 3rem 1.25rem; }
.hero--page p { margin-bottom: 0; }

/* Hero with a photo background: navy overlay keeps white text readable (AA) */
.hero--photo {
  background-image:
    linear-gradient(rgba(20, 44, 66, 0.38), rgba(20, 44, 66, 0.38)),
    url("../assets/hero-home.jpg");
  background-size: cover;
  background-position: center 30%;
}

.hero--about {
  background-image:
    linear-gradient(rgba(20, 44, 66, 0.38), rgba(20, 44, 66, 0.38)),
    url("../assets/about-team.jpg");
  background-position: center 28%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero--personal-care {
  background-image:
    linear-gradient(rgba(20, 44, 66, 0.38), rgba(20, 44, 66, 0.38)),
    url("../assets/personal-care-hero.jpg");
  background-position: center 20%;
  padding: 4rem 1.25rem;
  min-height: 450px;
}

.hero--housekeeping {
  background-image:
    linear-gradient(rgba(20, 44, 66, 0.38), rgba(20, 44, 66, 0.38)),
    url("../assets/housekeeping-hero.jpg");
  background-position: center 20%;
  padding: 4rem 1.25rem;
  min-height: 450px;
}

.hero-centered {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-centered h2 {
  color: var(--white);
}

.hero-centered p {
  color: var(--white);
}

/* Keep white text readable now that photo overlays are lighter */
.hero--photo h1, .hero--photo p,
.hero-centered h2, .hero-centered p,
.card--photo .card-photo-overlay h3 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.btn:hover { background: #FFA63B; color: var(--navy-dark); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.hero .btn + .btn { margin-left: 0.75rem; }

/* ---------- Sections ---------- */

.section { padding: 3.5rem 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy a { color: #FFD9A8; }

.section-intro {
  max-width: 680px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-intro h2 { margin-bottom: 0.4em; }
.section-intro p { margin-bottom: 0; }

/* ---------- Cards & grids ---------- */

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.card h3 { margin-top: 0; }

.card--accent { border-top: 4px solid var(--orange); }

.card--photo {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-photo-overlay {
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 2.5rem 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card--photo-1 .card-photo-overlay {
  background-image:
    linear-gradient(rgba(20, 44, 66, 0.38), rgba(20, 44, 66, 0.38)),
    url("../assets/we-hire-family-members.jpg");
}

.card--photo-2 .card-photo-overlay {
  background-image:
    linear-gradient(rgba(20, 44, 66, 0.38), rgba(20, 44, 66, 0.38)),
    url("../assets/insurance-made-easy.jpg");
}

.card--photo-3 .card-photo-overlay {
  background-image:
    linear-gradient(rgba(20, 44, 66, 0.38), rgba(20, 44, 66, 0.38)),
    url("../assets/personal-care-services.jpg");
}

.card--photo .card-photo-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5em;
  margin-top: 0;
}

.card--photo .card-photo-overlay p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1rem;
}

.card-content {
  background: var(--white);
  padding: 1.75rem;
  border-top: 4px solid var(--orange);
}

.card ul { padding-left: 1.2rem; margin: 0; }
.card li { margin-bottom: 0.4rem; }

.card .btn { margin-top: 1.25rem; }

/* Service item rows */

.service-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-item + .service-item { margin-top: 1.75rem; }

.service-item .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--orange);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.service-item h3 { margin-bottom: 0.25em; }
.service-item p { margin-bottom: 0; }

/* Steps (How It Works) */

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.75rem 4.25rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-dark);
  font-family: Merriweather, Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps h3 { margin-bottom: 0.25em; }

/* Testimonials */

.quote {
  background: var(--white);
  border-left: 5px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  padding: 1.5rem 1.75rem;
  margin: 0 0 1.5rem;
}

.quote p { font-size: 1.15rem; font-style: italic; }

.quote footer { font-weight: 700; color: var(--bluegray); font-style: normal; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-field { margin-bottom: 1.1rem; }

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1.5px solid var(--bluegray);
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(247, 148, 29, 0.45);
  border-color: var(--orange-dark);
}

.form-note { font-size: 0.95rem; color: var(--bluegray); }

/* ---------- Photo slots ----------
   Capped heights keep pages short — images are accents, not walls.
   One image per section at most. */

.photo-banner {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 1.5rem;
}

.photo-side {
  float: right;
  width: 42%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 0 1rem 1.5rem;
}

.photo-card {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .photo-side { float: none; width: 100%; margin: 0 0 1rem; }
}

/* ---------- Blog ---------- */

.post-card { display: flex; flex-direction: column; }

.post-card .post-meta { margin-bottom: 0.5rem; }

.post-meta {
  color: var(--bluegray);
  font-size: 0.95rem;
}

.post-card h3 a { text-decoration: none; }
.post-card h3 a:hover { text-decoration: underline; }

.post-card .read-more { margin-top: auto; font-weight: 700; }

article.post { max-width: 760px; margin: 0 auto; }

article.post h2 { margin-top: 1.5em; }

article.post ul, article.post ol { margin-bottom: 1em; }
article.post li { margin-bottom: 0.4rem; }

/* ---------- Callout / CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 3rem 1.25rem;
}

.cta-band h2 { color: var(--white); }

.cta-band p { max-width: 600px; margin: 0 auto 1.5em; }

.cta-band .btn { display: inline-block; margin: 0.5rem; }

.callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout p:last-child { margin-bottom: 0; }
.callout > :first-child { margin-top: 0; }
.callout--center { max-width: 820px; margin-left: auto; margin-right: auto; }

/* ---------- Service Areas Box ---------- */

.service-areas-box {
  margin-top: 0;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-areas-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.service-areas-info {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem;
}

.service-areas-info h4 {
  color: var(--white);
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.service-areas-info p {
  margin-bottom: 0;
  color: var(--white);
  font-size: 1rem;
}

/* ---------- Tables ---------- */

table { border-collapse: collapse; width: 100%; margin-bottom: 1.5rem; }

th, td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

th { background: var(--cream); color: var(--navy); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: #D8E0E8;
  padding: 3rem 0 1.5rem;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }

.site-footer li { margin-bottom: 0.45rem; }

.site-footer a { color: #D8E0E8; text-decoration: none; }
.site-footer a:hover { color: var(--orange); text-decoration: underline; }

.footer-brand img { width: 150px; margin-bottom: 0.75rem; }

.footer-contact {
  text-align: center;
  margin-bottom: 1rem;
}
.footer-office { margin: 0 0 0.5rem; }
.footer-office strong { color: var(--white); }
.footer-email {
  text-align: center;
  margin: 0 0 1.5rem;
}
.footer-email strong { color: var(--white); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.95rem;
}

.footer-legal a { color: #D8E0E8; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  h1 { font-size: 2rem; }

  .section { padding: 2rem 0; }

  .grid--3, .grid--2 { grid-template-columns: 1fr; }

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

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 0.5rem 1.25rem 1rem;
  }

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

  .site-nav ul { flex-direction: column; }

  .site-nav a { font-size: 1.1rem; padding: 0.75rem 0.5rem; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero .btn + .btn { margin-left: 0; margin-top: 0.75rem; }
}

/* ---- Form confirmation toast ---- */
.toast {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translate(-50%, -160%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 90vw;
  width: 460px;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  border-left: 6px solid var(--navy);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.toast--success { border-left-color: #2e7d32; }
.toast--error   { border-left-color: #c0392b; }

.toast-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
}
.toast--success .toast-icon { background: #2e7d32; }
.toast--error   .toast-icon { background: #c0392b; }

.toast-message {
  margin: 0;
  flex: 1 1 auto;
  font-size: 1rem;
  line-height: 1.45;
}
.toast-close {
  flex: 0 0 auto;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--bluegray);
  cursor: pointer;
  padding: 0 0.15rem;
}
.toast-close:hover { color: var(--charcoal); }

@media (prefers-reduced-motion: reduce) {
  .toast { transition: opacity 0.2s ease; }
}

/* ---- Floating quick-contact widget ---- */
.lh-widget { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1100; }
.lh-widget-launcher {
  width: 60px; height: 60px; border-radius: 50%; border: none;
  background: var(--navy); color: #fff; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lh-widget-launcher:hover { background: var(--navy-dark); transform: scale(1.06); }
.lh-widget-panel {
  position: absolute; right: 0; bottom: 74px; width: 320px;
  max-width: calc(100vw - 2.5rem);
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  animation: lh-widget-pop 0.18s ease;
}
@keyframes lh-widget-pop { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.lh-widget-header { background: var(--navy); color: #fff; padding: 1rem 1.15rem 0.9rem; position: relative; }
.lh-widget-header strong { display: block; font-size: 1.15rem; }
.lh-widget-header span { font-size: 0.95rem; opacity: 0.9; }
.lh-widget-close {
  position: absolute; top: 0.5rem; right: 0.7rem; background: none; border: none;
  color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; opacity: 0.85;
}
.lh-widget-close:hover { opacity: 1; }
.lh-widget-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.lh-widget-btn {
  display: block; width: 100%; text-align: left; padding: 0.7rem 0.9rem;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  color: var(--navy); font-size: 1rem; font-weight: 600; cursor: pointer;
  text-decoration: none; font-family: inherit;
}
.lh-widget-btn:hover { background: var(--cream); border-color: var(--orange); text-decoration: none; }
.lh-widget-form { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.2rem; }
.lh-widget-form input, .lh-widget-form textarea {
  width: 100%; padding: 0.55rem 0.7rem; border: 1px solid var(--line);
  border-radius: 6px; font: inherit; font-size: 1rem;
}
.lh-widget-form .btn { width: 100%; }
@media (max-width: 420px) {
  .lh-widget { right: 0.85rem; bottom: 0.85rem; }
  .lh-widget-panel { width: calc(100vw - 1.7rem); }
}

/* ---- Accessibility widget UI ---- */
.a11y-widget { position: fixed; left: 1.25rem; bottom: 1.25rem; z-index: 1100; }
.a11y-launcher {
  width: 56px; height: 56px; border-radius: 50%; border: none;
  background: var(--navy); color: #fff; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.a11y-launcher:hover { background: var(--navy-dark); transform: scale(1.06); }
.a11y-panel {
  position: absolute; left: 0; bottom: 70px; width: 300px; max-width: calc(100vw - 2.5rem);
  max-height: 70vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  padding-bottom: 0.9rem;
}
.a11y-header {
  background: var(--navy); color: #fff; padding: 0.85rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0;
}
.a11y-header strong { font-size: 1.1rem; }
.a11y-close { background: none; border: none; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; padding: 0.9rem; }
.a11y-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  padding: 0.8rem 0.5rem; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--charcoal); font: inherit; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; text-align: center;
}
.a11y-item:hover { border-color: var(--orange); background: var(--cream); }
.a11y-item.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.a11y-ic { font-size: 1.3rem; line-height: 1; }
.a11y-reset {
  display: block; width: calc(100% - 1.8rem); margin: 0 0.9rem;
  padding: 0.7rem; border: none; border-radius: 8px;
  background: var(--orange); color: var(--navy-dark); font: inherit; font-weight: 700; cursor: pointer;
}
.a11y-reset:hover { background: #FFA63B; }
@media (max-width: 420px) {
  .a11y-widget { left: 0.85rem; bottom: 0.85rem; }
  .a11y-panel { width: calc(100vw - 1.7rem); }
}

/* ---- Accessibility effect modes (applied to <html>) ---- */
html.a11y-links a { text-decoration: underline !important; outline: 2px solid var(--orange); outline-offset: 2px; }
html.a11y-font, html.a11y-font body, html.a11y-font h1, html.a11y-font h2, html.a11y-font h3, html.a11y-font h4,
html.a11y-font p, html.a11y-font a, html.a11y-font li, html.a11y-font span, html.a11y-font label,
html.a11y-font input, html.a11y-font textarea, html.a11y-font button {
  font-family: Verdana, Tahoma, Arial, sans-serif !important; letter-spacing: 0.02em !important;
}
html.a11y-spacing p, html.a11y-spacing li {
  line-height: 2 !important; letter-spacing: 0.04em !important; word-spacing: 0.1em !important; margin-bottom: 1.4em !important;
}
html.a11y-motion *, html.a11y-motion *::before, html.a11y-motion *::after {
  animation: none !important; transition: none !important; scroll-behavior: auto !important;
}
html.a11y-cursor, html.a11y-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'%3E%3Cpath d='M5.5 3.2v17.6l4.8-4.8 2.8 6.1 2.6-1.2-2.8-6h6.8z' fill='%23000' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E") 4 2, auto !important;
}

/* High contrast (black background, white text, yellow links) */
html.a11y-contrast body { background: #000 !important; color: #fff !important; }
html.a11y-contrast .site-header, html.a11y-contrast .site-footer, html.a11y-contrast .hero,
html.a11y-contrast .section, html.a11y-contrast .section--navy, html.a11y-contrast .section--cream,
html.a11y-contrast .card, html.a11y-contrast .card-content, html.a11y-contrast .form-card,
html.a11y-contrast .callout, html.a11y-contrast .a11y-panel, html.a11y-contrast .lh-widget-panel { background: #000 !important; }
html.a11y-contrast h1, html.a11y-contrast h2, html.a11y-contrast h3, html.a11y-contrast h4,
html.a11y-contrast p, html.a11y-contrast li, html.a11y-contrast span, html.a11y-contrast strong,
html.a11y-contrast label, html.a11y-contrast h4 { color: #fff !important; }
html.a11y-contrast a { color: #ffff00 !important; }
html.a11y-contrast .btn, html.a11y-contrast .a11y-reset { background: #ffff00 !important; color: #000 !important; }
html.a11y-contrast .a11y-item { background: #000 !important; color: #fff !important; border-color: #fff !important; }
html.a11y-contrast .a11y-item.is-active { background: #ffff00 !important; color: #000 !important; }
html.a11y-contrast input, html.a11y-contrast textarea { background: #000 !important; color: #fff !important; border-color: #fff !important; }
html.a11y-contrast img { filter: grayscale(1) contrast(1.15); }
