/* =====================================================================
   PT BPI MERCHANT ACCOUNT — style.css
   Palette: warm espresso / coffee / taupe / sand / cream + bronze accent
   Display: Archivo  |  Body: Inter  |  CJK: Noto Sans SC
   ===================================================================== */

:root {
  --espresso: #241B13;
  --espresso-2: #1C150E;
  --coffee: #6B5440;
  --coffee-2: #54402F;
  --taupe: #9C8975;
  --sand: #DDD3C5;
  --cream: #F6F1E9;
  --paper: #FBF8F2;
  --bronze: #B17E33;
  --bronze-deep: #8F6320;
  --bronze-light: #D9A85A;

  --ink: #2A2018;
  --ink-soft: #6E6253;
  --line: rgba(36, 27, 19, 0.12);
  --line-strong: rgba(36, 27, 19, 0.22);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(36, 27, 19, 0.06), 0 6px 18px rgba(36, 27, 19, 0.06);
  --shadow-md: 0 10px 40px rgba(36, 27, 19, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 0.32s var(--ease);
}

/* CJK fallback when Chinese is active */
html[lang="zh"] {
  --font-display: "Noto Sans SC", "Archivo", sans-serif;
  --font-body: "Noto Sans SC", "Inter", sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; color: var(--espresso); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 14px; top: -50px; z-index: 1200;
  background: var(--espresso); color: var(--cream);
  padding: 10px 16px; border-radius: 8px; transition: top var(--t);
}
.skip-link:focus { top: 14px; }

:focus-visible { outline: 3px solid var(--bronze); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 999px;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap; text-align: center;
}
.btn--primary { background: var(--bronze); color: #fff; box-shadow: 0 6px 18px rgba(177, 126, 51, 0.32); }
.btn--primary:hover { background: var(--bronze-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(177, 126, 51, 0.4); }
.btn--ghost-light { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.55); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.btn--whatsapp { background: #1FA855; color: #fff; box-shadow: 0 6px 18px rgba(31, 168, 85, 0.3); }
.btn--whatsapp:hover { background: #178a45; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(246, 241, 233, 0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.site-header.is-scrolled { background: rgba(246, 241, 233, 0.96); border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(36, 27, 19, 0.07); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { display: inline-flex; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: 0.04em; color: var(--espresso); }
.brand__sub { font-family: var(--font-display); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.28em; color: var(--coffee); margin-top: 3px; }
.brand__name--light { color: var(--cream); }
.brand__sub--light { color: var(--taupe); }

.nav__list { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.nav__list a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.92rem; color: var(--ink);
  position: relative; padding: 6px 0; transition: color var(--t);
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--bronze); transition: width var(--t);
}
.nav__list a:hover { color: var(--bronze-deep); }
.nav__list a:hover::after, .nav__list a.is-current::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; }

/* ---------- Language switcher ---------- */
.langswitch { display: inline-flex; background: rgba(36, 27, 19, 0.06); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.langswitch__btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.02em;
  color: var(--ink-soft); padding: 6px 11px; border-radius: 999px; transition: background var(--t), color var(--t);
}
.langswitch__btn:hover { color: var(--ink); }
.langswitch__btn.is-active { background: var(--espresso); color: var(--cream); }

/* ---------- Hamburger ---------- */
.hamburger { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--espresso); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; top: 0; right: 0; z-index: 1100; height: 100dvh; width: min(86vw, 360px);
  background: var(--paper); box-shadow: -16px 0 50px rgba(36, 27, 19, 0.18);
  transform: translateX(105%); transition: transform 0.4s var(--ease);
  padding: 96px 28px 32px; overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__inner { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__inner > a:not(.btn) {
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink);
  padding: 14px 4px; border-bottom: 1px solid var(--line); transition: color var(--t), padding-left var(--t);
}
.mobile-nav__inner > a:not(.btn):hover { color: var(--bronze-deep); padding-left: 10px; }
.mobile-nav__lang { align-self: flex-start; margin-top: 22px; }
.mobile-nav__cta { margin-top: 18px; }
.mobile-nav__backdrop { position: fixed; inset: 0; z-index: 1050; background: rgba(28, 21, 14, 0.5); opacity: 0; transition: opacity var(--t); }
.mobile-nav__backdrop.is-show { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 140px 0 90px; overflow: hidden; background: var(--espresso);
}
.hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: #2e241a; opacity: 0; transition: opacity 1.1s ease; transform: scale(1.06);
}
.hero__bg.is-loaded { opacity: 0.5; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(28, 21, 14, 0.94) 0%, rgba(36, 27, 19, 0.86) 42%, rgba(54, 42, 31, 0.62) 100%),
    radial-gradient(120% 90% at 85% 15%, rgba(177, 126, 51, 0.18), transparent 60%);
}
.hero__net { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; pointer-events: none; }
.net-dot { animation: netPulse 3.4s var(--ease) infinite; transform-box: fill-box; transform-origin: center; }
.net-dot:nth-child(2) { animation-delay: 0.4s; }
.net-dot:nth-child(3) { animation-delay: 0.8s; }
.net-dot:nth-child(4) { animation-delay: 1.2s; }
.net-dot:nth-child(5) { animation-delay: 1.6s; }
.net-dot:nth-child(6) { animation-delay: 2s; }
@keyframes netPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

.hero__content { position: relative; z-index: 2; max-width: 820px; }
.hero__eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze-light); margin-bottom: 22px; display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--bronze); display: inline-block; }
.hero__title { color: #fff; font-size: clamp(2.1rem, 5.4vw, 3.9rem); font-weight: 800; line-height: 1.06; max-width: 16ch; }
.hero__sub { color: rgba(246, 241, 233, 0.84); font-size: clamp(1rem, 1.5vw, 1.18rem); margin-top: 24px; max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.hero__chips li {
  font-family: var(--font-display); font-weight: 500; font-size: 0.82rem; color: rgba(246, 241, 233, 0.92);
  border: 1px solid rgba(217, 168, 90, 0.4); background: rgba(177, 126, 51, 0.1);
  padding: 8px 16px; border-radius: 999px;
}

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(64px, 9vw, 116px) 0; }
.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bronze-deep); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--bronze); }
.eyebrow--light { color: var(--bronze-light); }
.section__title { font-size: clamp(1.6rem, 3.4vw, 2.5rem); max-width: 18ch; }
.section__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__intro { color: var(--ink-soft); font-size: 1.05rem; margin-top: 16px; }
.lead { font-size: 1.12rem; color: var(--ink); margin-bottom: 18px; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 26px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.card__title { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__aside { display: flex; flex-direction: column; gap: 24px; }
.about__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.about__media-img {
  aspect-ratio: 4 / 3; background-size: cover; background-position: center;
  background-color: var(--coffee);
  background-image: linear-gradient(135deg, var(--coffee), var(--espresso));
  transition: transform 0.6s var(--ease);
}
.about__media:hover .about__media-img { transform: scale(1.04); }
.factlist { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.factlist li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.factlist li:last-child { border-bottom: none; }
.factlist__k { color: var(--ink-soft); font-size: 0.9rem; }
.factlist__v { font-family: var(--font-display); font-weight: 700; color: var(--espresso); text-align: right; }

/* ---------- Vision ---------- */
.vision { background: var(--espresso); color: var(--cream); position: relative; overflow: hidden; padding: clamp(70px, 10vw, 130px) 0; }
.vision::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 126, 51, 0.22), transparent 65%);
}
.vision__inner { position: relative; z-index: 1; max-width: 920px; }
.vision__quote {
  font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem); line-height: 1.22; letter-spacing: -0.01em; margin-top: 8px;
}
.vision__words { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.vision__words li {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  border: 1px solid rgba(217, 168, 90, 0.45); color: var(--bronze-light);
  padding: 9px 18px; border-radius: 999px;
}

/* ---------- Mission ---------- */
.mission { background: var(--paper); }
.mcard { position: relative; padding-top: 34px; }
.mcard__num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--sand);
  line-height: 1; display: block; margin-bottom: 14px;
}
.mcard:hover .mcard__num { color: var(--bronze-light); }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.scard__icon {
  width: 54px; height: 54px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(177, 126, 51, 0.16), rgba(177, 126, 51, 0.06));
  color: var(--bronze-deep); margin-bottom: 20px; transition: background var(--t), color var(--t), transform var(--t);
}
.scard__icon svg { width: 26px; height: 26px; }
.scard:hover .scard__icon { background: var(--bronze); color: #fff; transform: rotate(-4deg); }

/* ---------- Why ---------- */
.why { background: var(--paper); }
.why__item { padding: 28px 26px 26px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--cream); transition: transform var(--t), border-color var(--t), background var(--t); }
.why__item:hover { transform: translateY(-4px); border-color: var(--bronze-light); background: var(--paper); }
.why__check {
  width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--espresso); color: var(--bronze-light); font-weight: 700; font-size: 0.95rem; margin-bottom: 16px;
}
.why__title { font-size: 1.12rem; margin-bottom: 8px; color: var(--espresso); font-family: var(--font-display); font-weight: 700; }
.why__item p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Process (signature flow) ---------- */
.process { background: var(--cream); }
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; counter-reset: step; }
.flow::before {
  content: ""; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--sand), var(--bronze), var(--sand));
}
.flow__step { position: relative; text-align: center; padding-top: 8px; }
.flow__node {
  width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper); border: 2px solid var(--bronze); color: var(--bronze-deep);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; position: relative; z-index: 1;
  margin-bottom: 18px; transition: background var(--t), color var(--t), transform var(--t);
}
.flow__step:hover .flow__node { background: var(--bronze); color: #fff; transform: scale(1.08); }
.flow__title { font-size: 1.04rem; margin-bottom: 8px; color: var(--espresso); }
.flow__step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Contact ---------- */
.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact__list { display: grid; gap: 18px; margin: 30px 0 28px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream); border: 1px solid var(--line); color: var(--bronze-deep);
}
.contact__ico svg { width: 22px; height: 22px; }
.contact__k { display: block; font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 2px; }
.contact__v { font-family: var(--font-display); font-weight: 600; color: var(--espresso); font-size: 1.02rem; transition: color var(--t); }
a.contact__v:hover { color: var(--bronze-deep); }

