/* ═══════════════════════════════════════════════════════════════
   SILVERDALE MECHANICAL — Premium Theme
   ═══════════════════════════════════════════════════════════════ */

:root {
  --red:       #0072BB;
  --red-dark:  #005A94;
  --red-glow:  rgba(0,114,187,0.11);
  --dark:      #C1C7D0;
  --dark2:     #CDD2DA;
  --dark3:     #AEB4BE;
  --mid:       #8E96A3;
  --steel:     #505864;
  --silver:    #505864;
  --light:     #1F2937;
  --white:     #FFFFFF;
  --heading:   #111827;
  --text-muted:#454F5C;
  --border:    #9DA4AF;
  --surface:   #C7CDD5;
  --surface-up:#D6DAE2;
  --brand-navy:#1A4374;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-hero:    'Bebas Neue', 'Barlow Condensed', sans-serif;

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 72px;
  --nav-logo-inset: 7px;
  /* 2/3 of logo sits in the nav bar; bottom 1/3 overlaps the hero */
  --nav-logo-height: calc((var(--nav-h) - var(--nav-logo-inset)) * 1.5);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }
iframe { display: block; }

/* scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark3); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  min-width: 0;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-primary:active { transform: none; }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--red); background: rgba(0,114,187,0.05); color: var(--red-dark); }

.full-w { width: 100%; }

/* ── SECTION LABELS ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--red);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.section-tag.light { color: var(--red); border-color: rgba(0,114,187,0.35); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--red); }
.section-title.light { color: var(--heading); }

.section-sub {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-sub.light { color: var(--text-muted); }

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════ NAV ══════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(214, 218, 226, 0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
  overflow: visible;
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(17,24,39,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: var(--nav-h);
  gap: 1.5rem;
  overflow: visible;
}
.nav-logo {
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  height: var(--nav-h);
  padding-top: var(--nav-logo-inset);
  overflow: visible;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo .site-logo {
  display: block;
  width: auto;
  height: var(--nav-logo-height);
  max-width: min(calc(var(--nav-logo-height) * 1.175), 48vw);
  object-fit: contain;
}
.site-logo--footer {
  display: block;
  width: auto;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.logo-banner {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--brand-navy);
  padding: 0.38rem 0.8rem 0.42rem;
  gap: 0.28rem;
  box-shadow: 0 1px 6px rgba(17,24,39,0.12);
}
.logo-line {
  height: 1px;
  background: var(--white);
  margin: 0 0.12rem;
}
.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.7rem, 1.7vw, 0.86rem);
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.15;
  text-align: center;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2vw, 2.5rem);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--heading); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-cta--outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--heading);
}
.nav-cta--outline:hover { background: rgba(0,114,187,0.05); border-color: var(--red); color: var(--red-dark); }

/* Nav CTA pair */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex-shrink: 0;
}
.nav-ctas { display: flex; gap: 0.6rem; align-items: center; flex-shrink: 0; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  letter-spacing: 0.04em;
  color: var(--heading);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--red);
  transition: color 0.2s;
}
.nav-phone:hover,
.nav-phone:hover svg { color: var(--red-dark); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface-up);
  border-top: 1px solid var(--border);
  padding: 0.5rem 1.5rem 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-menu.open {
  display: flex;
  max-height: 500px;
}
.mm-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mm-link:last-of-type { border-bottom: none; }
.mm-link:hover, .mm-link:active { color: var(--heading); }
.mm-cta {
  margin-top: 1.2rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mm-cta:hover { background: var(--red-dark); }

/* ═══════════════════════════════════════════ HERO ════════════ */
#hero {
  position: relative;
  min-height: 72vh;
  min-height: 72svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.62;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(193, 199, 208, 0.93) 0%,
    rgba(193, 199, 208, 0.72) 50%,
    rgba(193, 199, 208, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1rem,4vw,2rem) 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-hero);
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--heading);
  margin-bottom: 1.6rem;
}
.hero-title .line1,
.hero-title .line2,
.hero-title .line3 { opacity: 1; animation: none; }
.hero-title .line2 {
  color: var(--red);
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}
.hstat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--heading);
  line-height: 1;
}
.hstat-div { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

.hero-scroll { display: none; }

/* ═══════════════════════════════════════════ VEHICLE TYPES STRIP ═ */
.vehicle-types-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}
.vehicle-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}
.vehicle-type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.vehicle-type-thumb {
  width: 100%;
  max-width: 148px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark3);
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
}
.vehicle-type-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vehicle-type-item--ute .vehicle-type-thumb img {
  object-position: 72% center;
}
.vehicle-type-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.25;
  max-width: 12rem;
}

