/* =========================================================================
   nathantownsend.com — websites for local businesses
   Static stylesheet. No build step, no framework.

   Contents
   1.  Tokens          6.  Trust strip      11. FAQ
   2.  Reset & base    7.  Cards           12. Contact
   3.  Layout          8.  Pricing         13. Footer & call bar
   4.  Buttons         9.  Steps           14. Reveal
   5.  Header & hero   10. About           15. Responsive · 16. Print
   ========================================================================= */

/* ------------------------------------------------------------- 1. TOKENS */
:root {
  /* Ink blue and clay — mountains and warmth, deliberately unlike a body
     shop's red so the two sites don't look like the same business. */
  --ink:          #16324f;
  --ink-deep:     #0f2438;
  --ink-soft:     #2c4c6d;
  --accent:       #c2703d;
  --accent-dark:  #a25a2d;
  --accent-soft:  #fbeee4;

  --body:         #46545f;
  --muted:        #6b7a86;
  --line:         #e2e0da;
  --line-dark:    #2b455f;
  --paper:        #ffffff;
  --paper-warm:   #f8f6f2;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1140px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --pad-section: clamp(3.75rem, 8vw, 6.5rem);
  --r: 6px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(22, 50, 79, .05), 0 2px 8px rgba(22, 50, 79, .05);
  --shadow-md: 0 4px 14px rgba(22, 50, 79, .08), 0 14px 34px rgba(22, 50, 79, .08);
  --shadow-lg: 0 12px 30px rgba(22, 50, 79, .12), 0 30px 60px rgba(22, 50, 79, .10);

  --header-h: 76px;
}

