/* ============================================================
   Eythos Foundation — Shared Stylesheet
   Design system tokens + shared components
   ============================================================ */

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

/* ── Tokens ── */
:root {
  --red-900:   #5C0F0F;
  --red-700:   #8B1D1D;
  --red-500:   #C84B31;
  --flame-500: #E85D04;
  --flame-300: #F48C06;

  --ink-900:   #111111;
  --ink-800:   #1A1A1A;
  --ink-600:   #4A4A4A;
  --ink-500:   #717171;
  --ink-200:   #E6E6E6;
  --ink-50:    #FAFAFA;
  --white:     #FFFFFF;

  --grad-brand:  linear-gradient(135deg, var(--red-700) 0%, var(--red-500) 100%);
  --grad-deep:   linear-gradient(135deg, var(--red-900) 0%, var(--red-700) 50%, var(--red-500) 100%);
  --grad-text:   linear-gradient(135deg, var(--red-900) 0%, var(--red-700) 45%, var(--red-500) 100%);

  --shadow-sm:   0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 20px rgba(0,0,0,.05);
  --shadow-lg:   0 8px 30px rgba(0,0,0,.10);
  --shadow-brand:    0 4px 20px rgba(139,29,29,.30);
  --shadow-brand-lg: 0 6px 30px rgba(139,29,29,.40);

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 200ms;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--red-700); }

/* ── Layout ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 800px;  margin: 0 auto; padding: 0 2rem; }
section       { padding: 6rem 2rem; }
section.alt   { background: var(--ink-50); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { line-height: 1.15; letter-spacing: -0.02em; text-wrap: balance; font-weight: 700; color: var(--ink-800); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red-500);
  margin-bottom: .75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-top: .5rem; }
.section-header .lead {
  font-size: 1.125rem;
  color: var(--ink-600);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-brand-lg); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--red-700);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--red-700); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  padding: 0 2rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 var(--ink-200);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  color: var(--ink-800);
  flex-shrink: 0;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-name {
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-600);
  font-weight: 500;
  font-size: .9375rem;
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover { color: var(--red-500); background: rgba(139,29,29,.05); }
.nav-links a.active { color: var(--red-700); font-weight: 600; }
.nav-links .nav-cta {
  margin-left: .5rem;
  padding: .5rem 1.25rem;
  background: var(--grad-brand);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.nav-links .nav-cta:hover { opacity: .9; background: var(--grad-brand); color: var(--white); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--ink-200);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  flex-direction: column;
  gap: .25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  color: var(--ink-600);
  font-weight: 500;
  font-size: 1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  transition: color var(--dur), background var(--dur);
}
.nav-mobile a:hover { color: var(--red-700); background: var(--ink-50); }
.nav-mobile a.active { color: var(--red-700); font-weight: 600; }
.nav-mobile .mobile-cta {
  margin-top: .75rem;
  background: var(--grad-brand);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-pill);
}

/* ── Page header ── */
.page-header {
  padding: 9rem 2rem 5rem;
  text-align: center;
}
.page-header.brand-fill {
  background: var(--grad-brand);
  color: var(--white);
}
.page-header.brand-fill .eyebrow { color: rgba(255,255,255,.75); }
.page-header.brand-fill h1 { color: var(--white); }
.page-header.brand-fill p { color: rgba(255,255,255,.9); }
.page-header.light-fill {
  background: linear-gradient(180deg, var(--white) 0%, var(--ink-50) 100%);
}
.page-header h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); margin-top: .5rem; }
.page-header p { font-size: 1.25rem; max-width: 680px; margin: 1rem auto 0; color: var(--ink-600); }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 48px; height: 48px;
  background: var(--grad-brand);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.card h3 { font-size: 1.2rem; margin-bottom: .625rem; }
.card p  { color: var(--ink-600); line-height: 1.7; font-size: .9375rem; }

