/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --red: #c82229;
  --red-dark: #a61b21;
  --gold: #ffc800;
  --gold-dark: #e6b400;
  --ink: #000000;
  --muted: #4a4a4a;
  --line: #e5dfd5;
  --bg-cream: #f7f4ee;
  --bg-soft: #ede7dc;
  --white: #ffffff;
  --radius: 10px;

  --font: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;

  --header-h: 84px;
  --max-width: 1200px;

  color-scheme: light;
}

/* Responsive scale (desktop-first, matches the rest of this stylesheet):
   2xl  >= 1280px  full desktop
   xl   1024-1279  3-column grids, sidebar returns
   lg   768-1023   2-column grids, sidebar drops below content
   md   480-767    single column, comfortable type
   sm   <= 479     single column, compact type
*/

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg-cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0 0 0.6em; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--ink);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
}

/* ==========================================================================
   Layout utilities
   ========================================================================== */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--ink); color: var(--white); }
.section--ink .muted { color: rgba(255, 255, 255, 0.7); }
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5em;
}
.muted { color: var(--muted); }
.prose { max-width: 70ch; }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }

.grid { display: grid; gap: 32px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  border: 2px solid transparent;
  min-height: 44px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover, .btn--gold:focus-visible { background: var(--gold-dark); }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover, .btn--red:focus-visible { background: var(--red-dark); }
.btn--outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline:hover, .btn--outline:focus-visible { background: var(--white); color: var(--ink); }

/* ==========================================================================
   Header + nav (sticky at top of viewport)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); }
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  height: var(--header-h);
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-right: auto;
  flex-shrink: 0;
}
.brand img { max-height: 54px; width: auto; }
.brand__name { line-height: 1.15; }

.nav { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }
.nav a { padding: 8px 4px; white-space: nowrap; }

.header-actions { display: flex; gap: 8px; flex-wrap: nowrap; flex-shrink: 0; }
.header-actions .btn { padding: 10px 11px; font-size: 0.9rem; min-height: 40px; white-space: nowrap; }
.nav a {
  font-weight: 600;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.active { border-bottom-color: var(--red); color: var(--red); }
.nav a.btn { border-bottom: none; }
.nav a.btn:hover { border-bottom: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 8px;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero slider
   ========================================================================== */
.hero-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate; /* keeps rounded corners clipping transformed slides in Safari */
  aspect-ratio: 16 / 9;
  max-height: 640px;
  margin: 24px auto 0;
}
.hero-slider__track { display: flex; height: 100%; transition: transform 0.6s ease; }
.hero-slider__slide { position: relative; flex: 0 0 100%; height: 100%; }
.hero-slider__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.35) 100%);
}
.hero-slider__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  color: var(--white);
}
.hero-slider__content h1 { font-size: clamp(1.75rem, 4vw, 3rem); }
.hero-slider__dots { position: absolute; bottom: 16px; right: 24px; display: flex; gap: 8px; }
.hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  padding: 0;
}
.hero-slider__dot.is-active { background: var(--gold); }

/* ==========================================================================
   Section types
   ========================================================================== */
.consultation-banner {
  background: var(--gold);
  color: var(--ink);
  padding: 28px 0;
  text-align: center;
}
.consultation-banner .wrap { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

.feature-cards .card, .services .card, .service-cards .card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
}
.feature-cards .card__icon, .services .card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
}
.feature-cards img, .services img { border-radius: var(--radius); }

