:root {
  --cream: #f3eee6;
  --cream-deep: #ebe4d8;
  --paper: #faf7f0;
  --sand: #e7ddd0;
  --terracotta: #c45c3a;
  --terracotta-dark: #a94c2f;
  --gold: #c4a06c;
  --gold-dark: #a8844a;
  --ink: #1c1714;
  --muted: #6d645b;
  --line: #d9cfc2;
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(28, 23, 20, 0.08);
  --radius: 28px;
  --wrap: 1180px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
blockquote p {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 1rem;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 2.5rem), var(--wrap));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.lede,
.intro,
.section-head__aside {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.intro {
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn--solid {
  background: var(--gold);
  color: #1c1714;
}

.btn--solid:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: #1c1714;
}

.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.text-link {
  color: var(--gold-dark);
  font-weight: 500;
  font-size: 0.92rem;
}

.text-link:hover {
  text-decoration: underline;
}

.chip,
.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  background: var(--sand);
  color: var(--ink);
}

.section {
  padding: 5.5rem 0;
}

.hero,
.spotlight,
.cta-banner,
#contact,
.section {
  scroll-margin-top: 6.5rem;
}

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

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem 1.5rem;
  margin-bottom: 2.4rem;
}

.section-head--center {
  align-items: center;
  text-align: center;
}

.section-head--split,
.section-head:has(.section-head__aside),
.section-head:has(.slider-nav) {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.topbar {
  background: #efe8dc;
  font-size: 0.78rem;
  color: var(--muted);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 38px;
  flex-wrap: wrap;
}

.topbar__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.topbar__cta {
  margin-left: auto;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 238, 230, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(28, 23, 20, 0.04);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo__img {
  width: 42px;
  height: auto;
  display: block;
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold);
  color: #1c1714;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

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

.logo__text strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.logo__text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.35rem;
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--gold-dark);
}

.header__cta {
  padding: 0.72rem 1.15rem;
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

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

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.hero {
  padding: 2.5rem 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero__copy h1 {
  margin-bottom: 1.1rem;
}

.hero-form {
  margin-top: 2rem;
  background: var(--white);
  border-radius: 999px;
  padding: 0.55rem 0.55rem 0.55rem 1.2rem;
  box-shadow: var(--shadow);
}

.hero-form__label {
  display: none;
}

.hero-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--muted);
  min-width: 0;
  padding: 0.15rem 0.4rem;
}

.field input,
.field select {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  width: 100%;
  min-height: 1.7rem;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder {
  color: #b3aaa1;
}

.hero__visual {
  position: relative;
}

.hero__visual > img {
  width: 100%;
  height: min(72vh, 680px);
  object-fit: cover;
  border-radius: 36px;
}

.hero__float {
  position: absolute;
  width: 28%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
}

.hero__float img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.hero__float--one {
  left: -6%;
  bottom: 12%;
}

.hero__float--two {
  right: 8%;
  bottom: -6%;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.mosaic__card {
  position: relative;
  display: block;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.mosaic__card img,
.advisor-card img,
.product-card img,
.process__card img,
.diff-grid img,
.journal img,
.hero__visual > img,
.spotlight__media img,
.offer__media img,
.cta-banner img {
  transition: transform 0.6s ease;
}

.mosaic__card:hover img,
.advisor-card:hover img,
.product-card:hover img,
.process__card:hover img,
.diff-grid article:hover img,
.journal article:hover img,
.hero__visual:hover > img,
.spotlight__media:hover img,
.offer__media:hover img,
.cta-banner:hover img {
  transform: scale(1.04);
}

.mosaic__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.mosaic__card--tall {
  min-height: 380px;
}

.mosaic__meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(250, 247, 240, 0.92);
  border-radius: 18px;
  padding: 0.9rem 1rem;
}

.mosaic__meta h3 {
  font-size: 1.3rem;
}

.mosaic__meta p {
  color: var(--muted);
  font-size: 0.9rem;
}

.portraits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem 1.5rem;
  padding: 0;
  margin: 0;
  text-align: center;
}

.portraits img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
}