/* ── Mission / program grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--ink-50);
  border-radius: var(--radius-lg);
}
.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .8125rem; color: var(--ink-500); font-weight: 500; margin-top: .375rem; text-transform: uppercase; letter-spacing: .06em; }

/* ── CTA section ── */
.cta-section {
  background: var(--grad-brand);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
}
.cta-section .eyebrow { color: rgba(255,255,255,.75); }
.cta-section h2 { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--white); margin-top: .5rem; }
.cta-section p { font-size: 1.125rem; color: rgba(255,255,255,.9); max-width: 580px; margin: 1rem auto 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Value cards ── */
.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--ink-200);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--flame-500); }
.value-card h4 { font-size: 1.125rem; color: var(--red-700); margin-bottom: .5rem; }
.value-card p  { font-size: .9375rem; color: var(--ink-600); line-height: 1.7; }

/* ── Mission statement block ── */
.mission-statement {
  background: var(--grad-deep);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
}
.mission-statement p { font-size: clamp(1.25rem, 2.5vw, 1.625rem); font-weight: 500; line-height: 1.5; text-wrap: balance; }

/* ── Legal info block ── */
.legal-block {
  background: var(--ink-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--red-500);
}
.legal-block dl { display: grid; grid-template-columns: auto 1fr; gap: .625rem 2rem; }
.legal-block dt { font-weight: 600; color: var(--ink-800); font-size: .9375rem; }
.legal-block dd { color: var(--ink-600); font-size: .9375rem; }

/* ── Partner / reason cards ── */
.reason-card {
  background: var(--ink-50);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red-500);
}
.reason-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: .375rem; color: var(--ink-800); }
.reason-card p  { font-size: .9rem; color: var(--ink-600); line-height: 1.6; margin: 0; }

/* ── Skills grid ── */
.skill-box {
  background: var(--ink-50);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}
.skill-box h4 { font-size: 1rem; font-weight: 600; color: var(--red-700); margin-bottom: .75rem; }
.skill-box ul { list-style: none; padding: 0; }
.skill-box li { font-size: .9rem; color: var(--ink-600); padding: .3rem 0 .3rem 1.25rem; position: relative; }
.skill-box li::before { content: '·'; position: absolute; left: .25rem; color: var(--red-500); font-weight: 700; font-size: 1.2rem; line-height: 1.1; }

/* ── Donate box ── */
.donate-box {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.donate-box h3 { font-size: 1.75rem; margin-bottom: .75rem; }
.donate-box p { color: var(--ink-600); margin-bottom: 1.5rem; line-height: 1.7; }
.tax-note { background: var(--ink-50); padding: 1rem 1.25rem; border-radius: var(--radius-md); font-size: .875rem; color: var(--ink-500); margin: 1.5rem 0; }

/* ── Services modal ── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--ink-50);
  border: none;
  border-radius: var(--radius-pill);
  width: 36px; height: 36px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-600);
  font-size: 1.25rem;
  transition: background var(--dur);
}
.modal-close:hover { background: var(--ink-200); }
.modal-eyebrow { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--red-500); margin-bottom: .5rem; }
.modal h2 { font-size: 1.625rem; margin-bottom: 1rem; }
.modal-tagline { font-size: 1.0625rem; color: var(--ink-600); line-height: 1.7; margin-bottom: 2rem; border-bottom: 1px solid var(--ink-200); padding-bottom: 1.5rem; }
.modal h3 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red-700); margin-bottom: .875rem; }
.modal ul { list-style: none; padding: 0; margin-bottom: 1.75rem; }
.modal ul li { font-size: .9375rem; color: var(--ink-600); padding: .5rem 0 .5rem 1.5rem; position: relative; border-bottom: 1px solid var(--ink-200); line-height: 1.6; }
.modal ul li:last-child { border-bottom: none; }
.modal ul li::before { content: '→'; position: absolute; left: 0; color: var(--red-500); font-size: .875rem; top: .55rem; }
.modal ul li strong { color: var(--ink-800); }

/* Service card click affordance */
.service-card { cursor: pointer; }
.service-card .card-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--red-500);
  margin-top: 1rem;
  letter-spacing: .04em;
}

