@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/sora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f2f5f9;
  --surface: #ffffff;
  --surface-soft: #e9eff7;
  --text: #122139;
  --muted: #4a607a;
  --brand: #0f3f66;
  --brand-strong: #0a2d4a;
  --accent: #f6840d;
  --accent-strong: #cf6800;
  --border: #d5e0ed;
  --radius: 1rem;
  --radius-sm: 0.7rem;
  --shadow: 0 16px 40px rgba(16, 44, 70, 0.12);
  --container: min(1120px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: #eef2f7;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--brand-strong);
}

p {
  margin: 0;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 5vw, 5rem) 0;
}

.hero.section {
  padding: clamp(4rem, 8vw, 6.4rem) 0;
}

.stack {
  display: grid;
  gap: 1.1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  z-index: 1001;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(242, 245, 249, 0.9);
  border-bottom: 1px solid rgba(15, 63, 102, 0.12);
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled {
  background: rgba(242, 245, 249, 0.97);
  border-bottom-color: rgba(15, 63, 102, 0.2);
  box-shadow: 0 8px 24px rgba(10, 33, 57, 0.09);
}

.header-inner {
  min-height: 5.35rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 4.15rem;
  height: 4.15rem;
  object-fit: contain;
}

.brand-text-wrap {
  display: grid;
  gap: 0.1rem;
}

.brand-text {
  font-size: 1rem;
  color: var(--brand-strong);
}

.brand-subtext {
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 700;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  align-self: center;
  line-height: 0;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-icon {
  display: block;
  position: relative;
  width: 1.22rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-strong);
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.22rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-strong);
  transition: transform 0.2s ease;
}

.menu-icon::before {
  transform: translateY(-0.38rem);
}

.menu-icon::after {
  transform: translateY(0.38rem);
}

.nav {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.4rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.site-header.is-open .nav {
  max-height: 18rem;
  padding-top: 0.3rem;
  padding-bottom: 1rem;
}

.site-header.is-open .menu-icon {
  background: transparent;
}

.site-header.is-open .menu-icon::before {
  transform: translateY(0) rotate(45deg);
}

.site-header.is-open .menu-icon::after {
  transform: translateY(0) rotate(-45deg);
}

.nav a {
  padding: 0.62rem 0.85rem;
  border-radius: 0.65rem;
  color: var(--muted);
  font-weight: 700;
}

.nav .nav-cta {
  color: #fff;
  background: var(--accent);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--accent-strong);
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--surface-soft);
  color: var(--brand-strong);
  outline: none;
}

.hero-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.hero .hero-container {
  width: min(1280px, 96vw);
}

.hero-copy {
  max-width: 60ch;
  animation: hero-slide-left 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.82rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 5.8vw, 4.1rem);
  letter-spacing: -0.01em;
}

h1 span {
  display: block;
  margin-top: 0.3rem;
  color: var(--accent-strong);
}

.lead {
  margin-top: 1rem;
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-copy .lead {
  max-width: 60ch;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-strong);
}

.btn-outline {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--accent-strong);
  background: #fff2e3;
}

.hero-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: hero-slide-right 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-media img {
  width: 100%;
  height: clamp(20rem, 36vw, 29rem);
  object-fit: cover;
  object-position: center 48%;
  display: block;
}

