:root {
  --ink: #172c43;
  --ink-soft: #526476;
  --gold: #b98236;
  --gold-dark: #8e5b1d;
  --gold-pale: #f4dfbd;
  --cream: #fff8f0;
  --sand: #f5e9dc;
  --paper: #fffdf9;
  --line: #e7d4bd;
  --white: #fff;
  --shadow: 0 24px 70px rgba(82, 50, 19, .12);
  --radius: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
[hidden] { display: none !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(185, 130, 54, .16);
  background: rgba(255, 248, 240, .94);
  backdrop-filter: blur(16px);
}
.site-header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { width: 136px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 1.7vw, 28px); }
.desktop-nav a {
  position: relative;
  color: #31465a;
  font-size: .89rem;
  font-weight: 700;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.mobile-nav-actions { display: none; }
.menu-toggle, .menu-close {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}
.menu-toggle { width: 48px; height: 48px; gap: 4px; border-radius: 14px; padding: 13px; }
.menu-toggle i { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; }
.site-menu { position: fixed; z-index: 100; inset: 0; display: grid; justify-items: end; background: rgba(15, 27, 40, .46); backdrop-filter: blur(4px); }
.site-menu-panel { width: min(88vw, 390px); min-height: 100%; padding: 24px; background: var(--cream); box-shadow: -30px 0 80px rgba(23, 44, 67, .2); }
.site-menu-heading { display: flex; align-items: center; justify-content: space-between; color: var(--gold-dark); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.menu-close { width: 44px; height: 44px; border-radius: 50%; font-size: 1.7rem; line-height: 1; }
.site-menu-panel .brand { margin: 22px 0; }
.site-menu-panel .brand img { width: 170px; }
.site-menu-links { display: grid; padding: 12px 0; border-block: 1px solid var(--line); }
.site-menu-links a { padding: 10px 2px; font: 400 1.5rem/1.25 var(--serif); }
.site-menu-links a:hover { color: var(--gold-dark); }
.site-menu-panel > p { margin-top: 22px; color: var(--ink-soft); font-size: .8rem; }

main { min-height: 60vh; }
.home-hero {
  width: min(1240px, calc(100% - 40px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
}
.home-hero-copy { padding-block: 40px; }
.home-hero h1 {
  max-width: 780px;
  margin: 16px 0 20px;
  color: var(--ink);
  font: 400 clamp(2.65rem, 5vw, 5rem)/.99 var(--serif);
  letter-spacing: -.045em;
}
.home-lead { max-width: 650px; margin: 0 0 28px; color: var(--gold-dark); font: 400 clamp(1.25rem, 2vw, 1.65rem)/1.35 var(--serif); }
.important-note {
  max-width: 720px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  padding: 20px 22px;
  border: 1px solid #e7c994;
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  background: #fffaf2;
  box-shadow: 0 12px 36px rgba(142, 91, 29, .08);
}
.important-note strong { color: var(--gold-dark); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.important-note p { margin: 0; color: #45586a; font-size: .95rem; line-height: 1.55; }
.home-hero-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(185, 130, 54, .35);
  border-radius: 50% 50% 30px 30px;
  background: var(--sand);
  box-shadow: var(--shadow);
}
.home-hero-visual::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255, 255, 255, .7); border-radius: inherit; pointer-events: none; }
.home-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }

.home-choices { width: min(1040px, calc(100% - 40px)); margin: 82px auto 100px; }
.section-heading { margin-bottom: 28px; text-align: center; }
.section-heading h2 { margin: 8px 0 0; font: 400 clamp(2rem, 4vw, 3.2rem)/1.08 var(--serif); }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.choice-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(83, 50, 16, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.choice-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.choice-icon { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 20px; background: var(--gold-pale); font-size: 2rem; }
.choice-card b { display: block; font: 400 2rem/1.15 var(--serif); text-transform: uppercase; letter-spacing: .03em; }
.choice-card small { display: block; margin-top: 5px; color: var(--ink-soft); font-size: .9rem; }
.choice-card i { color: var(--gold); font-size: 1.7rem; font-style: normal; }

.catalog-hero, .content-hero {
  padding: 82px 20px 68px;
  text-align: center;
  background: radial-gradient(circle at 50% 0, #fff 0, transparent 52%), linear-gradient(180deg, var(--sand), var(--cream));
}
.catalog-hero h1, .content-hero h1 { margin: 12px auto 14px; font: 400 clamp(2.8rem, 6vw, 5.6rem)/1 var(--serif); letter-spacing: -.04em; }
.catalog-hero p, .content-hero > p { max-width: 700px; margin: auto; color: var(--ink-soft); font-size: 1.08rem; }
.content-hero.compact { padding-bottom: 48px; }

.catalog { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 42px 0 96px; }
.catalog-tabs { width: max-content; max-width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; margin: 0 auto 32px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .65); }
.catalog-tabs a { min-width: 130px; padding: 10px 20px; border-radius: 999px; color: var(--ink-soft); text-align: center; font-weight: 800; }
.catalog-tabs a.active { color: #fff; background: var(--ink); }
.catalog-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 16px;
  margin-bottom: 38px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(80, 52, 23, .06);
}
.filter-block { display: grid; gap: 7px; }
.filter-block label { color: var(--ink-soft); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.filter-block select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  border: 1px solid #dac4a8;
  border-radius: 13px;
  padding: 0 42px 0 14px;
  color: var(--ink);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='m3 5 4 4 4-4' fill='none' stroke='%23182f43' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
  font-weight: 700;
}
.filter-clear { min-height: 50px; border: 0; padding: 0 12px; color: var(--gold-dark); background: transparent; font-size: .86rem; font-weight: 800; }
.dog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.dog-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 15px 42px rgba(72, 45, 19, .08); }
.dog-image { position: relative; display: grid; place-items: center; aspect-ratio: 1 / .88; overflow: hidden; background: var(--sand); }
.dog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.dog-card:hover .dog-image img { transform: scale(1.025); }
.dog-image.placeholder span { font: 400 5rem/1 var(--serif); color: var(--gold); }
.status-badge { position: absolute; top: 14px; left: 14px; padding: 7px 11px; border-radius: 999px; color: var(--ink); background: #fff; box-shadow: 0 5px 18px rgba(0,0,0,.12); font-size: .72rem; font-style: normal; font-weight: 900; }
.dog-card-body { padding: 22px; }
.dog-card h2 { margin: 0 0 4px; font: 400 1.75rem/1.12 var(--serif); }
.dog-breed { margin: 0; color: var(--gold-dark); font-weight: 800; }
.dog-meta, .dog-location { margin: 5px 0 0; color: var(--ink-soft); font-size: .9rem; }
.dog-location { font-size: .82rem; }
.dog-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; margin: 16px 0; }
.dog-price span { color: var(--ink-soft); font-size: .82rem; }
.dog-price small { color: #8f999f; text-decoration: line-through; }
.dog-price strong { color: var(--ink); font-size: 1.08rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 11px 20px;
  font-size: .92rem;
  font-weight: 850;
  text-align: center;
}
.button.primary { color: #fff; background: var(--ink); box-shadow: 0 10px 28px rgba(23, 44, 67, .18); }
.button.primary:hover { background: #234866; }
.button.secondary { border-color: #d9c09c; color: var(--gold-dark); background: transparent; }
.button.secondary:hover { background: #fff7ec; }
.dog-details { width: 100%; }
.filter-empty, .empty-public { padding: 54px 24px; border: 1px dashed #d9c09c; border-radius: var(--radius); text-align: center; background: rgba(255,255,255,.48); }
.empty-public h2 { font: 400 2rem/1.2 var(--serif); }

.detail { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 46px 0 96px; }
.back { display: inline-flex; margin-bottom: 24px; color: var(--gold-dark); font-size: .88rem; font-weight: 800; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(36px, 6vw, 78px); align-items: start; }
.detail-image { display: grid; place-items: center; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--sand); box-shadow: var(--shadow); }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-image.placeholder span { font: 400 8rem/1 var(--serif); color: var(--gold); }
.detail-thumbnails { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px; }
.detail-thumb { aspect-ratio: 1; overflow: hidden; border: 2px solid transparent; border-radius: 12px; padding: 0; background: var(--sand); opacity: .72; }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumb.active { border-color: var(--gold); opacity: 1; }
.video-link { min-height: 50px; display: flex; align-items: center; justify-content: center; margin-top: 14px; border: 1px solid var(--line); border-radius: 13px; color: var(--gold-dark); font-weight: 800; background: var(--paper); }
.detail-info { padding-top: 8px; }
.detail-info h1 { margin: 10px 0 3px; font: 400 clamp(2.8rem, 5vw, 4.8rem)/.98 var(--serif); letter-spacing: -.04em; }
.detail-breed { margin: 0 0 24px; color: var(--gold-dark); font: 400 1.3rem/1.3 var(--serif); }
.detail-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.detail-facts div { min-height: 76px; padding: 14px 16px; background: var(--paper); }
.detail-facts .detail-fact-wide { grid-column: 1 / -1; }
.detail-facts dt { color: var(--ink-soft); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.detail-facts dd { margin: 3px 0 0; font-weight: 800; }
.detail-description { margin: 22px 0; color: var(--ink-soft); }
.detail-price { display: flex; align-items: baseline; gap: 9px; padding: 16px 0; border-block: 1px solid var(--line); }
.detail-price span { color: var(--ink-soft); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.detail-price small { color: #8f999f; text-decoration: line-through; }
.detail-price strong { font-size: 1.6rem; }
.detail-interest { margin-top: 28px; padding: 24px; border-radius: 20px; background: var(--sand); }
.detail-interest h2 { margin: 0 0 16px; font: 400 1.7rem/1.2 var(--serif); }
.detail-interest .button { width: 100%; }
.detail-interest .share-pet { margin-top: 10px; }
.share-feedback { min-height: 1.4em; margin: 8px 0 0; color: var(--ink-soft); font-size: .8rem; text-align: center; }
.detail-note { margin: 14px 8px 0; color: var(--ink-soft); font-size: .82rem; text-align: center; }

.project-story, .process-grid, .process-warning, .faq-list, .story, .legal-page, .policies-hub, .contact-page {
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
}
.project-story { padding: 64px 0 96px; }
.story-copy { max-width: 760px; margin: auto; }
.story-copy h2, .mission-copy h2, .legal-content h2 { font: 400 2rem/1.2 var(--serif); }
.story-copy p, .mission-copy p, .legal-content p { color: var(--ink-soft); }
.story-important, .process-warning { margin: 38px auto; padding: 24px 26px; border: 1px solid #e6c78e; border-left: 5px solid var(--gold); border-radius: 18px; background: #fffaf0; }
.story-important strong, .process-warning strong { color: var(--gold-dark); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.story-important p, .process-warning p { margin: 6px 0 0; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 42px; }
.comparison-grid article { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.comparison-grid .comparison-featured { color: #fff; border-color: var(--ink); background: var(--ink); }
.comparison-grid article > span { color: var(--gold); font-weight: 900; }
.comparison-grid h2 { margin: 28px 0 12px; font: 400 2rem/1.1 var(--serif); text-transform: uppercase; }
.comparison-grid p { margin: 0; color: var(--ink-soft); }
.comparison-grid .comparison-featured p { color: #d9e0e6; }
.project-closing { margin: 38px auto 0; color: var(--gold-dark); font: 400 1.6rem/1.35 var(--serif); text-align: center; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 60px 0 20px; }
.process-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.process-grid article > span { color: var(--gold); font-weight: 900; }
.process-grid h2 { margin: 24px 0 10px; font: 400 1.5rem/1.15 var(--serif); }
.process-grid p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.process-warning { margin-bottom: 96px; }

.faq-list { padding: 20px 0 96px; }
.faq-list details { border-bottom: 1px solid var(--line); background: transparent; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; list-style: none; font: 400 1.35rem/1.3 var(--serif); cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-dark); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { max-width: 760px; padding: 0 4px 22px; color: var(--ink-soft); }
.faq-list p { margin: 0; }

.story, .legal-page, .policies-hub, .contact-page { padding: 74px 0 96px; }
.story h1, .legal-page h1, .policies-hub h1, .contact-page h1 { margin: 12px 0 16px; font: 400 clamp(2.8rem, 6vw, 5rem)/1 var(--serif); letter-spacing: -.04em; }
.story .lead, .legal-intro, .policies-hub > p, .contact-page > p { max-width: 760px; color: var(--ink-soft); font-size: 1.08rem; }
.mission-copy, .legal-content { max-width: 760px; margin-top: 42px; }
.legal-updated { color: var(--gold-dark); font-size: .82rem; font-weight: 750; }
.legal-content > section { padding: 20px 0; border-top: 1px solid var(--line); }
.policies-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 38px; }
.policies-list a { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.policies-list span { grid-column: 1; color: var(--gold-dark); font-size: .75rem; font-weight: 850; text-transform: uppercase; }
.policies-list b { grid-column: 1; }
.policies-list i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--gold); font-style: normal; font-size: 1.5rem; }
.public-form { display: grid; gap: 16px; max-width: 620px; margin-top: 32px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.public-form label { display: grid; gap: 7px; font-weight: 750; }
.public-form input, .public-form textarea, .public-form select { min-height: 50px; border: 1px solid #d8c3a7; border-radius: 12px; padding: 11px 13px; background: #fff; }

.site-footer { border-top: 1px solid var(--line); background: #f0e1d1; }
.pet-disclaimer { width: min(1040px, calc(100% - 40px)); margin: 0 auto; padding: 20px 0; color: #66594b; font-size: .82rem; line-height: 1.55; text-align: center; }
.site-footer-inner { width: min(1180px, calc(100% - 40px)); min-height: 180px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 28px 0; border-top: 1px solid rgba(185,130,54,.2); }
.site-footer .brand img { width: 144px; }
.footer-contact { text-align: right; }
.footer-contact nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 8px; }
.footer-contact nav a { color: var(--gold-dark); font-size: .82rem; font-weight: 800; }
.footer-contact p { margin: 0 0 5px; color: var(--ink-soft); font-size: .86rem; }
.footer-contact small { color: #766b60; font-size: .75rem; }

:focus-visible { outline: 3px solid rgba(185, 130, 54, .46); outline-offset: 3px; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 13px; }
  .desktop-nav a { font-size: .8rem; }
  .home-hero { grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr); gap: 36px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header-inner { min-height: 78px; }
  .site-header .brand img { width: 112px; }
  .desktop-nav { display: none; }
  .mobile-nav-actions { display: flex; }
  .home-hero { grid-template-columns: 1fr; margin-top: 12px; }
  .home-hero-copy { padding-bottom: 0; }
  .home-hero-visual { width: min(560px, 100%); justify-self: center; aspect-ratio: 5 / 4; border-radius: 220px 220px 26px 26px; }
  .home-hero-visual img { object-position: 50% 58%; }
  .dog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-gallery { max-width: 680px; }
}

@media (max-width: 680px) {
  .site-header-inner, .home-hero, .home-choices, .catalog, .detail, .project-story, .process-grid, .process-warning, .faq-list, .story, .legal-page, .policies-hub, .contact-page, .site-footer-inner { width: min(100% - 28px, 1180px); }
  .home-hero h1 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .home-lead { font-size: 1.2rem; }
  .important-note { grid-template-columns: 1fr; padding: 18px; }
  .home-hero-visual { aspect-ratio: 4 / 4.4; }
  .home-choices { margin-top: 58px; margin-bottom: 72px; }
  .choice-grid, .comparison-grid, .process-grid, .policies-list, .dog-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: 120px; padding: 20px; }
  .choice-icon { width: 54px; height: 54px; border-radius: 16px; font-size: 1.6rem; }
  .choice-card b { font-size: 1.55rem; }
  .catalog-hero, .content-hero { padding: 58px 16px 48px; }
  .catalog-hero h1, .content-hero h1 { font-size: 3rem; }
  .catalog { padding-top: 28px; }
  .catalog-tabs { width: 100%; }
  .catalog-tabs a { min-width: 0; }
  .catalog-filters { grid-template-columns: 1fr; padding: 16px; }
  .dog-image { aspect-ratio: 1 / .82; }
  .detail { padding-top: 28px; }
  .detail-thumbnails { grid-template-columns: repeat(4, 1fr); }
  .detail-info h1 { font-size: 3rem; }
  .comparison-grid article { min-height: 0; }
  .process-grid { padding-top: 42px; }
  .site-footer-inner { min-height: 0; flex-direction: column; align-items: flex-start; padding: 30px 0; }
  .footer-contact { text-align: left; }
  .footer-contact nav { justify-content: flex-start; }
}

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