/* Applied Engineering archive — modern build, period soul.
   The throwbacks are deliberate and sparse: the magenta Æ and rule from the
   letterhead, the 1989 catalog's grid horizon, cyan platform blocks, and
   editorial serif display type. */

:root {
  --paper: #f4f3f1;
  --card: #fff;
  --ink: #17161a;
  --ink-soft: #56535c;
  --muted: #87838d;
  --line: #dfddd9;
  --magenta: #d51580;
  --magenta-deep: #970b58;
  --teal: #0096b6;
  --teal-deep: #006d85;
  --night: #0d0917;
  --night-2: #171026;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal-deep); text-underline-offset: 3px; }
a:hover { color: var(--magenta); }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

/* Preview chrome stays quiet and outside the proposed brand. */
.preview-banner {
  padding: 7px 18px;
  color: #b9b5c1;
  background: #17151c;
  font-size: .72rem;
  letter-spacing: .015em;
  text-align: center;
}
.preview-banner strong { color: #fff; }

/* Header */
.site-header { padding-top: 22px; }
.header-row {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.ae-mark {
  width: 47px;
  height: 43px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--magenta);
  font: 700 italic 1.55rem/1 var(--serif);
  letter-spacing: -.08em;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: 5px 5px 0 rgba(213, 21, 128, .14);
}
.ae-mark:hover { color: #fff; background: var(--magenta-deep); }
.brand-block { min-width: 205px; }
.brand {
  display: block;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 780;
  letter-spacing: .125em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}
.brand:hover { color: var(--ink); }
.tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font: italic .82rem/1.1 var(--serif);
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}
.nav a {
  padding: 9px 9px 8px;
  color: #68646d;
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 680;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: #ebe9e6; }
.nav a.on { color: #fff; background: var(--teal); }
.nav a.soft { color: var(--magenta-deep); }
.nav a.soft.on { color: #fff; background: var(--magenta); }

/* Hero */
.hero {
  position: relative;
  min-height: 400px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 35% 12%, rgba(51, 31, 78, .85), transparent 40%),
    linear-gradient(135deg, #181026 0%, var(--night) 68%);
  border-radius: 15px;
  box-shadow: 0 24px 58px rgba(27, 18, 40, .16);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -5%;
  right: -5%;
  bottom: -48%;
  height: 82%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(213, 21, 128, .5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 21, 128, .5) 1px, transparent 1px);
  background-size: 34px 21px, 34px 21px;
  transform: perspective(520px) rotateX(63deg);
  transform-origin: center top;
  opacity: .38;
  mask-image: linear-gradient(to bottom, #000 5%, transparent 88%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 40px 18px 40px 52px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: .7rem;
  font-weight: 780;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 20px;
  font: 500 clamp(2.85rem, 4.9vw, 4.3rem)/.89 var(--serif);
  letter-spacing: -.055em;
}
.hero h1 em {
  color: #f82e9e;
  font-weight: 500;
}
.hero .lede {
  max-width: 490px;
  margin: 0;
  color: #c7c1cf;
  font-size: .92rem;
  line-height: 1.65;
}
.hero-actions {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.primary-action {
  display: inline-flex;
  padding: 12px 18px;
  color: #fff;
  background: var(--teal);
  border-radius: 5px;
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
}
.primary-action:hover { color: #fff; background: #00aaca; }
.text-action {
  color: #ddd8e3;
  font-size: .8rem;
  font-weight: 650;
  text-decoration: none;
}
.text-action span { color: var(--magenta); padding-left: 4px; }
.text-action:hover { color: #fff; }

.hero-art {
  z-index: 1;
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 55% 45%, rgba(0, 150, 182, .22), transparent 42%),
    linear-gradient(130deg, transparent 40%, rgba(213, 21, 128, .08));
}
.cover-aura {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(0, 175, 210, .3);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(0, 150, 182, .035),
    0 0 0 84px rgba(213, 21, 128, .025);
}
.catalog-cover {
  position: relative;
  z-index: 2;
  width: 232px;
  margin: 0;
  transform: rotate(2.2deg);
  filter: drop-shadow(0 23px 24px rgba(0, 0, 0, .38));
}
.catalog-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.catalog-cover figcaption {
  position: absolute;
  right: 82px;
  bottom: 12px;
  padding: 5px 9px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 5px 12px rgba(0, 0, 0, .2);
  font-size: .54rem;
  font-weight: 760;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  /* The figure supplies the rotation, so the label stays aligned to it. */
}
.catalog-stamp {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 26px;
  color: rgba(255,255,255,.42);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* Home section rhythm */
.archive-intro,
.platforms-head {
  padding: 68px 4px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: end;
}
.archive-intro h2,
.platforms-head h2,
.home-extras h2 {
  margin: 0;
  font: 500 clamp(2rem, 4vw, 3.4rem)/1 var(--serif);
  letter-spacing: -.035em;
}
.archive-intro > p,
.platforms-head > p {
  max-width: 470px;
  margin: 0 0 4px auto;
  color: var(--ink-soft);
  font-size: .95rem;
}

/* Archive bento */
.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 22px;
}
.extra-card {
  position: relative;
  min-height: 148px;
  padding: 19px 20px;
  overflow: hidden;
  color: #fff;
  background: var(--night);
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.extra-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -55px;
  bottom: -65px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255,255,255,.025),
              0 0 0 60px rgba(255,255,255,.018);
}
.extra-card:nth-child(1) { background: linear-gradient(145deg, #161024, #351346); }
.extra-card:nth-child(2) { background: linear-gradient(145deg, #006a82, #003d50); }
.extra-card:nth-child(3) { background: linear-gradient(145deg, #b30e6b, #62083c); }
.extra-card:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(20, 14, 27, .14);
}
.extra-card strong {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font: 500 1.22rem/1.05 var(--serif);
}
.extra-card span {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 280px;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
}
.extra-card em {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 15px;
  color: rgba(255,255,255,.48);
  font-size: .66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* Platform index */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 0 96px;
}
.platform-card {
  position: relative;
  min-height: 168px;
  padding: 20px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.platform-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  background: var(--teal);
}
.platform-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  flex: 1 1 58%;
}
.platform-art {
  flex: 0 1 42%;
  min-width: 62px;
  display: grid;
  place-items: center;
  align-self: stretch;
  margin: -8px -8px -8px 0;
  overflow: hidden;
  background: linear-gradient(145deg, #eef0ee, #dce2df);
  border-radius: 7px;
}
.platform-art img {
  display: block;
  max-width: 92%;
  max-height: 112px;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 7px rgba(27, 39, 31, .15));
  transition: transform .2s ease;
}
.platform-card:hover .platform-art img { transform: scale(1.045) rotate(-1deg); }
.platform-card:nth-child(2n)::before { background: var(--magenta); }
.platform-card:hover {
  color: var(--ink);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(31, 25, 38, .1);
}
.platform-card strong {
  display: block;
  margin-bottom: 8px;
  font: 600 1.18rem/1.1 var(--serif);
}
.platform-copy > span {
  display: block;
  color: var(--ink-soft);
  font-size: .78rem;
}
.platform-card em {
  position: absolute;
  left: 0;
  bottom: 20px;
  color: var(--muted);
  font-size: .64rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Interior pages */
.crumb {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: .72rem;
}
.crumb a { color: var(--muted); }
.section-head {
  padding: 38px 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.section-head h1 {
  margin: 0;
  font: 500 clamp(2.8rem, 6vw, 5.25rem)/.92 var(--serif);
  letter-spacing: -.055em;
}
.section-head p {
  max-width: 480px;
  margin: 0 0 5px auto;
  color: var(--ink-soft);
  font-size: .86rem;
}
.blurbs {
  max-width: 760px;
  padding-top: 28px;
}
.blurbs p { color: var(--ink-soft); }

/* Product grids */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding: 32px 0 90px;
}
.product-card {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.product-card:hover {
  color: var(--ink);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(29, 23, 36, .12);
}
.product-card .art {
  aspect-ratio: 1.2;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 45%, #fff 0 22%, transparent 58%),
    linear-gradient(145deg, #e7e9e7, #d7dcda);
  border-bottom: 1px solid var(--line);
}
.product-card .art img {
  max-width: 100%;
  max-height: 155px;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(20, 26, 22, .13));
}
.product-card .noart {
  color: var(--teal);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
}
.product-card .meta { padding: 17px 17px 19px; }
.product-card .meta strong {
  display: block;
  margin-bottom: 7px;
  font: 600 1rem/1.15 var(--serif);
}
.product-card .meta span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: .72rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Product detail */
.product-page { padding: 20px 0 90px; }
.product-page h1 {
  margin: 0 0 28px;
  padding-bottom: 22px;
  font: 500 clamp(2.75rem, 6vw, 5rem)/.94 var(--serif);
  letter-spacing: -.05em;
  border-bottom: 1px solid var(--line);
}
.product-page > p:first-of-type img {
  border-radius: 12px;
}
.product-hero-image {
  width: min(560px, 100%);
  min-height: 230px;
  margin: 16px 0 30px;
  padding: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eceeec, #dce2df);
  border-radius: 12px;
}
.product-hero-image img {
  display: block;
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  filter: drop-shadow(0 10px 12px rgba(24, 36, 28, .16));
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin: 36px 0;
}
.gallery a {
  padding: 10px;
  overflow: hidden;
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: .7rem;
  text-align: center;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
}
.gallery a:hover {
  color: var(--magenta);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(29, 23, 36, .09);
}
.gallery img {
  display: block;
  width: 100%;
  height: 140px;
  margin-bottom: 9px;
  object-fit: contain;
  background: #eceeec;
  border-radius: 5px;
}
.docs {
  max-width: 760px;
  margin-top: 36px;
  padding: 24px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--magenta);
  border-radius: 8px;
}
.docs h2 {
  margin: 0 0 8px;
  font: 600 1.3rem var(--serif);
}
.docs ul { margin-bottom: 0; padding-left: 1.2em; }
.docs li { margin: 8px 0; }
.docs .kind {
  margin-left: 6px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.source-note { margin-top: 30px; color: var(--muted); font-size: .75rem; }

/* Updates */
.updates-head,
.contact-head {
  display: block;
  max-width: 760px;
  padding-top: 58px;
}
.updates-head .eyebrow,
.contact-head .eyebrow {
  margin: 0 0 13px;
  color: var(--magenta);
}
.updates-head > p:last-child,
.contact-head > p:last-child {
  max-width: 650px;
  margin: 20px 0 4px;
  font-size: .95rem;
}
.updates-layout {
  margin: 48px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: clamp(38px, 6vw, 78px);
  align-items: start;
}
.updates-feed {
  min-width: 0;
  border-top: 1px solid var(--line);
}
.update-item {
  position: relative;
  padding: 32px 10px 34px 31px;
  border-bottom: 1px solid var(--line);
}
.update-item::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--magenta);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(213, 21, 128, .1);
}
.update-item time {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-deep);
  font-size: .65rem;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.update-item h2 {
  max-width: 720px;
  margin: 0 0 13px;
  font: 600 clamp(1.35rem, 2.4vw, 1.85rem)/1.12 var(--serif);
  letter-spacing: -.018em;
}
.update-item h2 a {
  color: var(--ink);
  text-decoration-color: transparent;
}
.update-item h2 a:hover {
  color: var(--magenta-deep);
  text-decoration-color: currentColor;
}
.update-copy {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.7;
}
.update-copy p { margin: 9px 0; }
.updates-sidebar {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 16px;
}
.sidebar-card {
  padding: 25px 25px 27px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 11px;
}
.sidebar-card .eyebrow { margin-bottom: 8px; }
.sidebar-card h2 {
  margin: 0 0 17px;
  font: 600 1.55rem/1.1 var(--serif);
}
.links-card {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(213, 21, 128, .22), transparent 45%),
    var(--night-2);
  border-color: var(--night-2);
}
.links-card .eyebrow { color: #65d1e3; }
.archive-links,
.credit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive-links li + li { border-top: 1px solid rgba(255, 255, 255, .1); }
.archive-links a {
  display: block;
  padding: 9px 0;
  color: #e6e2e9;
  font-size: .78rem;
  line-height: 1.35;
  text-decoration: none;
}
.archive-links a::after {
  content: " ↗";
  color: #65d1e3;
}
.archive-links a:hover { color: #fff; }
.credits-card {
  border-top: 4px solid var(--magenta);
}
.credits-card > p {
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.55;
}
.credit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.credit-list li {
  padding: 6px 9px;
  color: var(--magenta-deep);
  background: #f8edf3;
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 680;
}

/* Contact */
.contact-card {
  max-width: 780px;
  margin: 48px 0 90px;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 0 100%, rgba(0, 150, 182, .3), transparent 40%),
    var(--night-2);
  border-radius: 13px;
  box-shadow: 0 22px 50px rgba(27, 18, 40, .13);
}
.contact-mark {
  width: 72px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--magenta);
  border-radius: 4px;
  font: 700 italic 2.2rem/1 var(--serif);
}
.contact-card h2 {
  margin: 0 0 11px;
  font: 600 clamp(1.5rem, 3vw, 2.15rem)/1.08 var(--serif);
}
.contact-card p {
  max-width: 560px;
  margin: 0 0 23px;
  color: #c9c4ce;
  font-size: .87rem;
}
.disabled-action {
  display: inline-block;
  padding: 11px 15px;
  color: #8f8995;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 5px;
  font-size: .7rem;
  font-weight: 720;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  padding: 44px 0 54px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .74rem;
  text-align: center;
}
.site-footer p { margin: 6px 0; }
.site-footer .footer-nav { margin-bottom: 14px; }
.footer-nav a {
  margin: 0 8px;
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--magenta); }
.site-footer .accent {
  color: var(--magenta-deep);
  font-weight: 700;
  letter-spacing: .025em;
}

@media (max-width: 1000px) {
  .header-row { flex-wrap: wrap; padding-bottom: 12px; }
  .nav { order: 3; width: 100%; margin-left: 0; overflow-x: auto; justify-content: flex-start; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 44px; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .updates-layout { grid-template-columns: minmax(0, 1fr) 265px; gap: 38px; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .preview-banner { font-size: .65rem; }
  .hero { min-height: 620px; grid-template-columns: 1fr; }
  .hero-copy { padding: 36px 30px 12px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-art { min-height: 280px; }
  .catalog-cover { width: 190px; }
  .catalog-stamp { right: 12px; top: 16px; }
  .archive-intro,
  .platforms-head,
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .archive-intro { padding-top: 68px; }
  .archive-intro > p,
  .platforms-head > p,
  .section-head p { margin-left: 0; }
  .extra-grid { grid-template-columns: 1fr; }
  .extra-card { min-height: 150px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-layout { grid-template-columns: 1fr; }
  .updates-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .brand-block { min-width: 0; }
  .brand { font-size: .76rem; letter-spacing: .08em; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .platform-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card .art { padding: 10px; }
  .product-card .meta { padding: 12px; }
  .product-card .meta span { display: none; }
  .update-item { padding-left: 24px; padding-right: 0; }
  .updates-sidebar { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
}

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