/* Ster Gordijnen — styles.css
   Palette: warm white + gold/tan accent, fabric-inspired motion. */

@font-face {
  font-family: 'Cormorant';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-light.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Cormorant';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-light-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

:root {
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --ink: #2C2A26;
  --ink-muted: #6B655C;
  --gold: #C9A96E;
  --gold-deep: #A68850;
  --line: #E8E1D6;
  --line-strong: #CFC4B2;

  --serif: 'Cormorant', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1240px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;

  --shadow-sm: 0 1px 2px rgba(44,42,38,.04), 0 2px 8px rgba(44,42,38,.04);
  --shadow-md: 0 4px 12px rgba(44,42,38,.06), 0 12px 28px rgba(44,42,38,.08);

  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--gold-deep); }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
}
p { margin: 0 0 1em; color: var(--ink); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-muted); max-width: 60ch; }
.muted { color: var(--ink-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 242, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line);
}
.site-header.no-hero { background: rgba(250, 247, 242, .92); border-bottom-color: var(--line); backdrop-filter: blur(10px); }
.site-header .container {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: .14em;
  color: var(--ink);
}
.brand img { width: 44px; height: 44px; }
.brand span { font-weight: 400; }

.nav {
  display: flex; align-items: center; gap: 2rem;
}
.nav a {
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--ink);
  position: relative;
  padding: .25rem 0;
}
.nav a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -3px; height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}
.nav a:hover::after, .nav a.is-active::after { right: 0; }

