/* ============================================
   CAL STATE TOWING — Premium Design System
   ============================================ */

:root {
  --red: #C8102E;
  --navy: #0E1833;
  --black: #111111;
  --white: #FFFFFF;
  --gray-light: #F7F9FC;
  --border: #E8EEF5;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(14, 24, 51, 0.04);
  --shadow-md: 0 8px 32px rgba(14, 24, 51, 0.08);
  --shadow-lg: 0 24px 64px rgba(14, 24, 51, 0.12);
  --shadow-glow: 0 0 40px rgba(200, 16, 46, 0.3);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
  --nav-h-hero: 100px;
  --nav-h-sticky: 94px;
  --logo-hero-h: 172px;
  --logo-sticky-h: 88px;
  --logo-rise: 42px;
  --logo-x-hero: 32px;
  --header-ease: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --hero-top-pad: 80px;
  --hero-offset-y: 28px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  overflow-y: visible;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow: visible;
}

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

.nav__logo-img {
  max-width: none;
  height: var(--logo-hero-h);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  overflow: visible;
}

main {
  overflow: visible;
}

.text-red { color: var(--red); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.35);
}

.btn--primary:hover {
  background: #a50d26;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.45);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn--glow {
  background: var(--red);
  color: var(--white);
  font-size: 18px;
  padding: 20px 48px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  animation: glowPulse 3s ease-in-out infinite;
}

.btn--glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 60px rgba(200, 16, 46, 0.5);
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(200, 16, 46, 0.3); }
  50% { box-shadow: 0 0 50px rgba(200, 16, 46, 0.5); }
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header--light .section-title { color: var(--white); }
.section-header--light .section-desc { color: rgba(255, 255, 255, 0.6); }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-tag--red {
  color: var(--red);
  background: rgba(200, 16, 46, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: #6B7A90;
  line-height: 1.7;
}

/* ---- Reveal Animations ---- */
.reveal-up,
.reveal-left {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-up.revealed,
.reveal-left.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   HEADER — Hero overlap ↔ A&B floating sticky
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: var(--logo-rise);
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    padding-top var(--header-ease),
    opacity 0.7s var(--ease-premium),
    transform 0.7s var(--ease-premium);
}

.header.is-entered {
  opacity: 1;
  transform: translateY(0);
}

.header.scrolled {
  padding-top: 0;
}

/* ---- Hero bar: full-width transparent ---- */
.header__bar {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: var(--nav-h-hero);
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition:
    width var(--header-ease),
    max-width var(--header-ease),
    margin var(--header-ease),
    min-height var(--header-ease),
    background var(--header-ease),
    border-radius var(--header-ease),
    box-shadow var(--header-ease),
    backdrop-filter var(--header-ease);
}

/* ---- Sticky bar: floating white pill ---- */
.header.scrolled .header__bar {
  width: 92%;
  max-width: 1320px;
  margin: 16px auto 0;
  height: var(--nav-h-sticky);
  min-height: var(--nav-h-sticky);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow:
    0 4px 24px rgba(14, 24, 51, 0.08),
    0 12px 48px rgba(14, 24, 51, 0.06);
}

.header__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  overflow: visible;
  pointer-events: auto;
  transition:
    max-width var(--header-ease),
    padding var(--header-ease),
    min-height var(--header-ease);
}

/* ---- Hero inner: nav only in flow, logo absolute ---- */
.header:not(.scrolled) .header__inner {
  min-height: var(--nav-h-hero);
}

.header.scrolled .header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: none;
  height: var(--nav-h-sticky);
  min-height: var(--nav-h-sticky);
  padding: 0 28px 0 24px;
}

/* ---- Logo: hero = absolute overlap | sticky = flex item ---- */
.nav__logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
  z-index: 1100;
  pointer-events: auto;
  isolation: isolate;
  transition:
    height var(--header-ease),
    opacity var(--header-ease);
}

.header:not(.scrolled) .nav__logo {
  position: absolute;
  top: calc(-1 * var(--logo-rise));
  left: var(--logo-x-hero);
  animation: logoHeroFloat 5s ease-in-out 1.5s infinite;
}

.header:not(.scrolled) .nav__logo:hover {
  animation-play-state: paused;
}

@keyframes logoHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.header.scrolled .nav__logo {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  margin: 0;
  animation: none;
}

.nav__logo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 36%,
    rgba(255, 255, 255, 0.32) 47%,
    rgba(255, 255, 255, 0.1) 53%,
    transparent 64%
  );
  transform: translateX(-140%) skewX(-14deg);
  opacity: 0;
}

.nav__logo:hover::after {
  animation: navLogoShine 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.06s forwards;
}

