:root {
  --black: #030303;
  --white: #f8f8f4;
  --muted: rgba(248, 248, 244, 0.7);
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --red: #f31822;
  --red-deep: #990f16;
  --gold: #d8b56d;
  --gold-deep: #8c6723;
  --platinum: #d9d9d2;
  --display: "Poppins", Arial, sans-serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 22px;
  align-content: center;
  background: #030303;
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.page-loader img {
  width: min(230px, 62vw);
  height: auto;
  display: block;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.page-loader span {
  width: min(180px, 48vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.page-loader span::before {
  content: "";
  width: 42%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: loaderBar 1.1s ease-in-out infinite;
}

body.is-ready .page-loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.025);
    opacity: 1;
  }
}

@keyframes loaderBar {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(250%);
  }
}

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

button,
a {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  width: min(1120px, calc(100% - 32px));
  min-height: 62px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0);
  box-shadow: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transform: translateX(-50%);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(124px, 12vw, 186px);
  height: auto;
  display: block;
  object-fit: contain;
}

.luxury-nav {
  margin-left: auto;
  margin-right: clamp(18px, 2.2vw, 34px);
  display: flex;
  gap: 18px;
  color: rgba(248, 248, 244, 0.72);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.luxury-nav a:hover,
.text-link:hover {
  color: var(--red);
}

.nav-cta {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 248, 244, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(243, 24, 34, 0.96), rgba(130, 12, 18, 0.94)),
    var(--red);
  box-shadow: 0 18px 45px rgba(243, 24, 34, 0.2);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 248, 244, 0.54);
  box-shadow: 0 26px 60px rgba(243, 24, 34, 0.3);
}

.menu-toggle {
  margin-left: auto;
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(248, 248, 244, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(243, 24, 34, 0.82), rgba(130, 12, 18, 0.78)),
    var(--red);
  box-shadow: 0 16px 40px rgba(243, 24, 34, 0.18);
  color: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(243, 24, 34, 0.26);
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display: none;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 0%, rgba(243, 24, 34, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.9);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-menu a {
  min-height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(248, 248, 244, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mobile-menu a::after {
  content: "→";
  color: rgba(248, 248, 244, 0.42);
  font-size: 16px;
  line-height: 1;
}

.mobile-menu a:hover {
  border-color: rgba(243, 24, 34, 0.38);
  background: rgba(243, 24, 34, 0.1);
  color: var(--white);
}

.mobile-menu .mobile-menu-cta {
  margin-top: 6px;
  min-height: 66px;
  padding-block: 10px;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(243, 24, 34, 0.96), rgba(130, 12, 18, 0.94)),
    var(--red);
  color: var(--white);
}

.mobile-menu .mobile-menu-cta::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 92px 0 46px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48)),
    url("assets/media/work-suv.jpg") center / cover;
}

.hero-video,
.video-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: -3;
  filter: saturate(0.68) contrast(1.12) brightness(0.58);
}

.video-scrim {
  z-index: -2;
  background:
    radial-gradient(circle at 70% 34%, rgba(243, 24, 34, 0.12), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42) 54%, rgba(0, 0, 0, 0.82)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.98), transparent 38%);
}

.hero-content,
.section,
.cta-band,
.final-cta {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.authority-badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 13px;
  border: 1px solid rgba(248, 248, 244, 0.18);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(248, 248, 244, 0.84);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-line {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--platinum));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1040px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 22px 68px rgba(0, 0, 0, 0.72);
}

.subtitle {
  max-width: 980px;
  margin: 26px 0 0;
  color: rgba(248, 248, 244, 0.82);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  white-space: nowrap;
}