.hstat { display: flex; flex-direction: column; }
.hstat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════ MARQUEE ══════════ */
.marquee-wrap {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.75rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 90s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 1.4rem;
}
.marquee-track .dot { font-size: 0.45rem; color: var(--mid); padding: 0 0.4rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════ ABOUT SPLIT ══════ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.intro-img-wrap { position: relative; overflow: hidden; }
.intro-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.intro-img-wrap:hover img { transform: none; }
.intro-img-badge {
  position: absolute;
  bottom: 2.5rem; right: 0;
  background: var(--red);
  padding: 1.4rem 1.6rem;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.badge-num {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1;
}
.badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.4;
}
.intro-text {
  background: var(--surface-up);
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.8rem, 5vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border);
}
.intro-body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
}
.intro-body strong { color: var(--heading); }
.intro-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: 1.5rem 0 2.2rem;
}
.perk {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--light);
  font-weight: 500;
}
.perk-icon {
  width: 32px; height: 32px;
  background: var(--red-glow);
  border: 1px solid rgba(0,114,187,0.3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-icon svg { width: 15px; height: 15px; stroke: var(--red); }

.intro-partners {
  margin: 0 0 2.2rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--dark3);
  border-radius: 4px;
}
.intro-partners-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.intro-partners-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
.intro-partners-logos img {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 34px;
  height: auto;
  object-fit: contain;
}

/* ═══════════════════════════════════════════ SERVICES ═════════ */
.services-section { position: relative; padding: clamp(4rem,8vw,8rem) 0; background: var(--surface); }
.services-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.05;
}
.services-overlay {
  position: absolute; inset: 0;
  background: rgba(199, 205, 213, 0.9);
}
.services-section .container { position: relative; z-index: 2; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: transparent;
}
.service-card {
  background: var(--surface-up);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::after { display: none; }
.service-card:hover {
  border-color: rgba(0,114,187,0.35);
  box-shadow: 0 10px 28px rgba(17,24,39,0.1);
}

.sc-img { height: 185px; overflow: hidden; }
.sc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}
.service-card:hover .sc-img img { transform: none; filter: none; }

.sc-body {
  padding: clamp(1.2rem,2.5vw,1.8rem);
  flex: 1; display: flex; flex-direction: column;
}
.sc-icon {
  width: 42px; height: 42px;
  background: var(--red-glow);
  border: 1px solid rgba(0,114,187,0.35);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.sc-icon svg { width: 20px; height: 20px; stroke: var(--red); }
.sc-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  letter-spacing: 0.02em;
  color: var(--heading);
  margin-bottom: 0.6rem;
}
.sc-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.sc-list { margin-top: auto; display: flex; flex-direction: column; gap: 0.4rem; }
.sc-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.sc-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--red);
  font-size: 0.72rem;
  top: 1px;
}

/* ═══════════════════════════════════════════ VEHICLES ═════════ */
.vehicles-section { padding: clamp(4rem,8vw,8rem) 0; background: var(--dark3); }
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 0.75rem;
}
.vehicle-tile {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: default;
  border-radius: 4px;
  border: 1px solid var(--border);
}
/* wide tiles span 2 cols */
.vt-wide { grid-column: span 2; }