.portraits strong {
  display: block;
}

.portraits span,
.portraits a {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  word-break: break-word;
}

.portraits strong + span,
.portraits strong + a {
  margin-top: 0.25rem;
}

.portraits a:hover {
  color: var(--terracotta);
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.advisor-card,
.product-card,
.process__card,
.diff-grid article,
.journal article {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(28, 23, 20, 0.04);
}

.advisor-card img,
.product-card img,
.process__card img,
.diff-grid img,
.journal img,
.mosaic__card,
.spotlight__media,
.cta-banner {
  background: var(--sand);
}

.advisor-card img,
.product-card img,
.process__card img,
.diff-grid img,
.journal img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.advisor-card__body,
.product-card__body,
.process__card > div {
  padding: 1.25rem 1.3rem 1.5rem;
}

.diff-grid article,
.journal article {
  padding-bottom: 1.4rem;
}

.diff-grid h3,
.diff-grid p,
.journal h3,
.journal p,
.journal span {
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}

.diff-grid h3,
.journal span {
  display: block;
  padding-top: 1.05rem;
}

.spotlight {
  padding: 2rem 0 5rem;
}

.spotlight__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3rem;
  align-items: center;
}

.spotlight__media {
  overflow: hidden;
  border-radius: 180px 180px 32px 32px;
}

.spotlight__media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 12%;
}

.spotlight__copy h2 {
  margin-bottom: 1.2rem;
}

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

.spotlight__copy .btn {
  margin-top: 0.6rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.process__card img {
  height: 210px;
}

.num {
  display: inline-block;
  font-family: var(--font-serif);
  color: var(--terracotta);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.slider {
  overflow: hidden;
}

.slider__track {
  display: flex;
  gap: 1.1rem;
  transition: transform 0.45s ease;
}

.product-card {
  min-width: calc((100% - 2.2rem) / 3);
  flex: 0 0 calc((100% - 2.2rem) / 3);
}

.product-card img {
  height: 200px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
}

.icon-btn:hover {
  background: var(--ink);
}

.icon-btn:hover svg {
  stroke: var(--white);
}

.slider-nav {
  display: flex;
  gap: 0.5rem;
}

.split-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.feature-panel {
  background: var(--paper);
  border-radius: 32px;
  padding: 2.2rem;
}

.feature-panel--dark {
  background: #2b241f;
  color: var(--white);
}

.feature-panel--dark .eyebrow,
.feature-panel--dark p {
  color: #cbbfb3;
}

.feature-panel--warm {
  background: #d8cbb8;
  color: var(--ink);
}

.feature-panel--warm .eyebrow {
  color: var(--terracotta-dark);
}

.feature-panel--warm p {
  color: #5c534b;
}

.feature-panel h2 {
  margin-bottom: 1rem;
}

.feature-panel__photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-top: 1.4rem;
}

.mini-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0.6rem;
}

.feature-panel:not(.feature-panel--dark) .mini-card {
  background: var(--cream);
}

.mini-card img {
  height: 84px;
  width: 110px;
  object-fit: cover;
  border-radius: 14px;
}

.quote-section {
  padding-top: 1rem;
}

.quote-section__inner {
  text-align: center;
}

blockquote p {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-style: italic;
  max-width: 18ch;
  margin-inline: auto;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0;
  margin: 0;
  counter-reset: none;
}

.steps span {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--terracotta);
}

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

.diff-grid,
.journal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.journal {
  grid-template-columns: repeat(4, 1fr);
}

.journal span {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.45rem;
}

.journal p,
.diff-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-long__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
}

.about-long__copy p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.cta-banner {
  position: relative;
  min-height: 520px;
  margin: 1rem 1.25rem 0;
  border-radius: 36px;
  overflow: hidden;
}

