/* ============================================================
   Laura Crouse Speech & Language — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary:        #3A7D6C;
  --primary-dark:   #2C6055;
  --primary-light:  #EAF3F0;
  --accent:         #E07A6E;
  --accent-dark:    #C7655A;
  --text:           #1E2D28;
  --text-secondary: #5A6B63;
  --bg:             #FAFAF8;
  --bg-alt:         #F0F5F2;
  --white:          #FFFFFF;
  --border:         #D2E4DC;
  --shadow:         0 2px 16px rgba(58,125,108,0.10);
  --shadow-lg:      0 8px 40px rgba(58,125,108,0.13);
  --radius:         12px;
  --radius-lg:      20px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-secondary); margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.text-center { text-align: center; }
.tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-header { margin-bottom: 3rem; }
.section-header p { font-size: 1.05rem; max-width: 640px; }
.section-header.text-center p { margin: 0 auto; }
.divider {
  width: 56px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1rem 0 1.25rem;
}
.divider.center { margin: 1rem auto 1.25rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,122,110,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: .95rem 2.25rem; font-size: 1rem; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,250,248,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}
.nav-logo span { display: block; font-size: .72rem; font-family: 'Inter', sans-serif; font-weight: 500; color: var(--text-secondary); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-dark); }
.nav-cta { margin-left: .5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ── Footer ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: .75rem; display: block; }
.footer-brand .nav-logo span { color: rgba(255,255,255,.55); }
.footer-brand p { font-size: .9rem; line-height: 1.6; }
footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
footer ul li { margin-bottom: .5rem; }
footer ul li a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color .2s; }
footer ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #4A9B8A 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 340px; height: 340px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.hero-card .avatar {
  width: 100px; height: 100px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.hero-card h3 { color: var(--white); text-align: center; margin-bottom: .25rem; font-size: 1.3rem; }
.hero-card .subtitle { text-align: center; color: rgba(255,255,255,.8); font-size: .88rem; margin-bottom: 1.25rem; }
.credential-badge {
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}
.credential-badge:last-child { margin-bottom: 0; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -50px;
  position: relative;
  z-index: 5;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.stat-label { font-size: .8rem; color: var(--text-secondary); font-weight: 500; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ── Credential Pills ── */
.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .75rem; }
.pill {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .82rem;
  font-weight: 600;
}
.pill-accent {
  background: #FDF0EE;
  color: var(--accent-dark);
}

/* ── Timeline ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.38rem; top: 6px;
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item h4 { margin-bottom: .15rem; }
.timeline-item .meta { font-size: .82rem; color: var(--primary); font-weight: 600; margin-bottom: .25rem; }
.timeline-item p { font-size: .9rem; }

/* ── FAQ Accordion ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text);
  transition: background .2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  gap: 1rem;
}
.faq-question:hover { background: var(--primary-light); }
.faq-question.open { background: var(--primary-light); color: var(--primary-dark); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; }
.faq-answer p { font-size: .94rem; }
.faq-answer.open { display: block; }

/* ── Form ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58,125,108,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #C86558 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { font-size: 1.05rem; margin-bottom: 2rem; }

/* ── Language badges ── */
.lang-grid { display: flex; flex-wrap: wrap; gap: .75rem; }
.lang-badge {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
}
.lang-flag { font-size: 1.4rem; }
.lang-level { font-size: .75rem; font-weight: 500; color: var(--text-secondary); display: block; }

/* ── Service detail rows (services page) ── */
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ── Two-column content grid ── */
.grid-content-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── About page bio grid (sidebar + main) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: start;
}

/* ── Consultation page form grid ── */
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 400px; margin: 0 auto; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .grid-content-2 { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row .card { max-width: 100%; }
  .grid-content-2 { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .consultation-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-inner { gap: 2rem; }
  .stats-bar { margin-top: -30px; }
  .form-card { padding: 1.75rem; }
}

@media (max-width: 680px) {
  .section { padding: 50px 0; }
  .page-hero { padding: 50px 0 40px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .5rem 0; font-size: 1rem; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 1.5rem 1rem; margin-top: -20px; }
  .stat-num { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; width: 100%; }
  .hero { padding: 70px 0 50px; }
  .hero-card { padding: 1.5rem; }
  .hero-card .avatar { width: 80px; height: 80px; }
  .cta-banner { padding: 50px 0; }
  h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .section-header { margin-bottom: 2rem; }
  .pill-list { gap: .4rem; }
  .pill { font-size: .78rem; padding: .25rem .7rem; }
}

/* ── Accessibility Menu ── */
.a11y-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  border: 3px solid var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: background .2s, transform .15s, box-shadow .2s;
  line-height: 1;
}
.a11y-btn:hover { background: var(--primary-light); transform: scale(1.07); box-shadow: 0 6px 24px rgba(0,0,0,0.28); }
.a11y-btn:focus { outline: 3px solid var(--accent); outline-offset: 3px; }

