/* HASCO Weatherization LLC — site styles */

:root {
  --color-bg: #f6f8f7;
  --color-bg-alt: #eef5f3;
  --color-surface: #ffffff;
  --color-ink: #111111;
  --color-ink-muted: #4a5552;
  --color-brand: #0a0a0a;
  --color-brand-dark: #000000;
  --color-brand-lime: #9ae024;
  --color-brand-cyan: #2dd4bf;
  --color-accent: #9ae024;
  --color-accent-hover: #7fc41a;
  --color-accent-soft: #edf9e0;
  --color-border: #d5e3de;
  --color-success: #1f8f6a;
  --gradient-brand: linear-gradient(135deg, var(--color-brand-lime) 0%, var(--color-brand-cyan) 100%);

  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "DM Sans", system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 46, 53, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 46, 53, 0.1);
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 88px;
  --container: min(1120px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-brand-lime);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--color-brand);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--color-brand);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 62px;
  width: auto;
}

.logo-img-footer {
  height: 66px;
}

@media (min-width: 768px) {
  .logo-img {
    height: 70px;
  }

  .logo-img-footer {
    height: 74px;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a:hover {
  color: var(--color-brand-lime);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #0a0a0a !important;
  font-weight: 700;
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: #0a0a0a !important;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-brand);
  color: #0a0a0a;
}

.btn-primary:hover {
  filter: brightness(1.06);
  color: #0a0a0a;
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn-secondary:hover {
  background: var(--color-brand);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--color-brand);
}

.btn-light:hover {
  background: var(--color-accent-soft);
  color: var(--color-brand-dark);
}

.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-ink);
}

.btn-ghost:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn-block {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  padding: 2rem 0 4rem;
  overflow: hidden;
}

.hero-brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  background: #0a0a0a;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(154, 224, 36, 0.2);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(45, 212, 191, 0.08) inset,
    0 20px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.hero-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.hero-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.5vw, 1.35rem);
  font-size: clamp(2.5rem, 10vw, 5rem);
  line-height: 1;
}

.hero-icon {
  display: block;
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  border-radius: 0.18em;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(154, 224, 36, 0.25);
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 0.95;
}

.hero-brand-name {
  font-size: 1em;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.hero-brand-service {
  display: block;
  margin-top: 0.12em;
  font-size: 0.26em;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-company-location {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(154, 224, 36, 0.1), transparent),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(45, 212, 191, 0.1), transparent),
    linear-gradient(180deg, #fafcfb 0%, var(--color-bg) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  color: var(--color-brand-dark);
}

.hero-content h1 em {
  font-style: normal;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 38rem;
  color: var(--color-ink-muted);
  font-size: 1.12rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-ink-muted);
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-lime);
}

.hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.hero-card-label {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-lime);
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--color-brand-dark);
}

.hero-card p {
  margin: 0 0 1.25rem;
  color: var(--color-ink-muted);
}

.hero-card .btn + .btn {
  margin-top: 0.65rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-cyan);
}

/* Stats */

.stats-bar {
  background: var(--color-brand);
  color: #fff;
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
}

.stats-grid article {
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  margin-bottom: 0.35rem;
  color: #fff;
}

.stats-grid span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Credentials bar */

.credentials-bar {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
  padding: 1.75rem 0;
}

.credentials-grid {
  display: grid;
  gap: 1rem;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
}

.credential-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.credential-badge strong {
  display: block;
  font-size: 1rem;
  color: var(--color-brand-dark);
  margin-bottom: 0.1rem;
}

.credential-badge span {
  display: block;
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  line-height: 1.35;
}

/* Sections */

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-header h2,
.split-content h2,
.split-content h3,
.contact-info h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  margin: 0.4rem 0 0.75rem;
  color: var(--color-brand-dark);
}

.section-header p,
.split-content p {
  margin: 0;
  color: var(--color-ink-muted);
}

/* Cards */

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--color-brand);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--color-brand-dark);
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-ink-muted);
}

/* Split / HWAP */

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.check-list {
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--color-ink-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.info-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.info-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-brand-dark);
}

.info-panel p {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
}

.info-panel hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.25rem 0;
}

.hwap-intro {
  margin-bottom: 2.5rem;
}

.hwap-intro .split-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.hwap-intro .btn + .btn {
  margin-top: 0.75rem;
}

.panel-note {
  margin-top: 1rem !important;
  font-size: 0.9rem !important;
  font-style: italic;
}

.eligibility-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}

.eligibility-block h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--color-brand-dark);
}

.eligibility-note {
  margin: 0 0 1.25rem;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
}

.income-table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.income-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.income-table th,
.income-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.income-table th {
  background: var(--color-brand);
  color: #fff;
  font-weight: 700;
}

.income-table tbody tr:nth-child(even) {
  background: var(--color-bg-alt);
}

.income-table tbody tr:last-child td {
  border-bottom: none;
}

.income-table td:last-child {
  font-weight: 600;
  color: var(--color-brand-dark);
}

.eligibility-grid {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
}

.eligibility-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.eligibility-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-brand-dark);
}

.eligibility-card p {
  margin: 0 0 0.65rem;
  color: var(--color-ink-muted);
  font-size: 0.95rem;
}

.eligibility-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-ink-muted);
  font-size: 0.95rem;
}

.eligibility-card li + li {
  margin-top: 0.35rem;
}

.eligibility-footer p {
  margin: 0 0 0.75rem;
  color: var(--color-ink-muted);
  font-size: 0.95rem;
}

.eligibility-disclaimer {
  font-size: 0.85rem !important;
  opacity: 0.85;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.numbered-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--color-ink-muted);
}

.numbered-list li + li {
  margin-top: 0.45rem;
}

/* Process */

.process-steps {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  box-shadow: var(--shadow-sm);
}

.step-num {
  position: absolute;
  left: 1.25rem;
  top: 1.35rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.process-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--color-brand-dark);
}

.process-steps p {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
}

/* CTA band */

.cta-band {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-brand) 0%, #1a1a1a 55%, #0d3d38 100%);
  color: #fff;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.35rem;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  margin-bottom: 1rem;
}

.contact-details strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 0.15rem;
}

.contact-details a {
  font-weight: 600;
  text-decoration: none;
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label,
.form-row legend {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-brand-dark);
}

fieldset.form-row {
  border: none;
  margin: 0 0 1rem;
  padding: 0;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--color-ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(15, 77, 92, 0.15);
}

.form-row input:invalid:not(:placeholder-shown),
.form-row textarea:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.checkbox-group {
  display: grid;
  gap: 0.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  color: var(--color-ink-muted);
  cursor: pointer;
}

.checkbox-group input {
  width: auto;
  accent-color: var(--color-brand);
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  min-height: 1.4em;
}

.form-note.success {
  color: var(--color-success);
  font-weight: 600;
}

/* Footer */

.site-footer {
  background: var(--color-brand-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-tagline {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
}

.site-footer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-brand-lime);
}

.footer-meta p {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
}

.footer-disclaimer {
  opacity: 0.65;
}

/* Responsive */

@media (min-width: 640px) {
  .eligibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
  }

  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }

  .eligibility-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps li {
    padding: 4.5rem 1.25rem 1.5rem;
  }

  .step-num {
    left: 50%;
    transform: translateX(-50%);
    top: 1.25rem;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0.5rem;
    color: rgba(255, 255, 255, 0.92);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