.vehicles-grid-pair {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  min-height: 280px;
}
.vehicles-grid-pair .vehicle-tile { min-height: 100%; }

.vt-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,24,39,0.72) 0%,
    rgba(17,24,39,0.18) 55%,
    transparent 100%
  );
}
.vehicle-tile:hover .vt-overlay { background: linear-gradient(
    to top,
    rgba(17,24,39,0.72) 0%,
    rgba(17,24,39,0.18) 55%,
    transparent 100%
  ); }
.vehicle-tile::before { display: none; }
.vehicle-tile:hover::before { transform: none; }
.vehicle-tile > * { position: relative; z-index: 1; }

.vt-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(1.2rem,2vw,1.6rem);
}
.vt-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem,2.5vw,1.55rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}
.vt-content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══════════════════════════════════════════ PARALLAX QUOTE ═══ */
.parallax-quote {
  position: relative;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  overflow: hidden;
  background-color: var(--dark3);
}
.pq-overlay {
  position: absolute; inset: 0;
  background: rgba(199, 205, 213, 0.88);
}
.pq-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: clamp(3rem,6vw,5rem) clamp(1.5rem,4vw,3rem);
  max-width: 720px;
}
.pq-mark {
  font-family: var(--font-hero);
  font-size: clamp(4rem,8vw,6rem);
  color: var(--red);
  line-height: 0.5;
  margin-bottom: 1rem;
  opacity: 0.35;
}
blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem,3.5vw,2rem);
  color: var(--heading);
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin-bottom: 1.3rem;
}
cite {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
}

/* ═══════════════════════════════════════════ WHY US ═══════════ */
.why-section { position: relative; padding: clamp(4rem,8vw,8rem) 0; background: var(--surface); }
.why-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.06; }
.why-overlay {
  position: absolute; inset: 0;
  background: rgba(199, 205, 213, 0.92);
}
.why-section .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}
.why-grid > * { min-width: 0; }
.why-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.why-features { display: flex; flex-direction: column; gap: 1.8rem; }
.wf-item { display: flex; gap: 1.3rem; align-items: flex-start; min-width: 0; }
.wf-text { min-width: 0; }
.wf-num {
  font-family: var(--font-hero);
  font-size: clamp(2rem,4vw,2.8rem);
  color: var(--red);
  line-height: 1;
  opacity: 0.35;
  flex-shrink: 0;
  width: 55px;
}
.wf-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--heading);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.wf-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.why-stats-panel { position: sticky; top: 100px; }
.wsp-inner {
  background: var(--surface-up);
  border: 1px solid var(--border);
  padding: clamp(1.5rem,3vw,2.5rem);
  display: flex; flex-direction: column; gap: 1.8rem;
  border-radius: 4px;
}
.ws-stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.15rem; }
.ws-num {
  font-family: var(--font-hero);
  font-size: clamp(3rem,5vw,4rem);
  color: var(--heading);
  line-height: 1;
}
.ws-unit {
  font-family: var(--font-hero);
  font-size: clamp(1.5rem,3vw,2rem);
  color: var(--red);
}
.ws-label {
  width: 100%;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: -0.2rem;
}

/* ═══════════════════════════════════════════ PROCESS ══════════ */
.process-section { padding: clamp(4rem,8vw,8rem) 0; background: var(--dark3); }
.process-steps {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.ps-step {
  flex: 1;
  text-align: center;
  padding: 0 clamp(0.8rem,2vw,1.5rem);
}
.ps-circle {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hero);
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 1.3rem;
  position: relative; z-index: 2;
  box-shadow: none;
}
.ps-step h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 0.5rem;
}
.ps-step p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.ps-connector {
  flex-shrink: 0;
  width: 70px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 29px;
}
.ps-connector span {
  display: block;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(0,114,187,0.2));
  position: relative;
}
.ps-connector span::after {
  content: '▶';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  color: rgba(0,114,187,0.6);
  font-size: 0.55rem;
}

