:root {
  --ink: #111312;
  --ink-soft: #191b1a;
  --paper: #f5f2eb;
  --paper-bright: #fffdf8;
  --red: #ec392f;
  --red-dark: #c72821;
  --muted: #a8aaa6;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(17, 19, 18, 0.18);
  --content: 1280px;
  --gutter: clamp(22px, 5vw, 76px);
  --header-height: 84px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffb34d;
  outline-offset: 4px;
}

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.emergency-bar {
  position: relative;
  z-index: 80;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.emergency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.17);
  animation: emergency-pulse 2.2s ease-out infinite;
}

@keyframes emergency-pulse {
  0%, 38%, 100% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.17); }
  16% { box-shadow: 0 0 0 11px rgba(255, 255, 255, 0); }
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(17, 19, 18, 0.96);
  backdrop-filter: blur(14px);
  transition: height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--red);
}

.brand-mark text {
  fill: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.brand-copy strong {
  display: block;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
}

.primary-nav a {
  position: relative;
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  padding: 14px 18px;
  background: var(--paper);
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.primary-nav .nav-cta:hover {
  background: var(--red);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--paper);
}

.menu-toggle span[aria-hidden="true"] {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  grid-template-columns: 56% 44%;
  overflow: hidden;
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(68px, 7vw, 104px) var(--gutter) 62px;
}

.hero h1,
.mission-intro h2,
.services h2,
.readiness h2,
.support h2,
.contact h2 {
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(72px, 7.9vw, 126px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.066em;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 580px;
  margin: 34px 0 30px;
  color: #d4d5d1;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 21px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
}

.button-primary:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta {
  position: absolute;
  bottom: 24px;
  left: var(--gutter);
  margin: 0;
  color: #898c87;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-height: 670px;
  margin: 0;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(17, 19, 18, 0.36) 28%, transparent 58%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  filter: saturate(0.72) contrast(1.08);
  animation: hero-drift 16s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 22px;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.hero-slash {
  position: absolute;
  z-index: 4;
  top: 126px;
  right: 39%;
  width: 7px;
  height: 540px;
  background: var(--red);
  transform: rotate(11deg);
  transform-origin: top;
}

.section-label {
  margin: 0;
  color: #70736e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.64);
}

.mission-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8vw;
  padding: 78px var(--gutter) 110px;
  background: var(--paper);
  color: var(--ink);
}

.mission-copy {
  max-width: 850px;
}

.mission-intro h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.048em;
}

.mission-intro h2 span {
  color: var(--red);
}

.mission-intro .mission-copy > p {
  max-width: 640px;
  margin: 34px 0 0 auto;
  color: #484b47;
  font-size: 18px;
  line-height: 1.7;
}

.fact-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--gutter);
  background: var(--paper);
  color: var(--ink);
}

.fact {
  min-height: 130px;
  padding: 26px 28px;
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
}

.fact:last-child {
  border-right: 0;
}