.hero-checks {
  max-width: 720px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-checks span {
  position: relative;
  min-height: 66px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 181, 109, 0.44);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.18), rgba(140, 103, 35, 0.12)),
    rgba(255, 255, 255, 0.035);
  color: rgba(255, 245, 220, 0.9);
  box-shadow: 0 18px 45px rgba(216, 181, 109, 0.08);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.hero-checks strong {
  display: inline-block;
  margin-right: 6px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.primary-cta {
  border: 1px solid rgba(248, 248, 244, 0.22);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(243, 24, 34, 0.96), rgba(130, 12, 18, 0.94)),
    var(--red);
  box-shadow: 0 18px 45px rgba(243, 24, 34, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.primary-cta {
  min-height: 62px;
  padding: 9px 20px 9px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.cta-text {
  display: grid;
  gap: 5px;
  line-height: 1;
}

.cta-title {
  display: block;
}

.cta-subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.cta-arrow {
  font-size: 15px;
  line-height: 1;
}

.primary-cta.compact {
  min-height: 50px;
  margin-top: 18px;
}

.center-cta {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.section-contact {
  margin-top: 24px;
}

.split-section > .section-contact {
  grid-column: 1 / -1;
  justify-self: center;
}

.primary-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 248, 244, 0.54);
  box-shadow: 0 26px 60px rgba(243, 24, 34, 0.3);
}

.cta-note {
  max-width: 230px;
  margin: 0;
  color: rgba(248, 248, 244, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(54px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.section-eyebrow,
.cta-band > div > span,
.final-cta > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 26px;
}

.services-section .section-heading,
.resistance-section .section-heading,
.work-section .section-heading,
.quality-section .section-heading,
.impact-section .section-heading,
.reviews-section .section-heading,
.process-section .section-heading,
.video-section .section-heading,
.objection-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.quality-section .section-heading {
  max-width: 1060px;
}

.work-section,
.quality-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.work-section .section-heading,
.quality-section .section-heading {
  margin-bottom: 18px;
}

.work-section .section-contact,
.quality-section .section-contact {
  margin-top: 22px;
}

.resistance-section .section-contact {
  margin-top: 18px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: rgba(248, 248, 244, 0.72);
  font-size: 16px;
  font-weight: 600;
}

.review-map-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.review-map-link:hover {
  color: var(--white);
}

.rating-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.half-star {
  background: linear-gradient(90deg, var(--gold) 50%, rgba(248, 248, 244, 0.22) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section h2,
.cta-band h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.services-section .section-heading,
.resistance-section .section-heading {
  max-width: 1060px;
}

.services-section .service-grid,
.resistance-section .resistance-grid,
.location-section .location-grid {
  max-width: 1120px;
  margin-inline: auto;
}

.location-section .location-grid {
  max-width: 1120px;
}

.split-section,
.authority-layout,
.location-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: start;
}

.decision-grid,
.objection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.decision-card,
.service-card,
.resistance-card,
.merit-list article,
.process-list article,
.video-note,
.review-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.decision-card {
  padding: 20px;
}

.decision-card h3,
.service-card h3,
.resistance-card h3,
.process-list h3,
.video-feature h3,
.review-card h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.08;
}

.decision-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(248, 248, 244, 0.7);
  line-height: 1.48;
}

.decision-card li + li {
  margin-top: 7px;
}

.decision-card.good {
  border-color: rgba(243, 24, 34, 0.34);
}

.decision-card.bad {
  background: rgba(255, 255, 255, 0.028);
}

.cta-band {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(243, 24, 34, 0.32);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(243, 24, 34, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.cta-band h2 {
  max-width: 720px;
  font-size: clamp(32px, 3.4vw, 48px);
}

.contact-band .primary-cta .cta-title,
.contact-band .primary-cta .cta-subtitle {
  color: var(--white);
}

.authority-copy,
.location-copy,
.objection-grid p,
.video-note,
.contact-panel p {
  color: rgba(248, 248, 244, 0.7);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
}

.location-copy h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.location-copy .primary-cta {
  margin-left: auto;
  margin-right: auto;
}

.authority-copy p {
  margin-bottom: 12px;
}

.authority-copy h2 {
  max-width: 1060px;
  margin: 0 auto 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.authority-section .authority-layout {
  display: block;
}

.authority-section .authority-copy {
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.authority-section .authority-copy p {
  max-width: 1040px;
  margin-inline: auto;
  color: rgba(248, 248, 244, 0.76);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.42;
}

.text-link {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-grid,
.resistance-grid,
.merit-list,
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.service-card,
.resistance-card,
.process-list article {
  min-height: 188px;
  padding: 20px;
}

.service-card span,
.resistance-card span,
.merit-list span,
.process-list span,
.work-card figcaption span,
.video-feature span,
.video-note span {
  color: rgba(248, 248, 244, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 38px;
}

.service-card p,
.resistance-card p,
.merit-list p,
.process-list p {
  margin-bottom: 0;
  color: rgba(248, 248, 244, 0.65);
  line-height: 1.48;
}

.resistance-section .section-heading p {
  max-width: 920px;
  margin: 8px auto 0;
  color: rgba(248, 248, 244, 0.68);
  font-size: 15px;
  line-height: 1.38;
}

.resistance-note {
  max-width: 980px;
  margin: 0 auto 12px;
  padding: 13px 18px;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(216, 181, 109, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.resistance-note span,
.resistance-options span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resistance-note p,
.resistance-options p {
  margin: 0;
  color: rgba(248, 248, 244, 0.72);
  line-height: 1.36;
}

.resistance-options strong,
.resistance-options em {
  display: block;
}

.resistance-options strong {
  color: var(--white);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.resistance-options em {
  margin-top: 4px;
  color: rgba(248, 248, 244, 0.68);
  font-style: normal;
}

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

.resistance-card {
  min-height: 156px;
  padding: 17px;
  border-color: rgba(243, 24, 34, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 24, 34, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
}

.resistance-card span {
  color: var(--gold);
}

.resistance-card h3 {
  margin-top: 18px;
}

.level-base {
  border-color: rgba(216, 181, 109, 0.2);
}

.level-mid {
  border-color: rgba(216, 181, 109, 0.34);
}

.level-high {
  border-color: rgba(243, 24, 34, 0.42);
}

.level-ultra {
  border-color: rgba(243, 24, 34, 0.54);
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 24, 34, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(216, 181, 109, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.05);
}

.resistance-options {
  max-width: 980px;
  margin: 12px auto 0;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.quality-showcase {
  max-width: 1060px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.quality-section .quality-showcase {
  max-width: 1040px;
  gap: 14px;
}

.quality-video {
  overflow: hidden;
  border: 1px solid rgba(216, 181, 109, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.quality-video video {
  width: 100%;
  height: 100%;
  min-height: 210px;
  display: block;
  object-fit: cover;
}

.quality-section .quality-video video {
  min-height: 215px;
}

.impact-section {
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 24, 34, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 45%);
  pointer-events: none;
}

.impact-heading {
  max-width: 940px;
}

.impact-heading .section-eyebrow {
  padding: 8px 13px;
  border: 1px solid rgba(243, 24, 34, 0.32);
  border-radius: 999px;
  background: rgba(243, 24, 34, 0.08);
}

.impact-heading h2 {
  max-width: 980px;
  margin-inline: auto;
}

.impact-heading p {
  max-width: 860px;
  margin: 12px auto 0;
  color: rgba(248, 248, 244, 0.68);
  font-size: 16px;
  line-height: 1.48;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.impact-card {
  overflow: hidden;
  border: 1px solid rgba(243, 24, 34, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.impact-media {
  min-height: 230px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.88) contrast(1.04);
}

.impact-before .impact-media {
  background-image:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.45)),
    url("assets/impact/caso-impacto-01.png");
  background-position: center;
}

.impact-after .impact-media {
  background-image:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.55)),
    url("assets/impact/caso-impacto-02.png");
  background-color: #0d0d0d;
  background-position: center 44%;
  background-size: cover;
  background-repeat: no-repeat;
}

.impact-card-copy {
  padding: 18px;
}

.impact-card-copy span {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.impact-card-copy h3 {
  margin: 0 0 9px;
  font-family: var(--display);
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1;
}

.impact-card-copy p {
  margin: 0;
  color: rgba(248, 248, 244, 0.68);
  line-height: 1.42;
}

.impact-section .section-contact {
  margin-top: 18px;
}

.merit-list {
  grid-template-columns: repeat(2, 1fr);
}

.authority-section .merit-list {
  max-width: 1120px;
  margin: 24px auto 0;
  grid-template-columns: repeat(4, 1fr);
}

.merit-list article {
  min-height: 138px;
  padding: 18px;
}

.authority-section .merit-list article {
  border-color: rgba(243, 24, 34, 0.32);
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 24, 34, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.merit-list p {
  margin-top: 16px;
}

.work-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.work-section .work-gallery {
  grid-auto-rows: 215px;
  gap: 14px;
}

.clients-video-heading {
  max-width: 780px;
  margin: 34px auto 18px;
  text-align: center;
}

.work-section .clients-video-heading {
  margin: 30px auto 16px;
}

.clients-video-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.05;
}

.work-section .clients-video-heading h3 {
  font-size: clamp(30px, 3.4vw, 44px);
}

.clients-video-grid {
  max-width: 920px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-section .clients-video-grid {
  max-width: 940px;
  gap: 14px;
}

.clients-video-grid .video-feature:first-child {
  grid-row: auto;
}

.work-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.work-section .work-card {
  min-height: 215px;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%);
}

.work-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 8px;
}

.work-card strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
}

.work-visual-one {
  grid-row: span 2;
  background-image:
    linear-gradient(135deg, rgba(243, 24, 34, 0.06), rgba(0, 0, 0, 0.18)),
    url("assets/media/work-suv.jpg");
}

.work-visual-two {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2)),
    url("assets/media/work-mercedes.jpg");
}

.work-visual-three {
  background-image:
    linear-gradient(135deg, rgba(243, 24, 34, 0.08), rgba(0, 0, 0, 0.2)),
    url("assets/media/work-pickup.jpg");
}

.process-list article {
  min-height: 230px;
}

.process-list h3 {
  margin-top: 56px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.video-feature {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.video-grid .video-feature:first-child {
  grid-row: span 2;
}

.video-feature-secondary {
  min-height: 220px;
}

.video-feature video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05) brightness(0.68);
}

.video-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.84));
}

.video-feature div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}

.video-feature h3 {
  margin: 8px 0 0;
}

.video-grid.clients-video-grid {
  max-width: 920px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-section .video-grid.clients-video-grid {
  max-width: 820px;
}

.work-section .video-feature {
  min-height: 235px;
}

.video-grid.clients-video-grid .video-feature:first-child {
  grid-row: auto;
}

.video-note {
  min-height: 142px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.video-note p {
  margin: 18px 0 22px;
}

.objection-section {
  text-align: center;
}

.objection-section .section-heading {
  margin-inline: auto;
}

.objection-grid {
  max-width: 980px;
  margin: 0 auto 22px;
  text-align: left;
}

.objection-grid p {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.center-cta {
  margin-inline: auto;
}

.map-frame {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 290px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.88) brightness(0.75);
}

.map-click-target {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.final-cta {
  padding: 62px 0 76px;
  text-align: center;
}

.final-cta h2 {
  max-width: 980px;
  margin: 0 auto 32px;
}

.social-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 52px);
  justify-content: center;
  gap: 12px;
}

.social-row a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(248, 248, 244, 0.8);
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 24, 34, 0.72);
  color: var(--red);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  min-height: 210px;
  padding: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-author img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border: 1px solid rgba(216, 181, 109, 0.42);
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.review-card span {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.review-card h3 {
  margin: 7px 0 0;
  font-size: 21px;
}

.review-card p {
  margin-bottom: 0;
  color: rgba(248, 248, 244, 0.68);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
}

body.is-ready .reveal {
  animation: slowRise 1.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@media (max-width: 980px) {
  .luxury-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    display: grid;
  }

  .site-header.is-menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .split-section,
  .authority-layout,
  .location-grid,
  .decision-grid,
  .service-grid,
  .resistance-grid,
  .merit-list,
  .process-list,
  .quality-showcase,
  .impact-grid,
  .video-grid,
  .objection-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-checks {
    max-width: 680px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .authority-section .merit-list {
    max-width: 720px;
    margin: 28px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authority-section .merit-list article,
  .resistance-card {
    min-height: auto;
  }

  .resistance-note,
  .resistance-options {
    grid-template-columns: 1fr;
    align-items: start;
    text-align: left;
  }

  .resistance-options {
    display: grid;
    gap: 8px;
  }

  .work-gallery {
    grid-template-columns: 1fr;
  }

  .work-section .work-gallery {
    grid-auto-rows: auto;
  }

  .work-section .work-card {
    aspect-ratio: 16 / 9;
  }

  .work-visual-one {
    grid-row: span 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    width: min(100% - 24px, 1120px);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 42px;
  }

  .hero-content,
  .section,
  .cta-band,
  .final-cta {
    width: min(100% - 28px, 1120px);
  }

  .authority-badge {
    font-size: 10px;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .subtitle {
    font-size: 17px;
    white-space: normal;
  }

  .section {
    padding: 52px 0;
  }

  .section h2,
  .cta-band h2,
  .final-cta h2 {
    font-size: clamp(32px, 9.5vw, 46px);
  }

  .authority-copy h2,
  .location-copy h2 {
    font-size: clamp(32px, 9.5vw, 46px);
  }

  .authority-section .authority-copy p,
  .resistance-section .section-heading p,
  .resistance-note p,
  .resistance-options p {
    font-size: 14px;
    line-height: 1.45;
  }

  .authority-section .merit-list {
    max-width: 420px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .authority-section .merit-list article,
  .resistance-card {
    min-height: auto;
    padding: 15px 16px;
    border-radius: 18px;
  }

  .authority-section .merit-list p {
    font-size: 15px;
    line-height: 1.45;
  }

  .merit-list p,
  .resistance-card h3 {
    margin-top: 12px;
  }

  .resistance-card h3 {
    font-size: 23px;
  }

  .resistance-note {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .primary-cta {
    width: 100%;
    min-height: 66px;
  }

  .hero-checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-checks span {
    min-height: 62px;
    padding: 13px 15px;
    justify-content: flex-start;
    border-radius: 16px;
    text-align: left;
  }

  .hero-checks span::before {
    content: "";
    width: 4px;
    align-self: stretch;
    margin-right: 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    flex: 0 0 auto;
  }

  .hero-checks strong {
    min-width: 38px;
    margin-right: 8px;
    font-size: 16px;
    text-align: center;
  }

  .cta-note {
    max-width: 100%;
  }

  .cta-band {
    padding: 28px 20px;
  }

  .work-gallery {
    grid-auto-rows: auto;
    gap: 12px;
  }

  .work-section .work-card {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    background-position: center;
  }

  .work-visual-one {
    background-position: 42% center;
  }

  .work-visual-two,
  .work-visual-three {
    background-position: center;
  }

  .work-card figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .work-card strong {
    font-size: 24px;
  }

  .video-feature,
  .impact-media,
  .quality-video video,
  .video-note,
  .work-section .video-feature,
  .quality-section .quality-video video {
    min-height: 230px;
  }

  .impact-heading p {
    font-size: 15px;
    line-height: 1.42;
  }

  .impact-card-copy {
    padding: 16px;
  }

  .impact-media {
    min-height: 210px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
