:root {
  --bg: #070707;
  --bg-soft: #0d0d0f;
  --surface: rgba(18, 18, 20, 0.78);
  --border: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: #b7b7bd;
  --red: #ef233c;
  --green: #4ade80;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shell: 1240px;
}

/* =========================================================
   ETHAN'S AUTO CARE — PRICING PAGE
   File: styles/pricing.css
   ========================================================= */

/* ------------------------------
   Base reset
------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(229, 27, 35, 0.08), transparent 30%),
    #070707;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: #e51b23;
  color: #ffffff;
}

:focus-visible {
  outline: 3px solid rgba(229, 27, 35, 0.8);
  outline-offset: 4px;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

/* ------------------------------
   Reusable typography
------------------------------ */

.eyebrow {
  margin: 0 0 14px;
  color: #ff4c52;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 8vw, 7.2rem);
  font-weight: 800;
  line-height: 0.96;
}

h1 span {
  display: block;
  color: #f3484f;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

p {
  color: #aaaab1;
}

/* ------------------------------
   Header
------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, rgba(5,5,5,.94), rgba(5,5,5,.72));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.brand strong {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: 800;
}

.brand-dot {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239,35,60,.13);
}

.brand-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #fff;
  opacity: .78;
}

.nav {
  justify-self: center;
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}

.nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: #c9c9ce;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
  white-space: nowrap;
  transition: 180ms ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  transform: none;
}

.nav a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(239,35,60,.3);
  transform: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  box-shadow: none;
  transition: 180ms ease;
}

.header-cta:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.07);
  transform: none;
  box-shadow: none;
}

/* ------------------------------
   Buttons
------------------------------ */

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: #e51b23;
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(229, 27, 35, 0.28);
}

.button.primary:hover {
  background: #ff3038;
  box-shadow: 0 20px 46px rgba(229, 27, 35, 0.35);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.button.light {
  background: #ffffff;
  color: #111111;
}

.button.light:hover {
  background: #f0f0f0;
}

.button.outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
  background: transparent;
}

.button.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ------------------------------
   Hero
------------------------------ */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.7) 48%, rgba(0, 0, 0, 0.26) 100%),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=2200&q=85")
    center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -100px;
  bottom: -200px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(229, 27, 35, 0.28);
  filter: blur(100px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, #070707 0%, transparent 28%),
    radial-gradient(circle at 70% 38%, transparent, rgba(0, 0, 0, 0.3));
}

.hero-content {
  padding-block: 130px 150px;
}

.hero-content > * {
  max-width: 860px;
}

.status-pill {
  width: max-content;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e51b23;
  box-shadow: 0 0 16px rgba(229, 27, 35, 0.9);
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: #d0d0d3;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-pills {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.56);
  color: #f5f5f5;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

/* ------------------------------
   Shared sections
------------------------------ */

.pricing-section,
.vehicle-section,
.loyalty-section,
.extras-section,
.included-section,
.area-section,
.faq-section {
  position: relative;
  padding-block: 110px;
}

.pricing-section,
.included-section,
.faq-section {
  background: #070707;
}

.vehicle-section,
.extras-section,
.area-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(229, 27, 35, 0.07), transparent 30%),
    #0b0b0c;
}

.section-intro {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 70px;
  align-items: end;
}

.section-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-intro > p {
  margin-bottom: 4px;
  font-size: 1rem;
}

/* ------------------------------
   Pricing cards
------------------------------ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.price-card {
  position: relative;
  min-width: 0;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  background: rgba(229, 27, 35, 0.15);
  filter: blur(55px);
}

.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 27, 35, 0.32);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(229, 27, 35, 0.05);
}

.price-card.featured {
  border-color: rgba(229, 27, 35, 0.28);
  background:
    linear-gradient(145deg, rgba(229, 27, 35, 0.1), rgba(255, 255, 255, 0.025));
}

.price-card-top {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.price-card-top h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.price-block {
  min-width: 132px;
  padding: 18px 20px;
  border: 1px solid rgba(229, 27, 35, 0.24);
  border-radius: 22px;
  background: rgba(229, 27, 35, 0.09);
  text-align: center;
}

.price-block span {
  display: block;
  margin-bottom: 2px;
  color: #d3d3d6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-block strong {
  display: block;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price-description {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  font-size: 1rem;
}

.included {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.2);
}

.included-label {
  margin-bottom: 17px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.included ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.included li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d8d8db;
  font-size: 0.93rem;
}

.included li span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(229, 27, 35, 0.15);
  color: #ff565d;
  font-size: 0.77rem;
  font-weight: 900;
}

.price-card-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.price-card-footer p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.price-card-footer .button {
  width: 100%;
}

/* ------------------------------
   Vehicle cards
------------------------------ */

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.vehicle-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(229, 27, 35, 0.12);
  filter: blur(38px);
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 27, 35, 0.3);
  background:
    linear-gradient(155deg, rgba(229, 27, 35, 0.08), rgba(255, 255, 255, 0.02));
}

