:root {
  --orange: #de702c;
  --orange-dark: #b8561f;
  --charcoal: #4b4f54;
  --ink: #26292c;
  --gray: #d9d9d6;
  --off-white: #f3f4f2;
  --white: #ffffff;
  --river: #476a6f;
  --sage: #6e765b;
  --shadow: 0 22px 50px rgba(38, 41, 44, 0.16);
  --shadow-soft: 0 12px 34px rgba(38, 41, 44, 0.08);
  --shadow-lift: 0 22px 52px rgba(38, 41, 44, 0.14);
  --line: rgba(75, 79, 84, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, var(--off-white) 0%, #fbfbfa 46%, var(--off-white) 100%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease,
    min-height 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(243, 244, 242, 0.96);
  border-color: rgba(75, 79, 84, 0.08);
  box-shadow: 0 12px 34px rgba(38, 41, 44, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  line-height: 1;
  transition: transform 220ms var(--ease);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand-mark {
  color: currentColor;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark span {
  color: var(--orange);
}

.brand-local {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-top: 5px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 12;
  flex: 0 0 auto;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 220ms var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 160ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(760px, 78vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-couple-river.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(0.92) contrast(1.02);
  animation: hero-settle 1600ms var(--ease) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(38, 41, 44, 0.86) 0%, rgba(38, 41, 44, 0.64) 42%, rgba(38, 41, 44, 0.24) 100%),
    linear-gradient(0deg, rgba(38, 41, 44, 0.2), rgba(38, 41, 44, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 36px) 0 72px;
}

.hero-reveal {
  animation: hero-rise 820ms var(--ease) both;
}

.hero-reveal:nth-child(2) {
  animation-delay: 90ms;
}

.hero-reveal:nth-child(3) {
  animation-delay: 180ms;
}

.hero-reveal:nth-child(4) {
  animation-delay: 270ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.care-note h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 700px;
  color: var(--white);
  font-size: 6.4rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.28rem;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(38, 41, 44, 0);
  transition:
    transform 220ms var(--ease),
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms var(--ease);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 520ms var(--ease);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(222, 112, 44, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.quick-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  background: var(--gray);
  box-shadow: var(--shadow);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}

.detail-item {
  position: relative;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  padding: 22px;
  overflow: hidden;
  transition:
    background 220ms ease,
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.detail-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms var(--ease);
}

.detail-item:hover {
  z-index: 1;
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.detail-item:hover::before {
  transform: scaleY(1);
}

.detail-kicker {
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-item strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 840px;
}

.section-heading.narrow {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section h2,
.care-note h2,
.final-cta h2 {
  font-size: 3.9rem;
  font-weight: 800;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  margin-top: 42px;
}

.intro-copy p,
.audience-copy p,
.final-cta p {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.14rem;
  overflow-wrap: break-word;
}

.intro-copy p + p {
  margin-top: 18px;
}

.quote-panel {
  position: relative;
  border-left: 6px solid var(--orange);
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.quote-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.quote-panel p {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 1.3;
}

.quote-mark {
  position: absolute;
  top: -18px;
  right: 20px;
  color: rgba(222, 112, 44, 0.18);
  font-size: 8rem;
  line-height: 1;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: stretch;
  border-top: 1px solid rgba(75, 79, 84, 0.18);
}

.local-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--ink);
  color: var(--white);
  padding: 44px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.local-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.local-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--orange);
}

.local-card img {
  flex: 0 0 auto;
  width: min(168px, 42%);
  height: auto;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
}

.local-card h2 {
  color: var(--white);
  font-size: 3rem;
}

.local-card p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.details-list {
  display: grid;
  align-content: stretch;
  border-top: 1px solid var(--gray);
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--gray);
  transition: padding 220ms var(--ease), background 220ms ease;
}

.info-row:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.info-row span {
  color: var(--sage);
  font-weight: 800;
}

.info-row strong {
  color: var(--ink);
  text-align: right;
}

.expect-section {
  width: 100%;
  max-width: none;
  background: var(--white);
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray);
}

.step {
  position: relative;
  min-height: 260px;
  background: var(--off-white);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  transition:
    background 220ms ease,
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.step:hover {
  z-index: 1;
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.step:hover::after {
  transform: scaleX(1);
}

.step-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.step h3,
.audience-points h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.3rem;
}

.step p,
.audience-points p,
.faq-list p,
.care-note p,
.site-footer p {
  margin: 12px 0 0;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 7vw, 86px);
}

.audience-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.audience-copy p {
  margin-top: 22px;
}

.audience-points {
  display: grid;
  gap: 18px;
}

.audience-points div {
  border-top: 4px solid var(--orange);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.audience-points div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgba(75, 79, 84, 0.16);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(38, 41, 44, 0.04);
  transition: border-color 180ms ease, box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(222, 112, 44, 0.42);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 22px 58px 22px 22px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.45rem;
  font-weight: 500;
  transition: transform 220ms var(--ease);
}

.faq-list details[open] summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-list p {
  padding: 0 22px 22px;
}

.care-note {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(70px, 10vw, 120px);
  padding: clamp(30px, 5vw, 48px);
  color: var(--white);
  background: var(--river);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.care-note::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.care-note h2 {
  color: var(--white);
  font-size: 2.55rem;
}

.care-note p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.care-note a {
  color: var(--white);
  font-weight: 800;
}

.final-cta {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(74px, 10vw, 120px);
  padding: clamp(54px, 8vw, 86px);
  text-align: center;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--white);
}

.final-cta p {
  max-width: 660px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: start;
  padding: 42px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.78);
  background: #1e2022;
}

.footer-brand {
  color: var(--white);
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 800;
}

.footer-links a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.32);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
  text-decoration-color: currentColor;
}

.fine-print {
  grid-column: 1 / -1;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-details .detail-item:nth-child(2),
.steps .step:nth-child(2),
.audience-points div:nth-child(2) {
  --delay: 90ms;
}

.quick-details .detail-item:nth-child(3),
.steps .step:nth-child(3),
.audience-points div:nth-child(3) {
  --delay: 180ms;
}

.quick-details .detail-item:nth-child(4),
.steps .step:nth-child(4) {
  --delay: 270ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-settle {
  from {
    transform: scale(1.075);
  }

  to {
    transform: scale(1.02);
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 5.35rem;
  }

  .section h2,
  .final-cta h2 {
    font-size: 3.25rem;
  }

  .care-note h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 960px) {
  .quick-details,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .split-section,
  .audience-section,
  .care-note {
    grid-template-columns: 1fr;
  }

  .audience-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .hero-content,
  .section,
  .care-note,
  .final-cta {
    width: min(354px, calc(100% - 36px));
    margin-left: 18px;
    margin-right: auto;
  }

  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
    color: var(--white);
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: 0 10px 24px rgba(222, 112, 44, 0.28);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(243, 244, 242, 0.98);
    color: var(--ink);
    box-shadow: 0 16px 28px rgba(38, 41, 44, 0.1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 300ms var(--ease),
      opacity 220ms ease,
      transform 300ms var(--ease);
  }

  .site-nav.is-open {
    max-height: 280px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(75, 79, 84, 0.12);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(38, 41, 44, 0.86) 0%, rgba(38, 41, 44, 0.56) 70%, rgba(38, 41, 44, 0.2) 100%),
      linear-gradient(90deg, rgba(38, 41, 44, 0.72), rgba(38, 41, 44, 0.24));
  }

  .hero-content {
    align-self: flex-end;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .section h2,
  .final-cta h2 {
    font-size: 2.45rem;
  }

  .care-note h2 {
    font-size: 1.95rem;
  }

  .local-card {
    padding: 30px;
  }

  .local-card h2 {
    font-size: 2.25rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-details,
  .steps {
    grid-template-columns: 1fr;
  }

  .quick-details {
    margin-top: 0;
    width: 100%;
    box-shadow: none;
  }

  .detail-item {
    min-height: 96px;
  }

  .local-card {
    flex-direction: column;
  }

  .info-row {
    flex-direction: column;
    gap: 6px;
  }

  .info-row strong {
    text-align: left;
  }

  .step {
    min-height: 220px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .section h2,
  .final-cta h2 {
    font-size: 2.15rem;
  }

  .hero-copy {
    font-size: 1rem;
  }
}

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