:root {
  --red: #d82129;
  --red-dark: #b9181f;
  --ink: #17191a;
  --ink-soft: #25292d;
  --muted: #6d7176;
  --line: #e2e0dc;
  --paper: #f3f1ed;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 24px 70px rgba(14, 16, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: #0f1113;
  transition: visibility 0s linear 0.7s, opacity 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

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

.loader-mark {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
}

.loader-mark img {
  width: 62px;
  height: 62px;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  animation: loaderLogo 1.2s ease both;
}

.loader-mark span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: loaderSpin 1s linear infinite;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(227, 38, 46, 0.8);
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderLogo {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.topbar {
  position: relative;
  z-index: 30;
  color: rgba(255, 255, 255, 0.72);
  background: #0f1113;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.topbar p {
  margin: 0;
}

.topbar-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-links a {
  color: var(--white);
  font-weight: 700;
}

.topbar-links span {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.26);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 34px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(15, 17, 19, 0.1);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.sticky .brand {
  color: var(--ink);
}

.brand img {
  width: 52px;
  height: 52px;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 17, 19, 0.08);
}

.sticky .brand img {
  border-color: #f2f2f0;
}

.brand div {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand span {
  margin-top: 4px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
}

.sticky .main-nav {
  color: #464a4e;
}

.main-nav > a:not(.btn) {
  position: relative;
  padding: 30px 0;
}

.main-nav > a:not(.btn)::after {
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width 0.2s ease;
}

.main-nav > a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: 0.2s ease;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn::before {
  position: absolute;
  top: -50%;
  left: -80%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  transform: rotate(20deg);
  transition: left 0.65s ease;
}

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

.btn:hover::before {
  left: 135%;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn svg,
.text-link svg,
.showcase-cta svg {
  width: 18px;
  height: 18px;
}

.btn-small {
  min-height: 40px;
  padding: 9px 18px;
}

.btn-red {
  color: var(--white);
  background: var(--red);
}

.btn-red:hover {
  background: var(--red-dark);
  box-shadow: 0 13px 30px rgba(227, 38, 46, 0.27);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.hero {
  position: relative;
  min-height: 770px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-media,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/local-hero.jpg");
  background-position: center 46%;
  background-size: cover;
  transform: scale(1.015);
  will-change: transform;
}

.hero-grain {
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-accent {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(227, 38, 46, 0.26);
  border-radius: 50%;
  pointer-events: none;
}

.hero-accent-one {
  top: 20%;
  right: 9%;
  width: 330px;
  height: 330px;
  animation: accentFloat 8s ease-in-out infinite;
}

.hero-accent-two {
  top: calc(20% + 36px);
  right: calc(9% + 36px);
  width: 258px;
  height: 258px;
  border-color: rgba(255, 255, 255, 0.08);
  animation: accentFloat 8s ease-in-out 0.8s infinite reverse;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 11, 13, 0.92) 0%, rgba(9, 11, 13, 0.69) 42%, rgba(9, 11, 13, 0.2) 75%),
    linear-gradient(0deg, rgba(9, 11, 13, 0.7) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 770px;
  align-items: center;
  grid-template-columns: 1fr 290px;
  gap: 80px;
  padding-top: 105px;
}

.hero-copy {
  max-width: 760px;
}

.hero-intro {
  opacity: 0;
  transform: translateY(32px);
  animation: heroEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-intro-1 {
  animation-delay: 0.55s;
}

.hero-intro-2 {
  animation-delay: 0.67s;
}

.hero-intro-3 {
  animation-delay: 0.79s;
}

.hero-intro-4 {
  animation-delay: 0.91s;
}

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

@keyframes accentFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-12px, 18px, 0);
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.73);
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 740px;
  margin-bottom: 25px;
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.065em;
}

h1 span,
h1 em {
  display: block;
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

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

.hero-card {
  align-self: end;
  margin-bottom: 110px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(15, 17, 19, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-card:hover {
  border-color: rgba(227, 38, 46, 0.55);
  box-shadow: 0 30px 90px rgba(5, 6, 7, 0.34);
}

.recommendation strong {
  display: block;
  margin-bottom: 3px;
  font: 800 36px/1 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

.recommendation p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.recommendation small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.stars {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.15em;
}

.hero-card-line {
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.16);
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: rgba(227, 38, 46, 0.15);
}

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

.hero-contact p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.hero-contact span {
  color: rgba(255, 255, 255, 0.55);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  display: grid;
  width: 32px;
  height: 50px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 3px;
  height: 8px;
  margin-top: 9px;
  border-radius: 3px;
  background: var(--red);
  animation: scrollDot 1.7s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(18px);
  }
}

.trust-strip {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  position: relative;
  display: flex;
  min-height: 122px;
  align-items: center;
  gap: 16px;
  padding: 25px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
  transition: background 0.3s ease;
}

.trust-item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.025);
}

.trust-item:hover::after {
  transform: scaleX(1);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.65;
}

.trust-number {
  color: var(--red);
  font: 800 27px/1 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--red);
}

.trust-icon svg {
  width: 19px;
  height: 19px;
}

.section {
  padding: 110px 0;
}

.choice-section {
  padding: 74px 0 84px;
  background: var(--white);
}

.choice-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.choice-intro .eyebrow {
  margin: 0;
}

.choice-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.choice-card:last-child {
  border-right: 0;
}

.choice-card::before {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(216, 33, 41, 0.17);
  border-radius: 50%;
  content: "";
  transition: transform 0.45s ease, border-color 0.35s ease;
}

.choice-card:hover,
.choice-card-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 25px 65px rgba(20, 22, 23, 0.16);
  transform: translateY(-5px);
}

