:root {
  --navy-950: #06152b;
  --navy-900: #071a35;
  --navy-800: #0d294f;
  --navy-700: #163a69;
  --blue-100: #dbe8f3;
  --ivory: #f5f2ea;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #111a25;
  --muted: #5d6671;
  --line: #d8d6cf;
  --gold: #b89455;
  --green: #67c39a;
  --max-width: 1280px;
  --side: clamp(1.25rem, 5vw, 5rem);
  --shadow: 0 30px 70px rgba(6, 21, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(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;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 82px;
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    min-height 240ms ease;
}

.site-header.scrolled {
  min-height: 68px;
  background: rgba(6, 21, 43, 0.96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 0.75rem;
  letter-spacing: -0.05em;
}

.brand-name {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav > a:not(.nav-resume) {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.site-nav > a:not(.nav-resume)::after {
  content: "";
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-resume {
  min-height: 42px;
  padding: 0.65rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.nav-resume:hover {
  color: var(--navy-950);
  background: var(--white);
}

.nav-resume svg,
.text-link svg,
.button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 880px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 42%, rgba(32, 75, 123, 0.5), transparent 38%),
    var(--navy-950);
  overflow: hidden;
}

.hero-copy {
  z-index: 2;
  padding: clamp(9rem, 15vh, 12rem) clamp(2rem, 5vw, 6.5rem) 4rem var(--side);
  align-self: center;
}

.eyebrow {
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #d2b77f;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.5rem, 6.8vw, 7.2rem);
}

h1 em,
h2 em {
  color: #b8cce0;
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.button {
  min-height: 54px;
  padding: 0.9rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: var(--white);
}

.button-primary:hover {
  background: var(--blue-100);
}

.text-link {
  padding: 0.75rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-proof {
  max-width: 730px;
  margin-top: clamp(3rem, 7vh, 5.75rem);
  padding-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 100%;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-950) 0%, transparent 18%),
    linear-gradient(0deg, rgba(6, 21, 43, 0.35), transparent 45%);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 3.5rem;
  width: min(330px, 78%);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.hero-note p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.35rem;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(103, 195, 154, 0.2);
}

.hero-monogram {
  position: absolute;
  right: -0.04em;
  bottom: -0.36em;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
  font-size: 24rem;
  line-height: 1;
}

.trust-bar {
  min-height: 100px;
  padding: 1.5rem var(--side);
  display: flex;
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: var(--ivory);
}

.trust-bar > p {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-bar div {
  width: min(100%, 900px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trust-bar span {
  color: #767871;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.8rem, 1.35vw, 1rem);
  font-weight: 700;
}

.trust-bar i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) var(--side);
}

.about {
  max-width: calc(var(--max-width) + 2 * var(--side));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 3rem;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--gold);
}

.section-label p {
  margin: 0;
}

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

.about-content h2 {
  max-width: 1000px;
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
}

.about-content h2 em {
  color: var(--navy-700);
}

.about-grid {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.about-grid p {
  margin-top: 0;
}

.about-grid .lead {
  color: var(--navy-900);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.55;
}

.about-detail {
  color: var(--muted);
}

.principles {
  max-width: calc(var(--max-width) + 2 * var(--side));
  margin: 0 auto;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principle-card {
  min-height: 340px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--white);
}

.principle-card + .principle-card {
  border-left: 0;
}

.principle-card > span {
  color: #999b97;
  font-size: 0.68rem;
}

.principle-card svg {
  width: 3rem;
  margin: 3.5rem 0 2rem;
  fill: none;
  stroke: var(--navy-700);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
}

.principle-card p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.experience {
  color: var(--white);
  background: var(--navy-950);
}

.section-heading,
.timeline {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 190px 1fr 0.55fr;
  gap: 3rem;
  align-items: end;
}

.section-heading h2 {
  max-width: 700px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.section-heading > p {
  margin: 0 0 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.timeline {
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.role {
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 190px 1fr 160px;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.role-date,
.role-company,
.role-index {
  color: #c4a76f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.role-company {
  margin: 0 0 0.5rem;
}

.role h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.role h3 span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75em;
}

.role-body > p:not(.role-company) {
  max-width: 740px;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.role-tags {
  padding: 0;
  margin: 1.3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
}

.role-tags li {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}

.role-result {
  align-self: center;
  text-align: right;
}

.role-result strong {
  display: block;
  color: #d8bd86;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
}

.role-result span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.role-index {
  align-self: center;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
}

.strengths {
  max-width: calc(var(--max-width) + 2 * var(--side));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.strengths-intro h2 {
  margin-top: 2.5rem;
  font-size: clamp(2.6rem, 4.7vw, 4.6rem);
}

.strengths-intro > p {
  max-width: 480px;
  margin-top: 1.75rem;
  color: var(--muted);
}

.skills-list {
  border-top: 1px solid var(--line);
}

.skills-list > div {
  padding: 1.7rem 0;
  display: grid;
  grid-template-columns: 45px 1fr 1fr;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.skills-list span {
  color: var(--gold);
  font-size: 0.68rem;
}

.skills-list h3,
.skills-list p {
  margin: 0;
}

.skills-list h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.skills-list p {
  color: var(--muted);
  font-size: 0.8rem;
}

.profile-band {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
}

.profile-image {
  min-height: 650px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.profile-copy {
  padding: clamp(3rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--navy-800);
}

.quote-mark {
  height: 4rem;
  margin: 0 0 1rem;
  color: #c4a76f;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

blockquote {
  max-width: 760px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.education {
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 0.65fr 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.education p {
  margin: 0;
  color: #c4a76f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.education strong,
.education span {
  display: block;
}

.education strong {
  font-size: 0.82rem;
}

.education span {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.contact {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 76, 125, 0.7), transparent 45%),
    var(--navy-950);
  overflow: hidden;
}

.contact > *:not(.contact-orbit) {
  position: relative;
  z-index: 2;
}

.contact-orbit {
  position: absolute;
  width: min(78vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: inherit;
  border-radius: inherit;
}

.contact-orbit::after {
  inset: 31%;
}

.contact h2 {
  max-width: 1040px;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
}

.contact-intro {
  max-width: 600px;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.6);
}

.contact-actions {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
}

.contact-email {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}

footer {
  padding: 2.5rem var(--side);
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr auto;
  gap: 2rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  background: #030d1c;
  font-size: 0.75rem;
}

.footer-brand {
  color: var(--white);
}

footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.82fr;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.5vw, 5.5rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-proof span br {
    display: none;
  }

  .section-heading,
  .role {
    grid-template-columns: 140px 1fr;
  }

  .section-heading > p {
    display: none;
  }

  .role-result,
  .role-index {
    display: none;
  }

  .strengths {
    gap: 4rem;
  }

  .profile-band {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .education {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    text-align: right;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    color: var(--white);
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 7rem var(--side) 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    background: var(--navy-950);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a:not(.nav-resume) {
    font-family: "Manrope", sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
  }

  .nav-resume {
    margin-top: 1rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 8.5rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-image-wrap::after {
    background: linear-gradient(0deg, var(--navy-950) 0%, transparent 22%);
  }

  .hero-image-wrap img {
    object-position: center top;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof div {
    display: block;
  }

  .hero-proof strong,
  .hero-proof span {
    display: block;
  }

  .hero-proof span {
    margin-top: 0.4rem;
  }

  .hero-note {
    bottom: 1.25rem;
  }

  .trust-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .trust-bar div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .about,
  .section-heading,
  .role,
  .strengths {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 2rem;
  }

  .about-grid {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: auto;
  }

  .principle-card + .principle-card {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .principle-card svg {
    margin: 2rem 0 1.5rem;
  }

  .section-heading {
    gap: 2rem;
  }

  .role {
    gap: 0.8rem;
  }

  .strengths {
    gap: 3rem;
  }

  .profile-band {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
  }

  .profile-image {
    min-height: 500px;
  }

  .contact {
    min-height: 620px;
  }

  .contact-actions {
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    gap: 0.75rem;
  }

  .hero-proof strong {
    font-size: 1.05rem;
  }

  .hero-proof span {
    font-size: 0.62rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-note {
    width: calc(100% - 1.25rem);
  }

  .skills-list > div {
    grid-template-columns: 35px 1fr;
  }

  .skills-list p {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