/* ═══════════════════════════════════════════ BOOKING ══════════ */
.booking-section { position: relative; padding: clamp(4rem,8vw,8rem) 0; background: var(--surface); }
.booking-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.05;
}
.booking-overlay {
  position: absolute; inset: 0;
  background: rgba(199, 205, 213, 0.92);
}
.booking-section .container { position: relative; z-index: 2; }
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem,5vw,5rem);
  align-items: start;
}
.booking-wrap > * { min-width: 0; }
.booking-sub {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}
.booking-contact-info { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.2rem; }
.bci-item {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.93rem; color: var(--text-muted);
}
.bci-item svg { width: 17px; height: 17px; stroke: var(--red); flex-shrink: 0; }
.bci-item strong { color: var(--heading); }
.booking-partners { margin-top: 0.5rem; }
.bp-label {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.7rem;
}
.bp-logos { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.bp-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.28rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--surface-up);
}
.bp-logo-img {
  display: block;
  width: auto;
  max-width: 120px;
  max-height: 26px;
  height: auto;
  object-fit: contain;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--surface-up);
}

/* Booking tabs */
.booking-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px;
  width: fit-content;
  max-width: 100%;
}
.btab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.8rem;
  background: transparent;
  border: none;
  border-radius: 3px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  white-space: nowrap;
}
.btab svg { width: 15px; height: 15px; stroke: currentColor; flex-shrink: 0; }
.btab:hover { color: var(--heading); }
.btab.active {
  background: var(--red);
  color: var(--white);
}

/* Left panel swap */
.bleft-panel { transition: opacity 0.25s; }
.bleft-panel.hidden { display: none; }

/* hidden utility for form swap */
.booking-form.hidden { display: none; }

/* Why-Us CTA pair */
.wsp-cta-row { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }

/* Mobile menu second CTA */
.mm-cta--outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--heading);
  margin-top: 0;
}
.mm-cta--outline:hover { background: rgba(0,114,187,0.05); border-color: var(--red); }

/* Form */
.booking-form {
  background: var(--surface-up);
  border: 1px solid var(--border);
  padding: clamp(1.5rem,3vw,2.5rem);
  border-radius: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex; flex-direction: column; gap: 0.38rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--heading);
  padding: 0.78rem 0.95rem;
  font-size: 0.93rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.3rem;
  cursor: pointer;
}
.form-group select option { background: var(--white); color: var(--heading); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(0,114,187,0.03);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group textarea { resize: vertical; min-height: 85px; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none; cursor: pointer;
}
.submit-btn { margin-top: 0.3rem; font-size: 1rem; padding: 1rem; }
.form-note {
  text-align: center; font-size: 0.74rem;
  color: var(--text-muted); margin-top: 0.7rem;
}
.form-success {
  display: none; align-items: center; gap: 1rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.28);
  padding: 1.1rem; border-radius: 4px; margin-top: 1rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 26px; height: 26px; stroke: #10B981; flex-shrink: 0; }
.form-success strong { display: block; color: #10B981; font-size: 0.92rem; }
.form-success span { font-size: 0.82rem; color: var(--silver); }

/* ═══════════════════════════════════════════ CONTACT ══════════ */
.contact-section { padding: clamp(4rem,8vw,8rem) 0; background: var(--dark3); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem,5vw,5rem);
  align-items: start;
}
.contact-grid > * { min-width: 0; }
.ci-items { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 2rem; }
.ci-item { display: flex; gap: 1.1rem; align-items: flex-start; min-width: 0; }
.ci-item > div:last-child { min-width: 0; flex: 1; }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--red-glow);
  border: 1px solid rgba(0,114,187,0.28);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 19px; height: 19px; stroke: var(--red); }
.ci-item h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.25rem;
}
.ci-item p, .ci-item a {
  font-size: 0.97rem; color: var(--heading); line-height: 1.6;
  overflow-wrap: anywhere;
}
.ci-item a:hover { color: var(--red); }