.contact__formwrap { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-sm); }
.cform { display: grid; gap: 18px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cform__field { display: grid; gap: 7px; }
.cform__field > span { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--ink); }
.cform input, .cform textarea {
  font-family: var(--font-body); font-size: 0.98rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 12px 14px; width: 100%; transition: border-color var(--t), box-shadow var(--t);
}
.cform input::placeholder, .cform textarea::placeholder { color: #a99e8e; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(177, 126, 51, 0.16); }
.cform textarea { resize: vertical; min-height: 110px; }
.cform__submit { width: 100%; margin-top: 4px; }
.cform__note { font-size: 0.82rem; color: var(--ink-soft); text-align: center; }
.cform__toast {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; text-align: center;
  color: #178a45; background: rgba(31, 168, 85, 0.1); border: 1px solid rgba(31, 168, 85, 0.3);
  padding: 12px; border-radius: var(--radius-sm);
}

/* ---------- Footer ---------- */
.footer { background: var(--espresso-2); color: rgba(246, 241, 233, 0.82); padding-top: clamp(54px, 7vw, 84px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(32px, 5vw, 64px); padding-bottom: 48px; }
.footer__desc { margin-top: 20px; max-width: 42ch; font-size: 0.96rem; line-height: 1.7; }
.footer__h { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: rgba(246, 241, 233, 0.82); font-size: 0.96rem; transition: color var(--t), padding-left var(--t); width: fit-content; }
.footer__col a:hover { color: #fff; padding-left: 5px; }
.footer__addr { font-size: 0.92rem; line-height: 1.6; margin-top: 2px; }
.langswitch--footer { margin-top: 16px; background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); }
.langswitch--footer .langswitch__btn { color: rgba(246, 241, 233, 0.7); }
.langswitch--footer .langswitch__btn:hover { color: #fff; }
.langswitch--footer .langswitch__btn.is-active { background: var(--bronze); color: #fff; }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 0; }
.footer__bar-inner { text-align: center; font-size: 0.86rem; color: rgba(246, 241, 233, 0.6); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: #1FA855; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(31, 168, 85, 0.45); transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 32px rgba(31, 168, 85, 0.55); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #1FA855;
  animation: waRing 2.4s ease-out infinite;
}
@keyframes waRing { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .flow::before { display: none; }
}

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__aside { order: -1; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 74px; }
  .header__inner { height: 64px; }
  .header__actions .langswitch { display: none; } /* keep header clean; switcher lives in mobile menu */
  .grid--3 { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 18px; }
  .cform__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; min-height: auto; }
  .hero__chips li { font-size: 0.76rem; }
  .vision__quote { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

@media (max-width: 380px) {
  .brand__name { font-size: 1.15rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__bg { transition: none; }
}