/* --------------------------------------------------------- 2. RESET/BASE */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--body);
  background: var(--paper);
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.012em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-dark); }
a:hover { color: var(--accent); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; font-weight: 600;
}
.skip-link:focus { left: .5rem; top: .5rem; color: #fff; }

/* ------------------------------------------------------------- 3. LAYOUT */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.section { padding-block: var(--pad-section); }
.section--tint { background: var(--paper-warm); }
.section--dark { background: var(--ink); color: #c3d2e0; }
.section--dark h2, .section--dark h3, .section--dark strong { color: #fff; }

.section__head { max-width: 44rem; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section__title { font-size: clamp(1.95rem, 4.4vw, 2.95rem); }
.section__lede { font-size: 1.075rem; color: var(--muted); }
.section--dark .section__lede { color: #9db0c2; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: .75rem;
  color: var(--accent);
  margin: 0 0 .85rem;
}
.eyebrow--light { color: #e0a97c; }

/* ------------------------------------------------------------ 4. BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  padding: .8rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: .95rem 1.8rem; font-size: 1.075rem; }

.btn--accent {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(194, 112, 61, .3);
}
.btn--accent:hover {
  background: var(--accent-dark); border-color: var(--accent-dark); color: #fff;
  box-shadow: 0 6px 20px rgba(194, 112, 61, .38);
}

.btn--outline {
  background: transparent; color: var(--ink); border-color: #c9cfd5;
}
.btn--outline:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* -------------------------------------------------------- 5. HEADER/HERO */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .22s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

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

.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--ink); text-decoration: none; }
.brand__mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .02em;
  border-radius: var(--r);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.brand__sub { font-size: .75rem; color: var(--muted); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 1.85rem; }
.nav__list { display: flex; align-items: center; gap: 1.55rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.nav__list a:hover { color: var(--accent-dark); }
.nav__list a.is-current { color: var(--accent-dark); border-bottom-color: var(--accent); }

.burger {
  display: none; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: #fff; cursor: pointer; padding: 0;
  place-items: center; gap: 5px; flex-direction: column;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .22s ease, opacity .18s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero -------------------------------------------------------------- */
.hero {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(1100px 480px at 8% -10%, #eef3f8 0%, transparent 62%),
    var(--paper);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.32fr .88fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.35rem, 5.6vw, 3.85rem);
  margin-bottom: .45em;
  max-width: 15ch;
}
.hero__lede { font-size: clamp(1.05rem, 1.9vw, 1.2rem); max-width: 34rem; margin-bottom: 1.9rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.35rem; }
.hero__note { font-size: .92rem; color: var(--muted); font-style: italic; }

/* Portrait, with a monogram standing in until a photo exists */
.portrait { margin: 0; position: relative; }
.portrait img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.portrait__fallback { display: none; }
.portrait--empty .portrait__fallback {
  display: grid; place-items: center;
  width: 100%; aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--ink-soft) 0%, var(--ink) 55%, var(--ink-deep) 100%);
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 5.5rem); letter-spacing: .04em;
  box-shadow: var(--shadow-lg);
}
.portrait figcaption {
  display: flex; flex-direction: column;
  margin-top: .95rem; font-size: .92rem; color: var(--muted);
}
.portrait figcaption strong { color: var(--ink); font-size: 1rem; }

/* -------------------------------------------------------- 6. TRUST STRIP */
.trust { background: var(--ink); color: #fff; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item {
  display: flex; flex-direction: column; gap: .1rem;
  padding: 1.5rem clamp(.9rem, 2vw, 1.5rem);
  border-left: 1px solid var(--line-dark);
}
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__item strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.trust__item span { font-size: .875rem; color: #9db0c2; }

/* ------------------------------------------------------------- 7. CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.85rem 1.7rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d3cfc6; }
.card h3 { font-size: 1.22rem; display: flex; align-items: baseline; gap: .6rem; margin-bottom: .55rem; }
.card__num {
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  color: var(--accent); letter-spacing: .1em; flex: none;
}
.card p { font-size: .97rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------ 8. PRICING */
.pricing { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.5rem; align-items: start; }

.price {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.9rem 1.75rem;
}
.price--build { border-top: 4px solid var(--accent); }
.price__label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--muted); margin-bottom: .5rem;
}
.price__fig {
  font-family: var(--font-display); font-size: 3.1rem; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: .75rem;
}
.price__unit { font-family: var(--font-body); font-size: .95rem; font-weight: 500; color: var(--muted); margin-left: .5rem; }
.price__desc { font-size: .97rem; color: var(--muted); }
.price__foot { margin-top: 1.25rem; font-size: .9rem; color: var(--muted); }

.ticks { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: .55rem; }
.ticks li { position: relative; padding-left: 1.75rem; font-size: .94rem; color: var(--ink-soft); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9.6 16.2 5.4 12l-1.4 1.4 5.6 5.6L20.4 8.2 19 6.8z'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.tier { background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.3rem; }
.tier--plus { background: #fff; border-color: var(--accent); }
.tier h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.tier__plus { color: var(--accent); }
.tier__fig { font-family: var(--font-display); font-size: 1.95rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: .6rem; }
.tier__fig span { font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--muted); }
.tier__desc { font-size: .92rem; color: var(--muted); margin-bottom: .7rem; }
.tier__who { font-size: .82rem; font-weight: 600; color: var(--accent-dark); margin: 0; }

.compare {
  margin-top: 1.5rem; padding: 1.5rem 1.7rem;
  border-left: 4px solid var(--ink);
  background: #fff; border-radius: 0 var(--r) var(--r) 0;
}
.compare h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.compare p { font-size: .95rem; color: var(--muted); }
.compare p + p { margin-top: .7rem; }
.compare__alt-head { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.compare__list { margin: .7rem 0 0; padding: 0; list-style: none; display: grid; gap: .8rem; }
.compare__list li { font-size: .95rem; color: var(--muted); line-height: 1.6; }
.compare__list strong { color: var(--ink); font-weight: 600; }
.compare__note { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid var(--line); font-style: italic; }

/* -------------------------------------------------------------- 9. STEPS */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; counter-reset: s; }
.step { position: relative; padding-top: 1.25rem; border-top: 2px solid var(--line); }
.step__n {
  position: absolute; top: -1.1rem; left: 0;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--accent); color: #fff; border-radius: 50%;
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 0 0 5px #fff;
}
.step h3 { font-size: 1.15rem; margin: .85rem 0 .45rem; }
.step p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------- 10. ABOUT */
.about { display: grid; }
.about__text { max-width: 46rem; }
.about__text p { color: #b3c3d2; }

.creds { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid var(--line-dark); }
.cred { display: flex; flex-direction: column; }
.cred strong { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: #fff; line-height: 1.1; }
.cred span { font-size: .86rem; color: #90a4b8; max-width: 16ch; }

/* --------------------------------------------------------------- 11. FAQ */
.faq { display: grid; gap: .75rem; max-width: 52rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq__item[open] { border-color: #cfd6dc; box-shadow: var(--shadow-sm); }
.faq__item summary {
  cursor: pointer; list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.4rem;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--ink); position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 1.3rem; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__item summary:hover { color: var(--accent-dark); }
.faq__body { padding: 0 1.4rem 1.35rem; font-size: .97rem; color: var(--muted); }

/* ----------------------------------------------------------- 12. CONTACT */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.contact__text p { color: var(--muted); }

.contact__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.contact__row {
  display: flex; flex-direction: column; gap: .1rem;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color .16s ease;
}
.contact__row:hover { background: var(--accent-soft); }
.contact__row--static:hover { background: transparent; }
.contact__label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.contact__value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); word-break: break-word; }
.contact__area { margin: 0; padding: 1.15rem 1.5rem; font-size: .88rem; color: var(--muted); background: var(--paper-warm); }

/* ------------------------------------------------- 13. FOOTER & CALL BAR */
.site-footer { background: var(--ink-deep); color: #92a6b9; padding-top: clamp(2.75rem, 6vw, 4rem); font-size: .94rem; }
.site-footer__inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.25rem; padding-bottom: 2.5rem; }
.site-footer__brand { display: flex; align-items: flex-start; gap: .85rem; }
.site-footer__brand .brand__mark { background: var(--accent); }
.site-footer__brand strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: #fff; }
.site-footer__brand span { font-size: .84rem; }
.site-footer__nav { display: flex; flex-direction: column; gap: .55rem; }
.site-footer__nav a, .site-footer__contact a { color: #bccbd8; text-decoration: none; }
.site-footer__nav a:hover, .site-footer__contact a:hover { color: var(--accent); }
.site-footer__contact { display: flex; flex-direction: column; gap: .55rem; word-break: break-word; }
.site-footer__legal {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--line-dark); padding-block: 1.35rem;
  font-size: .8rem; color: #67798b;
}
.site-footer__legal p { margin: 0; }
.site-footer__legal a { color: #67798b; text-decoration: none; }
.site-footer__legal a:hover { color: #fff; }

.callbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(22, 50, 79, .12);
  padding: .55rem; gap: .55rem;
  padding-bottom: calc(.55rem + env(safe-area-inset-bottom, 0px));
}
.callbar__btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; border-radius: var(--r);
  font-weight: 600; font-size: 1rem; text-decoration: none;
  background: var(--paper-warm); color: var(--ink); border: 1px solid var(--line);
}
.callbar__btn--accent { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ------------------------------------------------------------ 14. REVEAL */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------- 15. RESPONSIVE */
@media (max-width: 1040px) {
  .nav { gap: 1.15rem; }
  .nav__list { gap: 1.05rem; }
  .nav__list a { font-size: .9rem; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  /* Headline first. The portrait follows the call to action rather than
     pushing it off the fold. */
  .hero__media { max-width: 20rem; order: 0; }
  .hero__title { max-width: none; }

  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }

  .pricing { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* --- Mobile nav ------------------------------------------------------- */
@media (max-width: 820px) {
  :root { --header-h: 66px; }

  .burger { display: flex; }

  .nav {
    position: fixed; top: 0; right: 0; bottom: auto; left: auto;
    height: 100vh; height: 100dvh;
    width: min(320px, 84vw);
    background: #fff;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    box-shadow: -12px 0 40px rgba(22, 50, 79, .18);
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto; z-index: 99;
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__list a { display: block; font-size: 1.12rem; padding: .95rem 0; border-bottom: 0; }
  .nav__list a.is-current { border-bottom: 0; }
  .nav__cta { margin-top: 1.5rem; width: 100%; }

  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: ""; position: fixed; inset: 0;
    background: rgba(15, 36, 56, .5); z-index: 98;
  }

  .callbar { display: flex; }
  .site-footer { padding-bottom: 74px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .brand__mark { width: 38px; height: 38px; font-size: .95rem; }
  .brand__name { font-size: 1.1rem; }
  .brand__sub { font-size: .68rem; }

  .hero__actions .btn { width: 100%; }

  /* A full-height portrait is too much of a phone screen — show it as a
     small avatar beside the name instead. */
  .hero__media { max-width: none; margin-top: 1.75rem; }
  .portrait { display: flex; align-items: center; gap: 1rem; }
  .portrait img,
  .portrait--empty .portrait__fallback {
    width: 84px; height: 84px; aspect-ratio: 1; flex: none;
    border-radius: 50%; box-shadow: var(--shadow-md);
  }
  .portrait--empty .portrait__fallback { font-size: 1.6rem; }
  .portrait figcaption { margin-top: 0; }
  .trust__inner { grid-template-columns: 1fr; }
  .trust__item { border-left: 0; padding-left: 0; padding-block: .95rem; }
  .trust__item:nth-child(-n+3) { border-bottom: 1px solid var(--line-dark); }

  .tiers { grid-template-columns: 1fr; }
  .creds { gap: 1.5rem; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .site-footer__legal { justify-content: center; text-align: center; }
}

/* ------------------------------------------------------------- 16. PRINT */
@media print {
  .site-header, .callbar, .hero__actions, .btn { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .section--dark, .trust { background: #fff !important; color: #000 !important; }
  .section--dark h2, .section--dark h3, .cred strong, .trust__item strong { color: #000 !important; }
  .about__text p, .trust__item span, .cred span { color: #333 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .faq__item { break-inside: avoid; }
  .faq__body { display: block !important; }
}