/* Directions link inside location ci-item */
.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.directions-link svg { width: 13px; height: 13px; stroke: var(--red); transition: transform 0.2s; }
.directions-link:hover { color: var(--red-dark); gap: 0.5rem; }
.directions-link:hover svg { transform: none; }

/* Contact CTA row — Book + Directions buttons side by side */
.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}
.contact-cta-btn { margin-top: 0; }
.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.8rem;
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-directions svg { width: 15px; height: 15px; stroke: currentColor; }
.btn-directions:hover {
  background: var(--red);
  color: var(--white);
}
.btn-directions:hover svg { transform: none; }

/* Google Map frame */
.contact-map-block { position: relative; }
.map-frame-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: none;
}

/* ═══════════════════════════════════════════ AUTOHIVE ═════════ */
.autohive-section {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  background: var(--dark3);
}
.autohive-banner {
  display: block;
  padding: clamp(0.65rem, 2vw, 0.85rem) clamp(0.75rem, 2.5vw, 1rem);
  background: var(--white);
  border: 1px solid var(--red);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.autohive-banner:hover {
  border-color: var(--red-dark);
  box-shadow: 0 4px 24px var(--red-glow);
}
.autohive-banner-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════ FOOTER ═══════════ */
.site-footer { position: relative; padding: clamp(3.5rem,6vw,6rem) 0 0; background: var(--surface); border-top: 1px solid var(--border); }
.footer-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.04; }
.footer-overlay { position: absolute; inset: 0; background: rgba(199, 205, 213, 0.94); }
.footer-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  padding-bottom: clamp(2.5rem,4vw,4rem);
}
.footer-inner > * { min-width: 0; }
.footer-brand .footer-logo {
  display: flex;
  width: fit-content;
  margin-bottom: 1.1rem;
  align-items: flex-start;
  flex-shrink: 0;
}
.footer-brand p { color: var(--silver); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-brand .btn-primary {
  padding: 0.7rem 1.5rem;
  font-size: 0.82rem;
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.45rem; line-height: 1.6; }
.footer-contact a { color: var(--text-muted); transition: color 0.2s; overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--red); }
.footer-partners { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.1rem; }
.footer-partners span {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.22rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface-up);
}

.footer-bar {
  position: relative; z-index: 2;
  background: var(--dark3);
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
.footer-bar p { font-size: 0.77rem; color: var(--text-muted); }
.footer-bar strong { color: var(--heading); }
/* Back-to-top button */
.back-to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.4rem 0 1.2rem;
  background: var(--dark3);
  border: none;
  border-top: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
  z-index: 3;
}
.back-to-top:hover { background: rgba(0,114,187,0.06); }
.back-to-top:hover .btt-circle {
  background: var(--red);
  border-color: var(--red);
  transform: none;
}
.back-to-top:hover .btt-label { color: var(--heading); }
.btt-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface-up);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.btt-circle svg {
  width: 18px; height: 18px;
  stroke: var(--heading);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.back-to-top:hover .btt-circle svg { stroke: #fff; }
.btt-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-condensed);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-attribution {
  position: relative; z-index: 2;
  background: var(--dark3);
  border-top: 1px solid var(--border);
  padding: 0.55rem 0;
  text-align: center;
}
.footer-attribution p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.footer-attribution a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-attribution a:hover { color: var(--red); }

/* ════════════════════════════════════════════ REVIEWS ═════════ */
.reviews-section {
  background: var(--surface);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
}
.reviews-section .section-sub {
  max-width: 560px;
  margin: 0 auto;
}
.reviews-gmaps-link {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,114,187,0.35);
  transition: border-color 0.2s;
}
.reviews-gmaps-link:hover { border-color: var(--red); }

