:root {
  --navy-950: #04111d;
  --navy-900: #071a2b;
  --navy-800: #0d2940;
  --gold: #d1ad63;
  --gold-light: #ead39b;
  --gold-deep: #a47d35;
  --ice: #f3eee3;
  --paper: #f8f6f1;
  --white: #ffffff;
  --ink: #102131;
  --muted: #657586;
  --line: rgba(15, 41, 64, .12);
  --shadow: 0 30px 80px rgba(4, 17, 29, .12);
  --radius: 26px;
  --container: 1220px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--navy-950); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  background: var(--white); color: var(--navy-950); padding: 12px 18px; border-radius: 12px;
}
.skip-link:focus { top: 12px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  color: var(--white);
}
.site-header.is-scrolled {
  background: rgba(4, 17, 29, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(209,173,99,.13);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-logo { min-width: 150px; min-height: 48px; display: inline-flex; align-items: center; }
.brand-logo img { display: block; width: auto; height: 58px; max-width: 190px; max-height: 58px; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(0,0,0,.18)); }
.brand-footer.brand-logo img { max-width: 205px; max-height: 66px; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; height: 100%; }
.nav-link {
  position: relative; display: flex; align-items: center; height: 100%;
  font-size: 13px; font-weight: 650; color: rgba(255,255,255,.72); transition: color .25s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px; transform: translateX(-50%);
  background: var(--gold); transition: width .28s ease; box-shadow: 0 0 14px rgba(209,173,99,.78);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after { width: 100%; }
.header-cta {
  padding: 13px 18px; border: 1px solid rgba(209,173,99,.58); border-radius: 999px;
  color: var(--gold-light); font-size: 12px; font-weight: 750; transition: .25s ease;
  background: rgba(209,173,99,.06);
}
.header-cta:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-950); border-color: transparent; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.nav-toggle span { display: block; height: 2px; margin: 6px 0; background: white; transition: .25s ease; }

.hero { min-height: 100svh; background: var(--navy-950); color: var(--white); overflow: hidden; }
.hero-slider { min-height: calc(100svh - 92px); position: relative; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s ease; overflow: hidden; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-bg { position: absolute; inset: -4%; background-position: center; background-size: cover; transform: scale(1.06); transition: transform 8s cubic-bezier(.2,.6,.2,1); }
.hero-slide.is-active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(3,14,24,.94) 0%, rgba(3,14,24,.78) 38%, rgba(3,14,24,.22) 72%, rgba(3,14,24,.52) 100%),
    linear-gradient(0deg, rgba(4,17,29,.85) 0%, transparent 44%);
}
.hero-content {
  position: relative; z-index: 3; min-height: calc(100svh - 92px); display: flex; flex-direction: column; justify-content: center;
  padding-top: 105px; padding-bottom: 150px;
}
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: 1.7px; text-transform: uppercase; font-weight: 650; }
.hero-kicker span { width: 30px; height: 2px; background: var(--gold); }
.hero h1, .hero h2 { margin: 0; max-width: 960px; font-size: clamp(48px, 6vw, 92px); line-height: .97; letter-spacing: -4.8px; font-weight: 760; }
.hero h1 em, .hero h2 em { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.68); font-style: normal; font-weight: 520; }
.hero p { max-width: 680px; margin: 28px 0 0; font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.72); }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 54px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 750; font-size: 13px; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #1b160d; background: linear-gradient(135deg, #b98e40 0%, var(--gold) 44%, var(--gold-light) 100%); box-shadow: 0 15px 34px rgba(209,173,99,.22); }
.btn-primary span { font-size: 17px; }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.03); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: var(--white); color: var(--navy-950); }
.hero-index { position: absolute; right: 5vw; bottom: 115px; font-size: clamp(100px, 16vw, 260px); line-height: .75; font-weight: 900; letter-spacing: -14px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.10); }
.hero-controls { position: absolute; z-index: 6; left: 50%; bottom: 38px; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.slider-dots, .slider-arrows { display: flex; align-items: center; gap: 9px; pointer-events: auto; }
.slider-dot { width: 36px; height: 3px; border: 0; padding: 0; background: rgba(255,255,255,.22); transition: width .25s ease, background .25s ease; }
.slider-dot.is-active { width: 70px; background: var(--gold); }
.slider-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); color: white; background: rgba(255,255,255,.03); backdrop-filter: blur(8px); transition: .25s ease; }
.slider-arrow:hover { background: white; color: var(--navy-950); }
.hero-bottom { position: absolute; z-index: 8; left: 0; right: 0; bottom: 0; height: 92px; background: rgba(4,17,29,.92); border-top: 1px solid rgba(255,255,255,.07); }
.hero-bottom-grid { height: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-bottom-grid > div { display: flex; flex-direction: column; justify-content: center; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.07); }
.hero-bottom-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.07); }
.hero-bottom-grid small { color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: 1.5px; font-size: 9px; }
.hero-bottom-grid strong { margin-top: 6px; font-size: 12px; font-weight: 650; color: rgba(255,255,255,.9); }

