:root {
  --bg-main: #f7f2ee;
  --bg-soft: #efe6df;
  --bg-cream: #e6ddd5;
  --surface: rgba(255, 251, 248, 0.8);
  --surface-strong: rgba(255, 248, 243, 0.92);
  --text-main: #6f5a52;
  --text-strong: #4e3d37;
  --text-soft: rgba(111, 90, 82, 0.78);
  --accent-muted: #b8a39a;
  --accent-soft: #bfae8f;
  --accent-button: #cdae9e;
  --accent-strong: #a88473;
  --accent-hover: #d8c4ba;
  --line-soft: rgba(111, 90, 82, 0.12);
  --white: rgba(255, 252, 249, 0.94);
  --shadow-soft: 0 24px 60px rgba(111, 90, 82, 0.12);
  --shadow-card: 0 18px 40px rgba(111, 90, 82, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 88px;
  --transition: 260ms ease;
  --section-padding: clamp(5rem, 8vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(216, 196, 186, 0.4), transparent 28%),
    linear-gradient(180deg, #fbf7f4 0%, var(--bg-main) 100%);
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 242, 238, 0.86);
  box-shadow: 0 14px 36px rgba(111, 90, 82, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.brand-logo {
  display: block;
  width: clamp(176px, 20vw, 280px);
  height: auto;
}

.brand-logo-dark {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: brightness(0) saturate(100%) invert(20%) sepia(12%) saturate(872%) hue-rotate(329deg) brightness(94%) contrast(88%);
  transition: opacity var(--transition);
}

.brand-logo-light {
  opacity: 0.98;
  transition: opacity var(--transition);
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--white);
}

.site-header.is-scrolled .site-nav,
.site-header.is-open .site-nav {
  color: var(--text-main);
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.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 {
  font-weight: 600;
}

.nav-cta {
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  border-color: rgba(168, 132, 115, 0.24);
  background: rgba(205, 174, 158, 0.2);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: clip;
  color: #fffdfb;
  background: linear-gradient(180deg, rgba(111, 90, 82, 0.22), rgba(111, 90, 82, 0.36));
}

.hero-media,
.hero-overlay,
.hero-fallback,
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-fallback {
  background:
    radial-gradient(circle at top, rgba(247, 242, 238, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(111, 90, 82, 0.5), rgba(168, 132, 115, 0.8)),
    linear-gradient(180deg, #bfae8f 0%, #b8a39a 54%, #6f5a52 100%);
  transform: scale(1.04);
}

.hero-slides {
  overflow: hidden;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1400ms ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 16, 0.14), rgba(26, 18, 16, 0.36));
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 7s ease forwards;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(55, 39, 34, 0.18) 0%, rgba(55, 39, 34, 0.26) 42%, rgba(55, 39, 34, 0.52) 100%),
    linear-gradient(90deg, rgba(55, 39, 34, 0.48) 0%, rgba(55, 39, 34, 0.12) 62%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: min(5vw, 4rem);
  width: min(34vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24vh;
  background: linear-gradient(180deg, transparent, rgba(55, 39, 34, 0.22));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-height) + 2.25rem);
  padding-bottom: 9.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  min-height: calc(100svh - var(--header-height) - 12rem);
}

.hero-copy {
  max-width: 700px;
  padding-bottom: 1rem;
}

.hero-copy .eyebrow {
  color: rgba(255, 248, 243, 0.88);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-muted);
}

.hero h1,
.section h2,
.quote-text,
.specialty-content h3,
.experience-card h3,
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1,
.section h2,
.quote-text {
  margin: 0;
  color: var(--text-strong);
}

.hero h1 {
  max-width: 9.5ch;
  font-size: clamp(3.6rem, 6.1vw, 5.8rem);
  line-height: 0.96;
  color: #fff8f3;
  text-wrap: balance;
}

.hero-text {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.85;
  color: rgba(255, 248, 243, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.button-primary {
  color: #fffaf7;
  background: var(--accent-strong);
  box-shadow: 0 16px 34px rgba(78, 61, 55, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #9c7868;
}

.button-secondary {
  color: #fff8f3;
  border: 1px solid rgba(255, 248, 243, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero-note {
  align-self: end;
  padding: 1.7rem;
  border: 1px solid rgba(255, 248, 243, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.12), rgba(255, 248, 243, 0.06));
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 42px rgba(32, 20, 17, 0.1);
  max-width: 360px;
}

.hero-note-label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 248, 243, 0.78);
}

.hero-note-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255, 248, 243, 0.9);
}

.hero-note-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.hero-note-tags span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 243, 0.18);
  background: rgba(255, 248, 243, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 248, 243, 0.88);
}

.hero-bottom-bar {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 248, 243, 0.12);
  background: rgba(55, 39, 34, 0.16);
  backdrop-filter: blur(10px);
}

.hero-bottom-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-bottom-text {
  margin: 0;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 248, 243, 0.84);
}

.hero-bottom-link {
  color: rgba(255, 248, 243, 0.96);
  font-size: 0.92rem;
  white-space: nowrap;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 6.2rem;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 248, 243, 0.78);
}

.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08), rgba(255, 248, 243, 0.8));
  animation: pulseLine 1800ms ease-in-out infinite;
}

.section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding: var(--section-padding) 0;
  width: 100%;
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
}

.section > .container {
  width: var(--container);
}

.intro-section,
.gallery-section,
.final-cta-section {
  background: var(--bg-main);
}

.specialties-section,
.experience-section {
  background: linear-gradient(180deg, rgba(239, 230, 223, 0.9), rgba(247, 242, 238, 0.75));
}