/* Overall rating bar */
.reviews-meta {
  display: flex;
  justify-content: center;
  margin: 0 0 3.5rem;
}
.reviews-rating-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--heading);
  line-height: 1;
}
.reviews-stars {
  display: flex;
  gap: 3px;
}
.reviews-stars svg {
  width: 22px; height: 22px;
  fill: #F9A825;
}
.reviews-stars .star-partial {
  fill: url(#half-star);
  position: relative;
}
/* CSS-only partial star via clip */
.reviews-stars .star-partial { opacity: 0.5; }
.reviews-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.review-card {
  background: var(--surface-up);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.8rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  border-color: rgba(0,114,187,0.35);
  box-shadow: 0 10px 28px rgba(17,24,39,0.1);
  transform: none;
}

/* Stars inside card */
.rc-stars {
  display: flex;
  gap: 3px;
}
.rc-stars svg {
  width: 16px; height: 16px;
  fill: #F9A825;
}

/* Quote text */
.rc-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  margin: 0;
  font-style: italic;
}

/* Author row */
.rc-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.rc-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.rc-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.rc-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading);
  line-height: 1;
}
.rc-source {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.rc-source:hover { color: var(--heading); }
.rc-source svg {
  width: 12px; height: 12px;
  flex-shrink: 0;
}

/* See all reviews CTA */
.reviews-cta-row {
  display: flex;
  justify-content: center;
}
.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.reviews-cta-btn svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1000px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  /* 5th card spans full row on 2-col layout — keep it centred */
  .review-card:last-child { grid-column: span 2; max-width: 480px; justify-self: center; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .review-card:last-child { grid-column: span 1; max-width: 100%; justify-self: auto; }
  .reviews-rating-block { padding: 0.9rem 1.2rem; gap: 0.7rem; }
  .reviews-score { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════════ ANIMATIONS ═══════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
  transition: none;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════ RESPONSIVE ═══════
   Breakpoints:
   1100px  – 2-col services, side-by-side why
   900px   – tablet stacking
   700px   – mobile grid collapses
   480px   – small phone tweaks
   360px   – very small
══════════════════════════════════════════════════════════════ */

/* ── 1100px ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-stats-panel { position: static; }
  .wsp-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .vehicles-grid { grid-template-rows: 240px 240px 240px; }

  /* footer: row 1 brand, row 2 links + contact */
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.75rem;
  }
  .footer-brand .footer-logo { margin-bottom: 0; }
  .footer-brand p {
    flex: 1 1 220px;
    margin-bottom: 0;
    max-width: 42rem;
  }
  .footer-brand .btn-primary { flex-shrink: 0; }
}

/* ── 900px ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* nav */
  .nav-links, .nav-ctas { display: none; }
  .nav-actions { gap: 0.75rem; }
  .hamburger { display: flex; }

  /* hero */
  .hero-title { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero-scroll { display: none; }

  .vehicle-types-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }

  /* about split → stacked */
  .intro-split { grid-template-columns: 1fr; }
  .intro-img-wrap { height: 340px; }
  .intro-text { padding: 2.5rem 1.8rem; }

  /* vehicles: 2-col */
  .vehicles-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px 220px;
  }
  .vt-wide { grid-column: span 2; }
  .vehicles-grid-pair { min-height: 220px; }

  /* parallax – disable fixed attachment */
  .services-bg,
  .booking-bg,
  .parallax-quote { background-attachment: scroll; }

  /* booking stacked */
  .booking-wrap { grid-template-columns: 1fr; gap: 2.5rem; }

  /* contact stacked */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-frame-wrap { height: 380px; }

  /* process */
  .process-steps { flex-wrap: wrap; justify-content: center; gap: 2rem; }
  .ps-connector { display: none; }
  .ps-step { flex: 0 0 calc(50% - 1rem); }
}

