:root {
  --ink: #2d2926;
  --ink-soft: #544d47;
  --taupe: #87796c;
  --taupe-deep: #6f6257;
  --taupe-pale: #e9e2db;
  --cream: #f7f4ef;
  --white: #ffffff;
  --line: rgba(45, 41, 38, 0.16);
  --shell: min(1180px, calc(100% - 48px));
  --radius: 28px;
  --shadow: 0 28px 70px rgba(45, 41, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(135, 121, 108, 0.5);
  outline-offset: 4px;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(45, 41, 38, 0.06);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 156px;
  height: auto;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-navigation a {
  position: relative;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
}

.primary-navigation a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--taupe-deep);
}

.menu-button {
  display: none;
}

.privacy-home-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
}

.privacy-home-link:hover,
.privacy-home-link:focus-visible {
  background: var(--taupe-deep);
}

.hero {
  position: relative;
  min-height: 810px;
  padding: 158px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--cream) 0 57%, transparent 57%),
    var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -310px;
  bottom: -300px;
  border: 1px solid rgba(135, 121, 108, 0.28);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--taupe-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d9cabe;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(3.75rem, 6.7vw, 6.55rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 span {
  color: var(--taupe);
}

.hero-intro {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 15px 30px rgba(45, 41, 38, 0.15);
}

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

.privacy-main {
  min-height: 80vh;
  background: var(--cream);
}

.privacy-hero {
  padding: 172px 0 68px;
  border-bottom: 1px solid var(--line);
}

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

.privacy-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 8vw, 6rem);
}

.privacy-updated {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 650;
}

.privacy-content {
  padding-block: 78px 108px;
}

