:root {
  --navy-950: #0a1d2f;
  --navy-900: #102a43;
  --navy-800: #173e5f;
  --slate-700: #3f4e5c;
  --slate-500: #6f7b85;
  --stone-200: #dce0df;
  --stone-100: #edf0ee;
  --cream: #f6f5f1;
  --white: #ffffff;
  --gold: #c88a35;
  --gold-dark: #a96d22;
  --display: "Bodoni 72", Didot, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --shadow: 0 22px 60px rgba(10, 29, 47, .12);
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--navy-950); background: var(--cream); font-family: var(--body); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px; color: var(--white); background: var(--navy-950); transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--gold-dark); font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { width: 34px; height: 2px; background: currentColor; content: ""; }
.eyebrow-light { color: #e4b46e; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 500; letter-spacing: -.035em; line-height: .98; }
h1 { margin-bottom: 30px; color: var(--white); font-size: clamp(3.8rem, 8vw, 7.8rem); }
h1 em { color: #e0a450; font-weight: 400; }
h2 { margin-bottom: 28px; font-size: clamp(3rem, 5.4vw, 5.4rem); }
h3 { line-height: 1.25; }
.lead { color: var(--navy-900); font-family: var(--display); font-size: clamp(1.55rem, 2.2vw, 2.15rem); line-height: 1.35; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 20px; padding: 14px 25px; border: 1px solid var(--gold); color: var(--navy-950); background: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease; }
.button:hover { color: var(--white); background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: .67rem; }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .2s ease, gap .2s ease; }
.text-link:hover { color: var(--gold); gap: 22px; }
.text-link-light { color: var(--white); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.16); transition: background-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled { background: rgba(10,29,47,.97); box-shadow: 0 8px 30px rgba(0,0,0,.15); backdrop-filter: blur(12px); }
.header-inner { display: flex; min-height: 86px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 48px; height: 48px; flex: 0 0 auto; overflow: hidden; border: 1px solid rgba(255,255,255,.35); background: var(--white); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { max-width: 170px; font-size: .79rem; font-weight: 700; letter-spacing: .06em; line-height: 1.25; text-transform: uppercase; }
.brand-name strong { display: block; color: #e5b56d; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 29px); }
.site-nav > a:not(.button) { position: relative; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 0; color: inherit; background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: 820px; height: 100svh; overflow: hidden; background: var(--navy-950); }
.hero-media, .hero-overlay, .hero-grid { position: absolute; inset: 0; }
.hero-media { background: url("assets/images/hero.webp") center 56% / cover no-repeat; animation: hero-scale 1.7s ease-out both; }
.hero-overlay { background: linear-gradient(90deg, rgba(7,23,37,.95) 0%, rgba(7,23,37,.75) 52%, rgba(7,23,37,.26) 100%), linear-gradient(0deg, rgba(7,23,37,.62), transparent 55%); }
.hero-grid { opacity: .18; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 90px 90px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.hero-content { position: relative; z-index: 2; display: flex; height: 100%; max-width: 1220px; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 80px; }
.hero-eyebrow { color: #edc78e; }
.hero-copy { max-width: 710px; margin-bottom: 36px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.trust-strip { display: flex; gap: 26px; margin-top: 70px; color: rgba(255,255,255,.72); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.trust-strip span { display: flex; align-items: center; gap: 12px; }
.trust-strip span::before { width: 5px; height: 5px; background: var(--gold); content: ""; transform: rotate(45deg); }
.hero-scroll { position: absolute; right: 36px; bottom: 40px; z-index: 3; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll span { width: 1px; height: 64px; background: linear-gradient(var(--gold) 50%, rgba(255,255,255,.2) 50%); background-size: 100% 200%; animation: scroll-line 2s ease-in-out infinite; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .86fr 1.1fr; gap: 56px 90px; }
.section-intro { align-self: start; }
.about-copy { max-width: 660px; color: var(--slate-700); }
.about-copy strong { color: var(--navy-900); }
.company-card { align-self: end; padding: 38px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.company-card-label { margin-bottom: 25px; color: #e3b46f; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.company-card dl { margin: 0; }
.company-card dl div { display: grid; grid-template-columns: 105px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.15); }
.company-card dt { color: rgba(255,255,255,.55); font-size: .72rem; text-transform: uppercase; }
.company-card dd { margin: 0; font-weight: 600; }
.about-image { position: relative; min-height: 570px; margin: 0; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image figcaption { position: absolute; right: 0; bottom: 0; min-width: 255px; padding: 28px 32px; color: var(--white); background: var(--gold-dark); font-family: var(--display); font-size: 1.45rem; line-height: 1.2; }
.about-image figcaption span { display: block; margin-bottom: 12px; font-family: var(--body); font-size: .7rem; letter-spacing: .15em; }

.services { background: var(--stone-100); }
.section-heading { display: grid; grid-template-columns: 1.25fr .65fr; align-items: end; gap: 80px; margin-bottom: 64px; }
.section-heading h2 { margin: 0; }
.section-heading > p { max-width: 450px; margin-bottom: 8px; color: var(--slate-700); }
.services-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; }
.service-card { position: relative; min-height: 350px; padding: 42px 38px; border-top: 1px solid #cbd0cf; border-right: 1px solid #cbd0cf; background: transparent; transition: color .3s ease, background-color .3s ease, transform .3s ease, box-shadow .3s ease; }
.service-card:nth-child(n+4) { border-bottom: 1px solid #cbd0cf; }
.service-card:nth-child(3n+1) { border-left: 1px solid #cbd0cf; }
.service-card:hover { z-index: 2; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); transform: translateY(-7px); }
.service-number { display: block; margin-bottom: 60px; color: var(--gold-dark); font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.service-card h3 { max-width: 300px; margin-bottom: 18px; font-family: var(--display); font-size: 2rem; font-weight: 500; }
.service-card p { margin-bottom: 0; color: var(--slate-700); font-size: .93rem; }
.service-card:hover p { color: rgba(255,255,255,.72); }
.service-card > a:not(.circle-link) { display: inline-block; margin-top: 28px; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-featured { color: var(--white); background: var(--navy-900); }
.service-featured p { color: rgba(255,255,255,.7); }
.service-cta { background: #d7d9d4; }
.circle-link { position: absolute; right: 34px; bottom: 34px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--navy-900); border-radius: 50%; transition: color .2s ease, background .2s ease; }
.service-card:hover .circle-link { color: var(--navy-950); background: var(--gold); border-color: var(--gold); }

.why-us { color: var(--white); background: var(--navy-950); }
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.why-panel { position: sticky; top: 125px; align-self: start; }
.why-panel h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.why-panel > p:not(.eyebrow) { max-width: 480px; margin-bottom: 36px; color: rgba(255,255,255,.65); }
.reasons-list { border-top: 1px solid rgba(255,255,255,.16); }
.reason { display: grid; grid-template-columns: 70px 1fr; gap: 28px; padding: 38px 12px; border-bottom: 1px solid rgba(255,255,255,.16); transition: background-color .25s ease, padding .25s ease; }
.reason:hover { padding-inline: 28px; background: rgba(255,255,255,.045); }
.reason-icon { display: grid; width: 52px; height: 52px; place-items: center; color: var(--gold); border: 1px solid rgba(200,138,53,.5); font-size: .69rem; font-weight: 800; transform: rotate(45deg); }
.reason-icon::first-line { transform: rotate(-45deg); }
.reason h3 { margin: 0 0 8px; font-family: var(--display); font-size: 2rem; font-weight: 500; }
.reason p { margin: 0; color: rgba(255,255,255,.62); }

.projects { background: var(--cream); }
.section-heading-compact { grid-template-columns: 1.25fr .55fr; }
.project-grid { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 390px 390px 390px; gap: 18px; }
.project-card { position: relative; overflow: hidden; background: var(--navy-900); }
.project-large { grid-row: span 2; }
.project-wide { grid-column: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .5s ease; }
.project-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,23,37,.92), rgba(7,23,37,0) 65%); content: ""; transition: background-color .3s ease; }
.project-overlay { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 30px; color: var(--white); transform: translateY(38px); transition: transform .35s ease; }
.project-overlay span { color: #e3b36c; font-size: .67rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-overlay h3 { margin: 8px 0; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 500; }
.project-overlay p { margin: 0; color: rgba(255,255,255,.75); opacity: 0; transition: opacity .3s ease; }
.project-card:hover img { opacity: .8; transform: scale(1.045); }
.project-card:hover .project-overlay { transform: translateY(0); }
.project-card:hover .project-overlay p { opacity: 1; }
.project-note, .testimonial-note { margin: 18px 0 0; color: var(--slate-500); font-size: .72rem; }

.testimonials { overflow: hidden; background: #e4e4df; }
.testimonial-heading { display: grid; grid-template-columns: .35fr 1fr; align-items: start; gap: 60px; margin-bottom: 65px; }
.testimonial-heading h2 { max-width: 830px; margin: 0; }
.testimonial-grid { display: grid; grid-template-columns: .9fr 1.2fr .9fr; gap: 18px; align-items: center; }
.testimonial-card { position: relative; min-height: 410px; margin: 0; padding: 50px 38px 38px; border: 1px solid #c8cbc8; background: var(--cream); }
.featured-quote { min-height: 480px; padding-top: 70px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.quote-mark { color: var(--gold); font-family: var(--display); font-size: 5.5rem; line-height: .6; }
.testimonial-card > p { margin: 35px 0 50px; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.45; }
.testimonial-card footer { position: absolute; right: 38px; bottom: 38px; left: 38px; display: flex; flex-direction: column; padding-top: 18px; border-top: 1px solid rgba(16,42,67,.16); }
.featured-quote footer { border-color: rgba(255,255,255,.16); }
.testimonial-card footer strong { font-size: .78rem; text-transform: uppercase; }
.testimonial-card footer span { color: var(--slate-500); font-size: .75rem; }
.featured-quote footer span { color: rgba(255,255,255,.56); }

.contact { padding: 120px 0 0; color: var(--white); background: var(--navy-900); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; }
.contact-details h2 { font-size: clamp(3.5rem, 6vw, 6.2rem); }
.contact-details > p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.67); }
.contact-details address { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; font-style: normal; }
.contact-details address a, .contact-details address div { display: flex; flex-direction: column; gap: 6px; }
.contact-details address span { color: #dfab61; font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-details address strong { font-size: .92rem; font-weight: 600; }
.contact-details address a:hover strong { color: #e8ba78; }
.form-card { padding: 52px; color: var(--navy-950); background: var(--white); box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.form-heading span { font-family: var(--display); font-size: 2rem; }
.form-heading p { color: var(--slate-500); font-size: .7rem; }
.honeypot { position: absolute; left: -9999px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 24px; }
.field label { display: block; margin-bottom: 8px; color: var(--slate-700); font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #b8bfbd; border-radius: 0; padding: 10px 2px 12px; color: var(--navy-950); background: transparent; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--gold-dark); box-shadow: 0 2px 0 var(--gold-dark); }
.field textarea::placeholder { color: #9ba29f; }
.consent { display: flex; align-items: flex-start; gap: 11px; margin: 0 0 24px; color: var(--slate-700); font-size: .78rem; }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--gold-dark); }
.form-submit { width: 100%; justify-content: space-between; border: 0; cursor: pointer; }
.privacy-note { margin: 12px 0 0; color: var(--slate-500); font-size: .7rem; text-align: center; }
.site-footer { padding: 75px 0 25px; color: rgba(255,255,255,.65); background: #071726; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .65fr 1fr .8fr; gap: 70px; padding-bottom: 65px; }
.brand-footer { color: var(--white); }
.footer-brand > p { max-width: 410px; margin: 25px 0 0; font-size: .86rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: .82rem; }
.footer-column h2 { margin: 5px 0 16px; color: var(--white); font-family: var(--body); font-size: .69rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-column p { margin: 0; }
.footer-column a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes hero-scale { from { transform: scale(1.08); opacity: .4; } to { transform: scale(1); opacity: 1; } }
@keyframes scroll-line { 0%, 100% { background-position: 0 100%; } 50% { background-position: 0 0; } }

@media (max-width: 1020px) {
  .section { padding: 95px 0; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 86px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 30px 24px 50px; color: var(--white); background: var(--navy-950); transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s; }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .site-nav > a:not(.button) { padding: 17px 8px; border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--display); font-size: 1.6rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .site-nav .button { margin-top: 25px; }
  .about-grid { gap: 45px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n+1) { border-left: 0; }
  .service-card:nth-child(odd) { border-left: 1px solid #cbd0cf; }
  .service-card:nth-child(n+4) { border-bottom: 0; }
  .service-card:nth-last-child(-n+2) { border-bottom: 1px solid #cbd0cf; }
  .why-grid { grid-template-columns: 1fr; gap: 65px; }
  .why-panel { position: static; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 760px; margin: auto; }
  .testimonial-card, .featured-quote { min-height: 360px; }
  .contact-grid { gap: 45px; }
  .form-card { padding: 38px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 32px, 620px); }
  html { scroll-padding-top: 72px; }
  .section { padding: 78px 0; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 42px; height: 42px; }
  .site-nav { inset: 72px 0 0; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 85px; padding-bottom: 35px; justify-content: flex-end; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero-overlay { background: linear-gradient(0deg, rgba(7,23,37,.98) 0%, rgba(7,23,37,.77) 58%, rgba(7,23,37,.34) 100%); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { width: 100%; align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .trust-strip { flex-direction: column; gap: 9px; margin-top: 35px; }
  .hero-scroll { display: none; }
  .about-grid, .section-heading, .testimonial-heading, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 38px; }
  .about-image { min-height: 420px; }
  .about-image figcaption { min-width: 220px; padding: 22px 25px; font-size: 1.25rem; }
  .company-card { order: 4; padding: 30px 25px; }
  .section-heading { gap: 24px; margin-bottom: 45px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 35px 28px 42px; border: 1px solid #cbd0cf; border-bottom: 0; }
  .service-card:nth-child(3n+1), .service-card:nth-child(odd) { border-left: 1px solid #cbd0cf; }
  .service-card:last-child { border-bottom: 1px solid #cbd0cf; }
  .service-number { margin-bottom: 35px; }
  .reason { grid-template-columns: 55px 1fr; gap: 18px; padding: 30px 0; }
  .reason:hover { padding-inline: 12px; }
  .reason-icon { width: 42px; height: 42px; }
  .project-grid { display: flex; flex-direction: column; }
  .project-card { min-height: 400px; }
  .project-overlay { transform: none; }
  .project-overlay p { opacity: 1; }
  .testimonial-heading { gap: 15px; }
  .contact { padding-top: 80px; }
  .contact-details address, .field-row { grid-template-columns: 1fr; }
  .contact-details address { gap: 20px; }
  .form-card { margin-inline: -16px; padding: 34px 24px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .brand-name { max-width: 135px; font-size: .68rem; }
  .company-card dl div { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid .footer-column:last-child { grid-column: auto; }
}

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