:root {
  --bg: #f8f8f8;
  --bg-alt: #ffffff;
  --ink: #0b0f14;
  --muted: #6b7079;
  --accent: #d2232a;
  --accent-2: #3276cf;
  --line: #e6e8ec;
  --dark: #070a1d;
  --shadow: 0 20px 40px rgba(7, 10, 29, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 600;
}

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

a:hover {
  color: var(--accent);
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 10, 29, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 10, 29, 0.98);
  box-shadow: 0 18px 40px rgba(7, 10, 29, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
  transition: padding 0.3s ease;
}

.site-header.scrolled .nav {
  padding: 10px 0;
}

.logo {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 28px;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
}

.logo span {
  color: var(--accent);
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e6e9ef;
}

.nav-links a {
  color: inherit;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.small {
  padding: 10px 16px;
  font-size: 13px;
  background: linear-gradient(120deg, #d2232a, #e33b40);
  border: 1px solid rgba(210, 35, 42, 0.6);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(210, 35, 42, 0.3);
}

.btn.primary {
  background: linear-gradient(120deg, #d2232a, #e33b40);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(210, 35, 42, 0.3);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: transparent;
}

.btn.dark {
  background: var(--dark);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero {
  position: relative;
  padding: 110px 0 90px;
  color: #f7f9fc;
  background: linear-gradient(145deg, #060a1a 0%, #0d142a 60%, #0a0f1d 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 420px;
  background: radial-gradient(circle at 20% 20%, rgba(210, 35, 42, 0.28), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(50, 118, 207, 0.28), transparent 60%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0px, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 18px);
  opacity: 0.95;
  pointer-events: none;
  background-position: 0 0, 0 0, 0 0;
  animation: heroGlow 18s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(210, 35, 42, 0.25);
  pointer-events: none;
  animation: orbDrift 14s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 12px;
  margin-bottom: 16px;
  color: var(--accent);
}

.eyebrow.dark {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  max-width: 540px;
  color: #cfd6e2;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

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

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(7, 10, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card {
  background: #ffffff;
  color: var(--ink);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  align-self: start;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(210, 35, 42, 0.08), transparent 40%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-card > * {
  position: relative;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.label {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.value {
  font-size: 22px;
  font-weight: 600;
}

.status {
  background: rgba(210, 35, 42, 0.15);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  color: var(--muted);
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.hero-card-body {
  display: grid;
  gap: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.metric {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.metric-number {
  font-size: 28px;
  font-weight: 600;
}

.metric-label {
  font-size: 14px;
  opacity: 0.75;
}

.cta-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: center;
  background: #ffffff;
  color: var(--ink);
  border-radius: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(7, 10, 29, 0.12);
  position: relative;
  overflow: hidden;
}

.cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(210, 35, 42, 0.18) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: sweep 7s ease-in-out infinite;
}

.cta-item {
  display: grid;
  gap: 4px;
  font-size: 14px;
}

.cta-label {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 11px;
  color: var(--muted);
}

.cta-item a {
  color: var(--ink);
  font-weight: 600;
}

.cta-button {
  justify-self: end;
  white-space: nowrap;
  position: relative;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(210, 35, 42, 0.35);
  opacity: 0;
  animation: pulse 2.8s ease-out infinite;
}

.section {
  padding: 90px 0;
  background: var(--bg-alt);
}

.section.alt {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 48px;
  max-width: 640px;
  position: relative;
}

.section-head::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent);
  margin-top: 18px;
  border-radius: 999px;
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 12px;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(7, 10, 29, 0.06);
  display: grid;
  gap: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(210, 35, 42, 0.16);
  display: grid;
  place-items: center;
}

.icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-2);
  border-radius: 20px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(7, 10, 29, 0.06);
  display: grid;
  gap: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(210, 35, 42, 0.12);
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.is-loaded .hero-content {
  animation: heroIn 0.9s ease-out both;
}

body.is-loaded .hero-card {
  animation: heroIn 1.05s ease-out both;
}

body.is-loaded .hero-metrics {
  animation: heroIn 1.15s ease-out both;
}

body.is-loaded .cta-strip {
  animation: heroIn 1.25s ease-out both;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.process-step {
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(7, 10, 29, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(210, 35, 42, 0.15);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(210, 35, 42, 0.35);
}

.gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  grid-auto-rows: 180px;
}

.gallery-item {
  position: relative;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  background-color: #0a0f1d;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 35px rgba(7, 10, 29, 0.25);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(210, 35, 42, 0.22), transparent 60%);
  opacity: 0.8;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 29, 0) 40%, rgba(7, 10, 29, 0.75) 100%);
  opacity: 0.9;
}

.gallery-item span {
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.gallery-item.service-zone {
  background-image: url("assets/gallery-service-zone.svg");
}

.gallery-item.diagnostics {
  background-image: url("assets/gallery-diagnostics.svg");
}

.gallery-item.tire-service {
  background-image: url("assets/gallery-tire.svg");
}

.gallery-item.detailing {
  background-image: url("assets/gallery-detailing.svg");
}

.gallery-item.reception {
  background-image: url("assets/gallery-reception.svg");
}

.gallery-item.inspection {
  background-image: url("assets/gallery-inspection.svg");
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.photos {
  background: var(--bg-alt);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.photo-tile {
  position: relative;
  border-radius: 24px;
  padding: 18px;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  background-color: #0a0f1d;
  background-image: linear-gradient(180deg, rgba(7, 10, 29, 0.15) 0%, rgba(7, 10, 29, 0.8) 100%), var(--photo);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(7, 10, 29, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-tile span {
  position: relative;
  z-index: 1;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 10, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover,
.feature:hover,
.gallery-item:hover,
.photo-tile:hover,
.testimonial:hover,
.map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 45px rgba(7, 10, 29, 0.18);
}

.service-card:hover .icon,
.feature:hover .feature-icon {
  transform: translateY(-2px) scale(1.03);
}

.icon,
.feature-icon {
  transition: transform 0.4s ease;
}

.map {
  background: var(--bg);
}

.map-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(7, 10, 29, 0.12);
  background: #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-embed {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  box-shadow: 0 18px 35px rgba(7, 10, 29, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial span {
  display: block;
  margin-top: 16px;
  font-weight: 600;
}

.contact {
  background: linear-gradient(160deg, #060a1a 0%, #0b1226 60%, #0a0f1d 100%);
  color: #eef1f6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-panel {
  background: rgba(7, 10, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-cards {
  margin-top: 0;
  display: grid;
  gap: 16px;
}

.contact-cards div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-cards div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-cards a,
.contact-cards span {
  color: #ffffff;
}

.contact .muted {
  color: #cfd6e2;
}

.contact .label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form {
  background: #ffffff;
  color: var(--ink);
  padding: 28px;
  border-radius: 24px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-form label {
  font-size: 14px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(210, 35, 42, 0.35);
  border-color: rgba(210, 35, 42, 0.35);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.site-footer {
  padding: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #cfd6e2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 44px 0 32px;
}

.footer-brand .muted {
  max-width: 360px;
}

.site-footer .logo img {
  height: 53px;
}

.footer-col {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.footer-col a,
.footer-col span {
  color: #cfd6e2;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-links a {
  color: #cfd6e2;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 20px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes heroGlow {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  50% {
    background-position: 40px -30px, -60px 20px, 0 0;
  }
  100% {
    background-position: 0 0, 0 0, 0 0;
  }
}

@keyframes orbDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 10px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-120%);
  }
  45% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  70% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@media (min-width: 980px) {
  .hero-card {
    max-width: 460px;
    justify-self: end;
  }

  body.is-loaded .hero-card {
    animation: heroIn 1.05s ease-out both, float 6.5s ease-in-out infinite;
  }

  .info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .info-row a,
  .info-row span {
    justify-self: start;
  }
}

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

  .cta-strip {
    grid-template-columns: 1fr;
  }

  .cta-button {
    justify-self: start;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col,
  .footer-links {
    justify-items: center;
  }

  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 110%;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(7, 10, 29, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    gap: 12px;
    box-shadow: var(--shadow);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.3s ease;
  }

  .nav-links.is-open {
    max-height: 280px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .nav {
    padding: 10px 0;
  }

  .logo {
    font-size: 22px;
    letter-spacing: 0.6px;
  }

  .logo img {
    height: 38px;
  }

  .nav-controls {
    gap: 10px;
  }

  .nav-toggle {
    padding: 6px 10px;
    font-size: 12px;
  }

  .btn.small {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .map-embed {
    height: 260px;
  }
}

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

  .hero::before,
  .hero::after,
  .cta-strip::after,
  .cta-button::after,
  body.is-loaded .hero-content,
  body.is-loaded .hero-card,
  body.is-loaded .hero-metrics,
  body.is-loaded .cta-strip {
    animation: none;
  }

  .service-card,
  .feature,
  .gallery-item,
  .photo-tile,
  .testimonial,
  .map-card,
  .icon,
  .feature-icon {
    transition: none;
  }

  .reveal {
    transition: none;
  }

  .btn {
    transition: none;
  }
}
