:root {
  --brand-red: #f83445;
  --brand-blue: #0f2748;
  --brand-white: #ffffff;
  --ink: #132033;
  --ink-soft: #3f4f66;
  --bg: #f4f7fb;
  --card: #ffffff;
  --border: #dce5ef;
  --shadow: 0 24px 60px rgba(13, 28, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}


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

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.hero {
  position: relative;
  color: var(--brand-white);
  background:
    linear-gradient(110deg, rgba(11, 25, 45, 0.72) 8%, rgba(15, 39, 72, 0.6) 45%, rgba(248, 52, 69, 0.5) 100%),
    url("../assets/images/reilly-hero-bg.webp") center 40% / cover no-repeat;
  background-attachment: fixed;
  min-height: min(880px, 96vh);
  overflow: hidden;
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding: 1.1rem 0 4.3rem;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.52rem;
  background: rgba(8, 20, 38, 0.38);
  color: var(--brand-white);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.nav-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__line {
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: transform 200ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

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

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(88px, 10vw, 126px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(11, 25, 45, 0.32));
}

.brand-logo-footer {
  filter: none;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--brand-white);
  text-decoration: none;
  border-radius: 499.5px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: border-color 180ms ease, transform 180ms ease;
}

.chip.is-active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.75);
}

.chip:hover,
.chip:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

.hero-body {
  max-width: 760px;
  padding: clamp(1.4rem, 9vw, 3.6rem) 0 8rem;
}

.subpage-header {
  position: relative;
  color: var(--brand-white);
  background:
    linear-gradient(110deg, rgba(11, 25, 45, 0.72) 8%, rgba(15, 39, 72, 0.6) 45%, rgba(248, 52, 69, 0.5) 100%),
    url("../assets/images/reilly-flag-bg.webp") center 32% / cover no-repeat;
  background-attachment: fixed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-header {
  background:
    linear-gradient(110deg, rgba(11, 25, 45, 0.72) 8%, rgba(15, 39, 72, 0.6) 45%, rgba(248, 52, 69, 0.5) 100%),
    url("../assets/images/reilly-hero-bg.webp") center 38% / cover no-repeat;
}

.subpage-shell {
  padding: 1.1rem 0 3rem;
}

.subpage-intro {
  max-width: 760px;
  padding: clamp(1.2rem, 5vw, 2.6rem) 0 0.5rem;
}

.subpage-intro h1 {
  font-size: clamp(1.8rem, 4.4vw, 3.1rem);
  max-width: 20ch;
}

.subpage-intro .lead {
  margin-top: 0.95rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

h1,
h2,
h3 {
  font-family: "Roboto Slab", Georgia, serif;
  margin: 0;
  line-height: 1.15;
}

h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  max-width: 18ch;
  text-wrap: balance;
}

.lead {
  margin: 1.05rem 0 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.94);
}

.license-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  padding: 0.38rem 0.65rem;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.28rem;
}

.hero-license {
  color: var(--brand-white);
  background: rgba(9, 24, 44, 0.34);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.3rem;
  padding: 0.72rem 1.08rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.btn-primary {
  background: var(--brand-red);
  color: var(--brand-white);
  box-shadow: 0 10px 24px rgba(248, 52, 69, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(248, 52, 69, 0.34);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.hero-stats {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-stats article {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.4rem;
  padding: 0.88rem 0.9rem;
  backdrop-filter: blur(4px);
}

.hero-stats h3 {
  font-size: 1.02rem;
}

.hero-stats p {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 3.8rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.section-head-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
}

.section-icon {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 25%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.18rem;
  box-shadow: 0 8px 22px rgba(12, 30, 54, 0.14);
}

.section-kicker {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-blue);
}

.section-tag {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  color: #445b7d;
  border: 1px solid var(--border);
  border-radius: 499.5px;
  padding: 0.38rem 0.74rem;
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  color: var(--brand-blue);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: start;
}

.about-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: clamp(1.05rem, 3vw, 1.65rem);
  box-shadow: var(--shadow);
}

.about-panel p {
  margin: 0.95rem 0 0;
  color: var(--ink-soft);
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.about-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.46rem 0.52rem;
  border: 1px solid var(--border);
  border-radius: 0.3rem;
  background: #f7fbff;
}

.feature-cards {
  display: grid;
  gap: 0.95rem;
}

.feature-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.425rem;
  padding: 1rem 1rem 1rem 1.2rem;
  box-shadow: 0 12px 32px rgba(25, 14, 38, 0.06);
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 0.425rem 0 0 0.425rem;
  background: var(--brand-red);
}

.feature-card:nth-child(2)::before {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 39, 72, 0.22);
}

