/* ==========================================================================
   Full Service Bookkeeping Inc.
   Values transcribed from the Claude Design prototype
   ("Full Service Bookkeeping.dc.html"). Don't "tidy" the numbers — they're
   the spec.
   ========================================================================== */

:root {
  --navy: #10275A;
  --navy-dark: #0B1C40;
  --green: #6DB33F;
  --green-dark: #5C9A34;
  --green-soft: #9BC77E;     /* submit button while sending */
  --ink: #33405F;
  --ink-2: #43516F;
  --muted: #5C6B8A;
  --brand-tagline: #4A5A80;
  --line: #D7DEEA;
  --line-2: #C3CDDF;
  --line-3: #E2E7F0;
  --surface: #F5F7FA;
  --footer-dim: #DCE3F0;
  --footer-faint: #93A2C2;
  --error: #B3261E;

  --shell: 1200px;
  --gutter: clamp(16px, 3vw, 24px);
  /* Kept in sync with the sticky header's real height by main.js. The
     fallback matches the desktop header so anchors work without JS. */
  --header-h: 89px;
  --font-body: 'Barlow', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
}

/* --------------------------------------------------------------- base --- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a {
  color: var(--navy);
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-dark);
  text-decoration-color: var(--navy);
}

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

[hidden] { display: none !important; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----------------------------------------------------- reveal on scroll --- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* The reduced-motion override lives at the very bottom of this file so it
   outranks any component that declares its own transition. */

/* --------------------------------------------------------- shared bits --- */

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--navy);
}

.section-rule {
  display: block;
  width: 92px;
  height: 5px;
  background: var(--green);
  margin: 16px 0 44px;
}

/* -------------------------------------------------------------- header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-3);
  padding: 16px 0;
  box-shadow: none;
  transition: padding .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 20px rgba(16, 39, 90, 0.10);
}

.site-header__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand__mark { flex: none; }

.brand__text { display: block; }

.brand__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .01em;
  color: var(--navy);
  text-transform: uppercase;
}

.brand__tagline {
  display: block;
  margin-top: 2px;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--brand-tagline);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px 8px;
  flex-wrap: wrap;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
}

.nav__link:hover {
  background: var(--surface);
  color: var(--navy);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  margin-left: 6px;
  background: var(--green);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
}

.nav__cta:hover {
  background: var(--green-dark);
  color: #FFFFFF;
}

/* ---------------------------------------------------------------- hero --- */

.hero {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) var(--gutter) 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 5vw, 48px);
  align-items: center;
}

/* The headline sizes off this column's width, not the viewport. */
.hero__text { container-type: inline-size; }

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.005em;
  font-size: clamp(40px, 17cqi, 118px);
}

.hero__title-line {
  display: block;
  color: var(--navy);
  white-space: nowrap;
}

.hero__title-line--green { color: var(--green-dark); }

.hero__rule {
  border: 0;
  border-top: 2px solid var(--navy);
  margin: 28px 0 22px;
  width: 100%;
}

.hero__kicker {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(19px, 2.6vw, 26px);
  color: var(--navy);
}

.hero__lede {
  margin: 0 0 32px;
  max-width: 65ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
}

.btn--solid {
  padding: 0 28px;
  background: var(--green);
  color: #FFFFFF;
}

.btn--solid:hover {
  background: var(--green-dark);
  color: #FFFFFF;
}

.btn--outline {
  padding: 0 26px;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: #FFFFFF;
}

.hero__badge-wrap {
  display: flex;
  justify-content: center;
}

.hero__badge {
  width: min(300px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--navy);
  border: 6px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}

.hero__badge-word {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(20px, 4.4vw, 28px);
  color: #FFFFFF;
}

.hero__badge-rule {
  width: 46px;
  height: 2px;
  background: var(--green);
}

/* ------------------------------------------------------------ services --- */

.services {
  background: var(--surface);
  scroll-margin-top: calc(var(--header-h) + 24px);
  padding: 72px 0 80px;
}

.services__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  container-type: inline-size;
}

.services .section-title {
  letter-spacing: .01em;
  font-size: clamp(34px, 5.5vw, 58px);
}

