:root {
  --black: #111317;
  --white: #ffffff;
  --red: #c80c1f;
  --red-soft: #ee263a;
  --gray-100: #f4f4f4;
  --gray-300: #c7c7c7;
  --gray-700: #252525;
  --max-width: 1160px;
  --radius-lg: 24px;
  --radius-md: 14px;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--white);
  background: radial-gradient(circle at 20% 10%, #2b2e34 0%, #171a20 42%, #0f1115 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Intro Rust', 'Arial Black', sans-serif;
  letter-spacing: 0.3px;
}

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

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 16, 20, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: clamp(74px, 10vw, 120px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.main-nav {
  display: flex;
  gap: 22px;
  color: #ececec;
}

.main-nav a {
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--red-soft);
}

.main-nav a.is-active {
  color: #ffffff;
  font-weight: 700;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(200, 12, 31, 0.35);
}

.btn-primary:hover {
  background: var(--red-soft);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--white);
}

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

.btn-accent:hover {
  background: #ececec;
}

.btn-light {
  background: #f0f0f0;
  color: #151515;
  border: 1px solid #f0f0f0;
}

.btn-light:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.section-cta .btn-light {
  min-width: 210px;
  text-align: center;
  line-height: 1.1;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-cta {
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -18% -12% 18% -12%;
  background:
    radial-gradient(58% 62% at 16% 8%, rgba(200, 12, 31, 0.34) 0%, rgba(200, 12, 31, 0.18) 36%, rgba(200, 12, 31, 0) 74%),
    radial-gradient(46% 52% at 78% 12%, rgba(238, 38, 58, 0.18) 0%, rgba(238, 38, 58, 0.08) 36%, rgba(238, 38, 58, 0) 72%);
  filter: blur(14px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 45% at 48% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(10, 10, 12, 0.62), rgba(10, 10, 12, 0.44)),
    url('images-logo/lavage.jpg') center center / cover no-repeat;
  opacity: 0.24;
  filter: saturate(0.9) contrast(1.05);
}

.hero-grid {
  padding: clamp(56px, 8vw, 96px) 0 72px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.kicker,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.84rem;
  color: #f5b2b8;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 12px 0 18px;
  max-width: 13ch;
}

.hero-content h1 span {
  color: var(--red-soft);
}

.hero-copy {
  max-width: 52ch;
  color: #f0f0f0;
}

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

.hero-actions.compact {
  margin-top: 16px;
}

.hero-proof {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #dedede;
  font-size: 0.95rem;
}

.hero-proof li {
  padding-left: 26px;
  position: relative;
}

.hero-proof li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--red-soft);
  font-weight: 800;
}

.hero-card {
  align-self: start;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}

.card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f7c8cd;
  margin-bottom: 14px;
}

.hero-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}

.hero-card p {
  color: #f3f3f3;
  margin-bottom: 18px;
}

.section {
  padding: clamp(58px, 8vw, 90px) 0;
}

.page-hero {
  padding-top: clamp(40px, 7vw, 78px);
  padding-bottom: clamp(28px, 6vw, 56px);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-top: 10px;
  line-height: 1.1;
  max-width: 16ch;
}

.page-lead {
  margin-top: 14px;
  max-width: 70ch;
  color: #ececec;
}

.legal-layout {
  padding-top: 24px;
}

.legal-content {
  display: grid;
  gap: 14px;
}

.legal-section {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 18px 16px;
}

.legal-section h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 8px;
}

.legal-section p,
.legal-section li {
  color: #ececec;
}

.legal-section ul {
  margin-left: 18px;
  display: grid;
  gap: 6px;
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
}

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

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

.service-group + .service-group {
  margin-top: 44px;
}

.service-subhead {
  margin-bottom: 16px;
}

.service-subhead h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.service-card {
  background: #ffffff;
  color: #121212;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid #ececec;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.45rem;
}