.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .88rem;
  color: var(--ink);
  transition: all .25s ease;
}
.nav-cta:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--ink);
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.is-nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.is-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.is-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    flex-direction: column; gap: 0;
    background: var(--bg);
    padding: 2rem var(--pad);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .35s ease;
    align-items: flex-start;
  }
  .is-nav-open .nav { transform: translateX(0); }
  .nav a { font-size: 1.5rem; font-family: var(--serif); padding: .8rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-cta { margin-top: 1.2rem; align-self: flex-start; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 880px);
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(250,247,242,.55) 0%, rgba(250,247,242,0) 30%, rgba(250,247,242,0) 60%, rgba(250,247,242,.85) 100%),
    linear-gradient(90deg, rgba(250,247,242,.35) 0%, rgba(250,247,242,0) 50%);
}
.hero-content {
  position: relative;
  max-width: 720px;
  animation: heroRise 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 1.2rem;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 52ch;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .9rem;
}
@keyframes heroDrift {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.08) translateY(-12px); }
}
@keyframes heroRise {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------- Curtain rise opener ---------- */
.curtain-rise {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
  display: grid; grid-template-columns: 1fr 1fr;
}
.curtain-rise > div {
  background: linear-gradient(180deg, #FAF7F2 0%, #F2EAD8 100%);
  border-right: 1px solid var(--gold);
}
.curtain-rise > div:last-child { border-right: 0; border-left: 1px solid var(--gold); }
.curtain-rise.is-rising > div:first-child { animation: curtainLeft 1.1s cubic-bezier(.65,.05,.36,1) forwards; }
.curtain-rise.is-rising > div:last-child { animation: curtainRight 1.1s cubic-bezier(.65,.05,.36,1) forwards; }
@keyframes curtainLeft { to { transform: translateX(-101%); } }
@keyframes curtainRight { to { transform: translateX(101%); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-size: .95rem;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--gold-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-soft { background: var(--surface); }
.section-gold {
  background: linear-gradient(180deg, var(--bg) 0%, #F2EAD8 100%);
}
.section-head {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head .eyebrow { display: inline-block; }
.section-head .lead { margin-inline: auto; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Cards (products / projects) ---------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.grid-cards.cols-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #F2EAD8 0%, #E8E1D6 100%);
}
.card-media img, .card-media svg {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.card:hover .card-media img, .card:hover .card-media svg { transform: scale(1.06); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-body h3 { margin-bottom: .4rem; font-size: 1.4rem; }
.card-body p { margin-bottom: 0; font-size: .95rem; color: var(--ink-muted); }
.card-tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .5rem;
}

/* ---------- Two-up split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.split-media-left .split-media { order: -1; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #F2EAD8 0%, #E8E1D6 100%);
}
.split-media img, .split-media svg { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Why-us pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
.pillar {
  text-align: left;
}
.pillar-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  color: var(--gold-deep);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.25rem; margin-bottom: .35rem; font-family: var(--serif); }
.pillar p { font-size: .95rem; color: var(--ink-muted); margin: 0; }

/* ---------- Showroom block ---------- */
.showroom-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.6rem);
}
.showroom-card h3 { margin-top: 0; }
.hours {
  width: 100%; border-collapse: collapse; margin-top: 1rem;
  font-size: .95rem;
}
.hours td { padding: .55rem 0; border-bottom: 1px solid var(--line); color: var(--ink-muted); }
.hours td:first-child { font-weight: 500; color: var(--ink); }
.hours td:last-child { text-align: right; }
.hours tr:last-child td { border-bottom: 0; }

.address-block {
  font-style: normal;
  line-height: 1.6;
}
.address-block strong { font-weight: 500; }

/* ---------- Map ---------- */
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #F2EAD8 0%, #E8E1D6 100%);
  position: relative;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.map-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
}
.review::before {
  content: '"';
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: -1.5rem; left: 1.5rem;
  line-height: 1;
}
.review p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--ink); }
.review cite { font-style: normal; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .5rem; font-size: .85rem; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq details[open] { padding-bottom: 1.6rem; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  cursor: pointer;
  color: var(--ink);
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-deep);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding-top: 1rem; color: var(--ink-muted); max-width: 70ch; }

/* ---------- Form ---------- */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  max-width: 760px;
  margin: 0 auto;
}
.form fieldset { border: 0; padding: 0; margin: 0 0 2rem; }
.form legend {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
  padding: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.cols-3 { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 600px) {
  .form-row, .form-row.cols-3 { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .82rem; letter-spacing: .08em; color: var(--ink-muted); text-transform: uppercase; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: .85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
}
.field textarea { min-height: 120px; resize: vertical; }
.choice-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.choice-group label {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .88rem;
  cursor: pointer;
  text-transform: none; letter-spacing: 0;
  color: var(--ink);
  transition: all .2s ease;
}
.choice-group input { position: absolute; opacity: 0; pointer-events: none; }
.choice-group input:checked + span { color: #fff; }
.choice-group label:has(input:checked) { background: var(--ink); border-color: var(--ink); color: #fff; }

.form-actions { display: flex; justify-content: flex-end; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1f1d1a;
  color: #C9C2B5;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  margin-top: 0;
}
.site-footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer .container { grid-template-columns: 1fr; }
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
  font-weight: 500;
}
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand img { filter: brightness(1.4); }
.site-footer p, .site-footer a { color: #C9C2B5; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: .25rem 0; font-size: .92rem; }
.socials { display: flex; gap: .8rem; margin-top: 1rem; }
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid #3b3833;
  border-radius: 50%;
  transition: all .25s ease;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #1f1d1a; }
.socials svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid #3b3833;
  margin-top: 3rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem;
  color: #8a8478;
}

/* ---------- Page header (non-home) ---------- */
.page-header {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background: linear-gradient(180deg, #F2EAD8 0%, var(--bg) 100%);
  text-align: center;
}
.page-header h1 { margin-bottom: .8rem; }
.page-header .lead { margin-inline: auto; }
.breadcrumb {
  display: flex; justify-content: center; gap: .6rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb span:not(:last-child)::after { content: '·'; margin-left: .6rem; color: var(--gold); }

/* ---------- Inspiratie masonry ---------- */
.masonry {
  columns: 3 280px;
  column-gap: clamp(.8rem, 1.5vw, 1.4rem);
}
.masonry > figure {
  break-inside: avoid;
  margin: 0 0 clamp(.8rem, 1.5vw, 1.4rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #F2EAD8 0%, #E8E1D6 100%);
  transition: transform .4s ease, box-shadow .4s ease;
}
.masonry > figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Strip / CTA banner ---------- */
.strip {
  background: linear-gradient(135deg, #2C2A26 0%, #1f1d1a 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}
.strip h2 { color: #fff; }
.strip p { color: #C9C2B5; margin-inline: auto; max-width: 60ch; }
.strip .btn-primary { background: var(--gold); color: var(--ink); }
.strip .btn-primary:hover { background: #fff; color: var(--ink); }

/* ---------- Tag list (anchor sub-nav) ---------- */
.anchor-nav {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.anchor-nav a {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .04em;
  background: var(--surface);
  color: var(--ink-muted);
  transition: all .2s ease;
}
.anchor-nav a:hover { border-color: var(--gold); color: var(--ink); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.center { display: flex; justify-content: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.flow > * + * { margin-top: 1.2rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: .8rem 1.2rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg img { animation: none !important; transform: none !important; }
}