.choice-card:hover::before,
.choice-card-dark::before {
  border-color: rgba(216, 33, 41, 0.5);
  transform: scale(1.18);
}

.choice-number {
  color: var(--red);
  font: 800 10px/1 "Manrope", sans-serif;
}

.choice-card small {
  color: #a1a3a4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.choice-card h3 {
  margin: 5px 0 10px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.choice-card p {
  max-width: 265px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.choice-card:hover p,
.choice-card-dark p {
  color: rgba(255, 255, 255, 0.57);
}

.choice-arrow {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--red);
  font-size: 19px;
  transition: transform 0.3s ease;
}

.choice-card:hover .choice-arrow {
  transform: translateX(5px);
}

.vehicles {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading h2,
.story h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
}

.heading-side > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stock-showcase {
  position: relative;
  display: grid;
  min-height: 420px;
  grid-template-columns: 1.45fr 0.7fr;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(18, 20, 22, 0.16);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.showcase-image {
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.stock-showcase:hover .showcase-image img {
  transform: scale(1.025);
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.showcase-kicker {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin-bottom: 18px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.showcase-copy > p:not(.showcase-kicker) {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 17px 22px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--red);
  font-size: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}

.showcase-badge strong {
  color: var(--white);
  font-size: 14px;
}

.centered {
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  max-width: 510px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 315px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  position: absolute;
  inset: auto -50px -80px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.service-card:last-child {
  border: 0;
}

.service-card:hover,
.service-card.featured {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(15, 17, 19, 0.18);
}

.service-card:hover::before,
.service-card.featured::before {
  opacity: 0.12;
  transform: scale(1);
}

.service-index {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #c9cbcd;
  font: 700 11px/1 "Manrope", sans-serif;
}

.featured .service-index,
.service-card:hover .service-index {
  color: rgba(255, 255, 255, 0.3);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #f8ecec;
  transition: transform 0.35s ease, background 0.35s ease;
}

.service-card:hover .service-icon {
  background: var(--white);
  transform: rotate(-8deg) scale(1.08);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 13px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.showroom-section {
  padding: 110px 0 0;
  background: var(--white);
  overflow: hidden;
}

.showroom-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.6fr;
  gap: 80px;
  margin-bottom: 55px;
}

.showroom-heading h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.showroom-heading h2 em {
  color: var(--red);
  font-style: normal;
}

.showroom-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.showroom-gallery {
  display: grid;
  height: 520px;
  grid-template-columns: 1.45fr 0.8fr 0.8fr;
  gap: 4px;
  padding: 0 4px;
}

.gallery-card {
  position: relative;
  height: 100%;
  margin: 0;
  background: var(--ink);
  overflow: hidden;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 11, 13, 0.8), transparent 48%);
  content: "";
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.gallery-card:hover img {
  filter: saturate(1);
  transform: scale(1.045);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.gallery-card figcaption span {
  color: var(--red);
  font: 800 10px/1 "Manrope", sans-serif;
}

.service-card:hover p,
.service-card.featured p {
  color: rgba(255, 255, 255, 0.57);
}

.story {
  display: grid;
  min-height: 670px;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--ink);
}

.story-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.story-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(21, 23, 25, 0.55));
  content: "";
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.story-badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  min-width: 190px;
  padding: 22px 25px;
  background: var(--red);
  animation: badgeFloat 4.5s ease-in-out infinite;
}

@keyframes badgeFloat {
  50% {
    transform: translateY(-10px);
  }
}

.story-badge span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-badge strong {
  font: 800 17px/1.4 "Manrope", sans-serif;
}

.story-content {
  display: flex;
  align-items: center;
}

.story-inner {
  width: min(540px, calc(100% - 80px));
  margin: 0 auto;
  padding: 70px 0;
}

.story h2 {
  margin-bottom: 25px;
}

.story-lead {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.commitment-list > div {
  display: flex;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.commitment-list span {
  padding-top: 4px;
  color: var(--red);
  font: 700 10px/1 "Manrope", sans-serif;
}

.commitment-list p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
}

.commitment-list strong {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 13px;
}

.journey {
  background: var(--paper);
}

.journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.journey-grid::before {
  position: absolute;
  top: 28px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: #d7d9da;
  content: "";
}

.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.journey-step > span {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 23px;
  place-items: center;
  border: 1px solid #d7d9da;
  border-radius: 50%;
  color: var(--red);
  background: var(--paper);
  font-size: 11px;
  font-weight: 800;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.journey-step:hover > span {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
  transform: scale(1.1);
}

.journey-step h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.journey-step p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.contact-section {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 25%, rgba(216, 33, 41, 0.28), transparent 30%),
    var(--ink);
  overflow: hidden;
}

.contact-section::after {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(216, 33, 41, 0.32);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.btn-white {
  color: var(--red);
  background: var(--white);
}

.btn-white svg {
  width: 18px;
}

.btn-outline-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-card {
  padding: 12px 32px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 90px rgba(127, 11, 17, 0.24);
}

.contact-card-block {
  display: flex;
  gap: 17px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card-block:last-child {
  border: 0;
}

.contact-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #f8eeee;
}

.contact-card-icon svg {
  width: 19px;
  height: 19px;
}

.contact-card-block div {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.contact-card-block small {
  margin-bottom: 5px;
  color: #999da0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card-block strong {
  font-size: 12px;
}

.contact-card-block span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.contact-card-block a {
  color: var(--red);
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.58);
  background: #0f1113;
  font-size: 11px;
}

.footer-main {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.1fr 0.8fr;
  gap: 60px;
  padding: 54px 0;
}

.brand-footer {
  color: var(--white);
}

.footer-main > p {
  max-width: 420px;
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 19px;
  }

  .hero-content {
    grid-template-columns: 1fr 255px;
    gap: 35px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .hero-accent {
    display: none;
  }

  .container {
    width: min(100% - 34px, 650px);
  }

  .topbar {
    display: none;
  }

  .site-header,
  .site-header.sticky {
    position: fixed;
    top: 0;
    color: var(--white);
    background: rgba(15, 17, 19, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
  }

  .site-header.sticky .brand {
    color: var(--white);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .brand strong {
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
    color: var(--white);
  }

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

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

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

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px 26px;
    color: var(--white);
    background: #0f1113;
    opacity: 0;
    transform: translateY(-12px);
    transition: 0.2s ease;
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.btn) {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav > a:not(.btn)::after {
    display: none;
  }

  .main-nav .btn {
    margin-top: 18px;
  }

  .hero,
  .hero-content {
    min-height: 740px;
  }

  .hero-media {
    background-position: 40% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 11, 13, 0.89), rgba(9, 11, 13, 0.36)),
      linear-gradient(0deg, rgba(9, 11, 13, 0.88), transparent 72%);
  }

  .hero-content {
    display: flex;
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 75px;
  }

  .hero-card,
  .hero-scroll {
    display: none;
  }

  h1 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .split-heading,
  .contact-grid,
  .showroom-heading,
  .choice-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section {
    padding: 82px 0;
  }

  .stock-showcase,
  .story {
    grid-template-columns: 1fr;
  }

  .stock-showcase {
    min-height: 0;
  }

  .showcase-image {
    height: 330px;
  }

  .story-media {
    min-height: 460px;
  }

  .showroom-gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card {
    height: 320px;
  }

  .gallery-wide {
    height: 410px;
    grid-column: 1 / -1;
  }

  .story-badge {
    right: 20px;
  }

  .story-inner {
    width: min(100% - 34px, 650px);
  }

  .contact-grid {
    gap: 45px;
  }

  .choice-card,
  .choice-card:last-child {
    min-height: 215px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .choice-grid {
    gap: 0;
  }

  .choice-card:last-child {
    border-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand div {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .trust-grid,
  .services-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .choice-section {
    padding: 60px 0 68px;
  }

  .choice-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(2) {
    min-height: 100px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 1px solid rgba(255, 255, 255, 0.11);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .story h2,
  .contact-copy h2 {
    font-size: 35px;
  }

  .showcase-image {
    height: 250px;
  }

  .showcase-copy {
    padding: 34px 25px;
  }

  .showcase-copy h3 {
    font-size: 25px;
  }

  .showroom-section {
    padding-top: 82px;
  }

  .showroom-gallery {
    display: flex;
    height: 340px;
    gap: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-card,
  .gallery-wide {
    width: 86vw;
    height: 340px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .service-card,
  .service-card:nth-child(2) {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-icon {
    margin-bottom: 34px;
  }

  .story-media {
    min-height: 390px;
  }

  .story-inner {
    width: calc(100% - 34px);
  }

  .journey-grid {
    gap: 32px;
  }

  .journey-grid::before {
    display: none;
  }

  .contact-section {
    padding: 80px 0 100px;
  }

  .contact-actions {
    flex-direction: column;
  }

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

  .contact-card {
    padding: 8px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
    padding-bottom: 74px;
  }

  .mobile-call {
    position: fixed;
    z-index: 50;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white);
    border-radius: 4px;
    background: var(--red);
    box-shadow: 0 12px 35px rgba(160, 11, 18, 0.38);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-call svg {
    width: 18px;
    height: 18px;
  }
}

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

  .page-loader {
    display: none;
  }
}
