/* ============================================================
   UMN CONSULTING — consulting.css
   Last updated: 2026-06-16
   Scope: consulting.unmaskingneurons.com only.
   All selectors prefixed c- to prevent any bleed if this file
   is ever loaded alongside main.css.
   !important: strictly reserved for user-facing preference
   overrides (high contrast, Section 16). Never for layout.

   TABLE OF CONTENTS
   -----------------
   Section 01  — Reset & root variables
   Section 02  — Base typography & body
   Section 03  — Skip link
   Section 04  — Navigation
   Section 05  — Document drawer
   Section 06  — Hero
   Section 07  — Urgency bar
   Section 08  — Section base styles
   Section 09  — Why Now / deadline cards
   Section 10  — Services
   Section 11  — Differentiator
   Section 12  — Contact & form
   Section 13  — Footer
   Section 14  — Responsive (768px, 480px)
   Section 15  — Reduced motion
   Section 16  — High contrast mode
   Section 17  — OD font (user preference override)
   Section 18  — Dim mode (user preference override)
============================================================ */

/* ============================================================
   SECTION 01 — RESET & ROOT VARIABLES
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --c-gold:           #C49A00;
  --c-gold-dark:      #9A7800;
  --c-gold-light:     #FDF6DC;
  --c-gold-mid:       #F5E9A0;
  --c-plum-deep:      #2C1238;
  --c-plum-mid:       #4A2459;
  --c-plum-light:     #FBF6FF;
  --c-text-dark:      #1A1010;
  --c-text-mid:       #3D2B00;
  --c-text-muted:     #6B5B00;
  --c-white:          #FFFFFF;
  --c-border:         rgba(196,154,0,0.25);
  --c-nav-height:     68px;
  --c-drawer-width:   380px;
}

/* ============================================================
   SECTION 02 — BASE TYPOGRAPHY & BODY
============================================================ */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--c-nav-height);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--c-white);
  color: var(--c-text-dark);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* ============================================================
   SECTION 03 — SKIP LINK
============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--c-plum-deep);
  color: var(--c-white);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

/* ============================================================
   SECTION 04 — NAVIGATION
============================================================ */
.c-nav {
  background: var(--c-plum-deep);
  border-bottom: 2px solid var(--c-gold);
  position: sticky;
  top: 0;
  z-index: 200;
}

.c-nav-inner {
  height: var(--c-nav-height);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand — larger than placeholder, enterprise register */
.c-nav-brand {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 1;
  min-width: 0;
}

.c-brand-umn {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.01em;
}

.c-brand-divider {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  margin: 0 0.3rem;
}

.c-brand-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.01em;
}

/* Nav right cluster */
.c-nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.c-font-controls {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.c-font-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--c-white);
  border-radius: 4px;
  cursor: pointer;
  padding: 0.25rem 0.45rem;
  line-height: 1;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}
.c-font-btn:nth-child(1) { font-size: 11px; }
.c-font-btn:nth-child(2) { font-size: 14px; }
.c-font-btn:nth-child(3) { font-size: 17px; }
.c-font-btn:hover        { background: rgba(255,255,255,0.15); border-color: var(--c-white); }
.c-font-btn:focus        { outline: 2px solid var(--c-gold); outline-offset: 2px; }
.c-font-btn-active       { background: rgba(196,154,0,0.3); border-color: var(--c-gold); }

/* OD / dim / drawer buttons — fixed size, not scaled by child index rule */
#c-od-toggle,
#c-dim-toggle,
#c-drawer-toggle {
  font-size: 13px;
}

.c-nav-umn-link {
  color: var(--c-white);
  text-decoration: none;
  font-size: 0.85rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.c-nav-umn-link:hover { background: rgba(255,255,255,0.12); border-color: var(--c-white); }
.c-nav-umn-link:focus { outline: 2px solid var(--c-gold); outline-offset: 2px; }

/* Hamburger */
.c-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  width: 38px;
  height: 38px;
}
.c-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
}
.c-hamburger:focus { outline: 2px solid var(--c-gold); outline-offset: 2px; }

/* Mobile dropdown */
.c-nav-dropdown {
  display: none;
  flex-direction: column;
  background: var(--c-plum-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 2rem 1.5rem;
  gap: 0.75rem;
}
.c-nav-dropdown.c-nav-dropdown-open { display: flex; }

.c-nav-dropdown a {
  color: var(--c-white);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.c-nav-dropdown a:hover  { color: var(--c-gold); }
.c-nav-dropdown a:focus  { outline: 2px solid var(--c-gold); outline-offset: 2px; }

.c-mobile-controls {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

/* ============================================================
   SECTION 05 — DOCUMENT DRAWER
   Slides in from right. Width fixed at --c-drawer-width.
   Overlay darkens page behind it.
============================================================ */
.c-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--c-drawer-width);
  max-width: 100vw;
  height: 100dvh;
  background: var(--c-plum-deep);
  border-left: 2px solid var(--c-gold);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
.c-drawer.c-drawer-open { transform: translateX(0); }

.c-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.c-drawer-overlay.c-drawer-overlay-active {
  opacity: 1;
  pointer-events: auto;
}

.c-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.c-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(196,154,0,0.3);
  flex-shrink: 0;
}

.c-drawer-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.c-drawer-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--c-white);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.c-drawer-close:hover { background: rgba(255,255,255,0.1); border-color: var(--c-white); }
.c-drawer-close:focus { outline: 2px solid var(--c-gold); outline-offset: 2px; }

