/* ============================================================
   Tyler G. Jones, MD, MBA, FAPA | tylergjonesmd.com
   Design tokens are Sarus-aligned: bone/ivory ground, deep
   slate-navy ink, burnt sienna accent. Keep this token block
   intact so the future Sarus LLC site can inherit it wholesale.
   ============================================================ */

:root {
  /* --- Ground: ivory / bone --- */
  --bone-000: #FCFAF5;   /* lightest paper */
  --bone-100: #F6F1E7;   /* primary page ground */
  --bone-200: #EDE6D8;   /* card / band fill */
  --bone-300: #DFD5C2;   /* rules on light */

  /* --- Ink: deep slate navy --- */
  --slate-900: #16202B;  /* darkest (hero, footer) */
  --slate-800: #1E2B38;
  --slate-700: #2B3B4B;
  --slate-600: #40566A;  /* mid slate */
  --slate-400: #6E8496;  /* muted text on dark */
  --slate-200: #A8B7C2;

  /* --- Accent: burnt orangey red --- */
  --ember-600: #A8492A;  /* deep, for text on light */
  --ember-500: #BC5633;  /* primary accent */
  --ember-400: #CE6C46;  /* hover / on dark */

  /* --- Semantic --- */
  --ink:            var(--slate-900);
  --ink-soft:       var(--slate-600);
  --page:           var(--bone-100);
  --page-alt:       var(--bone-200);
  --rule:           var(--bone-300);
  --accent:         var(--ember-500);
  --accent-deep:    var(--ember-600);
  --on-dark:        var(--bone-100);
  --on-dark-soft:   var(--slate-200);

  /* --- Type --- */
  --serif: "Source Serif 4", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* --- Metrics --- */
  --measure: 68ch;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --header-h: 76px;
  --header-border: 2px;
  --shell: 1180px;
  --shell-narrow: 780px;
  --rhythm: clamp(4.5rem, 9vw, 8rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================================
   Reset & base
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 4.35rem); }
h2 { font-size: clamp(1.85rem, 3.9vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.5rem); }
h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  line-height: 1.4;
}

p { margin: 0 0 1.25em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ember-400); }

strong { font-weight: 600; }

::selection { background: var(--ember-500); color: var(--bone-000); }

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--slate-900);
  color: var(--bone-100);
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Layout primitives
   ============================================================ */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: var(--shell-narrow); }