.price {
  color: var(--red);
  font-weight: 800;
  margin: 10px 0 14px;
}

.duration {
  font-size: 0.9rem;
  font-weight: 700;
  margin: -6px 0 14px;
  color: #4a4a4a;
}

.vehicle-price-note {
  display: inline-block;
  margin: -4px 0 12px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(200, 12, 31, 0.3);
  background: rgba(200, 12, 31, 0.08);
  color: #a10f21;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.package-note {
  margin: -6px 0 12px;
  font-size: 0.9rem;
  color: #5a5a5a;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #333;
  margin-bottom: 18px;
}

.service-card li {
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: '\2022';
  color: var(--red);
  position: absolute;
  left: 4px;
}

.service-card .btn {
  margin-top: auto;
}

.important-line {
  font-weight: 700;
  color: #a80f23;
  text-transform: uppercase;
}

.combo-price {
  margin: 2px 0 14px;
  color: var(--red);
  font-weight: 800;
}

.service-card.featured {
  background: linear-gradient(170deg, #242830, #15181f);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card.featured .price {
  color: #ff5b6b;
}

.service-card.featured ul {
  color: #f0f0f0;
}

.service-card.featured .duration {
  color: #f7c8cd;
}

.service-card.featured .vehicle-price-note {
  color: #ffd3d9;
  background: rgba(255, 128, 143, 0.2);
  border-color: rgba(255, 179, 189, 0.35);
}

.service-card.featured .package-note {
  color: #f5d7da;
}

.service-card.featured .important-line,
.service-card.featured .combo-price {
  color: #ffb8c1;
}

.devis-note {
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid var(--red);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, 0.06);
}

.devis-note h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin-bottom: 10px;
}

.devis-note p {
  color: #efefef;
  margin-bottom: 12px;
}

.devis-note ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.devis-note li {
  color: #f1f1f1;
  position: relative;
  padding-left: 18px;
}

.devis-note li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #ff7a89;
}

.devis-note-end {
  margin-top: 14px;
  font-weight: 700;
}

.quote-form-block {
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
}

.quote-toggle {
  margin-top: 6px;
}

.quote-form-panel {
  margin-top: 16px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f0f0f0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(238, 38, 58, 0.9);
  box-shadow: 0 0 0 3px rgba(238, 38, 58, 0.18);
}

.form-field select option {
  color: #151515;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ebebeb;
  font-size: 0.9rem;
}

.form-check a {
  color: #ffd2d8;
  text-decoration: underline;
}

.form-check input {
  margin-top: 3px;
}

.quote-form-actions {
  display: grid;
  gap: 8px;
}

.quote-form-feedback {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: #f5c4ca;
}

.booking-direct-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  display: grid;
  gap: 12px;
}

.booking-direct-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.booking-direct-card p {
  color: #ededed;
}

.booking-alert {
  color: #f0473e;
  font-weight: 700;
}

.booking-devis-cta {
  justify-self: start;
}

.booking-embed {
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #ffffff;
}

.booking-embed iframe {
  width: 100%;
  min-height: 860px;
  border: 0;
  display: block;
}

.rental-card {
  min-height: 100%;
}

.rental-media {
  --car-scale: 1;
  --car-y: 0%;
  --car-scale-mobile: var(--car-scale);
  --car-y-mobile: var(--car-y);
  --media-bg: linear-gradient(145deg, #151922 0%, #0f1219 100%);
  --media-border: rgba(255, 255, 255, 0.14);
  --media-glow: rgba(240, 71, 62, 0.26);
  margin: 0 0 14px;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 10px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
}

.rental-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--media-bg);
  border: 1px solid var(--media-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.rental-media::after {
  content: "";
  position: absolute;
  inset: 8% 10%;
  border-radius: 24px;
  background: var(--media-glow);
  filter: blur(28px);
  opacity: 0.48;
  z-index: 0;
}

.rental-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: translateY(var(--car-y)) scale(var(--car-scale));
  transform-origin: center center;
  display: block;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.55));
}