.feature-card:nth-child(3)::before {
  background: var(--brand-blue);
}

.feature-card h3 {
  font-size: 1.14rem;
  color: var(--brand-blue);
}

.feature-card p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
}

.section-services {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.services-title {
  margin-top: 0.4rem;
}

.cards {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 0.45rem 0.45rem 0 0;
  background: var(--brand-red);
}

.card:nth-child(3n + 2)::before {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 39, 72, 0.22);
}

.card:nth-child(3n)::before {
  background: var(--brand-blue);
}

.card h3 {
  color: var(--brand-blue);
  font-size: 1.15rem;
  margin-top: 0.32rem;
}

.card p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.card .card-index {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #567199;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(13, 28, 48, 0.16);
}

.quote-band {
  background:
    linear-gradient(120deg, rgba(10, 28, 53, 0.66), rgba(15, 39, 72, 0.58), rgba(248, 52, 69, 0.3)),
    url("../assets/images/reilly-flag-bg.webp") center top / cover no-repeat;
  background-attachment: fixed;
  color: var(--brand-white);
  padding: 7rem 0;
}

.quote {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
}

.quote-sub {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.contact-shell {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1rem;
  align-items: center;
}

.contact-shell p {
  color: var(--ink-soft);
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
}

.mission-shell {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  box-shadow: var(--shadow);
}

.mission-shell h2 {
  margin-top: 0.45rem;
}

.mission-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.mission-item {
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  padding: 0.95rem;
  background: #f8fbff;
}

.mission-item h3 {
  font-size: 1.05rem;
  color: var(--brand-blue);
}

.mission-item p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

.services-grid-detailed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-page-section {
  padding-top: 3.2rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: start;
}

.contact-details,
.contact-form-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.contact-details {
  padding: clamp(1rem, 2.6vw, 1.4rem);
}

.contact-details h2 {
  margin-top: 0.6rem;
}

.contact-details p {
  color: var(--ink-soft);
}

.contact-facts {
  display: grid;
  gap: 0.32rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.contact-facts p {
  margin: 0;
}

.contact-facts strong {
  color: var(--brand-blue);
}

.contact-facts a {
  color: var(--brand-blue);
}

.contact-note {
  margin-top: 1rem;
  font-size: 0.88rem;
}

.contact-form-panel {
  padding: clamp(1rem, 2.6vw, 1.4rem);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.form-field {
  margin: 0;
  display: grid;
  gap: 0.35rem;
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #bfccdc;
  border-radius: 0.32rem;
  min-height: 44px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
  padding: 0.58rem 0.65rem;
}

.form-field textarea {
  min-height: 148px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(248, 52, 69, 0.36);
  outline-offset: 1px;
  border-color: #f1747f;
}

.field-help {
  font-size: 0.78rem;
  color: #61728c;
  line-height: 1.42;
  font-weight: 500;
}

.captcha-wrap {
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  background: #fbfdff;
  padding: 0.72rem;
}

.g-recaptcha {
  max-width: 100%;
}

.captcha-label {
  margin: 0 0 0.52rem;
  color: var(--brand-blue);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.84rem;
}

.form-status.is-error {
  color: #c62828;
}

.form-status.is-success {
  color: #1f7d33;
}

.form-status.is-info {
  color: #375879;
}

.modal-open {
  overflow: hidden;
}

.contact-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(14, 23, 39, 0.44);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.contact-success-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-success-card {
  width: min(460px, 92vw);
  background: #ffffff;
  border: 1px solid #d7e0ea;
  border-radius: 0.45rem;
  box-shadow: 0 20px 48px rgba(15, 28, 45, 0.2);
  padding: 1.3rem 1.2rem 1.1rem;
  text-align: center;
}

.contact-success-card h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 1.4rem;
}

.contact-success-card p {
  margin: 0.6rem 0 1rem;
  color: #304967;
}

.contact-success-card .btn {
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0 1.8rem;
  color: #4c5f79;
  background: #f9fbfd;
}

.footer-shell {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-copy p {
  margin: 0;
}

.footer-license {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-blue);
}

.hero-body > * {
  animation: rise-in 650ms ease both;
}

.hero-body > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-body > *:nth-child(3) {
  animation-delay: 140ms;
}

.hero-body > *:nth-child(4) {
  animation-delay: 220ms;
}

.hero-body > *:nth-child(5) {
  animation-delay: 290ms;
}

@keyframes rise-in {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

html.js .reveal {
  --reveal-from: translate3d(0, 24px, 0);
  opacity: 0;
  transform: var(--reveal-from);
  filter: blur(2px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

html.js .reveal.reveal-left {
  --reveal-from: translate3d(-28px, 0, 0);
}

html.js .reveal.reveal-right {
  --reveal-from: translate3d(28px, 0, 0);
}

html.js .reveal.reveal-scale {
  --reveal-from: scale(0.94);
}

html.js .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  --reveal-from: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
  .hero,
  .quote-band,
  .subpage-header {
    background-attachment: scroll;
  }

  .hero {
    min-height: auto;
    background-position: center 32%;
  }

  .hero-shell {
    padding-bottom: 2.5rem;
  }

  .hero-body {
    max-width: 100%;
    padding: 2.2rem 0 4.4rem;
  }

  .subpage-shell {
    padding-bottom: 2rem;
  }

  .subpage-intro {
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
  }

  .lead {
    max-width: 100%;
  }

  .hero-stats,
  .cards,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .section {
    padding: 2.8rem 0;
  }

  .hero-shell {
    padding-top: 0.95rem;
  }

  .subpage-shell {
    padding-top: 0.95rem;
  }

  .topline {
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.6rem;
  }

  .brand-logo {
    width: 92px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .chip {
    padding: 0.38rem 0.72rem;
  }

  .hero-body {
    padding: 1.6rem 0 3.4rem;
  }

  .subpage-intro {
    padding-top: 1.2rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav .chip {
    flex: 1 1 calc(50% - 0.25rem);
    text-align: center;
  }

  .nav-is-ready .site-nav {
    order: 3;
    margin-top: 0.1rem;
    padding: 0.55rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 0.55rem;
    background: rgba(8, 20, 38, 0.66);
    backdrop-filter: blur(4px);
  }

  .nav-is-ready .site-nav .chip {
    flex: 0 0 auto;
    width: 100%;
    text-align: left;
    border-radius: 0.45rem;
    padding: 0.55rem 0.72rem;
  }

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

  .form-field-full {
    grid-column: 1;
  }

  .about-meta {
    grid-template-columns: 1fr;
  }

  .section-tag {
    white-space: normal;
    line-height: 1.35;
  }

  .quote-band {
    padding: 5.4rem 0;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    display: grid;
    gap: 0.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1rem, 1120px);
  }

  .chip {
    padding: 0.34rem 0.62rem;
    font-size: 0.78rem;
  }

  .site-nav .chip {
    flex-basis: 100%;
  }

  .hero-stats article {
    padding: 0.78rem 0.8rem;
  }

  .section-head {
    margin-bottom: 0.9rem;
  }

  .section-kicker {
    font-size: 0.72rem;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.56rem;
  }

  .card,
  .feature-card,
  .about-panel,
  .contact-shell,
  .mission-shell,
  .contact-details,
  .contact-form-panel {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .quote-band {
    background-attachment: scroll;
  }
}

@media (max-width: 380px) {
  .g-recaptcha {
    transform: scale(0.86);
    transform-origin: left top;
  }

  .captcha-wrap {
    min-height: 98px;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-body > * {
    animation: none !important;
  }

  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