.c-drawer-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(196,154,0,0.2);
  flex-shrink: 0;
}

.c-drawer-cat {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  text-align: left;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.c-drawer-cat:hover       { background: rgba(255,255,255,0.06); color: var(--c-white); }
.c-drawer-cat:focus       { outline: 2px solid var(--c-gold); outline-offset: -2px; }
.c-drawer-cat.active      { color: var(--c-gold); background: rgba(196,154,0,0.08); border-left: 3px solid var(--c-gold); }

.c-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.c-drawer-empty {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ============================================================
   SECTION 06 — HERO
============================================================ */
.c-hero {
  background: var(--c-plum-deep);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.c-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,154,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.c-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.c-hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(196,154,0,0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}

.c-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.c-hero h1 em {
  font-style: normal;
  color: var(--c-gold);
}

.c-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.c-hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.c-btn-primary {
  background: var(--c-gold);
  color: var(--c-plum-deep);
  padding: 0.85rem 1.75rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
}
.c-btn-primary:hover { background: #dba800; transform: translateY(-1px); }
.c-btn-primary:focus { outline: 3px solid var(--c-white); outline-offset: 2px; }

.c-btn-secondary {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.c-btn-secondary:hover { color: var(--c-gold); border-color: var(--c-gold); }
.c-btn-secondary:focus { outline: 2px solid var(--c-gold); outline-offset: 3px; }

/* ============================================================
   SECTION 07 — URGENCY BAR
============================================================ */
.c-urgency-bar {
  background: var(--c-gold-light);
  border-top: 3px solid var(--c-gold);
  border-bottom: 1px solid rgba(196,154,0,0.3);
  padding: 1.1rem 2rem;
}

.c-urgency-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.c-urgency-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.c-urgency-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-gold-dark);
  line-height: 1;
}

.c-urgency-label {
  font-size: 0.82rem;
  color: var(--c-text-mid);
  max-width: 180px;
  line-height: 1.3;
}

.c-urgency-divider {
  width: 1px;
  height: 36px;
  background: rgba(196,154,0,0.35);
  flex-shrink: 0;
}

/* ============================================================
   SECTION 08 — SECTION BASE STYLES
============================================================ */
.c-section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4.5rem 0;
}

.c-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 0.75rem;
}
.c-section-eyebrow--gold { color: var(--c-gold); }

.c-section-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--c-plum-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.c-section-heading--white { color: var(--c-white); }

.c-section-lead {
  font-size: 1.05rem;
  color: #444;
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.c-section-lead--white { color: rgba(255,255,255,0.78); }

.c-body-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 860px;
}
.c-body-text--spaced { margin-bottom: 2.5rem; }

/* ============================================================
   SECTION 09 — WHY NOW / DEADLINE CARDS
============================================================ */
.c-why-now {
  background: var(--c-plum-light);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 0 2rem;
}

.c-deadline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.c-deadline-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-gold);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
}
.c-deadline-card--urgent { border-left-color: #c0392b; }

.c-deadline-sector {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 0.5rem;
}
.c-deadline-card--urgent .c-deadline-sector { color: #c0392b; }

.c-deadline-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-plum-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.c-deadline-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.c-deadline-date {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  background: var(--c-gold-light);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}
.c-deadline-date--urgent { color: #c0392b; background: #fdecea; }

/* ============================================================
   SECTION 10 — SERVICES
============================================================ */
.c-services {
  background: var(--c-white);
  padding: 0 2rem;
}

.c-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.c-service-card {
  border: 1px solid #e8e0f0;
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.c-service-card:hover {
  box-shadow: 0 4px 20px rgba(44,18,56,0.1);
  border-color: var(--c-gold);
}

.c-service-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 0.75rem;
}

.c-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-plum-deep);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.c-service-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.c-service-detail {
  font-size: 0.82rem;
  color: var(--c-gold-dark);
  font-weight: 600;
  border-top: 1px solid var(--c-border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.c-scope-note {
  padding: 1.5rem 2rem;
  background: var(--c-gold-light);
  border-left: 4px solid var(--c-gold);
  border-radius: 4px;
}
.c-scope-note p {
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.7;
}

/* ============================================================
   SECTION 11 — DIFFERENTIATOR
============================================================ */
.c-differentiator {
  background: var(--c-plum-deep);
  padding: 0 2rem;
}

.c-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.c-diff-item {
  border-left: 3px solid var(--c-gold);
  padding-left: 1.25rem;
}

.c-diff-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 0.4rem;
}

.c-diff-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* ============================================================
   SECTION 12 — CONTACT & FORM
============================================================ */
.c-contact {
  background: var(--c-plum-light);
  border-top: 1px solid var(--c-border);
  padding: 0 2rem;
}

.c-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.c-contact-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.c-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-gold-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 1px;
}
.c-contact-email:hover { color: var(--c-plum-deep); }
.c-contact-email:focus { outline: 2px solid var(--c-gold); outline-offset: 3px; }

.c-contact-form-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 2rem;
}

.c-contact-form-wrap h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-plum-deep);
  margin-bottom: 1.5rem;
}

