/* Kauri Motel on Riccarton - redesign */
:root {
  --forest: #1a3c2e;
  --forest-deep: #0f241b;
  --forest-mid: #2a5642;
  --leaf: #3d7a5c;
  --gold: #c4a35a;
  --gold-soft: #e8d5a3;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d6;
  --sand: #f0ebe1;
  --ink: #1c1b19;
  --muted: #5c5a55;
  --line: rgba(26, 60, 46, 0.12);
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(15, 36, 27, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 36, 27, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;
  --topbar-h: 40px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--leaf);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-deep);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--muted); }
p:last-child { margin-bottom: 0; }

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

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

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.section-head-left {
  text-align: left;
  margin: 0 0 2rem;
}

.section-lead {
  font-size: 1.1rem;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: 0 8px 20px rgba(26, 60, 46, 0.22);
}

.btn-primary:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn-text {
  background: none;
  border: none;
  color: var(--forest);
  padding: 0.5rem 0;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  box-shadow: none;
}

.btn-text:hover {
  color: var(--leaf);
  transform: none;
}

.btn-lg {
  padding: 1rem 1.7rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* Top bar */
.top-bar {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.45rem 0;
  width: min(1120px, calc(100% - 2.5rem));
}

.top-link,
.top-text {
  color: inherit;
  text-decoration: none;
}

.top-link:hover {
  color: var(--gold-soft);
}

.top-sep {
  opacity: 0.4;
}

.top-book {
  margin-left: auto;
  color: var(--gold-soft);
  font-weight: 600;
  text-decoration: none;
}

.top-book:hover {
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(15, 36, 27, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--forest-deep);
}

.logo:hover {
  color: var(--forest-deep);
}

.logo-mark {
  width: 42px;
  height: 42px;
  color: var(--forest);
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-sub {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav a:not(.btn) {
  color: var(--forest-deep);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
}

.nav a:not(.btn):hover {
  color: var(--leaf);
}

.nav-cta {
  margin-left: 0.4rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("images/hero.jpg")
    center / cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 36, 27, 0.35) 0%, rgba(15, 36, 27, 0.55) 40%, rgba(15, 36, 27, 0.88) 100%),
    linear-gradient(90deg, rgba(15, 36, 27, 0.55) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
  margin-left: max(calc((100% - 1120px) / 2), 1.25rem);
  margin-right: auto;
  width: min(720px, calc(100% - 2.5rem));
}

.hero .eyebrow {
  color: var(--gold-soft);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-pills li {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

/* Trust */
.trust {
  background: var(--forest);
  color: var(--white);
  padding: 1.75rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.25rem 0;
}

.trust-item strong {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
}

.trust-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-copy p {
  font-size: 1.08rem;
}

.about-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--forest);
  margin: 1.25rem 0 1.75rem;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.about-card h3 {
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 5px var(--forest);
}

.phone-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--forest-deep);
  transition: background 0.2s;
}

.phone-card:hover {
  background: var(--cream-dark);
  color: var(--forest-deep);
}

.phone-card span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.phone-card strong {
  font-size: 1.2rem;
  font-family: var(--display);
}

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(15, 36, 27, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.room-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: var(--cream-dark);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.room-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.room-tag-gold {
  background: var(--gold);
  color: var(--forest-deep);
}

.room-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-body h3 {
  margin-bottom: 0.4rem;
}

.room-body > p {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  flex: 1;
}

.room-meta {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.room-meta li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest-mid);
  background: var(--cream);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.room-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature:hover {
  border-color: rgba(26, 60, 46, 0.25);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  margin-bottom: 0.45rem;
}

.feature p {
  font-size: 0.95rem;
  margin: 0;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.location-address {
  font-style: normal;
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
}

.location-address strong {
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 1.1rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 360px;
  background: var(--cream-dark);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  font-size: 0.98rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  align-items: baseline;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-list a {
  font-weight: 600;
  text-decoration: none;
  color: var(--forest-deep);
}

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

.contact-panel {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
}

.contact-panel h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.contact-panel .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
  box-shadow: none;
  margin-bottom: 0.75rem;
}

.contact-panel .btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--forest-deep);
}

.contact-panel .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.contact-panel .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0;
  font-size: 0.92rem;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-copy {
  margin: 0.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 27, 0.65);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s var(--ease);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest-deep);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.modal-close:hover {
  background: var(--white);
}

.modal-media {
  aspect-ratio: 16 / 10;
  background: var(--cream-dark);
}

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

.modal-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.modal-facilities-title {
  font-size: 1rem;
  margin: 1.25rem 0 0.75rem;
}

.facilities {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}

.facilities li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.facilities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 960px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .location-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    position: static;
  }

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

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

@media (max-width: 720px) {
  .top-text {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: calc(var(--topbar-h) + var(--header-h)) 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a:not(.btn) {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin: 0.85rem 0 0;
    width: 100%;
  }

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

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

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

  .hero-content {
    margin-left: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

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

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