.a11y-panel {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  width: 260px;
  display: none;
  flex-direction: column;
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.a11y-panel.open { display: flex; }

.a11y-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.1rem .85rem;
  border-bottom: 1.5px solid var(--border);
  background: var(--bg);
}
.a11y-header span {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .01em;
}
.a11y-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1;
  padding: 0 .2rem;
  font-family: inherit;
  transition: color .15s;
}
.a11y-close:hover { color: var(--text); }

.a11y-body {
  display: flex;
  flex-direction: column;
  padding: .6rem 0;
}

.a11y-size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 1.1rem;
  gap: .75rem;
}
.a11y-size-row > span {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  flex-shrink: 0;
}
.a11y-size-btns {
  display: flex;
  gap: .3rem;
}
.a11y-size-btns button {
  width: 36px;
  height: 30px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  transition: background .15s, border-color .15s, color .15s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a11y-size-btns button:hover { background: var(--primary-light); border-color: var(--primary); }
.a11y-size-btns button.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
#a11ySmall  { font-size: .72rem; }
#a11yNormal { font-size: .85rem; }
#a11yLarge  { font-size: 1rem; }

.a11y-divider {
  height: 1px;
  background: var(--border);
  margin: .25rem 0;
}

.a11y-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1.1rem;
  cursor: pointer;
  transition: background .12s;
  user-select: none;
}
.a11y-toggle-row:hover { background: var(--primary-light); }
.a11y-toggle-row span:first-child {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
}
.a11y-status {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: .15rem .55rem;
  min-width: 30px;
  text-align: center;
  transition: all .15s;
}
.a11y-toggle-row.active .a11y-status {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.a11y-reset {
  margin: .5rem .9rem .7rem;
  padding: .5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: .82rem;
  color: var(--text-secondary);
  transition: color .15s, border-color .15s;
  font-family: inherit;
  width: calc(100% - 1.8rem);
  text-align: center;
}
.a11y-reset:hover { color: var(--accent); border-color: var(--accent); }

/* ── Accessibility state classes ── */
html.a11y-large  { font-size: 112%; }
html.a11y-xlarge { font-size: 125%; }

html.a11y-contrast {
  --bg: #000;
  --white: #000;
  --text: #fff;
  --text-secondary: #ffe066;
  --primary: #4fffb0;
  --primary-dark: #4fffb0;
  --primary-light: #003322;
  --border: #555;
}
html.a11y-contrast .nav { background: #000; border-bottom-color: #4fffb0; }
html.a11y-contrast .btn-primary { background: #4fffb0; color: #000; }
html.a11y-contrast .btn-outline { border-color: #4fffb0; color: #4fffb0; }
html.a11y-contrast footer { background: #111; }
html.a11y-contrast .card { background: #111; border: 1px solid #4fffb0; }
html.a11y-contrast .page-hero { background: #001a11; }
html.a11y-contrast .cta-banner { background: #002211; }
html.a11y-contrast .stats-bar { background: #111; }
html.a11y-contrast .hero { background: #000; }
html.a11y-contrast .a11y-panel { background: #111; border-color: #4fffb0; }
html.a11y-contrast .a11y-header { background: #000; border-color: #555; }

html.a11y-dyslexia,
html.a11y-dyslexia body {
  font-family: "OpenDyslexic", "Comic Sans MS", "Trebuchet MS", cursive !important;
  letter-spacing: .05em;
  word-spacing: .12em;
  line-height: 1.75;
}
html.a11y-dyslexia h1,
html.a11y-dyslexia h2,
html.a11y-dyslexia h3,
html.a11y-dyslexia h4 {
  font-family: "OpenDyslexic", "Comic Sans MS", "Trebuchet MS", cursive !important;
  letter-spacing: .03em;
  word-spacing: .1em;
}

html.a11y-pause *,
html.a11y-pause *::before,
html.a11y-pause *::after {
  animation-play-state: paused !important;
  transition-duration: 0s !important;
}

html.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  outline: 2px solid var(--accent) !important;
  outline-offset: 1px;
  border-radius: 2px;
}

html.a11y-cursor,
html.a11y-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M10 5 L10 35 L17 27 L22 38 L26 36 L21 25 L31 25 Z' fill='%23000' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E") 10 5, auto !important;
}
