:root {
  --green-950: #022f29;
  --green-900: #033f36;
  --green-800: #075448;
  --green-700: #0d6758;
  --gold: #b79a5b;
  --gold-light: #d5c18e;
  --sand: #f3efe6;
  --sand-2: #e9e1d2;
  --white: #ffffff;
  --ink: #18211f;
  --muted: #62706c;
  --line: rgba(3, 63, 54, 0.15);
  --shadow: 0 24px 70px rgba(3, 42, 36, 0.15);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; background: #fff; color: var(--green-900); padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 94px;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.16); }
.site-header.is-scrolled, .site-header.nav-open { background: rgba(255,255,255,.97); box-shadow: 0 8px 32px rgba(0,0,0,.09); height: 78px; backdrop-filter: blur(12px); }
.site-header.is-scrolled::after, .site-header.nav-open::after { background: var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; width: 250px; max-width: 42vw; }
.brand-logo { width: 100%; max-height: 55px; object-fit: contain; object-position: left center; }
.brand-logo-dark { display: none; }
.site-header.is-scrolled .brand-logo-light, .site-header.nav-open .brand-logo-light { display: none; }
.site-header.is-scrolled .brand-logo-dark, .site-header.nav-open .brand-logo-dark { display: block; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.nav-link { color: #fff; font-size: .92rem; font-weight: 650; letter-spacing: .01em; position: relative; padding-block: 10px; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.site-header.is-scrolled .nav-link, .site-header.nav-open .nav-link { color: var(--green-900); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 6px 0; transition: transform .25s ease, opacity .25s ease, background .25s ease; }
.site-header.is-scrolled .nav-toggle span, .site-header.nav-open .nav-toggle span { background: var(--green-900); }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  position: relative;
  color: #fff;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-home { min-height: 100svh; display: flex; align-items: center; }
.hero-inner { min-height: 72svh; display: flex; align-items: flex-end; padding: 190px 0 100px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,47,41,.94) 0%, rgba(3,63,54,.78) 44%, rgba(3,63,54,.18) 100%); }
.hero-home .hero-overlay { background: linear-gradient(90deg, rgba(2,47,41,.96) 0%, rgba(3,63,54,.82) 48%, rgba(3,63,54,.24) 100%); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 24%, rgba(0,0,0,.2)); pointer-events: none; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr); gap: 60px; align-items: end; padding-top: 92px; }
.hero-content-narrow { display: block; max-width: 840px; margin-left: max(0px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2)); width: min(840px, calc(100% - 40px)); padding-top: 0; }
.hero-copy { max-width: 780px; }
.eyebrow { display: inline-block; color: var(--green-700); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.eyebrow-light { color: #fff; opacity: .9; }
.eyebrow-gold { color: var(--gold-light); }
h1, h2, h3 { margin: 0; line-height: 1.08; font-weight: 650; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.2rem); max-width: 980px; }
.hero-inner h1 { font-size: clamp(3rem, 6.2vw, 5.5rem); }
.hero p { font-size: clamp(1rem, 1.6vw, 1.22rem); max-width: 760px; color: rgba(255,255,255,.83); margin: 28px 0 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border-radius: 999px; font-weight: 750; font-size: .94rem; border: 1px solid transparent; transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--green-950); }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--green-900); }
.btn-outline { border-color: var(--green-900); color: var(--green-900); }
.btn-outline:hover { background: var(--green-900); color: #fff; }
.btn-green { background: var(--green-900); color: #fff; }
.btn-green:hover { background: var(--green-800); }
.hero-panel { background: rgba(3,63,54,.74); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(12px); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.panel-kicker { display: block; color: var(--gold-light); text-transform: uppercase; font-weight: 800; font-size: .75rem; letter-spacing: .13em; margin-bottom: 20px; }
.hero-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.hero-steps li { display: flex; align-items: center; gap: 15px; font-size: 1.08rem; font-weight: 650; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.14); }
.hero-steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-steps span { color: var(--gold-light); font-size: .78rem; letter-spacing: .08em; }
.scroll-cue { position: absolute; z-index: 3; left: max(20px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2)); bottom: 26px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue span { width: 38px; height: 1px; background: var(--gold-light); }

.section { padding: 110px 0; }
.section-tint { background: var(--sand); }
.section-dark { background: var(--green-950); color: #fff; }
.section-heading { max-width: 700px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { color: var(--green-900); font-size: clamp(2.25rem, 4.5vw, 4rem); }
.section-dark .section-heading h2 { color: #fff; }
.section-heading > p { color: var(--muted); font-size: 1.05rem; margin: 20px 0 0; }
.section-dark .section-heading > p { color: rgba(255,255,255,.7); }
.split-intro, .two-column { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 90px; align-items: start; }
.align-start { align-items: start; }
.intro-copy, .prose { font-size: 1.06rem; color: var(--muted); }
.lead { color: var(--green-900); font-size: 1.3rem; line-height: 1.55; margin-top: 0; }
.text-link { display: inline-flex; gap: 8px; color: var(--green-900); font-weight: 800; margin-top: 18px; }
.text-link:hover { color: var(--gold); }

.capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; margin-top: 52px; }
.image-card { position: relative; min-height: 510px; overflow: hidden; border-radius: var(--radius); color: #fff; box-shadow: var(--shadow); }
.image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.image-card:hover img { transform: scale(1.05); }
.image-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,47,41,.08), rgba(2,47,41,.95)); }
.image-card-content { position: absolute; inset: auto 0 0; padding: 30px; }
.image-card-content > span { color: var(--gold-light); font-size: .8rem; font-weight: 800; }
.image-card h3 { font-size: 2rem; margin: 8px 0 14px; }
.image-card p { color: rgba(255,255,255,.76); margin: 0 0 20px; }
.image-card a { font-weight: 800; color: var(--gold-light); }

.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.feature-list { display: grid; gap: 0; }
.feature { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.feature:first-child { padding-top: 0; }
.feature > span { color: var(--gold-light); font-weight: 800; }
.feature h3 { font-size: 1.35rem; margin-bottom: 8px; }
.feature p { color: rgba(255,255,255,.65); margin: 0; }

.project-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; margin-top: 48px; }
.project-tile { border-radius: var(--radius); background: #fff; overflow: hidden; box-shadow: 0 18px 50px rgba(3,63,54,.11); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.project-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-tile img { width: 100%; height: 250px; object-fit: cover; }
.project-tile div { padding: 25px; }
.project-tile span { color: var(--gold); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.project-tile h3 { color: var(--green-900); font-size: 1.55rem; margin: 8px 0 12px; }
.project-tile p { color: var(--muted); margin: 0; }
.section-action { margin-top: 42px; text-align: center; }

.cta-band { background: var(--green-900); color: #fff; padding: 72px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3.5rem); max-width: 800px; }

.quote-section { padding: 80px 0; }
.quote-grid { display: grid; grid-template-columns: 110px 1fr; gap: 50px; align-items: center; }
.quote-grid img { width: 90px; opacity: .85; }
blockquote { margin: 0; }
blockquote p { font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.15; letter-spacing: -.035em; margin: 0 0 30px; }
blockquote footer { display: flex; flex-direction: column; color: rgba(255,255,255,.68); }
blockquote footer strong { color: var(--gold-light); }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.statement-card { padding: 38px; background: var(--green-900); color: #fff; border-radius: var(--radius); }
.statement-card > span { color: var(--gold-light); text-transform: uppercase; font-weight: 800; letter-spacing: .12em; font-size: .75rem; }
.statement-card h3 { font-size: 2rem; margin: 14px 0; }
.statement-card p { color: rgba(255,255,255,.7); margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 18px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.value-card > span { color: var(--gold); font-size: .75rem; font-weight: 800; }
.value-card h3 { color: var(--green-900); font-size: 1.3rem; margin: 10px 0; }
.value-card p { color: var(--muted); margin: 0; font-size: .94rem; }
.check-grid, .scope-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.check-grid span, .scope-grid span { position: relative; padding: 17px 16px 17px 45px; border: 1px solid var(--line); border-radius: 13px; color: var(--green-900); background: #fff; font-weight: 650; }
.check-grid span::before, .scope-grid span::before { content: "✓"; position: absolute; left: 17px; color: var(--gold); font-weight: 900; }

.media-feature { padding: 110px 0; }
.media-feature-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.media-feature-grid.reverse { grid-template-columns: .9fr 1.1fr; }
.media-feature-grid.reverse img { order: 2; }
.media-feature-grid > img { width: 100%; height: 570px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.media-copy h2 { color: var(--green-900); font-size: clamp(2.2rem, 4vw, 3.7rem); }
.media-copy > p { color: var(--muted); font-size: 1.06rem; }
.clean-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.clean-list li { position: relative; padding-left: 27px; color: var(--green-900); font-weight: 650; }
.clean-list li::before { content: ""; width: 9px; height: 9px; border: 2px solid var(--gold); position: absolute; left: 0; top: .48em; }
.sector-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 50px; }
.sector { border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 32px; }
.sector > span { color: var(--gold-light); font-weight: 800; }
.sector h3 { font-size: 1.55rem; margin: 12px 0; }
.sector p { color: rgba(255,255,255,.65); margin: 0; }
.gallery-band { display: grid; grid-template-columns: repeat(3,1fr); }
.gallery-band img { width: 100%; height: 380px; object-fit: cover; }
.image-story { position: relative; min-height: 650px; display: flex; align-items: center; background-image: var(--story-image); background-size: cover; background-position: center; color: #fff; }
.image-story-roots { background-position: center 55%; }
.image-story-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,47,41,.93), rgba(2,47,41,.25)); }
.image-story-content { position: relative; z-index: 2; max-width: 710px; }
.image-story h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.image-story p { color: rgba(255,255,255,.8); font-size: 1.12rem; }
.benefit-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.benefit-list span { border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; color: var(--green-900); font-weight: 700; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 50px; }
.process-card { padding: 28px; background: #fff; border-radius: 18px; border: 1px solid var(--line); }
.process-card > span { color: var(--gold); font-size: 1.2rem; font-weight: 850; }
.process-card h3 { color: var(--green-900); font-size: 1.4rem; margin: 18px 0; }
.process-card ul { padding-left: 18px; color: var(--muted); margin: 0; }
.technical-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 50px; }
.technical-grid article { border-top: 2px solid var(--gold); padding: 24px 0; }
.technical-grid h3 { font-size: 1.35rem; margin-bottom: 10px; }
.technical-grid p { color: rgba(255,255,255,.66); margin: 0; }

.project-detail { scroll-margin-top: 90px; }
.project-detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.project-detail-grid.reverse { grid-template-columns: .9fr 1.1fr; }
.project-detail-grid.reverse .project-image { order: 2; }
.project-image img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.project-copy h2 { color: var(--green-900); font-size: clamp(2.4rem, 4.5vw, 4rem); }
.project-copy p:not(.lead) { color: var(--muted); }
.project-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 28px; }
.project-facts span { background: var(--sand); border-radius: 12px; padding: 16px; color: var(--muted); font-size: .86rem; }
.project-facts strong { display: block; color: var(--green-900); font-size: 1.2rem; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-details h2 { color: var(--green-900); font-size: clamp(2.4rem,4.5vw,4rem); }
.contact-details > p { color: var(--muted); }
.contact-cards { display: grid; gap: 12px; margin-top: 36px; }
.contact-cards > * { display: flex; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--sand); transition: transform .2s ease; }
.contact-cards a:hover { transform: translateX(4px); }
.contact-cards span { color: var(--gold); text-transform: uppercase; font-size: .72rem; letter-spacing: .12em; font-weight: 850; }
.contact-cards strong { color: var(--green-900); font-size: 1.1rem; margin-top: 4px; }
.contact-form { background: #fff; padding: 38px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; gap: 7px; margin-bottom: 18px; }
.form-row label { color: var(--green-900); font-size: .86rem; font-weight: 750; }
.form-row input, .form-row select, .form-row textarea { width: 100%; border: 1px solid rgba(3,63,54,.25); border-radius: 11px; padding: 12px 14px; background: #fff; color: var(--ink); outline: none; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(183,154,91,.18); }
.form-note { color: var(--muted); font-size: .8rem; margin: 14px 0 0; }
.contact-capabilities { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 45px; }
.contact-capabilities a { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 18px; transition: transform .2s ease, background .2s ease; }
.contact-capabilities a:hover { transform: translateY(-4px); background: var(--green-900); color: #fff; }
.contact-capabilities span { color: var(--gold); font-weight: 850; }
.contact-capabilities h3 { color: var(--green-900); margin: 12px 0; }
.contact-capabilities a:hover h3 { color: #fff; }
.contact-capabilities p { color: var(--muted); margin: 0; }
.contact-capabilities a:hover p { color: rgba(255,255,255,.7); }

.site-footer { background: var(--green-950); color: #fff; padding: 80px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .85fr; gap: 70px; }
.footer-brand img { width: 270px; margin-bottom: 24px; }
.footer-brand p { color: rgba(255,255,255,.62); max-width: 480px; }
.footer-grid h2 { font-size: .86rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.68); }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 55px; padding-top: 24px; color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-bottom a { color: var(--gold-light); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .site-nav { gap: 15px; }
  .nav-link { font-size: .84rem; }
  .brand { width: 210px; }
  .hero-content { grid-template-columns: 1fr; gap: 35px; align-items: center; padding-bottom: 70px; }
  .hero-panel { max-width: 600px; }
  .capability-grid, .project-strip { grid-template-columns: repeat(2,1fr); }
  .capability-grid .image-card:last-child, .project-strip .project-tile:last-child { grid-column: span 2; }
  .values-grid, .technical-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .project-facts { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 28px, 720px); }
  .site-header { height: 76px; }
  .brand { width: 205px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 76px 0 auto; background: #fff; display: grid; gap: 0; max-height: 0; overflow: hidden; box-shadow: 0 20px 30px rgba(0,0,0,.08); transition: max-height .3s ease; }
  .site-header.nav-open .site-nav { max-height: calc(100vh - 76px); overflow-y: auto; }
  .nav-link { color: var(--green-900); padding: 16px 24px; border-bottom: 1px solid var(--line); }
  .nav-link::after { display: none; }
  .hero-home { min-height: 920px; }
  .hero-inner { min-height: 66svh; padding: 150px 0 70px; }
  .hero-content-narrow { margin-inline: auto; width: var(--container); }
  h1 { font-size: clamp(3rem, 11vw, 5.4rem); }
  .section { padding: 82px 0; }
  .split-intro, .two-column, .why-grid, .media-feature-grid, .media-feature-grid.reverse, .project-detail-grid, .project-detail-grid.reverse, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .media-feature-grid.reverse img, .project-detail-grid.reverse .project-image { order: initial; }
  .media-feature-grid > img, .project-image img { height: 460px; }
  .capability-grid, .project-strip, .sector-grid, .contact-capabilities { grid-template-columns: 1fr; }
  .capability-grid .image-card:last-child, .project-strip .project-tile:last-child { grid-column: auto; }
  .image-card { min-height: 460px; }
  .gallery-band { grid-template-columns: 1fr; }
  .gallery-band img { height: 330px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .hero-home { min-height: 900px; }
  .hero-content { padding-top: 110px; }
  .hero-panel { padding: 24px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .section { padding: 68px 0; }
  .values-grid, .vision-grid, .check-grid, .scope-grid, .process-grid, .technical-grid { grid-template-columns: 1fr; }
  .media-feature-grid > img, .project-image img { height: 340px; }
  .image-story { min-height: 600px; }
  .project-tile img { height: 220px; }
  .quote-grid { grid-template-columns: 1fr; gap: 20px; }
  .quote-grid img { width: 60px; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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