/* ── 700px ─────────────────────────────────────────────────── */
@media (max-width: 700px) {
  /* hero */
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; max-width: 320px; }
  .hstat-div { display: none; }
  .hero-stats { gap: 1.2rem; }

  .booking-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .btab {
    justify-content: center;
    padding: 0.75rem 0.55rem;
    font-size: clamp(0.68rem, 2.8vw, 0.82rem);
    letter-spacing: 0.07em;
    white-space: normal;
    text-align: center;
  }

  .vehicle-types-grid { gap: 1.25rem 0.75rem; }
  .vehicle-type-thumb { max-width: 120px; }

  /* services 1-col */
  .services-grid { grid-template-columns: 1fr; }
  .sc-img { height: 200px; }

  /* vehicles 1-col */
  .vehicles-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .vt-wide { grid-column: span 1; }
  .vehicles-grid-pair {
    grid-column: span 1;
    min-height: 200px;
  }

  /* about perks 1-col */
  .intro-perks { grid-template-columns: 1fr; }

  /* process all stacked */
  .ps-step { flex: 0 0 100%; max-width: 340px; }

  /* booking form 1-col */
  .form-row { grid-template-columns: 1fr; }

  /* why stats */
  .wsp-inner { grid-template-columns: 1fr; }

  /* contact map smaller */
  .map-frame-wrap { height: 300px; }
}

/* ── 480px ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --nav-h: 62px;
    --nav-logo-inset: 5px;
  }

  .nav-logo .site-logo {
    max-width: min(calc(var(--nav-logo-height) * 1.175), 44vw);
  }

  .nav-phone-num { display: none; }

  .hero-title { font-size: clamp(3rem, 16vw, 4.5rem); }
  .hero-sub br { display: none; }

  .vehicle-types-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-type-label { font-size: 0.78rem; }

  .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }

  /* services image shorter on small phones */
  .sc-img { height: 165px; }

  /* vehicles shorter on small phones */
  .vehicles-grid { grid-template-rows: repeat(5, 180px); }
  .vehicles-grid-pair { min-height: 180px; }

  /* booking form */
  .booking-form { padding: 1.4rem 1.1rem; }

  /* contact */
  .map-frame-wrap { height: 260px; }
  .contact-cta-row { flex-direction: column; align-items: stretch; }
  .contact-cta-btn, .btn-directions { width: 100%; justify-content: center; }

  /* wsp-inner stats grid */
  .wsp-inner { grid-template-columns: 1fr 1fr; }

  /* process tighter */
  .ps-circle { width: 50px; height: 50px; font-size: 1.5rem; }

  .footer-inner { gap: 1.1rem 0.85rem; }
  .footer-brand { gap: 0.85rem 1rem; }
  .footer-brand .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .footer-links h4, .footer-contact h4 {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.65rem;
  }
  .footer-links a, .footer-contact p { font-size: 0.78rem; }
  .footer-links ul { gap: 0.32rem; }
  .footer-partners { margin-top: 0.75rem; gap: 0.35rem; }
  .footer-partners span { font-size: 0.6rem; padding: 0.18rem 0.42rem; }
  .site-logo--footer { max-height: 56px; }

  .footer-bar-inner { justify-content: center; text-align: center; }
  .footer-bar p { font-size: 0.72rem; }
}

/* ── 360px ─────────────────────────────────────────────────── */
@media (max-width: 360px) {
  .hero-title { font-size: 2.8rem; }
  .btn-primary, .btn-ghost { padding: 0.8rem 1.4rem; font-size: 0.82rem; }
  .sc-img { height: 140px; }
  .vehicles-grid { grid-template-rows: repeat(5, 160px); }
  .vehicles-grid-pair { min-height: 160px; }
  .map-frame-wrap { height: 220px; }
  .wsp-inner { grid-template-columns: 1fr; }

  .footer-links h4, .footer-contact h4 { letter-spacing: 0.12em; }
  .footer-links a, .footer-contact p { font-size: 0.74rem; }
}

/* ── Touch device: disable tilt ────────────────────────────── */
@media (hover: none) {
  .service-card { transform: none !important; }
}