.fact span {
  display: block;
  margin-bottom: 15px;
  color: #72756f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fact strong {
  font-family: "Arial Narrow", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.services {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  padding: 130px var(--gutter);
  background: var(--paper-bright);
  color: var(--ink);
}

.services-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.services h2 {
  margin: 24px 0;
  font-size: clamp(45px, 4.4vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.services-heading > p:last-child {
  max-width: 500px;
  color: #565954;
  font-size: 17px;
  line-height: 1.7;
}

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 32px;
  gap: 26px;
  align-items: start;
  padding: 34px 0 40px;
  border-top: 1px solid var(--line-light);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line-light);
}

.service-number {
  color: var(--red);
  font-family: "Arial Narrow", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.service-row h3 {
  margin: -6px 0 13px;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1;
  text-transform: uppercase;
}

.service-row p {
  max-width: 580px;
  margin: 0;
  color: #575a55;
  font-size: 16px;
  line-height: 1.65;
}

.service-row svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
  transition: color 180ms ease, transform 180ms ease;
}

.service-row:hover svg {
  color: var(--red);
  transform: translate(3px, -3px);
}

.readiness {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 10vw;
  padding: 110px var(--gutter);
  overflow: hidden;
  background: var(--red);
  color: #fff;
}

.contour-lines {
  position: absolute;
  inset: -20%;
  opacity: 0.17;
  background:
    repeating-radial-gradient(ellipse at 78% 42%, transparent 0 45px, rgba(255, 255, 255, 0.65) 46px 47px, transparent 48px 72px),
    linear-gradient(115deg, transparent 30%, rgba(17, 19, 18, 0.12) 30.2%, transparent 30.5%);
  transform: rotate(-8deg);
}

.readiness-content,
.readiness-stamp {
  position: relative;
  z-index: 1;
}

.readiness h2 {
  max-width: 850px;
  margin: 24px 0 28px;
  font-size: clamp(56px, 6.8vw, 104px);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.readiness h2 span {
  color: var(--ink);
}

.readiness-content > p:not(.section-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  padding-bottom: 7px;
  border-bottom: 2px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.readiness-stamp {
  width: min(27vw, 360px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  text-align: center;
  transform: rotate(7deg);
}

.readiness-stamp::before,
.readiness-stamp::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.44);
  border-radius: inherit;
}

.readiness-stamp::after {
  inset: 42%;
  border: 0;
  border-radius: 0;
  background: #fff;
  clip-path: polygon(25% 0, 75% 0, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0 75%, 0 25%, 25% 25%);
  opacity: 0.18;
}

.readiness-stamp span {
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.readiness-stamp small {
  margin-top: 22px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support {
  padding: 130px var(--gutter);
  background: var(--paper);
  color: var(--ink);
}

.support-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.05fr 0.7fr;
  gap: 6vw;
  align-items: start;
  margin-bottom: 78px;
}

.support h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.support-heading > p:last-child {
  margin: 0;
  color: #565954;
  font-size: 17px;
  line-height: 1.7;
}

.support-options {
  border-top: 1px solid var(--line-light);
}

.support-option {
  display: grid;
  grid-template-columns: 80px 1fr 48px;
  gap: 30px;
  align-items: center;
  min-height: 142px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line-light);
  color: var(--ink);
  text-decoration: none;
  transition: padding 220ms ease, background 220ms ease;
}

.support-option:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: var(--paper-bright);
}

.support-index {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.support-option strong,
.support-option small {
  display: block;
}

.support-option strong {
  font-family: "Arial Narrow", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.support-option small {
  margin-top: 8px;
  color: #6b6e68;
  font-size: 14px;
}

.option-arrow {
  font-size: 30px;
  transition: color 180ms ease, transform 180ms ease;
}

.support-option:hover .option-arrow {
  color: var(--red);
  transform: translate(3px, -3px);
}

.contact {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 10vw;
  padding: 130px var(--gutter);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}

.contact h2 {
  max-width: 900px;
  margin: 24px 0 45px;
  font-size: clamp(54px, 6.5vw, 98px);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  color: var(--paper);
  font-size: clamp(19px, 2.2vw, 32px);
  font-weight: 700;
  text-decoration: none;
}

.contact-details {
  align-self: end;
  margin: 0;
  font-style: normal;
}

.contact-details > div {
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
}

.contact-details span:first-child {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details p {
  margin: 0 0 13px;
  color: #e0e0dc;
  line-height: 1.65;
}

.contact-details a {
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 60px var(--gutter) 46px;
  background: var(--ink);
  color: #adafac;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--paper);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand span {
  margin-top: 12px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.footer-meta {
  max-width: 720px;
  justify-self: end;
  font-size: 12px;
  line-height: 1.7;
}

.footer-meta p {
  margin: 0 0 16px;
}

.footer-meta details {
  margin: 0 0 18px;
}

.footer-meta summary {
  width: fit-content;
  color: var(--paper);
  cursor: pointer;
  font-weight: 700;
  text-underline-offset: 5px;
}

.footer-meta details p {
  margin-top: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .brand-copy strong { font-size: 12px; }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: 10px; }
  .hero { grid-template-columns: 58% 42%; }
  .hero h1 { font-size: clamp(64px, 8.5vw, 96px); }
  .hero-slash { right: 37%; }
  .support-heading { grid-template-columns: 0.4fr 1.1fr; }
  .support-heading > p:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  html { scroll-padding-top: 92px; }
  .emergency-bar { height: 34px; font-size: 10px; letter-spacing: 0.11em; }
  .site-header { height: var(--header-height); backdrop-filter: none; }
  .site-header.is-scrolled { height: 64px; }
  .brand-mark { width: 39px; height: 39px; flex-basis: 39px; }
  .brand-copy strong { font-size: 11px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px var(--gutter) 48px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav a { padding: 20px 0; border-bottom: 1px solid var(--line-dark); font-size: 24px; }
  .primary-nav .nav-cta { margin-top: 28px; padding: 18px; border-bottom: 0; text-align: center; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { min-height: 610px; padding-top: 70px; padding-bottom: 72px; }
  .hero h1 { max-width: 690px; font-size: clamp(64px, 15vw, 106px); }
  .hero-lead { max-width: 620px; }
  .hero-meta { right: var(--gutter); bottom: 18px; }
  .hero-media { min-height: 470px; }
  .hero-media::before { background: linear-gradient(180deg, var(--ink) 0%, transparent 30%); }
  .hero-media figcaption { right: 20px; bottom: 16px; left: 20px; max-width: none; }
  .hero-slash { top: auto; right: auto; bottom: 458px; left: var(--gutter); width: 180px; height: 6px; transform: none; }
  .mission-intro,
  .services,
  .readiness,
  .contact { grid-template-columns: minmax(0, 1fr); }
  .readiness > *,
  .contact > * { min-width: 0; }
  .mission-intro { gap: 38px; padding-top: 82px; padding-bottom: 90px; }
  .mission-intro .mission-copy > p { margin-left: 0; }
  .fact-rail { grid-template-columns: 1fr; }
  .fact { min-height: 104px; border-right: 0; }
  .services { gap: 72px; padding-top: 100px; padding-bottom: 100px; }
  .services-heading { position: static; }
  .readiness { gap: 78px; padding-top: 90px; padding-bottom: 90px; }
  .readiness-stamp { width: min(72vw, 350px); justify-self: center; }
  .support { padding-top: 100px; padding-bottom: 100px; }
  .support-heading { grid-template-columns: 1fr; gap: 30px; }
  .support-heading > p:last-child { grid-column: auto; }
  .contact { gap: 80px; padding-top: 100px; padding-bottom: 100px; }
  .contact-details { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-meta { justify-self: start; }
}

@media (max-width: 560px) {
  .brand-copy strong { max-width: 210px; font-size: 10px; }
  .hero-copy { min-height: 550px; padding-top: 58px; }
  .hero h1 { font-size: clamp(55px, 18vw, 82px); }
  .hero-lead { margin-top: 28px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-meta { max-width: calc(100% - (var(--gutter) * 2)); line-height: 1.55; }
  .hero-media { min-height: 410px; }
  .hero-slash { bottom: 398px; width: 120px; }
  .mission-intro h2,
  .support h2 { font-size: clamp(42px, 14vw, 62px); }
  .services h2 { font-size: clamp(40px, 13vw, 58px); }
  .service-row { grid-template-columns: 42px 1fr; gap: 14px; }
  .service-row svg { display: none; }
  .service-row h3 { font-size: 30px; }
  .readiness h2 { font-size: clamp(50px, 16vw, 76px); }
  .readiness h2 span { display: block; font-size: 0.78em; }
  .support-option { grid-template-columns: 38px 1fr 30px; gap: 12px; min-height: 124px; }
  .support-option strong { font-size: 33px; }
  .support-option small { font-size: 12px; }
  .contact h2 { font-size: clamp(44px, 12.5vw, 64px); }
  .email-link { word-break: break-all; }
}

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