/* ── Contact cards ── */
.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon {
  width: 56px; height: 56px;
  background: var(--grad-brand);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--white);
}
.contact-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.contact-card a { color: var(--red-700); text-decoration: none; font-weight: 600; font-size: 1.0625rem; transition: color var(--dur); }
.contact-card a:hover { color: var(--red-900); }
.contact-card p  { font-size: .875rem; color: var(--ink-500); margin-top: .375rem; }

/* ── Footer ── */
.site-footer {
  background: var(--ink-800);
  color: rgba(255,255,255,.6);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-social { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.25rem; }
.footer-social a {
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-pill);
  transition: color var(--dur), background var(--dur);
}
.footer-social a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.25rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .875rem; transition: color var(--dur); }
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: .8125rem; margin-bottom: .375rem; }
.footer-ein  { font-size: .75rem; opacity: .5; }

/* ── Services teaser strip ── */
.services-strip {
  background: var(--ink-800);
  padding: 5rem 2rem;
  color: var(--white);
}
.services-strip .eyebrow { color: rgba(255,255,255,.6); }
.services-strip h2 { color: var(--white); font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-top: .5rem; }
.services-strip p { color: rgba(255,255,255,.75); font-size: 1.0625rem; max-width: 600px; margin-top: .875rem; line-height: 1.7; }
.services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.service-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: background var(--dur), border-color var(--dur);
}
.service-pill:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.22); }
.service-pill h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .375rem; letter-spacing: -0.01em; }
.service-pill p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── About split layout ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-split .text h3 { font-size: 1.625rem; margin-bottom: 1.25rem; }
.about-split .text p  { color: var(--ink-600); line-height: 1.8; margin-bottom: 1.25rem; }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--ink-50) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 70%; height: 140%;
  background: radial-gradient(ellipse, rgba(232,93,4,.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { max-width: 780px; position: relative; z-index: 1; }
.hero-logo { width: 100px; height: auto; margin: 0 auto 1.75rem; }
.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-sub { font-size: clamp(1.0625rem, 2vw, 1.25rem); color: var(--ink-600); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Accessibility note ── */
.a11y-note {
  background: var(--white);
  border: 2px solid var(--flame-500);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.a11y-note h3 { font-size: 1.125rem; margin-bottom: .75rem; }
.a11y-note p  { font-size: .9375rem; color: var(--ink-600); line-height: 1.7; }

/* ── Team card ── */
.team-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}
.team-card h4 { font-size: 1.5rem; margin-bottom: .25rem; }
.team-role { font-size: .9375rem; color: var(--red-500); font-weight: 600; margin-bottom: .875rem; }
.team-card p { color: var(--ink-600); line-height: 1.75; margin-bottom: .75rem; }

/* ── "How we work" process ── */
.process-list { display: flex; flex-direction: column; gap: 2rem; }
.process-item { display: flex; gap: 1.5rem; }
.process-num {
  width: 44px; height: 44px;
  background: var(--grad-brand);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.process-item h4 { font-size: 1.0625rem; margin-bottom: .375rem; }
.process-item p  { font-size: .9375rem; color: var(--ink-600); line-height: 1.7; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .page-header { padding: 7rem 1.5rem 4rem; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-logo { width: 80px; }
  .donate-box { padding: 2rem; }
  .modal { padding: 2rem 1.5rem; }
  .cta-section { padding: 4rem 1.5rem; }
  .services-strip { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split .stats-grid { order: -1; }
}

/* ===== ACCESSIBILITY: Keyboard Focus Indicator ===== */
:focus-visible {
  outline: 2px solid var(--flame-500);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ===== ACCESSIBILITY: Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--red-700);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--flame-500);
  outline-offset: 2px;
}

/* ===== ACCESSIBILITY: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== ACCESSIBILITY: Link Underlines ===== */
/* Links must be visually distinguishable from body text */
a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: border-color 0.15s ease, color 0.15s ease;
}
a:hover {
  border-bottom-color: var(--flame-500);
  color: var(--red-700);
}
/* Override underlines for elements that handle their own styling */
.site-nav a,
.footer-nav a,
.hero-btns a,
.cta-section a,
.skip-link {
  border-bottom: none;
  text-decoration: none;
}