/*
 * Column count steps on the *container* width, not the viewport, so the grid
 * behaves correctly regardless of what's around it:
 *   container < 430px  -> 1 column   (the second clamp resolves to 100cqi)
 *   container < 790px  -> 2 columns  (first clamp resolves to 45cqi)
 *   otherwise          -> 19cqi min, which lands on 5 columns at full width
 * The `* 100` multipliers are the standard trick for turning a length
 * comparison into a clamp switch. Copied verbatim from the design.
 */
.services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(clamp(19cqi, (790px - 100cqi) * 100, 45cqi), clamp(0px, (430px - 100cqi) * 100, 100cqi)), 1fr));
  gap: 0;
}

/* -0.5px margin collapses neighbouring 1px borders into one hairline rule. */
.service-card {
  padding: 28px 22px;
  border: 1px solid var(--line);
  margin: -0.5px;
  background: #FFFFFF;
}

.service-card__icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.service-card__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 21px;
  line-height: 1.1;
  color: var(--navy);
}

.service-card__desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

.service-card__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-card__list li {
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

/* ------------------------------------------------------------- CTA bands --- */

/*
 * Two mid-page prompts. The accent band is the only large green surface on
 * the page, which keeps it from reading as another navy panel; the quiet
 * band is a slim grey rule between two white sections.
 */

.cta__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
}

.cta--accent {
  background: var(--green);
  padding: clamp(36px, 5vw, 52px) 0;
}

.cta__copy { flex: 1 1 320px; }

.cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1;
  font-size: clamp(28px, 4vw, 42px);
  /* 5.6:1 against the green — passes AA. White would not. */
  color: var(--navy);
}

.cta__text {
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.55;
  color: #16305F;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--navy {
  padding: 0 28px;
  background: var(--navy);
  color: #FFFFFF;
}

.btn--navy:hover {
  background: var(--navy-dark);
  color: #FFFFFF;
}

.btn--navy-outline {
  padding: 0 26px;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn--navy-outline:hover {
  background: var(--navy);
  color: #FFFFFF;
}

.cta--quiet {
  background: var(--surface);
  padding: 26px 0;
}

.cta__inner--slim { gap: 16px 28px; }

.cta__line {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--navy);
}

.btn--compact {
  min-height: 46px;
  padding: 0 24px;
  font-size: 17px;
}

/* ---------------------------------------------------------- why choose --- */

.why {
  scroll-margin-top: calc(var(--header-h) + 24px);
  padding: 72px 0;
}

.why__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.why__panel {
  background: var(--navy);
  border-radius: clamp(18px, 3vw, 28px);
  padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.why__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(34px, 5vw, 54px);
  color: var(--green);
}

.why__rule {
  display: block;
  width: 88px;
  height: 5px;
  background: var(--green);
  margin-top: 14px;
}

.why__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px 20px;
}

/*
 * Deviation from the prototype, deliberate. The design has the panel on
 * `repeat(auto-fit, minmax(260px, 1fr))` at every width with the feature row
 * set to `grid-column: span 2`. Below ~985px the panel resolves to fewer than
 * three tracks, so `span 2` conjures an implicit column and the panel scrolls
 * sideways on a phone. Restricting the two-part layout to widths where three
 * tracks actually fit gives the intended 1-up/2-up split on desktop and a
 * clean stack below it.
 */
@media (min-width: 1000px) {
  .why__panel { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .why__features { grid-column: span 2; }
}

.why__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.why__icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why__label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 17px;
  line-height: 1.25;
  color: #FFFFFF;
}

/* --------------------------------------------------------- who we serve --- */

/* Top padding gives the heading room to breathe under the quiet CTA band. */
.serve { padding: 60px 0 80px; }

.serve__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.serve__title {
  letter-spacing: .01em;
  font-size: clamp(30px, 4.4vw, 46px);
}

.serve__rule { margin: 16px 0 18px; }

.serve__lede {
  margin: 0 0 34px;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}

.serve__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  /* 320px min lands on 3 columns at full width, so the six tiles form a
     clean 3x2 block rather than a ragged 4+2. Steps to 2 then 1 below. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 14px;
}

/*
 * Soft filled tiles rather than the hairline-bordered cards used for
 * services — the two sections sit close together and shouldn't read as the
 * same component. The reveal properties are repeated in the transition list
 * because this rule would otherwise replace the one on [data-reveal].
 */
