:root {
  --ink: #10222f;
  --ink-soft: #40515d;
  --navy: #153e57;
  --blue: #20799c;
  --ice: #f1f7fa;
  --ice-deep: #dbeaf0;
  --white: #ffffff;
  --coral: #e95161;
  --coral-dark: #bd354d;
  --mint: #3aaea5;
  --line: rgba(16, 34, 47, 0.14);
  --shadow: 0 18px 48px rgba(24, 59, 78, 0.12);
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(32, 121, 156, 0.35);
  outline-offset: 3px;
}

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

figure,
blockquote {
  margin-right: 0;
  margin-left: 0;
}

h1,
h2 {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: 76px;
}

h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 52px;
}

h3 {
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 34, 47, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 4px;
  font-family: Georgia, Cambria, serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-self: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
}

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

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone svg,
.floating-call svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone:hover {
  color: var(--coral-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-7px);
}

.menu-toggle span:last-child {
  transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(82svh - var(--header-height));
  max-height: 840px;
  align-items: center;
  overflow: hidden;
  background: #f4f8fb;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: 54px;
}

.hero-copy {
  width: min(58%, 690px);
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 30px;
  color: #294250;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

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

.button-primary:hover {
  background: var(--coral-dark);
}

.button-link {
  min-height: 42px;
  padding: 0 0 3px;
  border-bottom-color: var(--ink);
  border-radius: 0;
}

.button-link:hover {
  color: var(--coral-dark);
  border-bottom-color: var(--coral-dark);
}

.button-dark {
  margin-top: 10px;
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--navy);
}

.hero-points {
  display: flex;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-points li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--mint);
  border-radius: 50%;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.intro-text {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 19px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-item {
  min-height: 245px;
  padding: 36px 40px 34px 0;
}

.value-item + .value-item {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.value-number,
.program-index {
  display: block;
  margin-bottom: 42px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
}

.value-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.programs {
  background: var(--ice);
}

.section-top {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

.section-top > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.program-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  margin-bottom: 44px;
  background: var(--white);
  border: 1px solid rgba(16, 34, 47, 0.08);
  box-shadow: var(--shadow);
}

.program-row-reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.program-row-reverse .program-image {
  order: 2;
}

.program-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.program-image picture,
.program-image img {
  width: 100%;
  height: 100%;
}

.program-image img {
  object-fit: cover;
}

.image-label {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 7px 13px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.image-label-coral {
  color: var(--white);
  background: var(--coral);
}

.program-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

.program-copy h3 {
  margin-bottom: 20px;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 37px;
  font-weight: 500;
}

.program-copy > p:not(.program-index) {
  color: var(--ink-soft);
}

.program-index {
  margin-bottom: 32px;
}

.feature-list {
  display: grid;
  margin: 12px 0 30px;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
}

.feature-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 5px;
  content: "";
  border-bottom: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover {
  color: var(--coral-dark);
  border-color: var(--coral-dark);
}

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

.about .eyebrow {
  color: #ff8792;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px 100px;
}

.about-title h2 {
  max-width: 380px;
}

.about-copy {
  max-width: 690px;
}

.about-lead {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.35;
}

.about-copy > p:not(.about-lead) {
  color: rgba(255, 255, 255, 0.72);
}

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

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

.about-quote {
  grid-column: 1 / -1;
  margin-bottom: 0;
  padding: 34px 0 0 35%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-quote p {
  max-width: 740px;
  margin-bottom: 0;
  color: #86d3cc;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1.3;
}

.steps {
  padding-bottom: 70px;
  background: var(--white);
}

.steps-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li > span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
}

.steps-list h3 {
  margin-bottom: 5px;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.reviews {
  background: #e5f3f3;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  margin: 0;
  padding: 34px;
  background: var(--white);
  border-radius: 6px;
}

.review-card-accent {
  color: var(--white);
  background: var(--coral-dark);
}

.review-stars {
  margin-bottom: 34px;
  color: #f3a81e;
  font-size: 15px;
  letter-spacing: 0;
}

.review-card-accent .review-stars {
  color: #ffd775;
}

.review-card blockquote {
  margin-bottom: 38px;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.5;
}

.review-card figcaption {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 800;
}

.review-card-accent .review-avatar {
  color: var(--coral-dark);
  background: var(--white);
}

.review-card figcaption div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.review-card figcaption small {
  color: var(--ink-soft);
}

.review-card-accent figcaption small {
  color: rgba(255, 255, 255, 0.76);
}

.request {
  background: var(--white);
}

.request-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 90px;
}

.request-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.request-copy h2 {
  margin-bottom: 28px;
}

.request-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 18px;
}

.request-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 38px;
  gap: 3px;
}

.request-phone span {
  color: var(--ink-soft);
  font-size: 13px;
}

.request-phone strong {
  color: var(--coral-dark);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 27px;
}

.request-form {
  padding: 42px;
  background: var(--ice);
  border: 1px solid var(--ice-deep);
  border-radius: 6px;
}

.request-form > label,
.form-row label {
  display: grid;
  margin-bottom: 22px;
  gap: 8px;
}

.request-form label > span:not(.consent span) {
  font-size: 13px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 34, 47, 0.18);
  border-radius: 4px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(16, 34, 47, 0.36);
}