.c-form-group { margin-bottom: 1.1rem; }

.c-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-plum-deep);
  margin-bottom: 0.35rem;
}

.c-form-group input,
.c-form-group select,
.c-form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--c-text-dark);
  background: var(--c-white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.c-form-group input:focus,
.c-form-group select:focus,
.c-form-group textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(196,154,0,0.18);
}

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

.c-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.c-form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--c-gold);
  color: var(--c-plum-deep);
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  margin-top: 0.5rem;
}
.c-form-submit:hover { background: #dba800; }
.c-form-submit:focus { outline: 3px solid var(--c-plum-deep); outline-offset: 2px; }

.c-form-note {
  font-size: 0.78rem;
  color: #777;
  margin-top: 0.75rem;
  text-align: center;
}

.c-form-status {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.c-form-status--success { background: #e6f4ea; color: #1a5c1a; border: 1px solid #a8d5a8; display: block; }
.c-form-status--error   { background: #fdecea; color: #8b1a1a; border: 1px solid #e8a8a8; display: block; }

/* ============================================================
   SECTION 13 — FOOTER
============================================================ */
.c-footer {
  background: var(--c-plum-deep);
  border-top: 2px solid var(--c-gold);
  padding: 2rem;
  margin-top: auto;
}

.c-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.c-footer-brand {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.c-footer-left p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.c-footer-left a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.c-footer-left a:hover { color: var(--c-gold); }

.c-footer-right a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.c-footer-right a:hover { color: var(--c-gold); }

/* ============================================================
   SECTION 14 — RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .c-nav-inner          { padding: 0 1rem; }
  .c-nav-umn-link       { display: none; }
  .c-hamburger          { display: flex; }
  .c-font-controls      { gap: 0.15rem; }
  .c-hero               { padding: 3.5rem 1.25rem 3rem; }
  .c-section-inner      { padding: 3rem 0; }
  .c-why-now,
  .c-services,
  .c-differentiator,
  .c-contact            { padding: 0 1.25rem; }
  .c-contact-layout     { grid-template-columns: 1fr; gap: 2rem; }
  .c-form-row           { grid-template-columns: 1fr; }
  .c-urgency-inner      { gap: 1rem; }
  .c-urgency-divider    { display: none; }
  .c-footer-inner       { flex-direction: column; align-items: flex-start; }
  .c-drawer             { width: 100vw; }
}

@media (max-width: 480px) {
  .c-hero-cta-group     { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SECTION 15 — REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
  html { scroll-behavior: auto; }
  .c-drawer { transition: none !important; }
}

/* ============================================================
   SECTION 16 — HIGH CONTRAST MODE
   !important valid here — user-facing preference override only.
============================================================ */
html.c-high-contrast body                      { background: #000 !important; color: #fff !important; }
html.c-high-contrast .c-hero,
html.c-high-contrast .c-footer,
html.c-high-contrast .c-nav                    { background: #000 !important; border-color: #fff !important; }
html.c-high-contrast .c-why-now,
html.c-high-contrast .c-contact                { background: #111 !important; }
html.c-high-contrast .c-deadline-card,
html.c-high-contrast .c-service-card,
html.c-high-contrast .c-contact-form-wrap      { background: #111 !important; border-color: #fff !important; color: #fff !important; }
html.c-high-contrast .c-section-heading,
html.c-high-contrast .c-service-card h3,
html.c-high-contrast .c-deadline-card h3       { color: #fff !important; }
html.c-high-contrast .c-section-lead,
html.c-high-contrast .c-service-card p,
html.c-high-contrast .c-deadline-card p        { color: #ddd !important; }
html.c-high-contrast .c-btn-primary            { background: #fff !important; color: #000 !important; }
html.c-high-contrast .c-form-group input,
html.c-high-contrast .c-form-group select,
html.c-high-contrast .c-form-group textarea    { background: #111 !important; color: #fff !important; border-color: #fff !important; }
html.c-high-contrast .c-form-group label       { color: #fff !important; }
html.c-high-contrast .c-form-submit            { background: #fff !important; color: #000 !important; }
html.c-high-contrast .c-drawer                 { background: #000 !important; }

/* ============================================================
   SECTION 17 — OD FONT
   !important valid — user-facing preference override only.
============================================================ */
@font-face {
  font-family: "OpenDyslexic";
  src: url("/fonts/OpenDyslexic-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body.c-od-active,
body.c-od-active input,
body.c-od-active select,
body.c-od-active textarea,
body.c-od-active button {
  font-family: "OpenDyslexic", sans-serif !important;
}

/* ============================================================
   SECTION 18 — DIM MODE
   !important valid — user-facing preference override only.
============================================================ */
body.c-dim-active main {
  filter: brightness(0.88) sepia(0.08) !important;
  transition: filter 0.3s ease;
}