.vehicle-card > span {
  margin-bottom: 52px;
  color: #ff4d54;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.vehicle-card p {
  margin-bottom: 26px;
  font-size: 0.86rem;
}

.vehicle-card strong {
  margin-top: auto;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
}

/* ------------------------------
   Loyalty section
------------------------------ */

.loyalty-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 25%),
    linear-gradient(135deg, #9f0f16, #e51b23 52%, #ff3f47);
}

.loyalty-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.loyalty-copy .eyebrow,
.loyalty-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.loyalty-copy h2 {
  max-width: 670px;
  margin-bottom: 18px;
  color: #ffffff;
}

.loyalty-copy > p {
  max-width: 650px;
  margin-bottom: 34px;
}

.loyalty-steps {
  display: grid;
  gap: 14px;
}

.loyalty-steps article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(10px);
}

.loyalty-steps article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #d2141c;
  font-size: 0.76rem;
  font-weight: 900;
}

.loyalty-steps strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 0.95rem;
}

.loyalty-steps p {
  margin-bottom: 0;
  font-size: 0.83rem;
}

.loyalty-badge {
  aspect-ratio: 1;
  max-width: 330px;
  margin-left: auto;
  display: grid;
  place-content: center;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.22), transparent 30%),
    rgba(0, 0, 0, 0.15);
  text-align: center;
  box-shadow:
    0 34px 75px rgba(56, 0, 3, 0.28),
    inset 0 0 0 16px rgba(255, 255, 255, 0.045);
}

.loyalty-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loyalty-badge strong {
  display: block;
  color: #ffffff;
  font-size: clamp(3.3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.loyalty-badge small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ------------------------------
   Extras section
------------------------------ */

.extras-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: start;
}

.extras-layout > div:first-child {
  position: sticky;
  top: 130px;
}

.extras-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
}

.extras-grid {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.extras-grid span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  color: #eeeeef;
  font-size: 0.88rem;
  font-weight: 700;
}

.extras-card > p:last-child {
  margin-bottom: 0;
  padding: 18px;
  border-left: 3px solid #e51b23;
  border-radius: 0 14px 14px 0;
  background: rgba(229, 27, 35, 0.07);
  font-size: 0.88rem;
}

/* ------------------------------
   Benefits
------------------------------ */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid article {
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.benefit-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 27, 35, 0.28);
}

.benefit-grid article > span {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(229, 27, 35, 0.14);
  color: #ff4d54;
  font-size: 0.74rem;
  font-weight: 900;
}

.benefit-grid p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

/* ------------------------------
   Service areas
------------------------------ */

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: center;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span {
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f3;
  font-size: 0.86rem;
  font-weight: 700;
}

/* ------------------------------
   FAQ
------------------------------ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.faq-grid h3 {
  padding-right: 40px;
  position: relative;
}

.faq-grid h3::after {
  content: "?";
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(229, 27, 35, 0.14);
  color: #ff4d54;
  font-size: 0.8rem;
  font-weight: 900;
}

.faq-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ------------------------------
   Booking CTA
------------------------------ */

.booking-cta {
  padding-block: 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.11), transparent 28%),
    linear-gradient(135deg, #ad1118, #e51b23);
}

.booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.booking-cta .eyebrow,
.booking-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.booking-cta h2 {
  max-width: 700px;
  margin-bottom: 12px;
  color: #ffffff;
}

.booking-cta p {
  margin-bottom: 0;
}

.cta-actions {
  min-width: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ------------------------------
   Footer
------------------------------ */

.site-footer {
  padding-top: 80px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(180px, 0.7fr));
  gap: 60px;
}

.footer-brand p {
  max-width: 430px;
  margin: 22px 0 0;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #9d9da3;
  font-size: 0.87rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #77777d;
  font-size: 0.78rem;
}