input:user-invalid,
select:user-invalid {
  border-color: var(--coral);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  margin-top: 3px;
  gap: 10px !important;
  color: var(--ink-soft);
  font-size: 12px;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--coral);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 -10px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  padding: 56px 0 22px;
  color: var(--white);
  background: #0b1b25;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
}

.brand-footer .brand-text small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #ff8792;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.floating-call {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(189, 53, 77, 0.32);
}

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

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

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

@media (max-width: 1040px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 46px;
  }

  .header-inner {
    gap: 24px;
  }

  .main-nav {
    gap: 22px;
  }

  .header-phone span {
    display: none;
  }

  .hero-copy {
    width: 60%;
  }

  .program-copy {
    padding: 42px;
  }

  .program-copy h3 {
    font-size: 32px;
  }

  .about-grid {
    gap: 60px;
  }
}

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

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

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    background: var(--white);
    border-bottom: 1px solid transparent;
    gap: 0;
    opacity: 0;
    transition: max-height 240ms ease, padding 240ms ease, opacity 180ms ease;
  }

  .main-nav.is-open {
    max-height: calc(100svh - var(--header-height));
    padding: 18px 24px 26px;
    border-color: var(--line);
    box-shadow: 0 20px 40px rgba(16, 34, 47, 0.12);
    opacity: 1;
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    min-height: calc(78svh - var(--header-height));
  }

  .hero-media img {
    object-position: 61% center;
    opacity: 0.62;
  }

  .hero-copy {
    width: 72%;
  }

  .intro-grid,
  .section-top,
  .about-grid,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .value-item,
  .value-item + .value-item {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .value-item + .value-item {
    border-top: 1px solid var(--line);
  }

  .value-number {
    margin-bottom: 18px;
  }

  .program-row,
  .program-row-reverse {
    grid-template-columns: 1fr;
  }

  .program-row-reverse .program-image {
    order: 0;
  }

  .program-image {
    min-height: 420px;
  }

  .about-quote {
    padding-left: 0;
  }

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

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

  .request-copy {
    position: static;
  }

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

  .footer-main p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .footer-links {
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    max-width: 440px;
    margin-bottom: 19px;
    font-size: 42px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 21px;
  }

  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .hero {
    min-height: calc(82svh - var(--header-height));
    max-height: none;
  }

  .hero-inner {
    align-items: flex-end;
    padding-top: 60px;
    padding-bottom: 48px;
  }

  .hero-media img {
    object-position: 64% center;
    opacity: 0.4;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-lead {
    max-width: 390px;
    margin-bottom: 24px;
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .button-link {
    width: max-content;
    min-height: 36px;
    align-self: center;
  }

  .hero-points {
    flex-wrap: wrap;
    margin-top: 25px;
    gap: 8px 18px;
  }

  .intro-text {
    font-size: 17px;
  }

  .section-top {
    margin-bottom: 42px;
  }

  .program-image {
    min-height: 280px;
  }

  .program-copy {
    padding: 30px 24px 34px;
  }

  .program-index {
    margin-bottom: 20px;
  }

  .program-copy h3 {
    font-size: 29px;
  }

  .about-lead {
    font-size: 24px;
  }

  .about-quote p {
    font-size: 27px;
  }

  .steps {
    padding-bottom: 48px;
  }

  .steps-list li {
    grid-template-columns: 52px 1fr;
    padding: 26px 0;
  }

  .review-card {
    padding: 28px 24px;
  }

  .review-card blockquote {
    font-size: 19px;
  }

  .request-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .request-phone strong {
    font-size: 24px;
  }

  .request-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-main p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-links {
    flex-direction: column;
    justify-self: start;
    gap: 9px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-call {
    display: flex;
  }
}

@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;
  }

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