.quote-section {
  background:
    radial-gradient(circle at top right, rgba(191, 174, 143, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(230, 221, 213, 0.84), rgba(247, 242, 238, 0.96));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section h2 {
  font-size: clamp(2.7rem, 4.7vw, 4.5rem);
  line-height: 0.98;
}

.section-lead,
.section-copy p,
.specialty-card p,
.experience-card p,
.footer-inner p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
}

.section-lead {
  max-width: 38rem;
  margin-top: 1rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.section-copy {
  max-width: 640px;
}

.section-copy h2 {
  margin-bottom: 1.3rem;
}

.section-copy p + p {
  margin-top: 1rem;
}

.signature {
  margin-top: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--text-strong);
}

.portrait-frame {
  position: relative;
  margin: 0;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: auto 8% -2rem;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 163, 154, 0.24), transparent 72%);
  filter: blur(10px);
  z-index: 0;
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: min(36vw, 18rem);
  object-fit: cover;
  background: linear-gradient(180deg, #e6ddd5, #cdae9e);
  box-shadow: var(--shadow-soft);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
}

.specialty-card,
.experience-card,
.final-cta-card,
.quote-card {
  border-radius: var(--radius-lg);
}

.specialty-card {
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.specialty-media {
  aspect-ratio: 0.78;
  overflow: hidden;
}

.specialty-media img {
  height: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #e6ddd5, #d8c4ba);
  transition: transform 700ms ease;
}

.specialty-card:hover .specialty-media img {
  transform: scale(1.04);
}

.specialty-content {
  padding: 1.35rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.specialty-content h3,
.experience-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.75rem;
  line-height: 0.98;
  color: var(--text-strong);
}

.quote-card {
  position: relative;
  padding: clamp(2.2rem, 5vw, 4rem);
  background: rgba(255, 252, 249, 0.74);
  box-shadow: var(--shadow-soft);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 1rem auto auto 1rem;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 174, 158, 0.34), transparent 68%);
}

.quote-text {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.gallery-grid {
  columns: 3 18rem;
  column-gap: 1.3rem;
}

.gallery-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 1.3rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 249, 0.76);
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: linear-gradient(180deg, #e6ddd5, #d8c4ba);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.3rem 1.15rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(55, 39, 34, 0.56));
  color: rgba(255, 248, 243, 0.92);
  font-size: 0.88rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.experience-card {
  min-height: 220px;
  padding: 1.55rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.experience-card h3 {
  font-size: 1.75rem;
}

.experience-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: rgba(205, 174, 158, 0.22);
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 600;
}

.final-cta-card {
  padding: clamp(2.4rem, 6vw, 4.4rem);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.56), transparent 40%),
    linear-gradient(135deg, rgba(184, 163, 154, 0.28), rgba(191, 174, 143, 0.12)),
    rgba(255, 252, 249, 0.88);
  box-shadow: var(--shadow-soft);
}

.final-cta-card h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.final-cta-lead {
  max-width: 34rem;
  margin: 1rem auto 1.8rem;
}

.site-footer {
  width: 100%;
  padding: 2.4rem 0 5rem;
  background: var(--bg-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
}

.footer-logo {
  display: block;
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 0.8rem;
  filter: brightness(0) saturate(100%) invert(47%) sepia(16%) saturate(488%) hue-rotate(332deg) brightness(91%) contrast(87%);
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent-strong);
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #56d168, #1ea952);
  box-shadow: 0 18px 34px rgba(30, 169, 82, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 40px rgba(30, 169, 82, 0.34);
}

.whatsapp-float svg {
  width: 1.9rem;
  fill: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(0.84);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-note {
    max-width: 460px;
  }

  .specialties-grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    max-width: 560px;
    justify-self: center;
  }

  .gallery-grid {
    columns: 2 18rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
    --container: min(100vw - 1.3rem, 100%);
    --section-padding: 4.4rem;
  }

  .menu-toggle {
    display: inline-block;
    color: #fff8f3;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle {
    color: var(--text-strong);
    background: rgba(205, 174, 158, 0.18);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(247, 242, 238, 0.96);
    color: var(--text-main);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

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

  .nav-cta {
    text-align: center;
    background: rgba(205, 174, 158, 0.16);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 7.5rem;
  }

  .hero-layout {
    min-height: auto;
    gap: 1.5rem;
  }

  .hero h1 {
    max-width: 8.4ch;
    font-size: clamp(3rem, 13vw, 4.9rem);
  }

  .brand-logo {
    width: clamp(160px, 42vw, 220px);
  }

  .hero-text {
    max-width: 24rem;
    line-height: 1.75;
  }

  .hero-note {
    max-width: none;
    padding: 1.3rem;
  }

  .hero-note-tags span {
    font-size: 0.75rem;
  }

  .hero-bottom-inner {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-indicator {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .section {
    min-height: auto;
    align-items: flex-start;
  }

  .section h2 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-lead,
  .section-copy p,
  .specialty-card p,
  .experience-card p,
  .footer-inner p {
    line-height: 1.75;
  }

  .specialty-content,
  .experience-card,
  .quote-card,
  .final-cta-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .quote-text {
    max-width: none;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    max-width: 7.5ch;
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-copy .eyebrow,
  .eyebrow {
    letter-spacing: 0.22em;
  }

  .specialties-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .hero-bottom-link {
    white-space: normal;
  }

  .whatsapp-float {
    width: 3.6rem;
    height: 3.6rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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