.section { padding-block: var(--rhythm); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: var(--page-alt); }
.section--dark { background: var(--slate-900); color: var(--on-dark); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--bone-100); }
.section--dark h4 { color: var(--ember-400); }
.section--dark p { color: var(--on-dark-soft); }
.section--dark a { color: var(--ember-400); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::after {
  content: "";
  flex: 0 0 2.5rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}
.section--dark .eyebrow { color: var(--ember-400); }

.lede {
  font-size: clamp(1.15rem, 1.9vw, 1.375rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--dark .lede { color: var(--on-dark-soft); }

.rule {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin-block: clamp(3rem, 6vw, 4.5rem);
}
.section--dark .rule { background: rgba(246, 241, 231, 0.16); }

/* ============================================================
   Header
   ============================================================ */

/* Solid slate bar on every page, one step darker than the hero so the
   two planes separate, with a burnt sienna underline. Sits in normal
   flow rather than overlapping the hero. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #101923;
  border-bottom: var(--header-border) solid var(--ember-500);
  transition: background 0.32s var(--ease);
}
.site-header.is-stuck {
  background: rgba(16, 25, 35, 0.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: var(--header-h);
}

.wordmark {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 2.6vw, 1.2rem);
  letter-spacing: -0.01em;
  color: var(--bone-100);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .wordmark { white-space: normal; line-height: 1.15; }
  .site-header__inner { gap: 1rem; }
}
.wordmark:hover { color: var(--bone-000); }
.wordmark span {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-200);
  display: block;
  margin-top: 0.2rem;
}

.nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.6vw, 2.25rem); }
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--on-dark-soft);
  text-decoration: none;
  position: relative;
  padding-block: 0.4rem;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a:hover { color: var(--bone-100); }
.nav a[aria-current="page"] { color: var(--bone-100); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(246, 241, 231, 0.55);
  border-radius: 3px;
  min-height: 44px;
  min-width: 44px;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  color: var(--bone-100);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: calc(var(--header-h) + var(--header-border)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(16, 25, 35, 0.98);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: var(--header-border) solid var(--ember-500);
    padding: 0.5rem var(--gutter) 1.5rem;
    max-height: calc(100dvh - var(--header-h) - var(--header-border));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a {
    padding-block: 0.95rem;
    border-bottom: 1px solid rgba(246, 241, 231, 0.12);
    font-size: 1rem;
  }
  .nav a::after { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.85rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--ember-500); color: var(--bone-000); }
.btn--primary:hover { background: var(--ember-600); color: var(--bone-000); }

.btn--ghost {
  background: transparent;
  color: var(--bone-100);
  border-color: rgba(246, 241, 231, 0.38);
}
.btn--ghost:hover {
  background: rgba(246, 241, 231, 0.08);
  border-color: var(--bone-100);
  color: var(--bone-100);
}

.btn--outline {
  background: transparent;
  color: var(--slate-800);
  border-color: var(--slate-600);
}
.btn--outline:hover { background: var(--slate-900); border-color: var(--slate-900); color: var(--bone-000); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.25rem; }

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-deep);
}
.arrow-link::after {
  content: "→";
  transition: transform 0.28s var(--ease);
  font-size: 1rem;
}
.arrow-link:hover::after { transform: translateX(5px); }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  background: var(--slate-900);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  padding-block: clamp(5.5rem, 13vw, 10.5rem);
}

/* Quiet topographic wash: evokes still water without a photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(188, 86, 51, 0.16), transparent 58%),
    radial-gradient(90% 70% at 4% 96%, rgba(64, 86, 106, 0.42), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember-500) 0 22%, transparent 22%);
}
.hero .shell { position: relative; z-index: 1; }

.hero h1 { color: var(--bone-100); max-width: 17ch; }
.hero .lede { color: var(--on-dark-soft); margin-top: 1.75rem; }

.hero__kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember-400);
  margin: 0 0 1.75rem;
}

/* Page hero: shorter, for interior pages */
.page-hero {
  background: var(--slate-900);
  color: var(--on-dark);
  padding-block: clamp(4rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 100% at 92% 0%, rgba(188, 86, 51, 0.13), transparent 60%);
  pointer-events: none;
}
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { color: var(--bone-100); max-width: 20ch; }
.page-hero .lede { color: var(--on-dark-soft); margin-top: 1.5rem; }
.page-hero .eyebrow { color: var(--ember-400); }
.page-hero .eyebrow::after { background: var(--ember-400); }

/* ============================================================
   Stat band
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}
.stat { background: var(--page); padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem); }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1;
  color: var(--ink);
  display: block;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-top: 0.7rem;
  display: block;
  max-width: 22ch;
}

/* ============================================================
   Grids & cards
   ============================================================ */

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }

/* Asymmetric split: heading rail + content */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.card {
  background: var(--bone-000);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: clamp(1.6rem, 3vw, 2.15rem);
  transition: border-color 0.28s var(--ease), transform 0.28s var(--ease);
}
.card:hover { border-color: var(--slate-400); transform: translateY(-2px); }
.card h3 { margin-bottom: 0.55rem; font-size: 1.2rem; }
.card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* Numbered service block */
.svc {
  border-top: 1px solid var(--rule);
  padding-top: 1.6rem;
}
.svc__num {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.85rem;
}
.svc h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.svc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.svc li {
  padding: 0.42rem 0 0.42rem 1.15rem;
  position: relative;
  line-height: 1.5;
}
.svc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 5px;
  height: 1px;
  background: var(--accent);
}

/* ============================================================
   Pull quote / statement
   ============================================================ */

.statement {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.3vw, 2.3rem);
  line-height: 1.32;
  letter-spacing: -0.015em;
  max-width: 26ch;
  margin: 0;
  text-wrap: balance;
}