/* ── Hero entrance animations (on-load, pure CSS) ── */
@keyframes hero-slide-left {
  from { opacity: 0; transform: translate3d(-60px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-slide-right {
  from { opacity: 0; transform: translate3d(60px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ── Scroll reveal system ── */
@keyframes reveal-up {
  from { opacity: 0; transform: translate3d(0, 56px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes reveal-scale {
  from { opacity: 0; transform: translate3d(0, 40px, 0) scale(0.93); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

[data-reveal] {
  animation-fill-mode: both;
  animation-play-state: paused;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="up"] {
  animation-name: reveal-up;
  animation-duration: 0.85s;
}

[data-reveal="scale"] {
  animation-name: reveal-scale;
  animation-duration: 0.7s;
}

[data-reveal].is-revealed {
  animation-play-state: running;
}

.about-grid {
  display: grid;
  gap: clamp(1.3rem, 2.6vw, 2.2rem);
  align-items: center;
}

.about-copy {
  max-width: 58ch;
  gap: 1rem;
}

.about-copy::before {
  content: "";
  width: 3.1rem;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.75;
}

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

.about-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 46%;
  display: block;
}

.cards {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
}

.brand-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.brand-tabs {
  gap: 0.7rem;
}

.brand-tabs li {
  list-style: none;
}

.brand-tab {
  font: inherit;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  background: var(--surface);
  color: var(--brand-strong);
  font-weight: 800;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.brand-tab:hover,
.brand-tab:focus-visible {
  border-color: #f2bf86;
  outline: none;
}

.brand-tab.is-active {
  background: #fff7ee;
  border-color: #f2bf86;
  color: #ac5200;
  box-shadow: 0 0 0 3px rgba(246, 132, 13, 0.16), 0 8px 18px rgba(16, 44, 70, 0.14);
}

.brand-slider-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 1.2rem;
}

.brand-slider-wrap {
  width: min(1400px, 98vw);
  margin-inline: auto;
}

.brand-slider {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid #c7d4e3;
  box-shadow: 0 22px 42px rgba(16, 44, 70, 0.2);
}

.brand-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.brand-slide {
  min-width: 100%;
  margin: 0;
  position: relative;
  background: #001522;
}

.brand-slide img {
  width: 100%;
  height: clamp(15rem, 49vw, 34rem);
  object-fit: cover;
  display: block;
}

.brand-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 24, 0.28);
  pointer-events: none;
}

.brand-slide figcaption {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 2.1vw, 1.5rem);
  letter-spacing: 0.02em;
}

.slider-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(6, 21, 33, 0.48);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.slider-prev {
  left: 0.8rem;
}

.slider-next {
  right: 0.8rem;
}

.slider-nav:hover,
.slider-nav:focus-visible {
  background: rgba(6, 21, 33, 0.72);
  border-color: rgba(255, 255, 255, 0.58);
  outline: none;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.05rem;
}

.card p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.82rem;
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.7rem;
  color: var(--accent-strong);
  background: #fff3e6;
  border: 1px solid #ffd6ae;
  flex-shrink: 0;
}

.service-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.service-copy h3 {
  margin-top: 0.05rem;
}

.service-copy p {
  margin-top: 0.42rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.7rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.service-link:hover,
.service-link:focus-visible {
  text-decoration: underline;
}

.services-more {
  margin-top: 1.2rem;
}

.section-soft {
  background: #f1f5fb;
  border-block: 1px solid var(--border);
}

.cta-panel {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.contact-page .contact-hero {
  padding-top: clamp(3.2rem, 7vw, 5.2rem);
  padding-bottom: clamp(1.3rem, 2.6vw, 2rem);
}

.contact-hero-grid {
  display: grid;
  gap: clamp(1.2rem, 2.7vw, 2.4rem);
  align-items: start;
}

.contact-hero-copy {
  max-width: 74ch;
}

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.2vw, 1.4rem);
  display: grid;
  gap: 0.7rem;
}

.contact-method-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #fff3e6;
  border: 1px solid #ffd6ae;
  color: var(--accent-strong);
  display: grid;
  place-items: center;
}

.contact-method-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-method-card p {
  color: var(--muted);
}

.location-grid {
  display: grid;
  gap: 1rem;
}

.location-map-card,
.location-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.1vw, 1.4rem);
}

.location-map-card {
  display: grid;
  gap: 0.9rem;
}

.location-map-wrap {
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  overflow: hidden;
  width: 100%;
}

.location-map {
  display: block;
  width: 100%;
  height: clamp(15rem, 28vw, 21rem);
  object-fit: cover;
  object-position: center;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-external {
  gap: 0.45rem;
}

.external-link-icon {
  width: 0.98rem;
  height: 0.98rem;
  flex-shrink: 0;
}

.location-info-card {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.location-note {
  color: var(--muted);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hours-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  padding: 0.58rem 0;
  font-weight: 700;
}

.hours-list li + li {
  border-top: 1px solid var(--border);
}

.service-page .contact-hero,
.service-detail-page .contact-hero {
  padding-top: clamp(3.2rem, 7vw, 5.2rem);
  padding-bottom: clamp(1.3rem, 2.6vw, 2rem);
}

.contact-page main > .contact-hero + .section,
.service-page main > .contact-hero + .section,
.service-detail-page main > .contact-hero + .section {
  padding-top: clamp(1.3rem, 2.6vw, 2rem);
}

.page-intro {
  max-width: 75ch;
}

.services-overview-grid {
  display: grid;
  gap: 1rem;
}

.service-overview-card {
  display: grid;
  gap: 0.8rem;
}

.service-overview-card h2 {
  font-size: 1.15rem;
}

.service-overview-card p {
  color: var(--muted);
}

.service-detail-layout {
  display: grid;
  gap: 1rem;
}

.service-detail-main,
.service-detail-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.1vw, 1.4rem);
}

.service-detail-main {
  display: grid;
  gap: 1.1rem;
}

.service-detail-main h2 {
  font-size: 1.25rem;
}

.service-detail-main p,
.service-detail-aside p {
  color: var(--muted);
}

.service-detail-aside {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.service-detail-aside h2 {
  font-size: 1.1rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.2rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

.service-breadcrumbs {
  margin-bottom: 0.8rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.service-breadcrumbs a {
  color: var(--brand);
  font-weight: 700;
}

.service-breadcrumbs a:hover,
.service-breadcrumbs a:focus-visible {
  text-decoration: underline;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer {
  background: #f8fbff;
  color: #22344a;
  border-top: 4px solid var(--accent);
  padding-top: 2.1rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #121212;
}

.footer-logo {
  width: 7rem;
  height: 7rem;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.footer-title {
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: #121212;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 1.6rem;
  padding: 0.95rem 0 1.3rem;
  font-size: 0.94rem;
}

@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(2.2rem, 3.4vw, 3.4rem);
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .location-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: start;
  }

  .service-detail-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
  }

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

@media (max-width: 899px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "nav nav";
    column-gap: 0.75rem;
    row-gap: 0.25rem;
    min-height: auto;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .brand {
    grid-area: brand;
    min-height: 0;
    align-items: center;
    gap: 0.6rem;
  }

  .brand-logo {
    width: auto;
    height: 4.35rem;
    display: block;
    object-fit: contain;
    object-position: center;
  }

  .brand-text-wrap {
    line-height: 1.15;
  }

  .brand-subtext {
    line-height: 1.2;
    margin-top: 0.12rem;
  }

  .menu-toggle {
    grid-area: toggle;
    justify-self: end;
    width: 2.8rem;
    height: 2.8rem;
    transform: none;
    align-self: center;
    margin: 0;
  }

  .nav {
    grid-area: nav;
  }
}

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    min-height: 5.7rem;
    gap: 1.4rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand-logo {
    width: 4.75rem;
    height: 4.75rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2rem, 3.5vw, 3.25rem);
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    grid-column: auto;
    justify-self: end;
    display: flex;
    align-items: center;
    max-height: none;
    overflow: visible;
    gap: 0.4rem;
  }

  .nav .nav-cta {
    padding-inline: 1rem;
  }

  .brand-slide img {
    height: clamp(19rem, 43vw, 34rem);
  }

  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 1200px) {
  .hero .hero-container {
    width: min(1380px, 97vw);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

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

  .brand-track {
    transition: none;
  }

  [data-reveal],
  .hero-copy,
  .hero-media {
    animation: none;
  }
}
