/* Finchingfield.uk — design tokens */
:root {
  --color-bg: #f6f1e8;
  --color-surface: #fffcf7;
  --color-fg: #2a2723;
  --color-muted: #6a645c;
  --color-primary: #4f6b52;
  --color-primary-dark: #3d5440;
  --color-accent: #9a5b3c;
  --color-border: #e4ddd0;
  --color-hero-overlay: rgba(28, 26, 22, 0.48);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow: 0 10px 30px rgba(42, 39, 35, 0.08);
  --shadow-sm: 0 2px 10px rgba(42, 39, 35, 0.06);
  --max: 72rem;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-fg);
  background: var(--color-bg);
}

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

a {
  color: var(--color-primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

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

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

h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  text-wrap: pretty;
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 40rem;
}

/* Layout */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  text-decoration: none;
  color: var(--color-fg);
  min-height: 44px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-tld {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
}

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

.nav a {
  text-decoration: none;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--color-fg);
  background: rgba(79, 107, 82, 0.1);
}

.nav-cta {
  background: var(--color-primary) !important;
  color: #fff !important;
  margin-left: 0.35rem;
}

.nav-cta:hover {
  background: var(--color-primary-dark) !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 0.6rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-fg);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 650;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease),
    border-color 0.15s var(--ease), color 0.15s var(--ease);
}

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

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline {
  background: var(--color-surface);
  color: var(--color-fg);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 46rem);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: #1c1a16;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 15, 0.22) 0%,
    rgba(20, 18, 15, 0.28) 35%,
    rgba(20, 18, 15, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3.5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: #fff;
  max-width: 14ch;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
}

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

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

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

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

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.card-img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #ddd5c6;
}

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

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

.card-body {
  padding: 1.2rem 1.25rem 1.35rem;
}

.card-body h3 {
  margin-bottom: 0.35rem;
}

.card-body p {
  margin: 0;
  font-size: 0.98rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(79, 107, 82, 0.1);
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tag-accent {
  background: rgba(154, 91, 60, 0.12);
  color: var(--color-accent);
}

.tag-featured {
  background: #2a2723;
  color: #f6f1e8;
}

/* Feature strip */
.strip {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

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

.strip-item {
  text-align: left;
  padding: 0.25rem 0;
}

.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-fg);
  margin-bottom: 0.25rem;
}

.strip-item span {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(79, 107, 82, 0.08), transparent 45%),
    var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  max-width: 16ch;
}

/* Business list */
.biz-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  font-weight: 650;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  background: rgba(79, 107, 82, 0.08);
}

.biz-list {
  display: grid;
  gap: 1rem;
}

.biz-card {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.biz-card-img {
  min-height: 100%;
  background: #ddd5c6;
}

.biz-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 10rem;
}

.biz-card-body {
  padding: 1.2rem 1.3rem;
}

.biz-card-body h3 {
  margin-bottom: 0.25rem;
}

.biz-card-body p {
  margin-bottom: 0.75rem;
}

.biz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.biz-actions a {
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  background: #d7e0d4;
}

#village-map {
  height: min(28rem, 70vh);
  width: 100%;
  z-index: 1;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  display: inline-block;
}

.dot-green {
  background: var(--color-primary);
}
.dot-brown {
  background: var(--color-accent);
}
.dot-charcoal {
  background: var(--color-fg);
}

/* Visit tips */
.tip-list {
  display: grid;
  gap: 1rem;
}

.tip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.tip h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.tip p {
  margin: 0;
}

/* Events */
.event-list {
  display: grid;
  gap: 1rem;
}

.event {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.event-date {
  background: rgba(79, 107, 82, 0.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
  min-height: 5.5rem;
}

.event-date .month {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.event-date .day {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-fg);
}

.event h3 {
  margin-bottom: 0.25rem;
}

.event p {
  margin: 0;
  font-size: 0.98rem;
}

/* Feature page */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  position: relative;
}

.price-card h3 {
  margin-bottom: 0.25rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-fg);
  margin: 0.75rem 0;
}

.price-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--color-muted);
}

.price-card li {
  margin-bottom: 0.4rem;
}

.notice {
  background: rgba(79, 107, 82, 0.08);
  border: 1px solid rgba(79, 107, 82, 0.18);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  color: var(--color-fg);
}

.notice strong {
  color: var(--color-primary-dark);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

/* Footer */
.site-footer {
  background: #2a2723;
  color: rgba(255, 252, 247, 0.78);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}

.site-footer a {
  color: rgba(255, 252, 247, 0.88);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  color: #fffcf7;
}

.footer-brand .brand-tld {
  color: #a8c2aa;
}

.footer-brand p {
  color: rgba(255, 252, 247, 0.65);
  margin-top: 0.85rem;
  max-width: 28ch;
}

.footer-col h4 {
  color: #fffcf7;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255, 252, 247, 0.55);
}

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

.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}

.cta-band {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 36rem;
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
}



/* —— Village map —— */
.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.map-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  font-weight: 650;
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
}

.map-filter-btn:hover,
.map-filter-btn.is-active {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  background: rgba(79, 107, 82, 0.08);
}

.map-filter-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.map-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.map-wrap-tall #village-map {
  height: min(34rem, 72vh);
  min-height: 22rem;
}

.map-sidebar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0.85rem 0.85rem;
  max-height: min(34rem, 72vh);
  display: flex;
  flex-direction: column;
  min-height: 22rem;
}

.map-sidebar-title {
  font-size: 1.15rem;
  margin: 0 0.4rem 0.35rem;
}

.map-sidebar-intro {
  font-size: 0.88rem;
  margin: 0 0.4rem 0.85rem;
  color: var(--color-muted);
}

.map-place-list {
  overflow: auto;
  flex: 1;
  padding-right: 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.map-list-heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0.65rem 0.4rem 0.3rem;
}

.map-list-heading:first-child {
  margin-top: 0;
}

.map-list-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 0.65rem;
  padding: 0.55rem 0.5rem;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.map-list-item:hover {
  background: rgba(79, 107, 82, 0.07);
  border-color: var(--color-border);
}

.map-list-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.map-list-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.map-list-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-fg);
}

.map-list-text span {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.map-legend-rich {
  margin-top: 1rem;
}

.map-source-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  max-width: 60rem;
}

.map-popup {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-fg);
}

.map-popup p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.map-popup-cat {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 0.15rem;
}

.map-popup a {
  font-weight: 650;
  font-size: 0.85rem;
}

.leaflet-container {
  font-family: var(--font-sans);
  border-radius: inherit;
}

.leaflet-tooltip.map-tooltip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-fg);
  border-radius: 0.4rem;
  box-shadow: var(--shadow-sm);
  font-weight: 650;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-sidebar {
    max-height: 18rem;
    min-height: 14rem;
  }

  .map-wrap-tall #village-map {
    height: min(26rem, 60vh);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .grid-3,
  .pricing,
  .strip-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .biz-card {
    grid-template-columns: 1fr;
  }

  .biz-card-img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(246, 241, 232, 0.98);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
    z-index: 60;
  }

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

  .nav a {
    width: 100%;
    border-radius: 0.65rem;
  }

  .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .grid-3,
  .grid-2,
  .pricing,
  .strip-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event {
    grid-template-columns: 5.2rem 1fr;
  }

  .hero {
    min-height: min(78vh, 38rem);
  }

  .section {
    padding: 3.25rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