@keyframes navLogoShine {
  0% {
    transform: translateX(-140%) skewX(-14deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: translateX(140%) skewX(-14deg);
    opacity: 0;
  }
}

.nav__logo-img {
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  transform-origin: center center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: var(--logo-hero-h);
  opacity: 0;
  transition:
    height var(--header-ease),
    opacity var(--header-ease),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  animation: logoFadeIn 0.8s var(--ease-premium) 0.15s forwards;
}

.header:not(.scrolled) .nav__logo-img {
  filter:
    drop-shadow(0 4px 14px rgba(0, 0, 0, 0.26))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.14));
}

.header.scrolled .nav__logo-img {
  height: var(--logo-sticky-h);
  opacity: 1;
  filter: none;
  transform: none;
  object-fit: contain;
}

.nav__logo:hover .nav__logo-img {
  transform: translateY(-3px) scale(1.13) rotate(2deg);
  filter:
    brightness(1.06)
    contrast(1.05)
    drop-shadow(0 8px 22px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 26px rgba(220, 20, 60, 0.26))
    drop-shadow(0 0 10px rgba(220, 20, 60, 0.16));
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 0.98;
    transform: translateY(0);
  }
}

/* ---- Navigation ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  width: 100%;
  position: relative;
  transition: min-height var(--header-ease);
}

.header:not(.scrolled) .nav {
  min-height: var(--nav-h-hero);
}

.header.scrolled .nav {
  flex: 1 1 auto;
  min-height: var(--nav-h-sticky);
  position: static;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Center links on full bar width (logo width ignored) */
.header:not(.scrolled) .nav__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header.scrolled .nav__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.header.scrolled .nav__link { color: var(--navy); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav__link:hover { color: var(--red); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--red);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.nav__cta:hover {
  background: #a50d26;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
}

.nav__cta-icon {
  display: flex;
  animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-8deg); }
  20% { transform: rotate(8deg); }
  30% { transform: rotate(0); }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 4px;
  position: relative;
  z-index: 1003;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header.scrolled .nav__toggle span { background: var(--navy); }

.nav__toggle.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav__toggle.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

.nav__overlay,
.nav__drawer-cta {
  display: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 94vh;
  min-height: 94dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s var(--ease-premium);
}

.hero.is-loaded .hero__bg {
  opacity: 1;
}

.hero__bg-media {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  will-change: transform;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.12) contrast(1.17) saturate(1.10);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.06) translateY(-3px); }
}

.hero__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.07) 48%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.07) 52%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: heroChromeShine 9s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes heroChromeShine {
  0%, 72% { transform: translateX(-120%); opacity: 0; }
  78% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

.hero__overlay-cinematic {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  opacity: 0.38;
  pointer-events: none;
  animation: overlayCinematic 14s ease-in-out infinite alternate;
}

@keyframes overlayCinematic {
  from { opacity: 0.36; }
  to { opacity: 0.42; }
}

.hero__overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.56) 0%,
    rgba(0, 0, 0, 0.48) 28%,
    rgba(0, 0, 0, 0.28) 48%,
    rgba(0, 0, 0, 0.08) 62%,
    transparent 78%
  );
  pointer-events: none;
}

.hero__overlay-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(
    ellipse 120% 100% at 50% 50%,
    transparent 42%,
    rgba(0, 0, 0, 0.19) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  align-items: center;
  padding-top: calc(var(--logo-hero-h) + var(--hero-top-pad) + var(--hero-offset-y));
  padding-bottom: 56px;
  width: 100%;
  min-height: 94vh;
  min-height: 94dvh;
}

.hero__text {
  max-width: 560px;
}

.hero__sub {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 32px;
}

.hero__desc {
  font-size: clamp(16px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Hero entrance sequence ---- */
[data-hero-seq],
.hero__title-line {
  opacity: 0;
  transform: translateY(20px);
}

.hero__title-line {
  display: block;
}

[data-hero-seq].is-visible,
.hero__title-line.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s var(--ease-premium),
    transform 0.8s var(--ease-premium);
}

.hero__actions .btn--hero {
  transition:
    transform 0.3s var(--ease-premium),
    box-shadow 0.3s var(--ease-premium),
    background 0.3s var(--ease-premium),
    border-color 0.3s var(--ease-premium);
}

.hero__actions .btn--hero:hover {
  transform: translateY(-3px) scale(1.03);
}

.hero__actions .btn--primary.btn--hero:hover {
  box-shadow: 0 10px 36px rgba(200, 16, 46, 0.48);
}

.hero__actions .btn--secondary.btn--hero:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
}

/* ---- Luxury scroll mouse ---- */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.8s var(--ease-premium);
}

.hero__scroll.is-visible {
  opacity: 1;
  animation: scrollFadePulse 3s ease-in-out infinite;
}

@keyframes scrollFadePulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

.hero__mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  position: relative;
}

.hero__mouse-wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  animation: mouseWheelBounce 2s var(--ease-premium) infinite;
}

