:root {
  --navy: #091b2a;
  --navy-2: #10283a;
  --ink: #101923;
  --gold: #d8b44d;
  --gold-bright: #efc948;
  --cream: #f5f3ed;
  --paper: #ffffff;
  --muted: #63707b;
  --line: rgba(9, 27, 42, 0.14);
  --green: #25d366;
  --shadow: 0 24px 70px rgba(9, 27, 42, 0.12);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(9,27,42,.08);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: var(--shell);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; margin-right: auto; }
.brand img { width: 226px; height: 46px; object-fit: cover; object-position: center; }
.brand small { margin-top: 2px; color: #6f747a; font-size: 9px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a {
  position: relative;
  padding: 31px 0 27px;
  font-size: 14px;
  font-weight: 750;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta, .button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 50px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav-cta { color: #fff; background: var(--navy); font-size: 14px; }
.nav-cta:hover, .button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(9,27,42,.16); }
.button.gold { color: #101923; background: var(--gold); }
.button.light { color: var(--navy); background: #fff; }
.button.outline { color: var(--navy); border-color: var(--navy); background: transparent; }
.button::before {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -70%;
  width: 35%;
  background: rgba(255,255,255,.35);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.button:hover::before { left: 135%; }

.menu-toggle { display: none; width: 48px; height: 48px; border: 0; background: var(--navy); cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 5px auto; background: #fff; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }

.shell { width: var(--shell); margin: 0 auto; }
.eyebrow { margin: 0 0 18px; color: #b28924; font-size: 12px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-bright); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(48px, 5.2vw, 82px); }
h2 { font-size: clamp(38px, 4.2vw, 64px); }
h3 { font-size: 24px; }
.lead { color: var(--muted); font-size: 18px; line-height: 1.8; }

.home-hero { color: #fff; background: var(--navy); border-bottom: 8px solid var(--gold); }
.home-hero-grid { min-height: calc(100vh - 88px); display: grid; grid-template-columns: 1fr 1.12fr; }
.home-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 76px max(48px, calc((100vw - 1180px)/2)) 76px max(24px, calc((100vw - 1180px)/2)); }
.home-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  left: max(10px, calc((100vw - 1180px)/2 - 70px));
  top: 84px;
  animation: breathe 5s ease-in-out infinite;
}
.home-copy h1 { max-width: 620px; margin-bottom: 30px; }
.home-copy .lead { max-width: 580px; color: #c4cdd3; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 0; font-weight: 800; border-bottom: 1px solid currentColor; }
.standards { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.17); color: #b7c1c8; font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.home-image { position: relative; min-height: 640px; overflow: hidden; }
.home-image > img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 12s ease-out both; }
.home-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,27,42,.28), transparent 42%), linear-gradient(0deg, rgba(9,27,42,.2), transparent 40%); }
.status-card { position: absolute; z-index: 2; left: 34px; bottom: 42px; display: flex; align-items: center; gap: 12px; min-width: 300px; padding: 18px 22px; color: var(--ink); background: rgba(255,255,255,.95); box-shadow: var(--shadow); animation: floatCard 4s ease-in-out infinite; }
.status-dot { width: 11px; height: 11px; border: 3px solid #d5eee1; border-radius: 50%; background: #54b584; }
.status-card small { display: block; color: #697781; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.status-card strong { display: block; margin-top: 2px; font-size: 13px; }

.home-overview { padding: 100px 0; background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p:last-child { margin-bottom: 0; }
.section-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 850; }
.section-link span, .news-read span { transition: transform .25s ease; }
.section-link:hover span, .news-read:hover span { transform: translate(3px, -2px); }
.overview-grid, .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.overview-card, .content-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.overview-card::before, .content-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.overview-card:hover, .content-card:hover { transform: translateY(-8px); border-color: rgba(216,180,77,.7); box-shadow: var(--shadow); }
.overview-card:hover::before, .content-card:hover::before { transform: scaleX(1); }
.card-number { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 56px; border-radius: 50%; color: var(--navy); background: #f1e6be; font-size: 12px; font-weight: 900; }
.overview-card p, .content-card p { color: var(--muted); }
.card-link { position: absolute; right: 30px; bottom: 28px; left: 30px; display: flex; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 850; }

.page-hero { position: relative; overflow: hidden; padding: 120px 0 108px; color: #fff; background: var(--navy); }
.page-hero::before { content: ""; position: absolute; width: 600px; height: 600px; top: -330px; right: -130px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; animation: orbit 16s linear infinite; }
.page-hero::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 6px; background: var(--gold); transform-origin: left; animation: lineIn 1.1s ease both; }
.page-hero .shell { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.page-hero h1 { max-width: 780px; margin-bottom: 0; }
.page-hero .lead { margin-bottom: 0; color: #c8d0d6; }

.content-section { padding: 100px 0; }
.content-section.soft { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.story-grid h2 { position: sticky; top: 130px; }
.story-copy > p { color: var(--muted); font-size: 18px; }
.story-list { margin-top: 42px; border-top: 1px solid var(--line); }
.story-list article { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.story-list span { color: #af8722; font-weight: 900; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.product-card { min-height: 420px; padding: 38px; color: #fff; background: var(--navy); transition: transform .35s ease, background .35s ease; }
.product-card:nth-child(2), .product-card:nth-child(3) { background: var(--navy-2); }
.product-card:hover { transform: translateY(-7px); background: #16364d; }
.product-code { display: flex; align-items: center; justify-content: space-between; margin-bottom: 118px; color: var(--gold-bright); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.product-card h3 { font-size: 36px; }
.product-card p { max-width: 480px; color: #c1ccd3; }
.product-card a { display: inline-block; margin-top: 20px; color: var(--gold-bright); font-weight: 850; }

.service-rows { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 80px .8fr 1.25fr 48px; gap: 28px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); transition: padding .3s ease, background .3s ease; }
.service-row:hover { padding-right: 20px; padding-left: 20px; background: var(--cream); }
.service-row > span { color: #aa8322; font-size: 12px; font-weight: 900; }
.service-row h3, .service-row p { margin-bottom: 0; }
.service-row p { color: var(--muted); }
.round-arrow { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; background: var(--navy); transition: transform .3s ease; }
.service-row:hover .round-arrow { transform: rotate(45deg); }

.process-band { padding: 96px 0; color: #fff; background: var(--navy); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: item; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.process-list li::before { counter-increment: item; content: "0" counter(item); color: var(--gold-bright); font-weight: 900; }
.process-list p { color: #bdc7cd; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.contact-intro { padding: 50px; color: #fff; background: var(--navy); }
.contact-intro p { color: #c2ccd2; }
.contact-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-option { min-height: 230px; padding: 28px; border: 1px solid var(--line); background: var(--cream); transition: transform .3s ease, box-shadow .3s ease; }
.contact-option:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-option small { color: #aa8322; font-weight: 900; letter-spacing: .14em; }
.contact-option h3 { margin-top: 70px; }
.contact-option p { color: var(--muted); }

.news-section { padding: 104px 0; background: #fff; }
.home-news { background: #eef2f2; }
.news-page-hero h1 { max-width: 850px; }
.news-featured {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 510px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.news-media { position: relative; display: block; overflow: hidden; background: #d9dde0; }
.news-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(9,27,42,.18)); pointer-events: none; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.news-featured:hover .news-media img, .news-card:hover .news-media img { transform: scale(1.055); filter: saturate(1.06); }
.news-featured-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px; }
.news-featured-copy h2 { margin: 22px 0; font-size: clamp(36px, 3.2vw, 52px); }
.news-featured-copy p { margin-bottom: 30px; color: #c4cdd3; font-size: 17px; }
.news-featured-copy .button { align-self: flex-start; }
.news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; color: #707d86; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.news-category { display: inline-flex; align-items: center; min-height: 29px; padding: 0 12px; color: var(--navy); background: #efe1a9; border-radius: 999px; }
.news-list-heading { max-width: 790px; margin: 94px 0 42px; }
.news-list-heading h2 { margin-bottom: 0; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.home-news-grid { grid-template-columns: repeat(3, 1fr); }
.news-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.news-card:hover { transform: translateY(-9px); border-color: rgba(216,180,77,.75); box-shadow: var(--shadow); }
.news-card .news-media { aspect-ratio: 16 / 9; }
.news-card-copy { display: flex; flex: 1; flex-direction: column; padding: 30px; }
.news-card h3 { margin: 20px 0 14px; font-size: clamp(24px, 2vw, 31px); }
.news-card p { margin-bottom: 24px; color: var(--muted); }
.news-read { display: inline-flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 850; }

.news-article-hero { position: relative; overflow: hidden; padding: 110px 0 120px; color: #fff; background: var(--navy); border-bottom: 7px solid var(--gold); }
.news-article-hero::before { content: ""; position: absolute; top: -380px; right: -210px; width: 760px; height: 760px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; animation: breathe 7s ease-in-out infinite; }
.news-article-shell { position: relative; width: min(900px, calc(100% - 48px)); margin: 0 auto; }
.news-back { display: inline-flex; gap: 10px; margin-bottom: 54px; color: #c4cdd3; font-size: 13px; font-weight: 850; }
.news-back:hover { color: var(--gold-bright); }
.light-meta { color: #b9c4cb; }
.news-article-hero h1 { margin: 27px 0; font-size: clamp(46px, 5.6vw, 78px); }
.news-article-hero .lead { max-width: 760px; margin-bottom: 0; color: #c4cdd3; }
.news-article-content { padding: 80px 0 104px; }
.news-article-image { aspect-ratio: 16 / 8.5; margin: 0 0 62px; overflow: hidden; box-shadow: var(--shadow); }
.news-article-image img { width: 100%; height: 100%; object-fit: cover; }
.news-body { max-width: 740px; margin: 0 auto; color: #394751; font-size: 19px; line-height: 1.9; }
.news-body p { margin-bottom: 28px; }
.news-body p:first-child::first-letter { float: left; margin: 9px 10px 0 0; color: #a77d17; font-size: 70px; font-weight: 900; line-height: .68; }
.news-note { max-width: 740px; margin: 54px auto 0; padding: 28px 30px; border-left: 5px solid var(--gold); background: var(--cream); }
.news-note strong { color: #a47b18; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.news-note p { margin: 8px 0 0; color: var(--muted); }
.related-news { background: var(--cream); }
.related-news .news-list-heading { margin-top: 0; }

.cta-band { padding: 88px 0; background: var(--gold); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { max-width: 760px; margin-bottom: 0; }

footer { padding: 72px 0 28px; color: #fff; background: #06141f; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 70px; }
footer .brand img { filter: brightness(0) invert(1); }
footer .brand small { color: #9eaab2; }
.footer-note { max-width: 420px; margin-top: 24px; color: #9eabb4; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { margin-bottom: 12px; color: var(--gold-bright); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.footer-links a { color: #d5dce1; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: #82919b; font-size: 13px; }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 26px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float::before { content: ""; position: absolute; inset: -8px; border: 1px solid rgba(37,211,102,.5); border-radius: 50%; animation: whatsappPulse 2.2s ease-out infinite; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.whatsapp-float img { width: 31px; height: 31px; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }

@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .75; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes lineIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes whatsappPulse { 0% { transform: scale(.9); opacity: .8; } 75%,100% { transform: scale(1.3); opacity: 0; } }

@media (max-width: 1050px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-copy { min-height: 690px; padding-right: max(24px, calc((100vw - 900px)/2)); }
  .home-image { min-height: 620px; }
  .page-hero .shell, .section-heading, .story-grid, .process-grid, .contact-grid { gap: 50px; }
  .home-news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 700px); }
  .nav-shell { min-height: 76px; }
  .brand img { width: 190px; height: 42px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px 24px;
    color: #fff;
    background: rgba(9,27,42,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a { padding: 17px 4px; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 20px; font-weight: 800; }
  .page-hero .shell, .section-heading, .story-grid, .process-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .story-grid h2 { position: static; }
  .product-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 55px 1fr 48px; }
  .service-row p { grid-column: 2 / 4; }
  .contact-options { grid-template-columns: 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured .news-media { aspect-ratio: 16 / 9; }
  .news-grid, .home-news-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .brand img { width: 166px; height: 38px; }
  .brand small { display: none; }
  .home-copy { min-height: 650px; padding: 64px 24px; }
  .home-copy h1 { font-size: 50px; }
  .home-image { min-height: 470px; }
  .status-card { right: 20px; bottom: 24px; left: 20px; min-width: 0; }
  .standards { margin-top: 44px; }
  .home-overview, .content-section, .process-band { padding: 74px 0; }
  .news-section { padding: 74px 0; }
  .news-featured-copy { padding: 34px 28px 40px; }
  .news-list-heading { margin-top: 72px; }
  .news-card-copy { padding: 25px 23px; }
  .news-article-hero { padding: 74px 0 82px; }
  .news-article-shell { width: min(100% - 32px, 900px); }
  .news-back { margin-bottom: 38px; }
  .news-article-content { padding: 52px 0 74px; }
  .news-article-image { margin-bottom: 42px; }
  .news-body { font-size: 17px; }
  .page-hero { padding: 80px 0 72px; }
  .page-hero h1 { font-size: 48px; }
  .overview-card, .content-card, .product-card { padding: 28px; }
  .product-code { margin-bottom: 80px; }
  .service-row { grid-template-columns: 44px 1fr 42px; gap: 15px; }
  .contact-intro { padding: 34px 28px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 18px; bottom: 18px; width: 58px; height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