.cta-banner img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 23, 20, 0.55), rgba(28, 23, 20, 0.15));
  display: grid;
  align-items: center;
}

.cta-banner__content {
  color: var(--white);
  max-width: 640px;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact__intro p {
  margin-bottom: 0;
}

.contact__facts {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  color: var(--muted);
}

.contact__facts li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.contact__facts li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--paper);
  padding: 1.6rem;
  border-radius: 28px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-form .full,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  min-height: 3rem;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231c1714' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}

.contact-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--terracotta);
  border-color: transparent;
}

.form-status {
  min-height: 1.4em;
  color: var(--terracotta);
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.testimonial {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.8rem 1.65rem 1.6rem;
  box-shadow: 0 1px 0 rgba(28, 23, 20, 0.04);
}

.testimonial p {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial footer {
  margin-top: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}

.nav a[aria-current="page"] {
  color: var(--terracotta);
}

.offer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 1.6rem;
}

.offer-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  background: var(--paper);
}

.offer-nav a[aria-current="page"],
.offer-nav a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1c1714;
}

.page-hero {
  padding: 3rem 0 1.4rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  max-width: 16ch;
}

.offer {
  padding-bottom: 4.5rem;
}

.offer__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.offer__subtitle,
.offer__copy p {
  color: var(--muted);
}

.offer__heading {
  font-size: 1.85rem;
  margin: 1.8rem 0 0.7rem;
}

.offer__list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.offer__list li {
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
}

.offer__list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.offer__cta {
  margin-top: 1.8rem;
}

.offer__media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}

.offer__media img {
  width: 100%;
  height: min(72vh, 620px);
  object-fit: cover;
  border-radius: var(--radius);
}

.footer {
  background: #241e1a;
  color: #d8cfc5;
  padding: 4rem 0 1.5rem;
  margin-top: 2rem;
}

.footer .logo__text strong,
.footer .logo__text em,
.footer a:hover {
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
}

.footer h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer__grid a,
.footer__grid p {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .header__inner {
    display: flex;
  }

  .hero__grid,
  .spotlight__grid,
  .split-feature__grid,
  .about-long__grid,
  .contact,
  .footer__grid,
  .offer__grid,
  .mosaic,
  .advisor-grid,
  .process,
  .steps,
  .diff-grid,
  .journal,
  .testimonials,
  .portraits {
    grid-template-columns: 1fr 1fr;
  }

  .hero__grid,
  .spotlight__grid,
  .about-long__grid,
  .contact,
  .footer__grid,
  .offer__grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-width: calc((100% - 1.1rem) / 2);
    flex-basis: calc((100% - 1.1rem) / 2);
  }

  .nav,
  .header__cta {
    display: none;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    background: var(--paper);
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 60;
  }

  .header__inner {
    position: relative;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-form,
  .hero-form__row {
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .hero__visual > img,
  .cta-banner,
  .cta-banner img {
    height: 420px;
    border-radius: 28px;
  }

  .spotlight__media {
    border-radius: 140px 140px 28px 28px;
  }

  .spotlight__media img {
    height: 420px;
  }
}

@media (max-width: 680px) {
  .topbar__inner span,
  .topbar__sep {
    display: none;
  }

  .section-head--split,
  .section-head:has(.slider-nav),
  .section-head:has(.section-head__aside) {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-nav {
    align-self: flex-end;
  }

  .mosaic,
  .advisor-grid,
  .process,
  .steps,
  .diff-grid,
  .journal,
  .testimonials,
  .portraits,
  .contact-form,
  .split-feature__grid,
  .footer__grid,
  .offer__grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-width: 100%;
    flex-basis: 100%;
  }

  .hero__float {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-banner {
    margin-inline: 0.8rem;
  }
}

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

  .slider__track,
  .btn {
    transition: none;
  }
}