@keyframes mouseWheelBounce {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ============================================
   SERVICES — Premium Luxury
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.services__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.services__orb--1 {
  width: 520px;
  height: 520px;
  top: 8%;
  left: -10%;
  background: rgba(200, 16, 46, 0.05);
  animation: servicesOrbFloat 18s ease-in-out infinite;
}

.services__orb--2 {
  width: 440px;
  height: 440px;
  bottom: 0;
  right: -8%;
  background: rgba(14, 24, 51, 0.04);
  animation: servicesOrbFloat 14s ease-in-out -5s infinite;
}

.services__orb--3 {
  width: 360px;
  height: 360px;
  top: 45%;
  left: 38%;
  background: rgba(200, 16, 46, 0.035);
  animation: servicesOrbFloat 20s ease-in-out -10s infinite;
}

@keyframes servicesOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -16px, 0) scale(1.03); }
}

/* Section header reveal */
.services-reveal-header {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-reveal-header.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  perspective: 1200px;
}

/* Card scroll reveal */
.service-card-reveal:not(.is-revealed) {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
}

.service-card-reveal.is-revealed {
  opacity: 1;
}

.service-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  --card-scale: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 238, 245, 0.9);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(14, 24, 51, 0.05),
    0 1px 3px rgba(14, 24, 51, 0.04);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.34, 1.15, 0.64, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  transform-style: preserve-3d;
}

.service-card.service-card-reveal.is-revealed {
  transform: perspective(1000px)
    translateY(var(--card-lift))
    scale(var(--card-scale))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
}

.service-card.is-revealed:hover {
  --card-lift: -8px;
  --card-scale: 1.02;
  background: #FEFCFB;
  border-color: rgba(200, 16, 46, 0.12);
  box-shadow:
    0 24px 56px rgba(14, 24, 51, 0.11),
    0 12px 32px rgba(14, 24, 51, 0.06),
    0 0 48px rgba(200, 16, 46, 0.07);
}

.service-card.active {
  background: #FEFCFB;
  border-color: rgba(200, 16, 46, 0.18);
  box-shadow:
    0 28px 64px rgba(14, 24, 51, 0.13),
    0 14px 36px rgba(14, 24, 51, 0.07),
    0 0 56px rgba(200, 16, 46, 0.09);
}

.service-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  border-radius: 0 2px 2px 0;
  z-index: 3;
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__accent,
.service-card.active .service-card__accent {
  width: 100%;
}

.service-card__trigger {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 28px 32px;
  text-align: left;
  cursor: pointer;
}

.service-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border-radius: 16px;
  color: var(--red);
  transition:
    background 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__icon,
.service-card.active .service-card__icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.05);
}

.service-card.active .service-card__icon svg {
  transform: rotate(-6deg);
}

.service-card__info { flex: 1; }

.service-card__info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__info h3,
.service-card.active .service-card__info h3 {
  color: var(--red);
}

.service-card__info p {
  font-size: 14px;
  color: #6B7A90;
}