.serve__tile {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1.5px solid transparent;
  border-radius: 14px;
  color: var(--navy);
  transition: opacity .6s ease, transform .6s ease,
              background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.serve__tile:hover {
  background: #FFFFFF;
  border-color: var(--green);
  box-shadow: 0 8px 18px rgba(16, 39, 90, 0.08);
}

.serve__icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}

.serve__tile:hover .serve__icon {
  background: var(--green);
  color: #FFFFFF;
}

.serve__label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 16.5px;
  line-height: 1.2;
}

/* ------------------------------------------------------------- contact --- */

.contact {
  background: var(--surface);
  scroll-margin-top: calc(var(--header-h) + 24px);
  padding: 76px 0 84px;
}

.contact__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(36px, 5vw, 56px);
}

.contact__title { font-size: clamp(36px, 5.5vw, 60px); }

.contact__rule { margin: 16px 0 32px; }

.contact__phone {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 22px;
}

.contact__phone-icon {
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__phone-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: .01em;
  color: var(--navy);
}

.text-us { margin: 0 0 24px; }

.text-us__label {
  display: block;
  margin-bottom: 10px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.text-us__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.text-us__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.text-us__btn--whatsapp {
  background: var(--green);
  color: #FFFFFF;
  border: 1.5px solid var(--green);
}

.text-us__btn--whatsapp:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #FFFFFF;
}

.text-us__btn--sms {
  background: #FFFFFF;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.text-us__btn--sms:hover {
  background: var(--navy);
  color: #FFFFFF;
}

.contact__row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  text-decoration: none;
  color: var(--navy);
  font-size: 16.5px;
  font-weight: 500;
}

.contact__row:hover { color: var(--navy); }

.contact__row--break { word-break: break-all; }

.contact__row--static { margin: 16px 0 0; }

.contact__row--social { margin-top: 16px; }

.contact__row-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__script {
  margin: 36px 0 0;
  font-family: 'Caveat', cursive;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.3;
  color: var(--navy);
}

.contact__card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
}

/* ----------------------------------------------------------- lead form --- */

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-form__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 24px;
  color: var(--navy);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}

.field__req { color: var(--green-dark); }

/* Honeypot — off-screen, never focusable, never announced. */
.field--trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field__input {
  min-height: 48px;
  padding: 0 14px;
  font: inherit;
  font-size: 16px;
  color: var(--navy);
  background: #FFFFFF;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
}

select.field__input { padding: 0 12px; }

.field__input--area {
  padding: 12px 14px;
  line-height: 1.6;
  resize: vertical;
}

.field__input:focus { border-color: var(--navy); }

/* Reserved height keeps the form from jumping when a message appears. */
.field__error {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--error);
  min-height: 18px;
}

.lead-form__submit {
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.lead-form__submit:not([disabled]):hover { background: var(--green-dark); }

.lead-form__submit[disabled] {
  background: var(--green-soft);
  cursor: default;
}

.lead-form__error {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--error);
  min-height: 20px;
}

.lead-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
}

.lead-success__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-success__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  color: var(--navy);
}

.lead-success__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 45ch;
}

.lead-success__text a {
  color: var(--navy);
  font-weight: 600;
}

/* -------------------------------------------------------------- footer --- */

.site-footer {
  background: var(--navy);
  color: #FFFFFF;
}

.site-footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 64px) var(--gutter) 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.site-footer__slogan {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: clamp(.05em, .9vw, .16em);
  line-height: 1.3;
  font-size: clamp(17px, 3.4vw, 34px);
}

.site-footer__slogan-line {
  display: block;
  color: #FFFFFF;
}

.site-footer__slogan-line--green { color: var(--green); }

.site-footer__name {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 20px;
  color: #FFFFFF;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 15.5px;
}

.site-footer__contact a,
.site-footer__contact span {
  color: var(--footer-dim);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer__contact a:hover { color: var(--footer-dim); }

.site-footer__email { word-break: break-all; }

.site-footer__legal {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--footer-faint);
}

/* ------------------------------------------------------ reduced motion --- */
/* Last in the file on purpose — see the note by [data-reveal] above. */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .serve__tile,
  .serve__icon,
  .text-us__btn,
  .site-header,
  [data-reveal] {
    transition: none;
  }
}