/* ------------------------------
   Accessible mobile menu
------------------------------ */

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-size: .82rem;
  font-weight: 800;
  user-select: none;
  transition:
    background .2s ease,
    border-color .2s ease;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary:hover,
.mobile-menu[open] summary {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.09);
}

.mobile-menu summary:focus-visible {
  outline: 3px solid rgba(239,35,60,.75);
  outline-offset: 4px;
}

.hamburger {
  width: 20px;
  display: grid;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition:
    transform .2s ease,
    opacity .2s ease;
}

.mobile-menu[open] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(320px, calc(100vw - 30px));
  padding: 12px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(10,10,11,.97);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 15px;
  color: #c9c9ce;
  font-size: .9rem;
  font-weight: 750;
  transition:
    color .2s ease,
    background .2s ease;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.mobile-menu-panel a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(239,35,60,.28);
}

.mobile-menu-panel .mobile-phone {
  margin-top: 6px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  background: rgba(255,255,255,.05);
}

/* ------------------------------
   Responsive
------------------------------ */

@media (max-width: 1120px) {
  .nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .vehicle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 690px;
    background-position: 62% center;
  }

  .hero-content {
    padding-block: 110px 130px;
  }

  .section-intro,
  .extras-layout,
  .area-layout,
  .loyalty-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .section-intro {
    align-items: start;
  }

  .pricing-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .loyalty-badge {
    width: min(320px, 100%);
    margin: 0;
  }

  .extras-layout > div:first-child {
    position: static;
  }

  .booking-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 74px;
  }

  .header-cta {
    padding: 11px 13px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-block: 90px 110px;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .pricing-section,
  .vehicle-section,
  .loyalty-section,
  .extras-section,
  .included-section,
  .area-section,
  .faq-section {
    padding-block: 78px;
  }

  .price-card {
    padding: 24px;
    border-radius: 24px;
  }

  .price-card-top {
    align-items: stretch;
    flex-direction: column;
  }

  .price-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .price-block span {
    margin-bottom: 0;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-card {
    min-height: 260px;
  }

  .extras-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.9rem;
  }

  .brand strong {
    font-size: 0.8rem;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.9rem, 17vw, 4.5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-pills {
    align-items: flex-start;
    flex-direction: column;
  }

  .vehicle-grid,
  .benefit-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .vehicle-card,
  .benefit-grid article {
    min-height: auto;
  }

  .vehicle-card > span {
    margin-bottom: 34px;
  }

  .loyalty-steps article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .loyalty-steps article > span {
    width: 42px;
    height: 42px;
  }

  .loyalty-badge {
    max-width: 270px;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

/* ------------------------------
   Print
------------------------------ */

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  .site-header,
  .hero-actions,
  .booking-cta,
  .site-footer {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 30px 0;
    background: #ffffff !important;
  }

  .hero::before,
  .hero::after,
  .hero-overlay {
    display: none;
  }

  .hero-content {
    padding: 0;
  }

  .hero h1,
  .hero h1 span,
  h2,
  h3,
  strong {
    color: #000000 !important;
  }

  p,
  .eyebrow,
  .status-pill,
  .hero-pills span {
    color: #333333 !important;
  }

  .pricing-section,
  .vehicle-section,
  .loyalty-section,
  .extras-section,
  .included-section,
  .area-section,
  .faq-section {
    padding-block: 28px;
    background: #ffffff !important;
  }

  .price-card,
  .vehicle-card,
  .extras-card,
  .benefit-grid article,
  .faq-grid article,
  .included {
    break-inside: avoid;
    border: 1px solid #cccccc;
    background: #ffffff !important;
    box-shadow: none;
  }

  .loyalty-card {
    color: #000000;
  }

  .loyalty-badge {
    border-color: #333333;
    background: #ffffff;
    box-shadow: none;
  }
}


/* Exact shared navbar responsive behaviour */
@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .nav a {
    padding-inline: 11px;
    font-size: .79rem;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(var(--shell), calc(100% - 30px));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: .94rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: .76rem;
  }
}


/* Final mobile navigation behaviour */
@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none !important;
  }

  .mobile-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .mobile-menu {
    grid-column: 2;
  }

  .menu-label {
    display: none;
  }

  .mobile-menu summary {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .mobile-menu-panel {
    right: 0;
  }
}