.service-card__arrow {
  flex-shrink: 0;
  color: #6B7A90;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__arrow,
.service-card.active .service-card__arrow {
  transform: rotate(180deg);
  color: var(--red);
}

.service-card__dropdown {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card.active .service-card__dropdown {
  grid-template-rows: 1fr;
  opacity: 1;
}

.service-card__dropdown p {
  overflow: hidden;
  min-height: 0;
  padding: 0 32px 28px 108px;
  font-size: 15px;
  color: #6B7A90;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.service-card.active .service-card__dropdown p {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT — Luxury Agency Polish
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  min-height: auto;
  align-items: center;
  padding: 80px clamp(40px, 5vw, 80px) 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: min(680px, 55vw);
  height: min(680px, 55vw);
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.045) 0%,
    rgba(200, 16, 46, 0.02) 38%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.about__visual,
.about__content {
  position: relative;
  z-index: 1;
}

.about .reveal-left {
  opacity: 0;
  transform: translateX(-56px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__content .reveal-up {
  opacity: 0;
  transform: translateX(48px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.about .reveal-left.revealed,
.about__content .reveal-up.revealed {
  opacity: 1;
  transform: translate(0);
}

.about__visual {
  position: relative;
  height: 100%;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  height: 88%;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 16, 46, 0.075) 0%,
    rgba(200, 16, 46, 0.04) 45%,
    transparent 72%
  );
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.about__image-wrap {
  position: relative;
  z-index: 1;
  width: 110%;
  height: 100%;
  max-height: 560px;
  transform-origin: center center;
  overflow: hidden;
  border-radius: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 36px 88px rgba(14, 24, 51, 0.16),
    0 16px 40px rgba(14, 24, 51, 0.09),
    0 0 0 1px rgba(14, 24, 51, 0.04);
  animation: aboutImageFloat 8s ease-in-out infinite;
}

@keyframes aboutImageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__visual:hover .about__image-wrap img {
  transform: scale(1.02);
}

.about__image-accent {
  position: absolute;
  bottom: 28px;
  right: -10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  min-width: 148px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  box-shadow:
    0 16px 48px rgba(14, 24, 51, 0.12),
    0 4px 16px rgba(14, 24, 51, 0.06);
  animation: aboutAccentFloat 8s ease-in-out -2s infinite;
}

@keyframes aboutAccentFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.about__image-accent-stars {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #e8b923;
  line-height: 1;
}

.about__image-accent-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.35;
}

.about__content {
  padding: 40px 32px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__content .section-tag {
  margin-bottom: 16px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(37px, 4.65vw, 66px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
}

.about__title .text-red {
  background: linear-gradient(135deg, #C8102E 0%, #9a0c24 55%, #7a091c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__desc {
  font-size: 18px;
  color: #5f6d80;
  line-height: 1.92;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
  max-width: 520px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 238, 245, 0.95);
  box-shadow: 0 2px 10px rgba(14, 24, 51, 0.04);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__features li.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.about__features li.is-revealed:hover {
  background: #fafafa;
  transform: translateX(8px);
  border-color: rgba(200, 16, 46, 0.12);
  box-shadow: 0 10px 28px rgba(14, 24, 51, 0.09);
}

.about__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 249, 252, 0.95);
  border: 1px solid rgba(232, 238, 245, 0.9);
  border-radius: 50%;
  color: #6B7A90;
  transition:
    background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__feature-icon svg {
  width: 20px;
  height: 20px;
}

.about__features li:hover .about__feature-icon {
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.15);
  color: var(--red);
  transform: scale(1.04);
}

.about__features strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__features li:hover strong {
  color: var(--red);
}

.about__features span {
  font-size: 13px;
  color: #6B7A90;
  line-height: 1.5;
}

.about__divider {
  width: 180px;
  height: 1px;
  margin: 28px auto 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(14, 24, 51, 0.18) 50%,
    transparent 100%
  );
  opacity: 0.35;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why {
  position: relative;
  padding: 120px 0;
  background: var(--black);
  overflow: hidden;
}

.why__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.why__card {
  position: relative;
  flex: 0 1 320px;
  min-height: 220px;
  padding: 56px 40px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    0 4px 16px rgba(0, 0, 0, 0.18);
  overflow: visible;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.why__card.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.why__card.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.why__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.why__card--center::after {
  content: '';
  position: absolute;
  inset: -18%;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.22) 0%,
    rgba(200, 16, 46, 0.08) 38%,
    transparent 68%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(8px);
}

.why__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 12px 36px rgba(0, 0, 0, 0.28),
    0 0 48px rgba(200, 16, 46, 0.14);
}

.why__card.reveal-up.revealed:hover {
  transform: translateY(-8px) scale(1.03);
}

.why__card:hover::before { opacity: 1; }

.why__number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.why__suffix {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--red);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.why__card:hover .why__number,
.why__card:hover .why__suffix {
  transform: rotate(3deg) scale(1.08);
}

.why__label {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  position: relative;
  padding: 120px 0;
  background: var(--gray-light);
  overflow: hidden;
}

.reviews__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 50% 62%, rgba(200, 16, 46, 0.05) 0%, transparent 68%);
}

.reviews__header {
  position: relative;
  z-index: 1;
}

.reviews__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

.reviews__stats-stars {
  font-size: 16px;
  letter-spacing: 0.14em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.reviews__stats-line {
  font-size: 14px;
  font-weight: 500;
  color: #6B7A90;
  letter-spacing: 0.02em;
}

.reviews__stat-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.reviews__quote {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(160px, 20vw, 260px);
  font-weight: 700;
  line-height: 0.8;
  color: var(--red);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.reviews .section-header.reveal-up {
  transform: translateY(36px);
}

.reviews.is-visible .section-header.reveal-up,
.reviews.is-visible .reviews__slider-wrap.reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.reviews__slider-wrap.reveal-up {
  transform: translateY(48px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews__slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
  z-index: 1;
}

.reviews__spotlight {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(420px, 55vw);
  height: 340px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 70% 65% at 50% 50%,
    rgba(200, 16, 46, 0.09) 0%,
    rgba(200, 16, 46, 0.03) 42%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.85;
}

.reviews__viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.reviews__track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  will-change: transform;
}

.reviews__track.is-manual {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card {
  --card-scale: 0.92;
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow:
    0 12px 40px rgba(14, 24, 51, 0.08),
    0 4px 16px rgba(14, 24, 51, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: scale(0.92) translateY(28px);
  transform-origin: center center;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card.is-revealed {
  opacity: 0.82;
  transform: scale(var(--card-scale)) translateY(0);
}

.review-card.is-center {
  --card-scale: 1.05;
  opacity: 1;
  transform: scale(1.05) translateY(0);
  box-shadow:
    0 20px 56px rgba(14, 24, 51, 0.14),
    0 8px 24px rgba(14, 24, 51, 0.08),
    0 0 0 1px rgba(200, 16, 46, 0.08);
}

.review-card.is-side {
  --card-scale: 0.92;
  opacity: 0.82;
  transform: scale(0.92) translateY(0);
}

.review-card:hover {
  opacity: 1;
  border-color: rgba(200, 16, 46, 0.22);
  box-shadow:
    0 24px 64px rgba(14, 24, 51, 0.14),
    0 12px 32px rgba(14, 24, 51, 0.08),
    0 0 0 1px rgba(200, 16, 46, 0.18),
    0 0 48px rgba(200, 16, 46, 0.12);
}

.review-card.is-center:hover {
  transform: translateY(-8px) scale(1.07);
}

.review-card.is-side:hover {
  transform: translateY(-8px) scale(0.94);
}

.review-card__stars {
  display: inline-flex;
  gap: 0.08em;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--red);
}

.review-card__star {
  display: inline-block;
  opacity: 0;
  transform: scale(0.5);
  text-shadow:
    0 0 10px rgba(200, 16, 46, 0.22),
    0 0 20px rgba(200, 16, 46, 0.1);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card.is-revealed .review-card__star {
  opacity: 1;
  transform: scale(1);
  animation: reviewStarShine 5s ease-in-out infinite;
}

.review-card.is-revealed .review-card__star:nth-child(1) { transition-delay: 0ms; animation-delay: 0s; }
.review-card.is-revealed .review-card__star:nth-child(2) { transition-delay: 80ms; animation-delay: 0.4s; }
.review-card.is-revealed .review-card__star:nth-child(3) { transition-delay: 160ms; animation-delay: 0.8s; }
.review-card.is-revealed .review-card__star:nth-child(4) { transition-delay: 240ms; animation-delay: 1.2s; }
.review-card.is-revealed .review-card__star:nth-child(5) { transition-delay: 320ms; animation-delay: 1.6s; }

@keyframes reviewStarShine {
  0%, 88%, 100% { filter: brightness(1); }
  94% { filter: brightness(1.28); }
}

.review-card:hover .review-card__star {
  filter: brightness(1.12);
}

.review-card__text {
  flex: 1;
  font-size: 15px;
  line-height: 1.75;
  color: #4A5568;
  font-style: normal;
  margin-bottom: 24px;
}

.review-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 238, 245, 0.9);
  margin-top: auto;
}

.review-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.review-card__location {
  font-size: 13px;
  color: #6B7A90;
  margin-top: 2px;
}

.review-card__date {
  display: block;
  font-size: 12px;
  color: #8a97a8;
  margin-top: 4px;
}

.review-card__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.reviews__arrow {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 8px 32px rgba(14, 24, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  z-index: 2;
}

.reviews__arrow:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--red);
  border-color: rgba(200, 16, 46, 0.28);
  transform: scale(1.08);
  box-shadow:
    0 12px 36px rgba(200, 16, 46, 0.22),
    0 0 24px rgba(200, 16, 46, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.reviews__arrow:active {
  transform: scale(1.02);
}

/* ============================================
   CTA — Cinematic Hero Conversion
   ============================================ */
.cta {
  position: relative;
  min-height: clamp(580px, 88vh, 840px);
  overflow: hidden;
  background: #060810;
}

.cta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta__bg-media {
  position: absolute;
  inset: -8%;
  will-change: transform;
}

.cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
}

.cta__layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 16, 0.72) 0%, rgba(10, 15, 28, 0.55) 42%, rgba(8, 12, 22, 0.78) 100%),
    linear-gradient(135deg, rgba(14, 24, 51, 0.82) 0%, rgba(10, 15, 28, 0.68) 50%, rgba(6, 8, 16, 0.88) 100%);
}

.cta__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 52% 48% at 50% 46%,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.04) 38%,
    transparent 72%
  );
}

