:root {
  --navy-950: #061a2f;
  --navy-900: #082542;
  --navy-800: #0b365d;
  --blue-700: #0d4c7f;
  --blue-100: #e7f0f6;
  --blue-50: #f3f7fa;
  --teal-500: #1b9a93;
  --teal-400: #29b5aa;
  --ink: #142434;
  --slate: #526372;
  --line: #d7e0e6;
  --white: #ffffff;
  --off-white: #fbfcfd;
  --display: Georgia, "Times New Roman", serif;
  --body: "Trebuchet MS", "Segoe UI", sans-serif;
  --shadow: 0 24px 60px rgba(6, 26, 47, 0.13);
  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--off-white); font-family: var(--body); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--teal-400); outline-offset: 4px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-muted { background: var(--blue-50); }
.section-navy { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.section-navy::before { position: absolute; inset: 0; content: ""; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent, #000); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--display); font-weight: 500; line-height: 1.06; letter-spacing: -.025em; }
h1 { font-size: clamp(3.1rem, 6vw, 6.5rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4.2vw, 4.3rem); }
h3 { line-height: 1.25; }
p { color: var(--slate); }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--navy-950); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--blue-700); font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { width: 36px; height: 2px; content: ""; background: var(--teal-500); }
.eyebrow.light { color: #bed1df; }
.eyebrow.light::before { background: var(--teal-400); }

.site-header { position: sticky; z-index: 100; top: 0; color: var(--white); background: rgba(6, 26, 47, .97); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px); }
.navbar { min-height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand-logo { width: 54px; height: 54px; object-fit: cover; background: var(--white); border: 2px solid rgba(255,255,255,.8); border-radius: 50%; }
.brand span { display: flex; flex-direction: column; line-height: 1.1; }
.brand strong { font-family: var(--display); font-size: 1.25rem; letter-spacing: .09em; }
.brand small { margin-top: 5px; color: #b5c7d5; font-size: .68rem; letter-spacing: .025em; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu > a { position: relative; color: #dce7ef; font-size: .88rem; font-weight: 700; text-decoration: none; }
.nav-menu > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; content: ""; background: var(--teal-400); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-menu > a:hover::after, .nav-menu > a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 18px; color: var(--white) !important; border: 1px solid rgba(255,255,255,.3); transition: background .2s, border-color .2s; }
.nav-cta:hover { background: var(--blue-700); border-color: var(--blue-700); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid rgba(255,255,255,.3); }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: calc(100vh - 86px); display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero::before { position: absolute; inset: 0; content: ""; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 72px 72px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; padding-block: 80px; }
.hero-copy h1 { max-width: 760px; margin-bottom: 30px; }
.hero-lead { max-width: 650px; color: #c5d5e0; font-size: 1.16rem; }
.button-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid transparent; border-radius: var(--radius); font-weight: 700; text-align: center; text-decoration: none; transition: transform .2s, background .2s, border-color .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-accent { color: var(--navy-950); background: var(--teal-400); }
.button-accent:hover { background: #54c7be; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.45); }
.button-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--white); }
.button-primary { color: var(--white); background: var(--navy-800); }
.button-primary:hover { background: var(--blue-700); }
.hero-visual { position: relative; min-height: 560px; }
.image-frame { position: absolute; inset: 0 0 45px 55px; overflow: hidden; box-shadow: var(--shadow); }
.image-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(6,26,47,.72), transparent 55%); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.visual-label { position: absolute; z-index: 2; right: 28px; bottom: 26px; left: 28px; display: flex; align-items: center; gap: 14px; font-weight: 700; }
.visual-label span { color: var(--teal-400); font-family: var(--display); font-size: 2rem; }
.technical-card { position: absolute; z-index: 3; bottom: 0; left: 0; width: 285px; padding: 24px 26px; color: var(--navy-950); background: var(--white); border-left: 5px solid var(--teal-500); box-shadow: var(--shadow); }
.technical-card span { display: block; margin-bottom: 8px; color: var(--blue-700); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.technical-card strong { font-family: var(--display); font-size: 1.2rem; line-height: 1.3; }
.hero-line { position: absolute; z-index: 3; right: 0; bottom: 0; width: 42%; height: 6px; background: var(--teal-400); }

.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.split-intro h2 { margin-bottom: 0; }
.intro-copy { padding-top: 34px; border-top: 1px solid var(--line); }
.intro-copy p { font-size: 1.12rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-700); font-weight: 700; text-decoration: none; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 58px; }
.section-heading > div { max-width: 770px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 390px; }
.service-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; }
.service-feature { position: relative; min-height: 630px; overflow: hidden; color: var(--white); background: var(--navy-900); }
.service-feature::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(6,26,47,.96) 4%, rgba(6,26,47,.18) 75%); }
.service-feature img { width: 100%; height: 100%; object-fit: cover; }
.service-content { position: absolute; z-index: 2; right: 42px; bottom: 38px; left: 42px; }
.service-content h3 { margin: 8px 0 12px; font-family: var(--display); font-size: 2.25rem; }
.service-content p { max-width: 580px; color: #d5e0e7; }
.service-content .text-link { color: var(--teal-400); }
.service-number { color: var(--teal-500); font-family: var(--display); font-size: 1.6rem; }
.service-stack { display: grid; gap: 18px; }
.service-compact { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 34px; background: var(--white); border-top: 3px solid transparent; box-shadow: 0 12px 35px rgba(6,26,47,.06); transition: transform .25s, border-color .25s; }
.service-compact:hover { border-color: var(--teal-500); transform: translateX(-6px); }
.service-compact h3 { margin: 0 0 8px; color: var(--navy-900); font-family: var(--display); font-size: 1.5rem; }
.service-compact p { margin-bottom: 0; font-size: .95rem; }
.principles-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.principles-copy { position: sticky; top: 130px; }
.principles-copy > p:not(.eyebrow) { margin-bottom: 30px; font-size: 1.06rem; }
.principle-list { border-top: 1px solid var(--line); }
.principle-list article { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.principle-list article > span { color: var(--teal-500); font-family: var(--display); font-size: 1.4rem; }
.principle-list h3 { margin: 0 0 7px; font-family: var(--display); font-size: 1.55rem; }
.principle-list p { margin-bottom: 0; }
.cta-band { padding: 72px 0; color: var(--white); background: var(--blue-700); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(2.25rem, 4vw, 3.8rem); }
.cta-inner .button { flex: none; }

.page-hero { position: relative; min-height: 530px; display: grid; align-items: center; overflow: hidden; color: var(--white); background-color: var(--navy-950); background-size: cover; background-position: center; }
.page-hero::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(6,26,47,.97) 0%, rgba(6,26,47,.82) 55%, rgba(6,26,47,.42) 100%); }
.about-page-hero { background-image: url("engineering.jpg.jpeg"); }
.services-page-hero { background-image: url("oilgas.jpg.jpeg"); }
.contact-page-hero { background-image: url("background. jpg.jpeg"); }
.page-hero-content { position: relative; z-index: 1; max-width: 850px; padding-block: 80px; }
.page-hero h1 { margin-bottom: 24px; font-size: clamp(3rem, 5.4vw, 5.5rem); }
.page-hero p:not(.eyebrow) { max-width: 690px; color: #cfdae3; font-size: 1.13rem; }
.story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.story-image { position: relative; padding: 0 44px 44px 0; }
.story-image::before { position: absolute; right: 0; bottom: 0; width: 72%; height: 78%; content: ""; background: var(--blue-100); }
.story-image img { position: relative; z-index: 1; width: 100%; min-height: 540px; object-fit: cover; }
.image-caption { position: absolute; z-index: 2; right: 0; bottom: 18px; width: 310px; padding: 18px 22px; color: var(--white); background: var(--navy-900); font-size: .83rem; font-weight: 700; }
.story-copy > p:not(.eyebrow) { font-size: 1.06rem; }
.purpose-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.purpose-cards { display: grid; grid-template-columns: 1fr 1fr; }
.purpose-cards article { padding: 45px 40px; border: 1px solid rgba(255,255,255,.17); }
.purpose-cards article + article { border-left: 0; }
.purpose-cards span { color: var(--teal-400); font-size: .73rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.purpose-cards h3 { margin: 22px 0 16px; font-family: var(--display); font-size: 1.7rem; }
.purpose-cards p { margin-bottom: 0; color: #bfd0dd; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.values-grid article { min-height: 270px; padding: 34px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid span { color: var(--teal-500); font-family: var(--display); font-size: 1.3rem; }
.values-grid h3 { margin: 52px 0 12px; color: var(--navy-900); font-family: var(--display); font-size: 1.55rem; }

.service-row { display: grid; grid-template-columns: 1.02fr .98fr; gap: 90px; align-items: center; }
.service-row.reverse .service-image { order: 2; }
.service-image { position: relative; min-height: 510px; }
.service-image::before { position: absolute; top: 28px; right: -28px; bottom: -28px; left: 28px; content: ""; border: 1px solid var(--line); }
.service-image img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-image > span { position: absolute; z-index: 2; bottom: 24px; left: 24px; padding: 12px 18px; color: var(--white); background: var(--navy-950); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-description > p:not(.eyebrow) { font-size: 1.06rem; }
.check-list { margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 32px; color: var(--slate); border-bottom: 1px solid var(--line); }
.check-list li::before { position: absolute; top: 16px; left: 3px; width: 13px; height: 7px; content: ""; border-bottom: 2px solid var(--teal-500); border-left: 2px solid var(--teal-500); transform: rotate(-45deg); }
.environmental-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; }
.environmental-grid h2 { margin-bottom: 0; }
.environmental-grid > div:last-child { padding: 35px 0 5px; border-top: 1px solid var(--line); }
.process .container { position: relative; z-index: 1; }
.light-heading h2 { color: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.process-grid article { min-height: 280px; padding: 36px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.process-grid span { color: var(--teal-400); font-family: var(--display); font-size: 1.45rem; }
.process-grid h3 { margin: 62px 0 12px; font-family: var(--display); font-size: 1.55rem; }
.process-grid p { color: #bacbd7; }

.contact-layout { background: linear-gradient(90deg, var(--off-white) 0 49%, var(--blue-50) 49% 100%); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.contact-copy { padding-top: 25px; }
.contact-copy > p:not(.eyebrow) { font-size: 1.06rem; }
.contact-methods { margin: 45px 0; border-top: 1px solid var(--line); }
.contact-methods > a, .contact-methods > div { display: flex; align-items: center; gap: 20px; padding: 22px 0; text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-methods > a:hover strong { color: var(--blue-700); }
.method-icon { width: 43px; height: 43px; flex: none; display: grid; place-items: center; color: var(--teal-500); border: 1px solid var(--line); font-family: var(--display); }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { margin-bottom: 3px; color: var(--slate); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-methods strong { color: var(--navy-900); overflow-wrap: anywhere; }
.response-note { padding: 25px; background: var(--blue-100); border-left: 4px solid var(--teal-500); }
.response-note strong { color: var(--navy-900); }
.response-note p { margin: 7px 0 0; font-size: .92rem; }
.form-panel { padding: 48px; background: var(--white); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 34px; }
.form-heading > span { color: var(--teal-500); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.form-heading h2 { margin: 8px 0 0; font-size: 2.6rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: .82rem; font-weight: 700; }
.field label span { color: var(--slate); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--off-white); border: 1px solid #cdd8df; border-radius: 0; outline: none; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-700); box-shadow: 0 0 0 3px rgba(13,76,127,.1); }
.submit-button { width: 100%; border: 0; }
.submit-button:disabled { cursor: wait; opacity: .7; transform: none; }
.hidden-field { position: absolute; left: -9999px; }
.form-status { min-height: 26px; margin: 14px 0 0; font-size: .9rem; }
.form-status.success { color: #08766f; }
.form-status.error { color: #a23434; }

.site-footer { padding: 80px 0 0; color: #c6d4df; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr 1fr; gap: 80px; padding-bottom: 65px; }
.footer-brand p { max-width: 430px; margin: 24px 0 0; color: #9fb4c3; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid h3 { margin: 0 0 12px; color: var(--white); font-size: .77rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a { color: #c6d4df; text-decoration: none; }
.footer-grid a:hover { color: var(--teal-400); }
.footer-grid span { overflow-wrap: anywhere; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: #8098aa; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; }
.footer-bottom a { color: var(--teal-400); font-weight: 700; text-decoration: none; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.motion-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1000px) {
  .section { padding: 88px 0; }
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; z-index: 99; top: 86px; right: 0; bottom: 0; width: min(390px, 100%); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 30px; background: var(--navy-950); transform: translateX(100%); transition: transform .3s ease; }
  .nav-menu.open { transform: translateX(0); box-shadow: -20px 30px 50px rgba(0,0,0,.25); }
  .nav-menu > a { padding: 17px 4px; font-family: var(--display); font-size: 1.45rem; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-menu > a::after { display: none; }
  .nav-menu .nav-cta { margin-top: 22px; padding: 14px 18px; font-family: var(--body); font-size: .92rem; text-align: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 520px; }
  .image-frame { left: 15%; }
  .split-intro, .story-grid, .purpose-grid, .service-row, .contact-grid { gap: 55px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-feature { min-height: 560px; }
  .service-stack { grid-template-columns: 1fr 1fr; }
  .service-compact:last-child { grid-column: 1 / -1; }
  .principles-grid { gap: 60px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-layout { background: linear-gradient(to bottom, var(--off-white) 0 40%, var(--blue-50) 40% 100%); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 70px 0; }
  .navbar { min-height: 74px; }
  .brand-logo { width: 46px; height: 46px; }
  .brand strong { font-size: 1.02rem; }
  .brand small { font-size: .57rem; }
  .nav-menu { top: 74px; }
  .hero-grid { padding-block: 65px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .hero-lead, .page-hero p:not(.eyebrow) { font-size: 1rem; }
  .button-group { flex-direction: column; align-items: stretch; }
  .hero-visual { min-height: 410px; }
  .image-frame { inset: 0 0 35px 25px; }
  .technical-card { width: 245px; padding: 18px 20px; }
  .split-intro, .story-grid, .purpose-grid, .principles-grid, .service-row, .environmental-grid { grid-template-columns: 1fr; gap: 45px; }
  .intro-copy { padding-top: 25px; }
  .section-heading { display: block; margin-bottom: 40px; }
  .section-heading > p { margin-top: 22px; }
  .desktop-link { display: none; }
  .service-feature { min-height: 520px; }
  .service-content { right: 24px; bottom: 25px; left: 24px; }
  .service-content h3 { font-size: 1.8rem; }
  .service-stack { grid-template-columns: 1fr; }
  .service-compact:last-child { grid-column: auto; }
  .service-compact { padding: 26px 22px; }
  .principles-copy { position: static; }
  .cta-inner { align-items: flex-start; flex-direction: column; gap: 30px; }
  .cta-inner .button { width: 100%; }
  .page-hero { min-height: 480px; }
  .page-hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .story-image { padding: 0 22px 40px 0; }
  .story-image img { min-height: 400px; }
  .image-caption { width: calc(100% - 45px); }
  .purpose-cards { grid-template-columns: 1fr; }
  .purpose-cards article + article { border-top: 0; border-left: 1px solid rgba(255,255,255,.17); }
  .values-grid, .process-grid { grid-template-columns: 1fr; }
  .values-grid article, .process-grid article { min-height: auto; }
  .values-grid h3, .process-grid h3 { margin-top: 30px; }
  .service-row.reverse .service-image { order: initial; }
  .service-image { min-height: 380px; margin-right: 16px; }
  .environmental-grid { gap: 30px; }
  .contact-copy { padding-top: 0; }
  .form-panel { padding: 30px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading h2 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
}

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