/* ================================================
   MAGNUS & MAEVE LEARNING — Shared Stylesheet
   WCAG 2.1 AA Compliant
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────── */
:root {
  /* Decorative teal — use for large UI, backgrounds, borders */
  --teal:        #2e8fa3;
  /* Text-safe teal — 6.08:1 on white, 5.59:1 on --bg. Use for all text/links */
  --teal-dark:   #1f6b7c;
  --teal-light:  #e6f4f7;
  --dark:        #1b1b2a;
  --mid:         #4a5568;
  --bg:          #f7f5f1;
  --white:       #ffffff;
  --rule:        #ddd8d0;
  --nav-bg:      #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;
  --max-w:       1120px;
  --radius:      4px;
  --transition:  0.25s ease;
}

/* ── Skip Navigation (WCAG 2.4.1) ───────────── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--teal-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-nav:focus { top: 0; }

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
a:hover { color: var(--teal); }

/* ── Global Focus Styles (WCAG 2.4.7) ───────── */
:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.site-nav :focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 3px;
}
/* Custom focus for form inputs — uses box-shadow so border layout doesn't shift */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(31, 107, 124, 0.25);
}

/* ── Typography ──────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.6rem; font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }
p { margin-bottom: 1rem; color: var(--mid); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--dark); }

/* ── Layout ──────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 3.5rem 0; }
.section--alt { background: var(--white); }
.section--rule { border-top: 1px solid var(--rule); }

/* ── Navigation ──────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-links a[aria-current="page"] {
  color: var(--teal-dark);
  font-weight: 600;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.nav-lang a {
  color: var(--light);
  text-decoration: none;
}
.nav-lang a:hover { color: var(--teal-dark); }
.nav-lang a[aria-current="true"] { color: var(--teal-dark); }
.nav-lang span { color: var(--rule); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px 4px;
  background: none;
  border: none;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mid);
  transition: var(--transition);
}

/* ── Hero ────────────────────────────────────── */
.hero {
  padding: 4.5rem 0 1rem;
  background: var(--white);
  overflow: hidden;
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  overflow: hidden;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--teal-dark); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.hero-img { float: right; width: 42%; margin: 0 0 2rem 3rem; }
.hero-img img { max-height: 400px; width: auto; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--teal-dark); color: var(--white); border-color: var(--teal-dark); }
.btn-primary:hover { background: #155869; border-color: #155869; color: var(--white); }
.btn-outline { background: transparent; color: var(--teal-dark); border-color: var(--teal-dark); }
.btn-outline:hover { background: var(--teal-dark); color: var(--white); }
.btn-white { background: var(--white); color: var(--teal-dark); border-color: var(--white); }
.btn-white:hover { background: var(--teal-light); color: var(--teal-dark); }

/* ── Services Cards ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(46, 143, 163, 0.1);
}
.service-card h3 { font-size: 1.45rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; }

/* ── Section Headers ─────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; max-width: 640px; }

/* ── CTA Banner ──────────────────────────────── */
.cta-banner {
  background: var(--dark);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
/* ── Testimonial ─────────────────────────────── */
.testimonial-section .container {
  border-top: 1px solid var(--teal-light);
  padding-top: 2rem;
}
.testimonial-quote { text-align: center; }
.testimonial-attribution { align-items: center; }
.testimonial-section .eyebrow { margin-bottom: 2rem; }
.testimonial {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-top: 2rem;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0;
  color: var(--teal-light);
  position: absolute;
  top: 2.5rem;
  left: -1rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 1.75rem;
  position: relative;
}
.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.testimonial-role {
  font-size: 0.82rem;
  color: var(--mid);
}

/* ── About Page ──────────────────────────────── */
.about-bio {
  margin-top: 2rem;
  line-height: 1.85;
  overflow: visible;
}
.about-bio p { margin-bottom: 1.25rem; }
.about-bio-img {
  float: left;
  width: 38%;
  margin: 0 2.5rem 1.5rem 0;
}
.about-bio-img img { width: 100%; height: auto; }
.about-intro {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
.about-esther-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}
.process-chart-placeholder {
  min-height: 300px;
  border: 2px dashed var(--teal-light);
  border-radius: 8px;
}
.expertise-list { list-style: none; margin-top: 1rem; }
.expertise-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.expertise-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal-dark);
  border-radius: 50%;
  flex-shrink: 0;
}
.credentials-card {
  background: var(--teal-light);
  border: 1px solid rgba(46, 143, 163, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
}
.credentials-card h4 { margin-bottom: 1.25rem; color: var(--teal-dark); }
.credentials-card ul { list-style: none; }
.credentials-card li {
  font-size: 0.9rem;
  color: var(--mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(46, 143, 163, 0.15);
  line-height: 1.4;
}
.credentials-card li:last-child { border-bottom: none; }
.credentials-card .cred-degree { font-weight: 600; color: var(--dark); display: block; }
.credentials-card .cred-school { font-size: 0.82rem; color: var(--mid); }
.pmi-badge { margin-top: 1.5rem; }
.pmi-badge img { width: 80px; }

.ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.way-card { border: 1px solid var(--rule); border-radius: var(--radius); padding: 2rem; background: var(--bg); }
.way-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.way-card ul { list-style: none; margin-top: 0.5rem; }
.way-card ul li {
  font-size: 0.95rem; color: var(--mid);
  padding: 0.3rem 0; display: flex; gap: 0.5rem;
}
.way-card ul li::before { content: '—'; color: var(--teal-dark); flex-shrink: 0; }

/* ── Services Page ───────────────────────────── */
.service-detail { padding: 3.5rem 0; border-bottom: 1px solid var(--rule); }
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.service-number {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 500;
  color: var(--teal-dark);
  border: 2px solid var(--rule);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.engagement-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.engagement-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--dark); }
.engagement-tag {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem; display: block;
}
.engagement-card p { font-size: 0.88rem; }

/* ── Contact Page ────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-group label .req {
  color: var(--teal-dark);
  margin-left: 2px;
  font-style: italic;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31, 107, 124, 0.2);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.required-note {
  font-size: 0.82rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.form-submit { width: 100%; justify-content: center; }

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: #c8c8d0;
  padding: 3rem 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.85rem; margin-bottom: 1rem; color: #c8c8d0; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer-links a {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #c8c8d0;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-meta { text-align: right; font-size: 0.82rem; line-height: 1.8; color: #c8c8d0; }
.footer-meta p { color: #c8c8d0; margin-bottom: 0; }
.footer-meta a { color: #c8c8d0; text-decoration: underline; text-underline-offset: 2px; }
.footer-meta a:hover { color: var(--white); }
.site-footer p { color: #c8c8d0; }

/* ── Utilities ───────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-2 { margin-top: 2rem; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .about-intro, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-img { display: none; }
  .about-bio-img { display: none; }
  .about-esther-grid { grid-template-columns: 1fr; }
  .services-grid, .engagement-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 0.5rem 2rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--rule); }
  .nav-links a { display: block; padding: 0.85rem 0; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* All anchor targets clear the sticky nav */
:target { scroll-margin-top: 88px; }

/* ================================================
   ACCESSIBILITY WIDGET + HIGH CONTRAST MODE
   Add this block to the bottom of style.css
   ================================================ */

/* ── Accessibility Widget ──────────────────────── */

.a11y-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.a11y-trigger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.a11y-trigger:hover {
  background: #155869;
  transform: scale(1.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.a11y-trigger:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 3px;
}

.a11y-panel {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
  min-width: 230px;
  order: -1; /* panel sits above trigger button */
}

.a11y-panel[hidden] {
  display: none;
}

.a11y-panel-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}

.a11y-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
  display: block;
}