.cta__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(200, 16, 46, 0.16) 0%, transparent 62%),
    radial-gradient(ellipse 35% 30% at 15% 25%, rgba(200, 16, 46, 0.08) 0%, transparent 58%),
    radial-gradient(ellipse 30% 28% at 88% 22%, rgba(200, 16, 46, 0.06) 0%, transparent 55%);
}

.cta__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 50% 50%, transparent 42%, rgba(4, 6, 12, 0.55) 100%);
}

.cta__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

.cta__stage {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: clamp(72px, 10vw, 120px) 24px;
}

.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  width: 100%;
}

.cta [data-cta-seq] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.95s var(--ease-premium),
    transform 0.95s var(--ease-premium);
}

.cta [data-cta-seq].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 20px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.cta__desc {
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.cta__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 280px;
  max-width: 100%;
  padding: 20px 32px;
  background: linear-gradient(145deg, #d41432 0%, var(--red) 50%, #a50d24 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 40px rgba(200, 16, 46, 0.45),
    0 0 80px rgba(200, 16, 46, 0.18),
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium);
}

.cta__call-icon {
  flex-shrink: 0;
  transition: transform 0.45s var(--ease-premium);
}

.cta__call:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 0 56px rgba(200, 16, 46, 0.58),
    0 0 100px rgba(200, 16, 46, 0.24),
    0 16px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta__call:hover .cta__call-icon {
  transform: scale(1.1);
}