/* ============================================================
   Credential / timeline list
   ============================================================ */

.entries { margin: 0; }
.entry {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: 1.6rem;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.entry:last-child { border-bottom: 1px solid var(--rule); }
.entry__meta {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-600);
  line-height: 1.5;
}
.entry__body h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.entry__body p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 640px) {
  .entry { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* Compact reference list (publications, talks) */
.reflist { list-style: none; padding: 0; margin: 0; }
.reflist li {
  padding: 1.05rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 78ch;
}
.reflist li:last-child { border-bottom: 1px solid var(--rule); }
.reflist strong { color: var(--ink); font-weight: 600; }
.reflist .ref-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--slate-600);
  margin-top: 0.28rem;
}

/* ============================================================
   Jurisdiction grid
   ============================================================ */

.states {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
}
.state {
  background: var(--bone-000);
  padding: 0.85rem 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-700);
  letter-spacing: 0.02em;
}
.state--out {
  background: var(--bone-200);
  color: var(--slate-400);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1.75rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.legend span { display: inline-flex; align-items: center; gap: 0.55rem; }
.legend i {
  width: 13px; height: 13px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  display: inline-block;
}
.legend i.on { background: var(--bone-000); }
.legend i.off { background: var(--bone-200); }

/* ============================================================
   Forms
   ============================================================ */

.form { max-width: 620px; }
.field { margin-bottom: 1.4rem; }
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 0.55rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bone-000);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 170px; resize: vertical; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(188, 86, 51, 0.13);
}
.field__hint { font-size: 0.8rem; color: var(--slate-600); margin-top: 0.45rem; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.notice {
  border-left: 3px solid var(--accent);
  background: var(--bone-200);
  padding: 1.15rem 1.4rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  border-radius: 0 3px 3px 0;
  max-width: 68ch;
}
.notice strong { color: var(--ink); }

/* Direct-contact block */
.contact-lines { list-style: none; padding: 0; margin: 0; }
.contact-lines li {
  padding: 1.1rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.98rem;
}
.contact-lines li:last-child { border-bottom: 1px solid var(--rule); }
.contact-lines dt,
.contact-lines .k {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-600);
}
@media (max-width: 520px) {
  .contact-lines li { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ============================================================
   CTA band
   ============================================================ */

.cta {
  background: var(--slate-900);
  color: var(--on-dark);
  padding-block: clamp(4rem, 8vw, 6.5rem);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 100% 50%, rgba(188, 86, 51, 0.18), transparent 62%);
  pointer-events: none;
}
.cta .shell { position: relative; z-index: 1; }
.cta h2 { color: var(--bone-100); max-width: 18ch; }
.cta p { color: var(--on-dark-soft); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--slate-900);
  color: var(--on-dark-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  border-top: 1px solid rgba(246, 241, 231, 0.1);
  font-size: 0.9rem;
}
.site-footer a { color: var(--on-dark-soft); text-decoration: none; }
.site-footer a:hover { color: var(--ember-400); }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.75rem;
}
.footer__brand .wordmark { color: var(--bone-100); }
.footer__brand .wordmark span { color: var(--slate-400); }
.footer__brand p {
  font-size: 0.88rem;
  color: var(--slate-400);
  margin-top: 1.1rem;
  max-width: 34ch;
}
.footer__col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-100);
  margin: 0 0 1rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.62rem; }

.footer__base {
  border-top: 1px solid rgba(246, 241, 231, 0.12);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--slate-400);
}

/* ============================================================
   Scroll reveal
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Print
   ============================================================ */

@media print {
  .site-header, .site-footer, .cta, .btn-row, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero, .page-hero, .section--dark { background: #fff !important; color: #000 !important; }
  .hero h1, .page-hero h1, .section--dark h2, .section--dark p { color: #000 !important; }
  a { text-decoration: none; color: #000; }
}
