:root {
  --black: #0a0a0a;
  --charcoal: #171717;
  --white: #ffffff;
  --soft: #f5f5f5;
  --line: #e5e5e5;
  --muted: #737373;
  --text: #525252;
  --green: #00bc7d;
  --green-bright: #00d492;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-main: system-ui, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
  border-radius: 0;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transform: translateY(-72px);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  outline: 3px solid rgba(0, 188, 125, 0.35);
  outline-offset: 3px;
  transform: translateY(0);
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 1088px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--white);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: flex;
  width: 100%;
  max-width: 1536px;
  height: 97px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand-pill {
  display: inline-flex;
  min-width: 132px;
  max-width: 300px;
  min-height: 42px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 8px 14px;
  color: var(--black);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand-pill__image {
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.brand-placeholder__mark {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, transparent 44%, rgba(10, 10, 10, 0.2) 45%, rgba(10, 10, 10, 0.2) 55%, transparent 56%),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.brand-placeholder__text {
  color: #404040;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-nav {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  color: var(--white);
}

.header-actions,
.hero__actions,
.quick-cta__actions,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-actions,
.quick-cta__actions {
  justify-content: flex-end;
}

.header-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.brand-pill:focus-visible,
.menu-button:focus-visible,
.primary-nav a:focus-visible,
.mobile-nav a:focus-visible,
.mobile-action-bar a:focus-visible,
.social-card:focus-visible,
.faq-question:focus-visible,
.journey-form :is(input, select, textarea):focus {
  outline: 3px solid rgba(0, 188, 125, 0.35);
  outline-offset: 3px;
}

.button--light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
  background: #f1f1f1;
  border-color: #f1f1f1;
}

.button--dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #252525;
  border-color: #252525;
}

.button--outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
}

.button--whatsapp {
  color: var(--black);
  background: var(--green);
  border-color: var(--green);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: var(--green-bright);
  border-color: var(--green-bright);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
}

.mobile-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 822px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.78) 34%, rgba(10, 10, 10, 0.18) 70%, rgba(10, 10, 10, 0.42) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.44) 100%);
}

.hero__content {
  display: flex;
  min-height: 822px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 112px;
  padding-bottom: 128px;
}

.eyebrow-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow-pill span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 188, 125, 0.9);
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
}

.hero p {
  max-width: 642px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.45;
}

.hero__actions {
  margin-top: 34px;
}