.cta__call:active {
  transform: translateY(-1px);
}

.cta__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 36px;
  padding: 0;
}

.cta__trust li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.cta__trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2.5 7.2l3 3 6-6' stroke='%23C8102E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.9;
}

/* ============================================
   FOOTER — Custom Premium Layout
   ============================================ */
.footer {
  --footer-bg: #f8f9fb;
  --footer-border: #e5e7eb;
  --footer-text: #1e293b;
  --footer-muted: #64748b;
  --footer-accent: #d90429;

  position: relative;
  overflow: hidden;
  color: var(--footer-muted);
  padding: 64px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--footer-bg) 100%);
  border-top: 1px solid var(--footer-border);
}

.footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--footer-accent);
}

.footer [data-footer-seq] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease-premium),
    transform 0.7s var(--ease-premium);
}

.footer.is-visible [data-footer-seq].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr 1fr 1.15fr;
  gap: 40px 36px;
  align-items: start;
  margin-bottom: 40px;
}

/* — Column 1: Brand — */
.footer__logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.footer__logo-glow {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217, 4, 41, 0.09) 0%, rgba(217, 4, 41, 0.03) 42%, transparent 72%);
  pointer-events: none;
}

.footer__logo {
  position: relative;
  z-index: 1;
  height: 132px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  object-position: left center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 280px;
  color: var(--footer-muted);
}

.footer__trust {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--footer-text);
  margin-bottom: 8px;
}

.footer__trust-stars {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--footer-accent);
  line-height: 1;
  margin-bottom: 18px;
}

.footer__yelp {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  gap: 10px;
}

.footer__yelp-badge {
  --yelp-red: #ff1a1a;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid var(--footer-border);
  border-radius: 50%;
  color: var(--yelp-red);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium);
}

.footer__yelp-badge:hover {
  transform: scale(1.1);
  border-color: rgba(255, 26, 26, 0.35);
  box-shadow:
    0 0 0 4px rgba(255, 26, 26, 0.1),
    0 6px 20px rgba(255, 26, 26, 0.22);
}

.footer__yelp-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--footer-muted);
}

/* — Columns 2–4 — */
.footer__heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--footer-text);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 11px;
}

.footer__links a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--footer-muted);
  text-decoration: none;
  padding-bottom: 2px;
  transition:
    transform 0.35s var(--ease-premium),
    color 0.35s var(--ease-premium);
}

.footer__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--footer-accent);
  transition: width 0.35s var(--ease-premium);
}

.footer__links a:hover {
  color: var(--footer-text);
  transform: translateX(5px);
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__contact-list {
  list-style: none;
  padding: 0;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--footer-muted);
  margin-bottom: 12px;
}

.footer__contact-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--footer-accent);
  transition: transform 0.35s var(--ease-premium);
}

.footer__contact-list li:hover svg {
  transform: scale(1.1);
}

.footer__contact-list a {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--footer-text);
  text-decoration: none;
  padding-bottom: 2px;
  transition:
    transform 0.35s var(--ease-premium),
    color 0.35s var(--ease-premium);
}

.footer__contact-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--footer-accent);
  transition: width 0.35s var(--ease-premium);
}

.footer__contact-list a:hover {
  color: var(--footer-accent);
  transform: translateX(4px);
}

.footer__contact-list a:hover::after {
  width: 100%;
}

/* — Location strip — */
.footer__location-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  width: 100%;
  padding: 20px 28px;
  margin-bottom: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 251, 0.98) 100%);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 8px 32px rgba(15, 23, 42, 0.04);
}

.footer__location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(217, 4, 41, 0.07);
  color: var(--footer-accent);
  transition: transform 0.35s var(--ease-premium);
}

.footer__location-strip:hover .footer__location-icon {
  transform: scale(1.06);
}

.footer__location-copy {
  flex: 1;
  min-width: 180px;
}

.footer__location-city {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--footer-text);
  margin-bottom: 2px;
}

.footer__location-address {
  font-size: 13px;
  color: var(--footer-muted);
}

.footer__location-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--footer-text);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--footer-border);
  border-radius: 100px;
  white-space: nowrap;
  transition:
    transform 0.35s var(--ease-premium),
    color 0.35s var(--ease-premium),
    border-color 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium);
}

