@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
}

.cms-image-description {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --deep-teal: #12343b;
  --deep-teal-hover: #0a252b;
  --teal: #2b7a78;
  --coral: #e98262;
  --coral-hover: #cf674a;
  --sand: #f5f0e7;
  --white: #ffffff;
  --ink: #153036;
  --muted: #667478;
  --border: rgba(18, 52, 59, 0.16);
  --container: 1200px;
  --radius: 8px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body,
button,
summary {
  font-family: "DM Sans", Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container,
.container-narrow {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - 48px), 1400px);
  margin-inline: auto;
}

.container-narrow {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--white);
  color: var(--deep-teal);
  font-size: 0.9rem;
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  isolation: isolate;
  background: var(--deep-teal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 52, 59, 0.985);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(7, 39, 45, 0.18);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  width: clamp(190px, 16vw, 220px);
}

.brand-footer .brand-logo {
  max-height: none;
  width: min(250px, 100%);
}

.reveal {
  opacity: 1;
  transform: none;
}

html.motion-ready .reveal {
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.motion-ready .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(16px);
}

html.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  outline: 1px solid rgba(255, 255, 255, 0.45);
  outline-offset: -6px;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 7px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding-block: 29px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--white);
  content: "";
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-light {
  background: var(--white);
  color: var(--deep-teal);
}

.button-light:hover {
  background: var(--sand);
}

.button-coral {
  border-radius: var(--radius);
  background: var(--coral);
  color: var(--deep-teal-hover);
}

.button-coral:hover {
  background: var(--coral-hover);
  color: var(--white);
}

.button-outline {
  border-color: var(--deep-teal);
  border-radius: var(--radius);
  color: var(--deep-teal);
}

.button-outline:hover {
  background: var(--deep-teal);
  color: var(--white);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  display: none;
  width: min(310px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--deep-teal);
}

.mobile-menu[open] .mobile-nav {
  display: grid;
}

.site-header > .mobile-nav {
  display: none;
}

.mobile-nav > a:not(.button) {
  padding: 11px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  font-weight: 600;
}

.mobile-nav > a[aria-current="page"] {
  color: #f3a68e;
}

.mobile-nav .button {
  margin-top: 14px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--deep-teal);
  text-decoration: underline;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: rotate(-90deg);
}

.page-hero {
  padding: 72px 0 80px;
  background: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-media {
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero-media img {
  height: 100%;
  min-height: 490px;
  object-fit: cover;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-sand {
  background: var(--sand);
}

.section-teal {
  background: var(--deep-teal);
  color: var(--white);
}

.cms-call-to-action {
  text-align: center;
}

.cms-call-to-action .centered-copy {
  max-width: 820px;
}

.cms-call-to-action h2 {
  margin-bottom: 20px;
}

.cms-call-to-action p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-intro p,
.split-copy > p,
.policy-copy p,
.guide-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-teal .section-intro p,
.section-teal .cta-copy {
  color: rgba(255, 255, 255, 0.74);
}

.section-label {
  margin-bottom: 15px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-teal .section-label {
  color: #f3a68e;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.split-reverse .split-copy {
  order: 2;
}

.split-reverse .framed-media {
  order: 1;
}

.framed-media,
.split-media {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.framed-media img,
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fact-list,
.plain-list,
.contact-list,
.policy-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.fact-list li {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.fact-list strong {
  color: var(--deep-teal);
}

.fact-list span {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.editorial-card,
.review-card,
.contact-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.editorial-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-copy {
  padding: 28px;
}

.card-copy p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral-hover);
  font-size: 0.94rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--deep-teal);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  display: flex;
  min-height: 265px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 44px);
}

.review-mark {
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.7;
}

.review-card blockquote,
.review-card .review-summary {
  margin-bottom: 30px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
}

.review-card cite {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 600;
}

.guide-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.guide-feature > img,
.guide-feature .guide-copy {
  min-height: 470px;
  border-radius: var(--radius);
}

.guide-feature > img {
  border: 1px solid var(--border);
  object-fit: cover;
}

.guide-feature .guide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
  background: var(--sand);
}

.guide-feature-reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.guide-feature-reverse > img {
  order: 2;
}

.guide-feature-reverse .guide-copy {
  order: 1;
}

.planning-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.planning-list li {
  padding: 34px 32px 0 0;
}

.planning-list li + li {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.planning-list h3 {
  font-size: 1.25rem;
}

.planning-list p {
  color: rgba(255, 255, 255, 0.7);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 27px 54px 27px 0;
  color: var(--deep-teal);
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--teal);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 730px;
  padding: 0 54px 28px 0;
  color: var(--muted);
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 8vw, 110px);
}

.policy-nav {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  border-top: 1px solid var(--border);
}

.policy-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.policy-nav a:hover {
  color: var(--deep-teal);
}

.policy-copy section {
  padding-bottom: 48px;
  scroll-margin-top: 0;
}

.policy-copy section + section {
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.policy-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.policy-list {
  display: grid;
  gap: 13px;
}

.policy-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.policy-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.notice {
  padding: 24px;
  border-left: 4px solid var(--coral);
  background: var(--sand);
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--border);
}

.contact-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list svg {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list strong {
  margin-bottom: 3px;
  color: var(--deep-teal);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list span,
.contact-list address {
  color: var(--muted);
  font-style: normal;
}

.contact-list a:hover span {
  color: var(--deep-teal);
  text-decoration: underline;
}

.contact-media {
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-media img {
  height: 100%;
  object-fit: cover;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-band h2 {
  max-width: 700px;
  margin-bottom: 16px;
}

.cta-copy {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.site-footer {
  padding-top: 72px;
  background: var(--deep-teal-hover);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-style: normal;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .page-hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.menu-active > .mobile-nav {
    z-index: 30;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    padding: 20px 24px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .page-hero {
    padding: 48px 0 64px;
  }

  .page-hero-grid,
  .split,
  .guide-feature,
  .guide-feature-reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    gap: 38px;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .split-reverse .split-copy,
  .split-reverse .framed-media,
  .guide-feature-reverse > img,
  .guide-feature-reverse .guide-copy {
    order: initial;
  }

  .card-grid,
  .planning-list {
    grid-template-columns: 1fr;
  }

  .planning-list li {
    padding: 28px 0;
  }

  .planning-list li + li {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .guide-feature > img,
  .guide-feature .guide-copy {
    min-height: auto;
  }

  .guide-feature > img {
    aspect-ratio: 4 / 3;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .policy-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .contact-media {
    min-height: 480px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 74px;
  }

  .container,
  .container-narrow {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand-logo {
    max-height: 43px;
    width: 176px;
  }

  .brand-footer .brand-logo {
    max-height: none;
    width: min(220px, 100%);
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy small {
    font-size: 0.54rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

  .breadcrumb {
    margin-bottom: 24px;
  }

  .page-hero {
    padding: 38px 0 48px;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .section,
  .section-tight {
    padding: 64px 0;
  }

  .section-intro {
    margin-bottom: 34px;
  }

  .fact-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }

  .contact-media {
    min-height: 360px;
  }

  .hero-actions,
  .inline-actions,
  .hero-actions .button,
  .inline-actions .button,
  .cta-band > .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    padding-block: 22px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

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

  .reveal,
  html.motion-ready .reveal,
  html.motion-ready .reveal:not(.visible) {
    opacity: 1;
    transform: none;
  }
}