.about { padding: 120px 0 110px; background: var(--white); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.section-heading .eyebrow, .eyebrow { display: block; margin-bottom: 18px; color: var(--gold-deep); text-transform: uppercase; letter-spacing: 1.8px; font-size: 11px; font-weight: 800; }
.eyebrow.light { color: var(--gold-light); }
.section-heading h2 { margin: 0; font-size: clamp(36px, 4vw, 60px); line-height: 1.04; letter-spacing: -2.5px; color: var(--navy-950); }
.about-copy .lead { margin: 0; font-size: 24px; line-height: 1.45; letter-spacing: -.7px; color: var(--navy-800); }
.about-copy p:not(.lead) { margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.text-link { display: inline-flex; gap: 12px; margin-top: 27px; color: var(--navy-900); font-weight: 800; font-size: 13px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.capability-strip { margin-top: 86px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-strip div { min-height: 104px; padding: 22px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.capability-strip div:first-child { border-left: 1px solid var(--line); }
.capability-strip span { color: #9d8b67; font-size: 10px; font-weight: 750; }
.capability-strip strong { font-size: 13px; color: var(--navy-900); }

.services { padding: 115px 0; background: var(--paper); }
.split-heading { display: grid; grid-template-columns: 1.2fr .7fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0; max-width: 420px; justify-self: end; color: var(--muted); line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 60px; }
.service-card { position: relative; min-height: 350px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.service-card::before { content: ""; position: absolute; right: -90px; top: -90px; width: 210px; height: 210px; border-radius: 50%; background: radial-gradient(circle, rgba(209,173,99,.15), transparent 68%); opacity: 0; transition: opacity .35s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(209,173,99,.34); }
.service-card:hover::before { opacity: 1; }
.service-no { position: absolute; top: 30px; right: 32px; color: #ad9f82; font-size: 11px; font-weight: 800; }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; background: var(--ice); color: var(--gold-deep); font-size: 22px; font-weight: 900; }
.service-card h3 { margin: 58px 0 12px; font-size: 25px; letter-spacing: -.8px; color: var(--navy-950); }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 8px 11px; border-radius: 999px; background: #f5f1e8; color: #746750; font-size: 10px; font-weight: 700; }
.service-card-wide { grid-column: 1 / -1; min-height: 190px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; background: linear-gradient(135deg, var(--navy-900), #11283a 62%, #182a38); color: white; border-color: transparent; }
.service-card-wide .service-no { color: rgba(255,255,255,.35); }
.service-card-wide .service-icon { background: rgba(255,255,255,.08); color: var(--gold); }
.service-card-wide h3 { margin: 0 0 8px; color: white; }
.service-card-wide p { max-width: 760px; color: rgba(255,255,255,.62); }
.service-arrow { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); font-size: 20px; transition: .25s ease; }
.service-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-950); }

.why { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--navy-950); color: white; }
.why-media { overflow: hidden; min-height: 660px; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-content { padding: 100px max(34px, calc((100vw - var(--container)) / 2)); padding-left: 72px; display: flex; flex-direction: column; justify-content: center; }
.why .section-heading h2 { color: white; max-width: 620px; }
.why-points { margin-top: 54px; }
.why-point { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.10); }
.why-point:last-child { border-bottom: 1px solid rgba(255,255,255,.10); }
.why-point > span { color: var(--gold); font-size: 11px; font-weight: 800; }
.why-point h3 { margin: 0 0 8px; font-size: 18px; }
.why-point p { margin: 0; color: rgba(255,255,255,.54); line-height: 1.65; }

.process { padding: 110px 0; background: white; }
.centered { text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 60px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-item { min-height: 255px; padding: 30px 26px; border-right: 1px solid var(--line); }
.process-item:first-child { border-left: 1px solid var(--line); }
.process-item span { color: #9d8b67; font-size: 11px; font-weight: 800; }
.process-item h3 { margin: 75px 0 10px; font-size: 18px; letter-spacing: -.4px; }
.process-item p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.quote { padding: 110px 0; color: white; background:
  radial-gradient(circle at 12% 20%, rgba(209,173,99,.13), transparent 30%),
  linear-gradient(135deg, #071a2b, #04111d 65%); }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.quote-intro h2 { margin: 0; font-size: clamp(42px,5vw,68px); line-height: 1.02; letter-spacing: -3px; }
.quote-intro > p { margin: 24px 0 0; max-width: 500px; color: rgba(255,255,255,.58); line-height: 1.75; }
.quote-contact { margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.quote-contact span { display: block; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1.5px; font-size: 9px; }
.quote-contact a { display: inline-block; margin-top: 7px; font-size: 18px; font-weight: 650; }
.quote-form { padding: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.04); backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: block; margin-bottom: 15px; color: rgba(255,255,255,.58); font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 750; }
.quote-form input, .quote-form textarea, .quote-form select {
  width: 100%; margin-top: 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; outline: 0;
  padding: 14px 15px; background: rgba(255,255,255,.05); color: white; font-size: 14px; text-transform: none; letter-spacing: 0; transition: border-color .2s ease, background .2s ease;
}
.quote-form select option { color: #111; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,.26); }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: rgba(209,173,99,.68); background: rgba(255,255,255,.075); }
.quote-form textarea { resize: vertical; min-height: 128px; }
.form-submit { border: 0; margin-top: 3px; }
.form-note { margin: 14px 0 0; color: rgba(255,255,255,.38); font-size: 10px; line-height: 1.5; }

.contact { padding: 110px 0 120px; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.contact-card { min-height: 190px; padding: 28px; border-radius: 22px; border: 1px solid var(--line); background: white; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, box-shadow .25s ease; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(209,173,99,.34); }
.contact-card small { color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; font-size: 9px; }
.contact-card strong { font-size: 22px; letter-spacing: -.8px; }
.contact-card span { color: var(--gold-deep); font-size: 11px; font-weight: 750; }
.contact-email { grid-column: 1 / -1; min-height: 145px; background: linear-gradient(135deg, var(--navy-900), #10283b); color: white; border-color: rgba(209,173,99,.18); }
.contact-email small { color: rgba(255,255,255,.45); }
.contact-email span { color: var(--gold); }

.site-footer { background: #030e17; color: white; }
.footer-top { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 70px; padding: 78px 0 68px; }
.footer-brand p { max-width: 420px; margin: 25px 0 0; color: rgba(255,255,255,.43); line-height: 1.7; font-size: 13px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-col h3 { margin: 0 0 8px; color: rgba(255,255,255,.36); text-transform: uppercase; letter-spacing: 1.5px; font-size: 9px; }
.footer-col a { color: rgba(255,255,255,.70); font-size: 12px; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { min-height: 72px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.32); font-size: 10px; }
.footer-bottom a { color: rgba(255,255,255,.62); }

.whatsapp-fab-wrap { position: fixed; z-index: 990; right: 22px; bottom: 22px; }
.whatsapp-fab { width: 55px; height: 55px; border: 2px solid rgba(234,211,155,.72); border-radius: 50%; background: #25d366; color: #052716; font-weight: 900; font-size: 12px; box-shadow: 0 16px 35px rgba(0,0,0,.20); }
.whatsapp-menu { position: absolute; right: 0; bottom: 66px; min-width: 180px; padding: 8px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(4,17,29,.96); backdrop-filter: blur(16px); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s ease; }
.whatsapp-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.whatsapp-menu a { display: block; padding: 11px 12px; border-radius: 10px; color: white; font-size: 12px; }
.whatsapp-menu a:hover { background: rgba(255,255,255,.08); }

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

@media (max-width: 1040px) {
  :root { --header-h: 76px; }
  .site-nav { position: fixed; top: var(--header-h); left: 0; right: 0; height: calc(100svh - var(--header-h)); padding: 36px 24px; background: rgba(4,17,29,.97); backdrop-filter: blur(18px); flex-direction: column; align-items: flex-start; gap: 0; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .3s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-link { height: auto; width: 100%; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 20px; }
  .nav-link::after { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero h1, .hero h2 { letter-spacing: -3px; }
  .about-grid, .quote-grid { grid-template-columns: 1fr; gap: 45px; }
  .capability-strip { grid-template-columns: repeat(3,1fr); }
  .capability-strip div:nth-child(4), .capability-strip div:nth-child(5) { border-top: 1px solid var(--line); }
  .why { grid-template-columns: .85fr 1.15fr; }
  .why-content { padding-left: 44px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-item:nth-child(3), .process-item:nth-child(4) { border-top: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-email { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .hero-slider { min-height: 760px; }
  .hero-content { min-height: 668px; padding-top: 112px; padding-bottom: 120px; }
  .hero h1, .hero h2 { font-size: clamp(44px, 13vw, 64px); letter-spacing: -2.6px; }
  .hero p { font-size: 14px; line-height: 1.7; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-index { display: none; }
  .hero-controls { bottom: 110px; }
  .slider-arrows { display: none; }
  .hero-bottom { height: 92px; }
  .hero-bottom-grid { grid-template-columns: 1fr 1fr; }
  .hero-bottom-grid > div:nth-child(3) { display: none; }
  .about, .services, .process, .quote, .contact { padding-block: 82px; }
  .section-heading h2 { font-size: 40px; letter-spacing: -1.8px; }
  .about-copy .lead { font-size: 20px; }
  .capability-strip { grid-template-columns: 1fr 1fr; margin-top: 58px; }
  .capability-strip div { min-height: 95px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .split-heading > p { justify-self: start; }
  .services-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .service-card-wide { grid-column: auto; grid-template-columns: 1fr; min-height: 310px; }
  .service-card-wide .service-icon { margin-top: 5px; }
  .service-card-wide .service-arrow { position: absolute; right: 30px; bottom: 30px; }
  .why { grid-template-columns: 1fr; }
  .why-media { min-height: 430px; }
  .why-content { padding: 78px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-item { min-height: 210px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .process-item:first-child { border-top: 0; }
  .process-item h3 { margin-top: 50px; }
  .quote-grid { gap: 40px; }
  .quote-intro h2 { letter-spacing: -2px; }
  .quote-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-email { grid-column: auto; }
  .contact-card strong { font-size: 18px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 38px 28px; padding-top: 60px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { min-height: 90px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
}

@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; }
}