.footer__location-btn:hover {
  color: var(--footer-accent);
  border-color: rgba(217, 4, 41, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217, 4, 41, 0.1);
}

/* — CTA banner — */
.footer__cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 22px 32px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.footer__cta-text {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
  margin: 0;
}

.footer__cta-phone {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition:
    color 0.35s var(--ease-premium),
    border-color 0.35s var(--ease-premium),
    transform 0.35s var(--ease-premium);
}

.footer__cta-phone:hover {
  color: #fca5a5;
  border-bottom-color: var(--footer-accent);
  transform: translateX(4px);
}

.footer__divider {
  height: 1px;
  margin-bottom: 24px;
  background: var(--footer-border);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 16px;
  padding: 0 0 36px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --logo-hero-h: 148px;
    --logo-sticky-h: 84px;
    --logo-rise: 38px;
    --logo-x-hero: 28px;
  }

  .nav__links {
    gap: 24px;
  }

  .nav__link {
    font-size: 13px;
  }

  .nav__cta-text {
    display: none;
  }

  .nav__cta {
    padding: 10px 14px;
  }

  .hero__bg-img {
    object-position: center center;
  }

  .hero__overlay-gradient {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.50) 35%,
      rgba(0, 0, 0, 0.24) 55%,
      transparent 80%
    );
  }

  .hero__content {
    grid-template-columns: minmax(0, 480px) 1fr;
    padding-top: calc(var(--logo-hero-h) + 64px + var(--hero-offset-y));
    padding-bottom: 48px;
    min-height: 94vh;
    min-height: 94dvh;
  }

  .hero__title {
    font-size: clamp(36px, 6vw, 60px);
  }

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

  .about__visual { min-height: 320px; }

  .about__image-wrap {
    width: 100%;
    max-height: 420px;
  }

  .about__content {
    padding: 24px 32px 0;
  }

  .why__card {
    flex: 0 1 calc(50% - 16px);
    max-width: 360px;
  }

  .review-card {
    flex: 0 0 calc(50% - 12px);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  :root {
    --nav-h-hero: 96px;
    --nav-h-sticky: 86px;
    --logo-hero-h: 124px;
    --logo-sticky-h: 70px;
    --logo-rise: 34px;
    --logo-x-hero: 20px;
  }

  .header.scrolled .header__bar {
    width: 94%;
    margin-top: 12px;
    border-radius: 20px;
  }

  .header.scrolled .header__inner {
    padding: 0 20px;
    gap: 12px;
  }

  .footer__logo {
    height: 112px;
    max-width: 112px;
  }

  .footer__location-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
  }

  .footer__location-btn {
    width: 100%;
    justify-content: center;
  }

  .footer__cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }

  .nav__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(14, 24, 51, 0.55);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity var(--transition),
      visibility var(--transition);
  }

  .nav__overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header:not(.scrolled) .nav__links,
  .header.scrolled .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    left: auto;
    top: 0;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 120px 32px 32px;
    background: var(--navy);
    z-index: 1002;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform var(--transition),
      opacity var(--transition),
      visibility var(--transition);
  }

  .header:not(.scrolled) .nav__links.open,
  .header.scrolled .nav__links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__link {
    color: var(--white) !important;
    font-size: 18px;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__drawer-cta {
    display: block;
    width: 100%;
    margin-top: 24px;
  }

  .nav__drawer-call {
    width: 100%;
    justify-content: center;
  }

  .nav__cta { display: none; }

  .nav__toggle { display: flex; }

  .hero__bg-img {
    object-position: center center;
  }

  .hero__overlay-gradient {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.54) 0%,
      rgba(0, 0, 0, 0.46) 45%,
      rgba(0, 0, 0, 0.14) 75%,
      transparent 100%
    );
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-items: flex-end;
    padding-top: calc(var(--logo-hero-h) + 56px + var(--hero-offset-y));
    padding-bottom: 52px;
    min-height: 94vh;
    min-height: 94dvh;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__title { font-size: clamp(34px, 9vw, 52px); }

  .hero__desc {
    max-width: 100%;
    margin-bottom: 32px;
  }

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

  .service-card__dropdown p {
    padding: 0 32px 28px 32px;
  }

  .why__card {
    flex: 0 1 calc(50% - 16px);
    max-width: 360px;
  }

  .reviews {
    overflow: visible;
  }

  .reviews__slider-wrap {
    display: block;
    position: relative;
    padding: 0 52px;
  }

  .reviews__viewport {
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
  }

  .reviews__track {
    align-items: stretch;
    gap: 16px;
  }

  .review-card,
  .review-card.is-revealed,
  .review-card.is-center,
  .review-card.is-side {
    flex: 0 0 92%;
    width: 92%;
    max-width: none;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 26px 24px;
    opacity: 1;
    transform: none;
    --card-scale: 1;
    overflow: visible;
    box-sizing: border-box;
  }

  .review-card.is-center {
    box-shadow:
      0 20px 56px rgba(14, 24, 51, 0.14),
      0 8px 24px rgba(14, 24, 51, 0.08),
      0 0 0 1px rgba(200, 16, 46, 0.08);
  }

  .review-card.is-side {
    opacity: 0.72;
  }

  .review-card:hover,
  .review-card.is-center:hover,
  .review-card.is-side:hover {
    transform: none;
  }

  .review-card__stars {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .review-card__text {
    flex: none;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
  }

  .review-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 16px;
  }

  .review-card__meta {
    min-width: 0;
    width: 100%;
  }

  .review-card__badge {
    white-space: normal;
    text-align: left;
    line-height: 1.35;
    max-width: 100%;
  }

  .reviews__spotlight {
    display: none;
  }

  .reviews__arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin: 0;
    transform: translateY(-50%);
    z-index: 3;
  }

  .reviews__arrow--prev {
    left: 0;
  }

  .reviews__arrow--next {
    right: 0;
  }

  .reviews__arrow:hover {
    transform: translateY(-50%) scale(1.06);
  }

  .reviews__arrow:active {
    transform: translateY(-50%) scale(1);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom-sep {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 6px;
  }

  .cta {
    min-height: clamp(520px, 82vh, 720px);
  }

  .cta__trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (min-width: 1400px) {
  .hero__bg-img {
    object-position: center center;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h-sticky: 82px;
    --logo-hero-h: 108px;
    --logo-sticky-h: 64px;
    --logo-rise: 30px;
    --logo-x-hero: 16px;
  }

  .header.scrolled .header__bar {
    width: 96%;
    border-radius: 18px;
  }

  .hero__bg-img {
    object-position: center center;
  }

  .hero__overlay-gradient {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.56) 0%,
      rgba(0, 0, 0, 0.48) 50%,
      rgba(0, 0, 0, 0.17) 85%,
      transparent 100%
    );
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .reviews__slider-wrap {
    padding: 0 44px;
  }

  .reviews__arrow {
    width: 36px;
    height: 36px;
  }

  .review-card,
  .review-card.is-revealed,
  .review-card.is-center,
  .review-card.is-side {
    padding: 24px 20px;
  }

  .review-card__text {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .why__card {
    flex: 0 1 100%;
    max-width: 400px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__logo-img {
    animation: logoFadeIn 0.9s ease 0.1s forwards;
  }

  .header:not(.scrolled) .nav__logo:hover .nav__logo-img,
  .nav__logo:hover .nav__logo-img {
    transform: none;
    filter: none;
  }

  .nav__logo:hover::after {
    animation: none;
  }

  .header:not(.scrolled) .nav__logo {
    animation: none;
  }

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

  .hero__bg {
    opacity: 1;
    transition: none;
  }

  .hero__bg-media,
  .hero__bg-img,
  .hero__shine,
  .hero__overlay-cinematic {
    animation: none !important;
  }

  .hero__shine {
    display: none;
  }

  [data-hero-seq],
  .hero__title-line {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__scroll.is-visible {
    animation: none;
    opacity: 0.6;
  }

  .hero__mouse-wheel {
    animation: none;
  }

  .hero__actions .btn--hero:hover {
    transform: none;
  }

  .services__orb {
    animation: none !important;
  }

  .services-reveal-header,
  .service-card-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .service-card.is-revealed {
    transform: none;
  }

  .service-card.is-revealed:hover {
    transform: none;
    --card-lift: 0;
    --card-scale: 1;
  }

  .service-card__dropdown {
    transition: none;
  }

  .service-card.active .service-card__dropdown p {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about .reveal-up,
  .about .reveal-left {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about__features li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about__features li:hover {
    transform: none;
  }

  .about__image-wrap,
  .about__image-accent {
    animation: none !important;
  }

  .about__visual:hover .about__image-wrap img {
    transform: none;
  }

  .why__card.reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why__card:hover {
    transform: none;
  }

  .why__card:hover .why__number,
  .why__card:hover .why__suffix {
    transform: none;
  }

  .review-card:hover {
    transform: none;
  }

  .review-card:hover .review-card__star {
    filter: none;
  }

  .review-card.is-center,
  .review-card.is-side {
    transform: scale(1);
    opacity: 1;
  }

  .review-card__star {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .reviews__spotlight {
    display: none;
  }

  .reviews__arrow:hover {
    transform: none;
  }

  .cta__call:hover {
    transform: none;
  }

  .cta__call:hover .cta__call-icon {
    transform: none;
  }

  .cta [data-cta-seq] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cta__particles {
    display: none;
  }

  .footer [data-footer-seq] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .footer__yelp-badge:hover,
  .footer__links a:hover,
  .footer__contact-list a:hover,
  .footer__location-btn:hover,
  .footer__cta-phone:hover {
    transform: none;
  }
}