.rental-media-rline {
  --car-scale: 1.08;
  --car-y: 2%;
  --car-scale-mobile: 1.04;
  --media-bg: linear-gradient(145deg, #0d1118 0%, #192234 56%, #65111b 100%);
  --media-glow: rgba(200, 12, 31, 0.34);
}

.rental-media-classa {
  --car-scale: 1.14;
  --car-y: 2%;
  --car-scale-mobile: 1.1;
  --media-bg: linear-gradient(145deg, #0f1218 0%, #202937 52%, #4c1620 100%);
  --media-glow: rgba(188, 44, 61, 0.33);
}

.rental-media-gti {
  --car-scale: 1.07;
  --car-y: 2%;
  --car-scale-mobile: 1.03;
  --media-bg: linear-gradient(145deg, #120f14 0%, #2b121a 40%, #6f1020 100%);
  --media-glow: rgba(220, 30, 56, 0.36);
}

.rental-media-clio {
  --car-scale: 1.08;
  --car-y: 1%;
  --car-scale-mobile: 1.05;
  --media-bg:
    radial-gradient(circle at 22% 26%, rgba(11, 58, 134, 0.66), transparent 52%),
    radial-gradient(circle at 80% 74%, rgba(196, 13, 36, 0.62), transparent 58%),
    linear-gradient(140deg, #070a10 0%, #121b2c 45%, #2a0f17 100%);
  --media-border: rgba(255, 255, 255, 0.24);
  --media-glow: rgba(47, 108, 223, 0.44);
}

.deposit-line {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1f1f1f;
  margin: -2px 0 10px;
}

.rental-note {
  color: #4f4f4f;
  margin-bottom: 14px;
}

.rental-cta {
  margin-top: auto;
}

.service-card.featured .deposit-line {
  color: #ffd0d6;
}

.service-card.featured .rental-note {
  color: #f0d9dc;
}

.rental-card .badge {
  margin-top: 2px;
  margin-bottom: 12px;
}

.best-seller-card {
  margin-bottom: 24px;
  padding: 30px;
  border-width: 2px;
  border-color: rgba(255, 118, 132, 0.5);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.best-seller-card .badge {
  font-size: 0.86rem;
  padding: 8px 14px;
  margin-bottom: 14px;
}

.best-seller-card h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.05;
}

.best-seller-card .price {
  font-size: 1.3rem;
}

.best-seller-card .duration {
  font-size: 1rem;
  margin-bottom: 16px;
}

.best-seller-card ul {
  gap: 10px;
  margin-bottom: 22px;
}

.best-seller-card .btn {
  min-height: 48px;
  padding-inline: 26px;
}

.specific-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.specific-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.specific-list li {
  position: relative;
  padding-left: 18px;
  color: #f1f1f1;
}

.specific-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #ff7a89;
}

.specific-actions {
  margin-top: 14px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #efefef;
}

.pricing-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  color: #121212;
}

.pricing-table th,
.pricing-table td {
  padding: 15px 16px;
  border: 1px solid #1a1a1a;
  text-align: left;
  font-weight: 700;
}

.pricing-table thead th {
  background: #e3e3e3;
}

.pricing-table tbody td:last-child {
  text-align: center;
  white-space: nowrap;
}

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

.cta-stack {
  display: grid;
  gap: 10px;
}

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

.badge {
  align-self: flex-start;
  background: rgba(200, 12, 31, 0.16);
  color: #ffced4;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.section-dark {
  background: linear-gradient(140deg, #262b34, #1b1f28 62%, #471018 100%);
}

.seo-section {
  padding-top: 38px;
  background: linear-gradient(145deg, #f4f1ee, #ece7e2);
  color: #171717;
}

.seo-copy {
  max-width: 78ch;
  color: #2f2f2f;
}

.seo-section .section-kicker {
  color: #a31326;
}

.seo-section .section-head h2 {
  color: #171717;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.points {
  display: grid;
  gap: 18px;
  color: #f2f2f2;
}

.points p {
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.08);
}

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

.step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 24px;
}

.step span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  font-weight: 800;
  margin-bottom: 14px;
}

.step h3 {
  margin-bottom: 8px;
}

.section-cta {
  padding-top: 28px;
}

.cta-box {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #bc0a1d, #7b0411);
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cta-box h2 {
  margin-top: 8px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

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

.faq-grid details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-grid p {
  margin-top: 10px;
  color: #e5e5e5;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0 36px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #d8d8d8;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

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

.footer-links a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  padding: 2px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  filter: saturate(0.92) contrast(1.06);
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .steps,
  .booking-grid,
  .info-grid,
  .quote-form-grid {
    grid-template-columns: 1fr;
  }

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

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

  .nav-cta {
    display: inline-flex;
    padding: 10px 14px;
    font-size: 0.86rem;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    min-height: 58px;
  }

  .brand-logo {
    width: clamp(64px, 20vw, 98px);
  }

  .menu-btn {
    display: inline-flex;
    position: relative;
    z-index: 60;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(84vw, 360px);
    height: 100dvh;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(13, 15, 20, 0.98), rgba(9, 10, 14, 0.98));
    border-radius: 0;
    padding: 88px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateX(104%);
    pointer-events: none;
    transition: transform 0.24s ease;
    z-index: 55;
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.38);
  }

  .main-nav a {
    font-size: 1.08rem;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
  }

  .main-nav a:hover {
    color: #ffffff;
    background: rgba(200, 12, 31, 0.25);
  }

  .main-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .hero-grid {
    padding-top: 42px;
  }

  .cta-box,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .page-location .nav-cta {
    display: none;
  }

  .page-location .page-hero {
    padding-top: 26px;
    padding-bottom: 18px;
  }

  .page-location .page-hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    max-width: 100%;
  }

  .page-location .page-lead {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .page-location .section-head h2 {
    font-size: clamp(1.45rem, 6.4vw, 2rem);
  }

  .page-location .cards {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .page-location .service-card {
    padding: 16px;
    align-items: flex-start;
  }

  .vehicle-price-note,
  .service-card.featured .vehicle-price-note {
    display: block;
    margin: -2px 0 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #b11429;
    font-size: 0.8rem;
    font-weight: 800;
  }

  .page-location .rental-media {
    width: 220px !important;
    max-width: 72vw;
    margin: 0 auto 12px !important;
    border-radius: 10px;
  }

  .page-location .rental-media img {
    object-position: center center;
    transform: translateY(var(--car-y-mobile)) scale(var(--car-scale-mobile));
  }

  .page-location .rental-cta {
    width: min(100%, 260px);
    min-height: 44px;
  }

  .page-location #snapchat-contact .cta-box {
    width: 100%;
    gap: 14px;
  }

  .page-location #snapchat-contact .cta-stack {
    width: 100%;
  }

  .page-location #snapchat-contact .cta-stack .btn {
    width: 100%;
  }
}

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

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-proof,
  .service-card p,
  .service-card li,
  .faq-grid p,
  .step p {
    font-size: 0.95rem;
  }

  .page-location .section {
    padding: 44px 0;
  }

  .page-location .section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.13em;
  }

  .page-location .service-card h3 {
    font-size: 1.3rem;
  }

  .page-location .rental-media {
    width: 190px !important;
    max-width: 68vw;
  }

  .page-location .price {
    font-size: 1.02rem;
    margin-bottom: 10px;
  }

  .page-location .deposit-line,
  .page-location .rental-note {
    font-size: 0.92rem;
  }

  .best-seller-card {
    padding: 24px 20px;
  }

  .best-seller-card h3 {
    font-size: 1.85rem;
  }
}
