/* Camargo Crédito — identidade navy + gold */
:root {
  --navy: #001c3d;
  --navy-deep: #000f22;
  --navy-mid: #0a2a52;
  --gold: #c9a227;
  --gold-bright: #e0c15a;
  --gold-deep: #9a7b1a;
  --cream: #f7f5ef;
  --ink: #0c1628;
  --muted: #5a6578;
  --line: rgba(0, 28, 61, 0.12);
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 15, 34, 0.14);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", "Manrope", sans-serif;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 15, 34, 0.06);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo__text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.logo__text em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-mid);
  position: relative;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.25s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--navy);
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  color: var(--navy-deep);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
}

.btn--gold:hover {
  box-shadow: 0 14px 36px rgba(201, 162, 39, 0.45);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-bright);
}

.btn--whatsapp {
  background: #1faa59;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #18964d;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 1.05rem 1.75rem;
  font-size: 1.15rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(201, 162, 39, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(10, 42, 82, 0.9), transparent 50%),
    linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: gridDrift 28s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.eyebrow--gold {
  color: var(--gold-bright);
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 800;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero__brand {
  display: block;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  background: linear-gradient(105deg, var(--white) 0%, var(--gold-bright) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.35rem;
  max-width: none;
}

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  margin-bottom: 1.5rem;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.hero__pills span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(224, 193, 90, 0.45);
  color: var(--gold-bright);
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.08);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero__wa {
  font-weight: 700;
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.hero__wa:hover {
  color: var(--white);
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__logo-wrap {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: floatLogo 5.5s ease-in-out infinite;
}

.hero__logo-wrap::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 193, 90, 0.35), transparent 70%);
  filter: blur(20px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero__logo {
  position: relative;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero__badge {
  text-align: center;
  max-width: 280px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(224, 193, 90, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.hero__badge strong {
  display: block;
  color: var(--gold-bright);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.hero__badge span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Trust bar */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-bar__item svg {
  width: 22px;
  height: 22px;
  color: var(--gold-deep);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section--tint {
  background:
    linear-gradient(180deg, #faf9f6 0%, var(--cream) 100%);
}

.section--navy {
  background:
    radial-gradient(ellipse at top right, rgba(201, 162, 39, 0.15), transparent 45%),
    linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.section__head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

.section__head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--navy);
}

.section__head p {
  color: var(--muted);
  margin: 0;
}

.section__head--light h2 {
  color: var(--white);
}

.section__head--light p {
  color: rgba(255, 255, 255, 0.72);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: none;
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.steps__item {
  position: relative;
  padding: 1.75rem 1.35rem 1.5rem;
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 28, 61, 0.06);
}

.steps__num {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.steps__item h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.steps__item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.criteria {
  padding: 2rem 2.25rem;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent);
}

.criteria__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.criteria h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.criteria ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.criteria li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink);
}

.criteria li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.values__item {
  text-align: center;
  padding: 0.5rem 0.75rem;
}

.values__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.values__icon svg {
  width: 26px;
  height: 26px;
}

.values__item:hover .values__icon {
  background: var(--navy);
  color: var(--gold-bright);
  transform: translateY(-4px);
}

.values__item h3 {
  color: var(--navy);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.values__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Mission */
.mission {
  padding: 5rem 0;
  background:
    linear-gradient(120deg, rgba(0, 28, 61, 0.92), rgba(0, 15, 34, 0.88)),
    radial-gradient(circle at 30% 50%, rgba(201, 162, 39, 0.4), transparent 50%),
    var(--navy);
  color: var(--white);
  text-align: center;
}

.mission__inner {
  max-width: 720px;
}

.mission h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.mission p:last-child {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Security */
.security {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.security__item {
  padding: 1.75rem 1.5rem;
  border-bottom: 3px solid var(--gold);
  background: var(--cream);
}

.security__item h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.security__item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 999px;
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.trust-card {
  padding: 1.5rem 1.5rem 1.35rem;
  border: 1px solid rgba(224, 193, 90, 0.25);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.trust-card:hover {
  border-color: rgba(224, 193, 90, 0.55);
  background: rgba(201, 162, 39, 0.08);
  transform: translateY(-3px);
}

.trust-card h3 {
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.trust-card span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Contato */
.contato {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.contato__info h2 {
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
}

.contato__info > p {
  color: var(--muted);
}

.contato__list {
  margin: 1.5rem 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.contato__list li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}

.contato__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 800;
}

.contato__email {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contato__email a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contato__email a:hover {
  color: var(--gold-deep);
}

.form {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.form__row {
  margin-bottom: 1.1rem;
}

.form__row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: #fbfbfa;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
  background: var(--white);
}

.form input.is-invalid,
.form textarea.is-invalid {
  border-color: #c0392b;
}

.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.form__alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form__alert.is-success {
  background: rgba(31, 170, 89, 0.12);
  color: #147a3d;
  border: 1px solid rgba(31, 170, 89, 0.35);
}

.form__alert.is-error {
  background: rgba(192, 57, 43, 0.1);
  color: #922b21;
  border: 1px solid rgba(192, 57, 43, 0.3);
}

.form button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer__tag {
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer h3 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.footer a:hover {
  color: var(--gold-bright);
}

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
}

.footer__legal p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer__copy {
  margin-top: 1.25rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: fabPulse 2.8s ease-in-out infinite;
}

.fab-wa svg {
  width: 28px;
  height: 28px;
}

.fab-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero__grid,
  .contato,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 4rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__visual {
    order: -1;
  }

  .hero__logo-wrap {
    width: min(240px, 70vw);
  }

  .steps,
  .values,
  .security {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--cream);
  }

  .form {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 1.5rem, 1120px);
  }

  .trust-bar__inner,
  .steps,
  .values,
  .security {
    grid-template-columns: 1fr;
  }

  .trust-bar__item {
    justify-content: flex-start;
    padding: 0.35rem 0;
  }

  .logo__text {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .form {
    padding: 1.35rem;
  }

  .criteria {
    padding: 1.5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__logo-wrap,
  .hero__bg::after,
  .fab-wa { animation: none; }
}