.privacy-content section + section {
  margin-top: 58px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.privacy-content h2 {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.privacy-content p,
.privacy-content li {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.privacy-content ul {
  margin: 22px 0;
  padding-left: 1.35rem;
}

.privacy-content li + li {
  margin-top: 9px;
}

.privacy-content a,
.footer-legal a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.privacy-footer {
  padding-top: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.text-link svg,
.back-to-top svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.image-frame {
  position: relative;
  border-radius: 180px 12px 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: inherit;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 49% center;
}

.hero-note {
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: min(330px, 75%);
  padding: 26px 28px 25px;
  color: var(--white);
  background: var(--taupe-deep);
  box-shadow: 0 20px 50px rgba(45, 41, 38, 0.2);
}

.hero-note span {
  position: absolute;
  top: 4px;
  left: 16px;
  color: rgba(255, 255, 255, 0.22);
  font-family: Georgia, serif;
  font-size: 5.2rem;
  line-height: 1;
}

.hero-note p {
  position: relative;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 720;
  line-height: 1.45;
}

.trust-bar {
  color: var(--white);
  background: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  min-height: 116px;
  padding: 24px clamp(16px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid span {
  margin-right: 18px;
  color: #b9a596;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.trust-grid p {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 650;
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.two-column,
.model-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 9vw, 140px);
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading.compact {
  max-width: 710px;
}

.section-heading.compact > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.section-heading.centred {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centred h2 {
  max-width: 660px;
  margin-inline: auto;
}

.prose {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.prose .lead {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.15vw, 1.85rem);
  font-weight: 650;
  line-height: 1.4;
}

.first-home-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.75fr);
  min-height: 560px;
  margin-top: clamp(68px, 9vw, 112px);
  color: var(--white);
  background: var(--ink);
  border-radius: 12px 12px 150px 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.first-home-image {
  min-width: 0;
  overflow: hidden;
}

.first-home-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.first-home-feature figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
}

.first-home-feature figcaption h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.first-home-feature figcaption > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
  line-height: 1.6;
}

.values-section {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--taupe-deep);
}

.values-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card {
  min-height: 295px;
  padding: 38px 34px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card:first-child {
  padding-left: 0;
}

.value-card:last-child {
  border-right: 0;
}

.value-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-number {
  color: #d9cabe;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 650;
}

.value-card p {
  max-width: 290px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.model-section {
  background: var(--cream);
}

.model-intro {
  align-items: end;
}

.model-flow {
  display: grid;
  grid-template-columns: 1fr 64px 1fr 64px 1fr;
  align-items: center;
  margin-top: 78px;
}

.flow-card {
  min-height: 278px;
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(135, 121, 108, 0.22);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(45, 41, 38, 0.055);
}

.flow-card span {
  display: block;
  margin-bottom: 56px;
  color: var(--taupe-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flow-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.flow-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.flow-arrow {
  width: 46px;
  margin-inline: auto;
  fill: none;
  stroke: var(--taupe);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}

.partner-card {
  padding: 36px 34px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(135, 121, 108, 0.5);
  box-shadow: 0 24px 60px rgba(45, 41, 38, 0.08);
}

.partner-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--taupe-deep);
  background: var(--cream);
  border-radius: 50%;
}

.partner-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.partner-card h3 {
  min-height: 58px;
  margin-bottom: 22px;
  font-size: 1.42rem;
  line-height: 1.25;
}

.partner-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-card li {
  position: relative;
  padding: 13px 0 13px 23px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

.partner-card li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 1px;
  width: 8px;
  height: 1px;
  background: var(--taupe);
}

.contact-section {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  right: -180px;
  bottom: -240px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(60px, 10vw, 150px);
}

.contact-copy h2 {
  max-width: 690px;
  margin-bottom: 26px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
}

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

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--taupe);
}

.contact-details {
  font-style: normal;
}

.contact-details > div {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-details > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-details span {
  display: block;
  margin-bottom: 7px;
  color: #b9a596;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  display: block;
  margin: 0;
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 4px;
}

.contact-details small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-footer {
  padding: 64px 0 26px;
  background: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: 200px minmax(240px, 520px) 1fr;
  align-items: center;
  gap: 44px;
  padding-bottom: 52px;
}

.footer-brand img {
  width: 174px;
  height: auto;
}

.footer-main p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  font-weight: 750;
  text-decoration: none;
}

.back-to-top:hover svg,
.back-to-top:focus-visible svg {
  transform: translateY(-3px);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  color: #6a625b;
  border-top: 1px solid var(--line);
  font-size: 0.79rem;
  line-height: 1.45;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:first-child {
  max-width: 520px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

@media (max-width: 1000px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .primary-navigation {
    gap: 18px;
  }

  .primary-navigation a {
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 142px;
    background: var(--cream);
  }

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

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    margin-top: 12px;
  }

  .image-frame img {
    min-height: 490px;
  }

  .hero-note {
    right: 24px;
  }

  .trust-grid > div {
    padding-inline: 20px;
  }

  .two-column,
  .model-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .first-home-feature {
    grid-template-columns: 1fr;
    border-radius: 12px 12px 110px 12px;
  }

  .first-home-image img {
    min-height: 470px;
  }

  .value-card {
    padding-inline: 24px;
  }

  .model-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flow-card {
    min-height: 0;
  }

  .flow-card span {
    margin-bottom: 32px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

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

  .partner-card h3 {
    min-height: auto;
  }

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

  .footer-main {
    grid-template-columns: 180px 1fr auto;
    gap: 26px;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 84px;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 130px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 750;
  }

  .menu-icon {
    position: relative;
    width: 23px;
    height: 16px;
  }

  .menu-icon span {
    position: absolute;
    left: 0;
    width: 23px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-icon span:first-child {
    top: 3px;
  }

  .menu-icon span:last-child {
    top: 11px;
  }

  .menu-button[aria-expanded="true"] .menu-icon span:first-child {
    top: 7px;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-icon span:last-child {
    top: 7px;
    transform: rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    inset: 82px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 16px 40px;
    background: var(--cream);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .primary-navigation.open {
    transform: translateX(0);
    visibility: visible;
  }

  .primary-navigation a {
    padding: 20px 5px;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--line);
  }

  .primary-navigation .nav-cta {
    margin-top: 22px;
    padding: 16px 20px;
    text-align: center;
    border: 0;
  }

  .hero {
    min-height: 0;
    padding: 126px 0 86px;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 4.85rem);
  }

  .hero-grid {
    gap: 48px;
  }

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

  .image-frame {
    border-radius: 108px 8px 8px 8px;
  }

  .image-frame img {
    min-height: 470px;
    object-position: 57% center;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 22px);
    margin: -45px 0 0 22px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 78px;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .first-home-feature {
    min-height: 0;
    border-radius: 8px 8px 72px 8px;
  }

  .first-home-image img {
    min-height: 340px;
    object-position: 38% center;
  }

  .first-home-feature figcaption {
    padding: 34px 28px 48px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .value-card,
  .value-card:first-child {
    min-height: 240px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .model-flow {
    margin-top: 54px;
  }

  .flow-card {
    padding: 30px;
  }

  .partner-grid {
    margin-top: 48px;
  }

  .partner-card {
    padding: 30px 26px 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .back-to-top {
    justify-self: start;
  }

  .footer-legal {
    flex-direction: column;
  }

  .privacy-home-link {
    padding: 9px 14px;
    font-size: 0.9rem;
  }

  .privacy-hero {
    padding: 136px 0 50px;
  }

  .privacy-content {
    padding-block: 60px 82px;
  }

  .privacy-content section + section {
    margin-top: 42px;
    padding-top: 42px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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