/* Font size row */
.a11y-font-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.a11y-font-btn {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--dark);
  padding: 0.3rem 0.65rem;
  line-height: 1.2;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  font-size: 0.95rem;
}

.a11y-font-btn:hover:not(:disabled) {
  background: var(--teal-light);
  border-color: var(--teal-dark);
  color: var(--teal-dark);
}

.a11y-font-btn:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 2px;
}

.a11y-font-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.a11y-font-label {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 600;
  min-width: 56px;
}

/* Contrast toggle */
.a11y-contrast-btn {
  width: 100%;
  padding: 0.55rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  margin-bottom: 0.75rem;
}

.a11y-contrast-btn:hover {
  background: var(--teal-light);
  border-color: var(--teal-dark);
  color: var(--teal-dark);
}

.a11y-contrast-btn:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 2px;
}

.a11y-contrast-btn[aria-pressed="true"] {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.a11y-contrast-pip {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-block;
  flex-shrink: 0;
}

.a11y-contrast-btn[aria-pressed="true"] .a11y-contrast-pip {
  background: var(--white);
}

/* Reset button */
.a11y-reset {
  display: block;
  width: 100%;
  padding: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--mid);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.a11y-reset:hover { color: var(--dark); }

.a11y-reset:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 2px;
  border-radius: var(--radius);
}

/* ── High Contrast Mode ─────────────────────────
   Applied as class="high-contrast" on <html>.
   Overrides CSS custom properties site-wide.
   All text remains on var(--bg)/var(--white) backgrounds
   with ratios well above the WCAG AA 4.5:1 threshold.
   ──────────────────────────────────────────────── */

html.high-contrast {
  /* Stronger teal that still reads as teal but hits 7:1 on white */
  --teal:        #00677a;
  --teal-dark:   #004f5e;
  --teal-light:  #cce9ef;
  --dark:        #000000;
  --mid:         #111111;
  --bg:          #f0eeea;
  --white:       #ffffff;
  --rule:        #555555;
  --nav-bg:      #ffffff;
}

html.high-contrast body {
  color: #000000;
}

html.high-contrast p,
html.high-contrast .project-section-text,
html.high-contrast .project-stat-label,
html.high-contrast .cs-section p,
html.high-contrast .acc-body p,
html.high-contrast .flip-back p {
  color: #111111;
}

html.high-contrast a {
  color: var(--teal-dark);
}

html.high-contrast .service-card,
html.high-contrast .way-card,
html.high-contrast .credentials-card,
html.high-contrast .acc-item,
html.high-contrast .flip-front,
html.high-contrast .contact-form,
html.high-contrast .project-panel,
html.high-contrast .cs-gallery-item,
html.high-contrast .a11y-panel {
  border-color: #333333;
}

html.high-contrast .cta-banner {
  background: #000000;
  border-top: 3px solid #ffffff;
}

html.high-contrast .site-footer {
  background: #000000;
  border-top: 2px solid #555555;
}

html.high-contrast .a11y-trigger {
  background: var(--teal-dark);
  border-color: #ffffff;
}

html.high-contrast .testimonial::before {
  color: var(--teal-light);
}

html.high-contrast .footer-links a,
html.high-contrast .footer-meta a,
html.high-contrast .footer-meta p,
html.high-contrast .site-footer p,
html.high-contrast .footer-tagline,
html.high-contrast .footer-brand {
  color: #e0e0e0;
}

html.high-contrast .footer-links a:hover,
html.high-contrast .footer-meta a:hover {
  color: #ffffff;
}