/* ------ tile_grid: image-forward editorial tiles (Figma home/kung-fu/lion-dance) ---- */
.tile-grid { padding: 32px 0 64px; }
.tile-grid__heading {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  margin: 0 0 32px;
}
.tile-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tile__media {
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.tile__media img { width: 100%; height: 100%; object-fit: cover; }
.tile__body { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.tile__heading {
  font-size: 1.35rem;
  margin: 0;
  letter-spacing: -0.01em;
}
.tile__text { margin: 0; color: var(--muted); max-width: 42ch; }
.tile__cta { margin-top: 4px; }

/* ------ page_title: big minimal page header (Figma inner pages) ---------- */
.page-title { padding: 56px 0 24px; }
.page-title__eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.page-title__heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.page-title__sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0;
}

/* ------ page_hero: framed hero image without slider chrome -------------- */
.page-hero-media { padding: 8px 0 32px; }
.page-hero-media__frame {
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 21 / 9;
  background: var(--bg-soft);
}
.page-hero-media__frame img { width: 100%; height: 100%; object-fit: cover; }

/* ------ related_posts: 3-up trail below inner pages --------------------- */
.related-posts__heading {
  font-size: 1.6rem;
  margin: 0 0 32px;
}

/* ------ feature_rows: alternating full-width image + text rows ---------- */
.feature-rows { padding: 32px 0 64px; }
.feature-rows__heading {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  margin: 0 0 40px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--image-right { direction: rtl; }
.feature-row--image-right > * { direction: ltr; }
.feature-row__media {
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-row__body { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.feature-row__heading {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.feature-row__text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* ------ about editorial layout (Figma about frame) ---------------------- */
.about-editorial { padding-top: 32px; }
.about-editorial__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-editorial__prose p { margin: 0 0 1em; }
.about-editorial__portrait {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--red);
  aspect-ratio: 4 / 5;
}
.about-editorial__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.about-block { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.about-block__stat {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.about-block__stat .num { font-size: 3rem; font-weight: 700; color: var(--gold); }

.team .grid { grid-template-columns: repeat(4, 1fr); }
.team .card { text-align: center; }
.team img { border-radius: var(--radius); aspect-ratio: 1; object-fit: cover; margin-bottom: 12px; }

.cta-band { padding: 56px 0; text-align: center; border-radius: var(--radius); }
.cta-band--red { background: var(--red); color: var(--white); }
.cta-band--gold { background: var(--gold); color: var(--ink); }
.cta-band--soft { background: var(--bg-soft); color: var(--ink); }
.cta-band--plain { background: transparent; color: var(--ink); border: 1px solid var(--line); }

.testimonial { text-align: center; max-width: 760px; margin: 0 auto; }
.testimonial blockquote { font-family: var(--serif); font-style: italic; font-size: 1.5rem; margin: 0 0 20px; }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-column img { border-radius: var(--radius); width: 100%; }
.two-column--image-right { direction: rtl; }
.two-column--image-right > * { direction: ltr; }

.blog-list .grid { grid-template-columns: repeat(3, 1fr); }

/* Custom sections (editor-added) */
.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ==========================================================================
   Post card (shared by home blog_list and /blog/)
   ========================================================================== */
.post-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.post-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.post-card__body { padding: 20px; }
.post-card .badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.post-card h3 { font-size: 1.1rem; }
.post-card time { color: var(--muted); font-size: 0.85rem; }

/* ==========================================================================
   Blog listing + sidebar + pagination + category filter
   ========================================================================== */
.page-hero { padding: 56px 0 32px; }
.blog-grid { display: grid; grid-template-columns: 2.2fr 1fr; gap: 48px; align-items: start; }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-sidebar { display: grid; gap: 32px; }
.blog-sidebar__widget { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.blog-sidebar__widget h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cat-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.cat-list li:last-child { border-bottom: 0; }
.cat-list a:hover { color: var(--red); }
.cat-list .count { color: var(--muted); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 44px;
  font-weight: 500;
  white-space: nowrap;
}
.chip.is-active { background: var(--red); color: var(--white); font-weight: 600; border-color: var(--red); }
.chip__count { color: var(--muted); font-size: 0.85em; }
.chip.is-active .chip__count { color: rgba(255, 255, 255, 0.8); }
.chip--sm { font-size: 0.8rem; padding: 6px 12px; }
.chip--md { font-size: 0.95rem; }
.chip--lg { font-size: 1.15rem; padding: 10px 18px; }

.cat-filter {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.cat-filter .chip { scroll-snap-align: start; }

.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pager__list { display: flex; gap: 6px; flex-wrap: wrap; }
.pager__num, .pager__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
}
.pager__num:hover { border-color: var(--red); color: var(--red); }
.pager__num.is-current { background: var(--red); color: var(--white); border-color: var(--red); font-weight: 700; }
.pager__gap { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.pager__step.is-disabled { color: var(--muted); opacity: 0.5; }
.result-count { color: var(--muted); }

/* ==========================================================================
   Blog post
   ========================================================================== */
.post-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.post-hero-img img { width: 100%; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.author-bio { background: var(--bg-soft); padding: 20px; border-radius: var(--radius); margin: 2em 0; }
.back-link { display: inline-block; margin-top: 32px; font-weight: 600; }
.back-link:hover { color: var(--red); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-page { max-width: 640px; margin: 0 auto; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
  min-height: 44px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field--honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field-hint { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }
.form-status { border-radius: var(--radius); padding: 16px; margin-bottom: 20px; display: none; }
.form-status.is-visible { display: block; }
.form-status--success { background: #e6f4ea; color: #1e6b34; }
.form-status--error { background: #fbe7e7; color: var(--red-dark); }
.form-submit { min-height: 44px; }
.form-submit[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-grid__item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; cursor: pointer; border: 0; padding: 0; background: none; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s ease; }
.gallery-grid__item:hover img { transform: scale(1.05); }
.gallery-filter { display: flex; gap: 10px; overflow-x: auto; margin-bottom: 24px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  border: 0;
  font-size: 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--white); padding: 56px 0 24px; }
.site-footer .grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 32px; }
.site-footer a:hover { color: var(--gold); }
.site-footer h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.site-footer li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ==========================================================================
   404
   ========================================================================== */
.error-page { text-align: center; padding: 120px 0; }
.error-page h1 { font-size: 4rem; color: var(--red); }

/* ==========================================================================
   Mobile nav overlay
   ========================================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.nav-overlay.is-open { transform: translateX(0); }
.nav-overlay__close { align-self: flex-end; width: 44px; height: 44px; background: transparent; border: 0; font-size: 1.5rem; }
.nav-overlay nav { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; }
.nav-overlay nav a {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  min-height: 44px;
}
body.nav-open { overflow: hidden; }

/* ==========================================================================
   Responsive — xl and below (< 1280px): sidebar/grids to 2-up
   ========================================================================== */
@media (max-width: 1279px) {
  .team .grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Responsive — lg and below (< 1024px): nav collapses to hamburger,
   2-column grids, blog sidebar drops below content
   ========================================================================== */
@media (max-width: 1023px) {
  .nav-toggle { display: block; }
  .site-header .nav { display: none; }
  .site-header .header-actions { display: none; }

  .grid--3, .grid--4, .services .grid, .feature-cards .grid, .blog-list .grid, .team .grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid__grid { grid-template-columns: repeat(2, 1fr); }
  .related-posts .grid { grid-template-columns: repeat(2, 1fr); }
  .about-block, .two-column, .about-editorial__layout, .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row--image-right { direction: ltr; }
  .feature-row { margin-bottom: 48px; }
  .two-column--image-right { direction: ltr; }
  .blog-grid { grid-template-columns: 1fr; }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .blog-sidebar { order: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Responsive — md and below (< 768px): single column, comfortable type
   ========================================================================== */
@media (max-width: 767px) {
  .section { padding: 48px 0; }
  .grid--2, .grid--3, .grid--4, .services .grid, .feature-cards .grid,
  .blog-list .grid, .team .grid, .site-footer .grid,
  .tile-grid__grid, .related-posts .grid { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slider__content h1 { font-size: 1.75rem; }
}

/* ==========================================================================
   Responsive — sm (<= 479px): compact type, stacked CTAs
   ========================================================================== */
@media (max-width: 479px) {
  .wrap { padding: 0 16px; }
  .btn { width: 100%; text-align: center; }
  .consultation-banner .wrap { flex-direction: column; }
  .about-block__stat .num { font-size: 2.25rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pager { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slider__track, .nav-overlay, .site-header { transition: none; }
}