.trust-list {
  display: flex;
  max-width: 720px;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.trust-list .icon {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.quick-cta {
  color: var(--white);
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-cta__inner {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.quick-cta h2 {
  max-width: 520px;
  margin: 0;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  color: var(--white);
  background: var(--black);
}

.section-heading {
  max-width: 768px;
  margin-bottom: 56px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section--dark .eyebrow {
  color: var(--green-bright);
}

.section-heading h2,
.split__content h2,
.contact__content h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.split__content p,
.contact__content > p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
}

.section--dark .section-heading p:not(.eyebrow),
.section--dark .split__content p,
.section--dark .contact__content > p {
  color: rgba(255, 255, 255, 0.72);
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.service-card,
.info-card,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.service-card {
  min-height: 193px;
  padding: 24px;
}

.icon-box {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--black);
  border-radius: 14px;
}

.icon-box .icon {
  width: 22px;
  height: 22px;
}

.service-card h3,
.info-card h3 {
  margin: 22px 0 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card p,
.info-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.split {
  display: grid;
  align-items: center;
  gap: 64px;
}

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

.split--about {
  grid-template-columns: minmax(0, 448px) minmax(0, 1fr);
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle__image {
  height: 691px;
  background: #d8d8d8;
}

.vehicle__image img {
  object-position: center;
}

.split__content {
  max-width: 608px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-grid li {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-grid .icon {
  width: 18px;
  height: 18px;
}

.about__image {
  align-self: center;
  height: 560px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat-grid div {
  min-height: 112px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.stat-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.inline-actions {
  margin-top: 34px;
}

.trust {
  border-top: 1px solid var(--soft);
}

.badge-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.badge-list li {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.journey-card {
  position: relative;
  isolation: isolate;
  min-height: 365px;
  overflow: hidden;
  margin: 0;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-md);
}

.journey-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 28%, rgba(10, 10, 10, 0.78) 100%);
}

.journey-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-card h3 {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.gallery .section-heading {
  max-width: 690px;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 292px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  background: #252525;
  border-radius: var(--radius-md);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card {
  min-height: 232px;
  padding: 32px;
  text-align: center;
}

.info-card .icon-box {
  margin: 0 auto;
}

.online .section-heading {
  max-width: 710px;
}

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

.review-card {
  display: flex;
  min-height: 284px;
  flex-direction: column;
  padding: 24px;
}

.stars {
  display: flex;
  gap: 4px;
  color: #f4b000;
}

.stars .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}

.review-card p {
  margin: 22px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.review-card footer {
  margin-top: auto;
  padding-top: 24px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
}

.review-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.social-card {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 14px;
  padding: 20px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-weight: 900;
}

.social-card .icon {
  width: 22px;
  height: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  color: var(--black);
  background: var(--white);
  border: 0;
  text-align: left;
}

.faq-question span {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.faq-question .icon {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 160ms ease;
}

.faq-item.is-open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.contact {
  padding: 96px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 608px);
  gap: 80px;
  align-items: start;
}

.contact__content {
  max-width: 520px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  font-style: normal;
}

.contact-list a,
.contact-list p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.contact-list .icon {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.contact-list strong,
.contact-list span span {
  display: block;
}

.contact-list strong {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-form {
  color: var(--black);
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.journey-form input,
.journey-form select,
.journey-form textarea,
.journey-form .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  min-width: 0;
  color: var(--black);
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

.journey-form input,
.journey-form select,
.journey-form .wpcf7-form-control:not(.wpcf7-submit):not(textarea) {
  height: 44px;
  padding: 0 13px;
}

.journey-form textarea,
.journey-form .wpcf7-textarea {
  resize: vertical;
  min-height: 116px;
  padding: 12px 13px;
}

.journey-form ::placeholder {
  color: #a3a3a3;
}

.journey-form__button {
  width: 100%;
  min-height: 50px;
  margin-top: 20px;
}

.journey-form .wpcf7-submit {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.journey-form .wpcf7 form,
.journey-form .wpcf7 p {
  margin: 0;
}

.journey-form .wpcf7 form {
  display: grid;
  gap: 16px;
}

.journey-form .wpcf7 label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.journey-form .wpcf7-not-valid-tip,
.journey-form .wpcf7-response-output {
  margin-top: 8px;
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
}

.journey-form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 10px 12px;
  border: 1px solid currentColor;
  border-radius: 12px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 58px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.footer-logo img {
  max-width: 100%;
  max-height: auto;
  object-fit: contain;
}

.site-footer strong,
.site-footer h3 {
  display: block;
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  max-width: 320px;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
  max-width: none;
  margin: 0;
  font-size: 13px;
}

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1180px) {
  .primary-nav__list {
    gap: 18px;
  }

  .header-actions .button {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .gallery-grid {
    grid-auto-rows: 260px;
  }

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

@media (max-width: 980px) {
  .site-header__inner {
    height: 72px;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    padding: 0 20px 18px;
    background: rgba(10, 10, 10, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.is-open .mobile-nav {
    display: block;
  }

  .site-header.is-open .mobile-nav__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
  }

  .hero,
  .hero__content {
    min-height: 700px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.76) 48%, rgba(10, 10, 10, 0.34) 100%),
      linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.6) 100%);
  }

  .hero h1 {
    max-width: 620px;
    font-size: 56px;
  }

  .hero p {
    max-width: 560px;
    font-size: 18px;
  }

  .quick-cta__inner,
  .split,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .quick-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .quick-cta__actions {
    justify-content: flex-start;
  }

  .split,
  .contact__grid {
    gap: 42px;
  }

  .split__content,
  .contact__content {
    max-width: 720px;
  }

  .vehicle__image,
  .about__image {
    height: 520px;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .container,
  .site-header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-pill {
    width: 122px;
    min-height: 38px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .brand-placeholder__mark {
    width: 22px;
    height: 22px;
  }

  .hero,
  .hero__content {
    min-height: 630px;
  }

  .hero__content {
    padding-top: 78px;
    padding-bottom: 72px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 42px;
    line-height: 1.04;
  }

  .hero p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__actions,
  .inline-actions {
    width: 100%;
  }

  .hero__actions .button,
  .inline-actions .button {
    flex: 1 1 100%;
  }

  .quick-cta {
    background: #111111;
  }

  .quick-cta__inner {
    min-height: auto;
    gap: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .quick-cta__actions {
    display: none;
  }

  .trust-list {
    gap: 8px;
    margin-top: 28px;
  }

  .trust-list li {
    font-size: 12px;
  }

  .quick-cta h2,
  .section-heading h2,
  .split__content h2,
  .contact__content h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section {
    padding: 64px 0;
  }

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

  .section-heading p:not(.eyebrow),
  .split__content p,
  .contact__content > p {
    font-size: 16px;
  }

  .services__grid,
  .payment-grid,
  .review-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .journey-card {
    min-height: 260px;
  }

  .journey-card h3 {
    right: 16px;
    bottom: 16px;
    left: 16px;
    font-size: 20px;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }

  .vehicle__image,
  .about__image {
    height: 420px;
  }

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

  .badge-list {
    justify-content: flex-start;
  }

  .badge-list li {
    font-size: 12px;
  }

  .faq-question {
    min-height: 68px;
    padding: 20px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .contact {
    padding-bottom: 72px;
  }

  .journey-form {
    padding: 20px;
    border-radius: 18px;
  }

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

  .site-footer__grid,
  .site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    align-items: start;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    color: var(--white);
    background: rgba(10, 10, 10, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-action-bar a:nth-child(2) {
    color: var(--black);
    background: var(--green);
  }

  .mobile-action-bar .icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 520px) {
  .hero,
  .hero__content {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .eyebrow-pill {
    font-size: 12px;
  }

  .quick-cta h2,
  .section-heading h2,
  .split__content h2,
  .contact__content h2 {
    font-size: 30px;
  }

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

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .gallery-item {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .gallery-item--large {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .journey-card {
    min-height: 260px;
  }

  .service-card,
  .info-card,
  .review-card {
    padding: 22px;
  }

  .vehicle__image,
  .about__image {
    height: 360px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
