/* ============================================
   Drive One Car Rental — light theme (white + blue headings + logo green CTAs)
   Logo greens: #0ecb7a (vibrant) | #079b5c (deep, right edge)
   Headings: Space Grotesk | Body & UI: Inter
   ============================================ */

:root {
  /* Logo-exact palette (do not pastel-ize) */
  --brand-blue: #2278e6;
  --brand-green: #0ecb7a;
  --brand-green-deep: #079b5c;
  --brand-green-bright: #1fe090;
  --brand-yellow: #f3d23a;
  --brand-blue-rgb: 34, 120, 230;
  --brand-green-rgb: 14, 203, 122;
  --brand-yellow-rgb: 243, 210, 58;

  /* Page — mostly white */
  --color-bg: #ffffff;
  --color-bg-subtle: #f4f9fc;
  --color-bg-mint: #f3fcf9;
  --color-surface: #ffffff;
  --color-surface-muted: #eef6ff;
  --color-text: #1a2332;
  --color-text-muted: rgba(26, 35, 50, 0.58);
  --color-heading: var(--brand-blue);
  --color-accent: var(--brand-green);
  /* Same logo green family (not muted teal) */
  --color-accent-warm: var(--brand-green);
  --color-highlight: var(--brand-yellow);
  --color-accent-soft: rgba(var(--brand-green-rgb), 0.12);
  --color-border: rgba(var(--brand-blue-rgb), 0.18);
  --color-border-soft: rgba(26, 35, 50, 0.08);

  /* Section washes (still light) */
  --color-gradient-hero: linear-gradient(180deg, #ffffff 0%, #f2f8ff 42%, #f5fcfa 100%);
  --color-gradient-card: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 100%);

  /* Buttons = logo saturated green (white label, like “One” on green) */
  --btn-primary-text: #ffffff;
  --gradient-cta: linear-gradient(105deg, var(--brand-green-bright) 0%, var(--brand-green) 38%, var(--brand-green-deep) 100%);
  --gradient-cta-hover: linear-gradient(105deg, #3aed9f 0%, var(--brand-green-bright) 35%, var(--brand-green) 70%, #068a56 100%);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-logo: 'Montserrat', system-ui, sans-serif;
  --font-arm: 'Noto Sans Armenian', system-ui, sans-serif;
  --radius-soft: 24px;
  --radius-pill: 999px;
  --shadow-photo: 0 12px 40px rgba(var(--brand-blue-rgb), 0.08), 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-photo-hover: 0 20px 50px rgba(var(--brand-blue-rgb), 0.14), 0 8px 22px rgba(var(--brand-green-rgb), 0.1);
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-reveal: 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Headlines: Space Grotesk — blue (logo); collection cards stay white on photos */
h1, h2, h3, .section-title, .car-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}

.collection-card-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-soft);
  transition: var(--transition-smooth);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: nowrap;
}

/* Right cluster: burger (mobile) + language (index) — language is rightmost */
.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}

/* Language switch — compact, always visible */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.lang-switch-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.45rem;
  min-width: 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-subtle);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
}

.lang-switch-btn:hover {
  color: var(--color-text);
  border-color: rgba(var(--brand-green-rgb), 0.35);
}

.lang-switch-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.lang-switch-btn.is-active {
  color: var(--btn-primary-text);
  background: var(--gradient-cta);
  border-color: var(--brand-green-deep);
  box-shadow: 0 4px 14px rgba(var(--brand-green-rgb), 0.35);
}

.logo {
  font-family: var(--font-logo);
  font-size: clamp(0.95rem, 3.2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo--image {
  font-size: 0;
  line-height: 0;
  display: block;
  align-self: center;
}

.logo--image:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 8px;
}

.logo--image img {
  height: clamp(36px, 6vw, 52px);
  width: auto;
  max-width: min(156px, 44vw);
  display: block;
  object-fit: contain;
}

.nav {
  display: none;
}

.nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-left: 1.75rem;
  transition: color var(--transition-smooth);
}

.nav a:hover {
  color: var(--color-accent);
}

.nav a[aria-current="page"] {
  color: var(--brand-blue);
  font-weight: 600;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
}

/* Mobile nav overlay */
@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: 99;
    border-left: 1px solid var(--color-border-soft);
    box-shadow: -12px 0 40px rgba(var(--brand-blue-rgb), 0.08);
  }
  .nav.nav-open {
    transform: translateX(0);
    display: flex;
  }
  .nav a {
    margin-left: 0;
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .header-inner {
    justify-content: space-between;
  }

  .logo--image img {
    height: 40px;
    max-width: min(148px, 42vw);
  }
}

@media (min-width: 768px) {
  .logo--image img {
    height: clamp(42px, 5vw, 54px);
    max-width: 220px;
  }

  .nav {
    flex: 1;
    display: flex !important;
    transform: none;
    position: static;
    width: auto;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(0.35rem, 1.8vw, 1.15rem);
  }

  .nav--main a {
    margin-left: 0;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .menu-toggle { display: none; }
}

@media (min-width: 768px) and (max-width: 899px) {
  .nav--main a {
    font-size: 0.78rem;
  }
}

/* ----- Hero — full-bleed photo, centered copy stack ----- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  text-align: center;
  padding: 5.75rem 1.25rem 1.15rem;
}

@media (min-width: 900px) {
  .hero {
    padding: 5.5rem 1.5rem 1.35rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--color-gradient-hero);
}

/* Real <img> so the photo loads reliably (not only CSS background) */
.hero-bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 62%;
  transform: scale(1.06);
  will-change: transform;
  opacity: 0.94;
  filter: saturate(1.06) contrast(1.05) brightness(1);
  pointer-events: none;
}

@media (max-width: 600px) {
  .hero-bg-image {
    object-position: 32% 42%;
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Dark wash so heading contrast holds over snow, sky, and rock */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.14) 28%,
    rgba(0, 0, 0, 0.06) 52%,
    rgba(0, 0, 0, 0.22) 78%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 100px rgba(var(--brand-blue-rgb), 0.06),
    inset 0 0 200px rgba(var(--brand-green-rgb), 0.05);
}

.hero-bg-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content--center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(1120px, 96vw);
  margin: 0 auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 0;
}

.hero-copy {
  width: 100%;
  padding-top: clamp(0.15rem, 1.5vh, 0.85rem);
}

.hero-title {
  font-family: var(--font-sans), var(--font-arm);
  font-size: clamp(1.55rem, 4.8vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
  margin: 0 0 0.4rem;
  opacity: 0;
  animation: fadeUp 0.75s var(--transition-reveal) forwards;
}

/* Rental line — directly under title */
.hero-kicker {
  font-family: var(--font-sans), var(--font-arm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.75s 0.12s var(--transition-reveal) forwards;
}

.hero-subline {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero search — compact booking bar, docked to the bottom of the photo */
.hero-search {
  width: 100%;
  max-width: min(1080px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  opacity: 1;
  animation: none;
  padding: 0.7rem 0.85rem 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 32px rgba(26, 35, 50, 0.16),
    0 2px 8px rgba(26, 35, 50, 0.06);
  position: relative;
  z-index: 4;
  isolation: isolate;
  overflow: visible;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  font-family: var(--font-sans), var(--font-arm);
}

.hero-booking-grid {
  display: grid;
  grid-template-columns: minmax(170px, 1.2fr) minmax(210px, 1.15fr) minmax(210px, 1.15fr) auto;
  column-gap: 0.7rem;
  row-gap: 0;
  align-items: end;
  min-width: 0;
}

.hero-booking-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.9rem;
  margin-top: 0.55rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(26, 35, 50, 0.08);
  text-align: left;
}

.hero-booking-field--location select {
  width: 100%;
  min-width: 0;
}

.hero-booking-extra {
  margin-top: 0.85rem;
  text-align: left;
}

.hero-booking-extra[hidden] {
  display: none;
}

.hero-booking-extra-label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  opacity: 0.88;
}

.hero-booking-extra .hero-pickup-point {
  width: 100%;
}

.hero-booking-field--location {
  min-width: 0;
}

.hero-pickup-notes {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(26, 35, 50, 0.72);
  text-align: left;
}

.hero-location-tariff {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-green-deep);
}

.hero-booking-hint:not([hidden]) {
  display: inline-flex;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
  padding: 0.28rem 0.55rem;
  background: rgba(var(--brand-green-rgb), 0.12);
  border-radius: 8px;
}

.hero-booking-hint {
  min-height: 0;
  align-self: start;
}

.hero-location-tariff[hidden],
.hero-location-fees-total[hidden] {
  display: none;
}

.hero-location-fees-total {
  margin: 0.65rem 0 0;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--brand-green-deep);
  background: rgba(var(--brand-green-rgb), 0.1);
  border: 1px solid rgba(var(--brand-green-rgb), 0.24);
  border-radius: 10px;
  text-align: left;
}

.book-locations-line {
  margin: 0.15rem 0 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(26, 35, 50, 0.72);
  white-space: pre-line;
}

.book-locations-line[hidden] {
  display: none;
}

.book-fees-section {
  margin: 0 0 1.75rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: calc(var(--radius-soft) - 4px);
  border: 1px solid rgba(var(--brand-green-rgb), 0.28);
  background: rgba(var(--brand-green-rgb), 0.08);
}

.book-fees-section[hidden] {
  display: none;
}

.book-fees-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  margin: 0 0 0.35rem;
}

.book-fees-lead {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(26, 35, 50, 0.7);
  margin: 0 0 0.75rem;
}

.book-fees-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.book-fees-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.7rem 0.8rem;
  background: #ffffff;
  border: 1px solid rgba(var(--brand-green-rgb), 0.2);
  border-radius: 10px;
}

.book-fees-item-text {
  min-width: 0;
}

.book-fees-item-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
}

.book-fees-item-meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: rgba(26, 35, 50, 0.62);
}

.book-fees-item-amount {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-green-deep);
  white-space: nowrap;
}

.book-fees-total {
  margin: 0.75rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-green-deep);
}

.book-fees-total[hidden] {
  display: none;
}

.hero-booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  text-align: left;
  min-width: 0;
  padding: 0;
}

.hero-booking-field:first-child {
  padding-left: 0;
}

.hero-booking-field + .hero-booking-field,
.hero-booking-submit {
  border-left: none;
}

.hero-booking-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-text);
  opacity: 0.72;
  min-height: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-booking-label--invisible {
  display: none;
}

.hero-booking-date-time {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(5.1rem, 0.8fr);
  gap: 0.4rem;
  align-items: stretch;
  min-width: 0;
}

.hero-pickup-notes[hidden] {
  display: none;
}

.hero-search input[type="date"],
.hero-search input[type="text"],
.hero-search select {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0.55rem 0.75rem;
  background-color: #f3f6f9;
  border: 1px solid rgba(26, 35, 50, 0.12);
  border-radius: 10px;
  color: var(--color-text);
  width: 100%;
  min-height: 44px;
  height: 44px;
  box-sizing: border-box;
  transition: border-color var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-search select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%232278e6' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px;
}

.hero-picker-trigger {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  padding: 0.5rem 0.65rem;
  background: #f3f6f9;
  border: 1px solid rgba(26, 35, 50, 0.12);
  border-radius: 10px;
  color: var(--color-text);
  width: 100%;
  min-height: 44px;
  height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: border-color var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-picker-trigger::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 0.6rem;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-date-picker .hero-picker-trigger {
  justify-content: space-between;
}

.hero-date-picker .hero-picker-trigger::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23079b5c' d='M7 2v2H5a2 2 0 0 0-2 2v2h18V6a2 2 0 0 0-2-2h-2V2h-2v2H9V2zm14 8H3v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z'/%3E%3C/svg%3E");
}

.hero-picker-trigger--time {
  justify-content: space-between;
  text-align: left;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hero-picker-trigger--time::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23079b5c' d='M12 1.75A10.25 10.25 0 1 0 22.25 12 10.26 10.26 0 0 0 12 1.75Zm0 18.5A8.25 8.25 0 1 1 20.25 12 8.26 8.26 0 0 1 12 20.25Zm.75-13h-1.5v5.3l4.18 2.5.77-1.28-3.45-2.06Z'/%3E%3C/svg%3E");
  margin-left: 0.35rem;
}

.hero-picker-trigger:focus,
.hero-picker-trigger.is-open {
  outline: none;
  border-color: var(--brand-blue);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(var(--brand-blue-rgb), 0.2);
}

.hero-date-picker,
.hero-time-picker {
  position: relative;
  min-width: 0;
}

.hero-time-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  background: #ffffff;
  border: 1px solid rgba(26, 35, 50, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(26, 35, 50, 0.12);
  padding: 0.35rem;
  display: none;
  z-index: 40;
  max-height: 280px;
  overflow-y: auto;
}

.hero-time-picker.is-open .hero-time-dropdown {
  display: grid;
}

.hero-time-dropdown button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text);
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.hero-time-dropdown button:hover,
.hero-time-dropdown button.is-selected {
  background: rgba(var(--brand-green-rgb), 0.14);
  color: var(--brand-green-deep);
}

.hero-time-dropdown .hero-time-group-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted, rgba(26, 35, 50, 0.55));
  padding: 0.5rem 0.55rem 0.2rem;
}

.hero-time-option-tariff {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-green-deep);
  white-space: nowrap;
}

.hero-time-dropdown button.is-after-hours {
  background: rgba(var(--brand-green-rgb), 0.05);
}

.hero-search:has(.hero-time-picker.is-open) {
  overflow: visible;
}

.hero-calendar-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100vw - 2rem));
  background: #ffffff;
  border: 1px solid rgba(26, 35, 50, 0.14);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(26, 35, 50, 0.22);
  padding: 0.9rem;
  z-index: 200;
}

.hero-calendar-popup[hidden] {
  display: none;
}

.hero-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.hero-calendar-head strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--brand-blue);
}

.hero-calendar-head button {
  border: 1px solid rgba(26, 35, 50, 0.15);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f6f8fb;
  color: var(--color-text);
  cursor: pointer;
}

.hero-calendar-head button:hover {
  background: rgba(var(--brand-green-rgb), 0.14);
  border-color: rgba(var(--brand-green-rgb), 0.35);
}

.hero-calendar-weekdays,
.hero-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.hero-calendar-weekdays span {
  font-size: 0.72rem;
  text-align: center;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  padding: 0.15rem 0;
}

.hero-calendar-grid button {
  border: none;
  border-radius: 9px;
  min-height: 34px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  background: #f5f8fc;
  color: var(--color-text);
  cursor: pointer;
}

.hero-calendar-grid button:hover {
  background: rgba(var(--brand-blue-rgb), 0.14);
}

.hero-calendar-grid button.is-selected {
  background: var(--gradient-cta);
  color: #fff;
}

.hero-calendar-grid button.is-in-range {
  background: linear-gradient(180deg, rgba(46, 55, 68, 0.26) 0%, rgba(46, 55, 68, 0.14) 100%);
  color: #2e3744;
  box-shadow:
    inset 0 0 0 1px rgba(46, 55, 68, 0.2),
    0 0 8px rgba(46, 55, 68, 0.08);
}

.hero-calendar-grid button.is-range-start,
.hero-calendar-grid button.is-range-end {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(var(--brand-green-rgb), 0.52),
    0 0 18px rgba(var(--brand-green-rgb), 0.55),
    0 0 28px rgba(var(--brand-green-rgb), 0.28);
}

.hero-calendar-grid button:disabled,
.hero-calendar-grid button.is-empty {
  background: transparent;
  color: rgba(26, 35, 50, 0.3);
  cursor: default;
}

.hero-calendar-actions {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-end;
}

.hero-calendar-range-label {
  margin: 0.7rem 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.hero-calendar-range-label.is-ready {
  color: #2e3744;
  font-weight: 600;
}

.hero-calendar-done {
  border: 1px solid var(--brand-green-deep);
  background: var(--gradient-cta);
  color: #fff;
  border-radius: 10px;
  min-height: 38px;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.hero-calendar-done:hover {
  background: var(--gradient-cta-hover);
}

.hero-search input::placeholder {
  color: rgba(26, 35, 50, 0.45);
  font-weight: 400;
}

.hero-search input[type="date"]:focus,
.hero-search input[type="text"]:focus,
.hero-search select:focus {
  outline: none;
  border-color: var(--brand-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(var(--brand-blue-rgb), 0.2);
}

.hero-booking-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 0;
  flex: 0 1 auto;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  text-align: left;
}

.hero-booking-checkbox span {
  white-space: normal;
}

.hero-booking-checkbox input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--brand-green);
}

.hero-booking-hint-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
}

.hero-booking-field--location .hero-booking-checkbox {
  margin-top: 0;
}

.hero-booking-submit {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  min-width: 7.5rem;
  padding: 0;
}

.btn-search {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.15rem;
  background: var(--gradient-cta);
  color: var(--btn-primary-text);
  border: 1px solid var(--brand-green-deep);
  border-radius: 10px;
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(var(--brand-green-rgb), 0.35);
  min-height: 44px;
  height: 44px;
  white-space: nowrap;
}

.btn-search--hero {
  width: 100%;
  min-width: 7.5rem;
  min-height: 44px;
  height: 44px;
}

.btn-search:hover {
  transform: translateY(-2px);
  background: var(--gradient-cta-hover);
  box-shadow: 0 8px 24px rgba(var(--brand-green-rgb), 0.42);
}

.btn-search:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .hero-booking-grid {
    grid-template-columns: minmax(150px, 1.1fr) minmax(190px, 1.1fr) minmax(190px, 1.1fr) auto;
    column-gap: 0.55rem;
  }
}

@media (max-width: 860px) {
  .hero-booking-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    column-gap: 0.75rem;
    row-gap: 0.7rem;
    align-items: stretch;
  }

  .hero-booking-field,
  .hero-booking-submit {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    padding: 0;
    border-left: none;
  }

  .hero-booking-field--location {
    grid-column: span 2;
  }

  .hero-booking-submit {
    grid-column: span 2;
    min-width: 0;
  }

  .hero-booking-submit .hero-booking-label--invisible {
    display: none;
  }

  .hero-booking-label {
    min-height: 0;
    white-space: normal;
  }
}

@media (max-width: 639px) {
  .hero-search {
    padding: 1rem 1rem 0.95rem;
    text-align: left;
  }

  .hero-booking-grid,
  .hero-booking-date-time {
    grid-template-columns: 1fr;
  }

  .hero-booking-field--location,
  .hero-booking-submit {
    grid-column: auto;
  }

  .hero-booking-footer {
    flex-direction: column;
    gap: 0.55rem;
  }

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

  .hero-calendar-popup {
    width: calc(100vw - 1rem);
    max-height: 86vh;
    overflow: auto;
  }
}

.hero-scroll-hint {
  display: none;
}

.hero-scroll-hint span {
  display: inline-block;
  animation: floatY 3s ease-in-out infinite;
}

@media (min-width: 900px) {
  .hero-scroll-hint {
    left: 8%;
    transform: none;
  }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ----- Sections common ----- */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-highlight);
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.65rem;
}

/* One line under H2 — between title and .section-desc */
.section-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 2.1vw, 1.18rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--brand-green-deep);
  margin: 0 0 0.85rem;
  max-width: 38rem;
  text-align: left;
}

.section-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 2.75rem;
  max-width: 36rem;
}

/* Same heading band as main sections (full container width, lead capped) */
.section-heading-stack {
  text-align: left;
  width: 100%;
  max-width: none;
}

/* ----- Cars grid ----- */
.cars-section {
  background: var(--color-bg);
}

.cars-grid {
  display: grid;
  gap: 2rem;
}

.car-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-surface);
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-photo);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.car-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(var(--brand-blue-rgb), 0.35) 0%, rgba(var(--brand-green-rgb), 0.22) 50%, rgba(var(--brand-blue-rgb), 0.12) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--brand-green-rgb), 0.22);
  box-shadow: var(--shadow-photo-hover);
}

.car-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 0.65rem 0.65rem 0;
  border-radius: calc(var(--radius-soft) - 8px);
  box-shadow: inset 0 0 0 1px var(--color-border-soft), 0 8px 28px rgba(var(--brand-blue-rgb), 0.08);
}

.car-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.car-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(var(--brand-green-rgb), 0.12) 0%, transparent 55%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.75s var(--transition-smooth), filter 0.5s ease;
}

.car-card:hover .car-card-image img {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.06) brightness(1.03);
}

.car-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  color: var(--brand-blue);
  border: 1px solid rgba(var(--brand-green-rgb), 0.35);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.car-card-hit {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 3;
}

.car-card-hit:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: calc(var(--radius-soft) - 4px);
}

.car-card-body {
  padding: 1.35rem 1.5rem 1rem;
  position: relative;
  z-index: 1;
}

.car-card-hint {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin: 0.25rem 0 0;
  letter-spacing: 0.04em;
}

.car-card-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.car-card-similar {
  font-weight: 500;
  font-size: 0.62em;
  letter-spacing: 0;
  opacity: 0.72;
}

.car-card-tagline {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  margin-bottom: 0.5rem;
}

.car-card-desc {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.car-card-footer {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.35rem;
  border-top: 1px solid var(--color-border-soft);
  background: var(--color-bg-mint);
}

.car-card-footer span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.car-card-cta {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-green);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.car-card-cta:hover {
  color: var(--brand-green-deep);
}

.car-card-cta:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ----- Collections ----- */
.collections-section {
  padding: 5rem 1.5rem;
}

.collections-intro {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.collections-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.collection-card {
  position: relative;
  display: block;
  min-height: 300px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: var(--shadow-photo);
  border: 1px solid var(--color-border-soft);
}

.collection-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-photo-hover);
}

.collection-card:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.collection-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--transition-smooth), filter 0.6s ease;
  filter: saturate(1.06) contrast(1.03);
}

.collection-card:hover .collection-card-bg {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.05) brightness(1.04);
}

.collection-city .collection-card-bg {
  background-image: url('assets/blog/yerevan-inline.jpg');
}

.collection-travel .collection-card-bg {
  background-image: url('assets/blog/sevan-hero.jpg');
}

.collection-mountains .collection-card-bg {
  background-image: url('assets/blog/mountains-hero.jpg');
}

.collection-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%, rgba(0, 0, 0, 0.75) 100%),
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(var(--brand-green-rgb), 0.2) 0%, transparent 50%);
}

.collection-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.collection-card-content h3 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.collection-card-content p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 16rem;
}

.collection-card-cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.75), 0 1px 14px rgba(0, 0, 0, 0.65);
}

@media (min-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ----- Benefits ----- */
.benefits-section {
  background: var(--color-bg-subtle);
}

.benefits-grid {
  display: grid;
  align-items: stretch;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 1.5rem 1.5rem 1.35rem;
  background: var(--color-surface);
  border-radius: var(--radius-soft);
  border: 1px solid var(--color-border-soft);
  transition: border-color var(--transition-smooth), transform var(--transition-smooth);
}

.benefit-item:hover {
  border-color: rgba(var(--brand-yellow-rgb), 0.2);
  transform: translateY(-2px);
}

.benefit-icon {
  display: block;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  margin: 0 0 0.75rem;
  line-height: 0;
}

.benefit-icon img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.benefit-heading,
.benefit-item h3 {
  font-family: var(--font-display), var(--font-arm);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  min-height: calc(1.3em * 2);
  margin: 0 0 0.45rem;
}

.benefit-item p {
  font-family: var(--font-sans), var(--font-arm);
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid > :first-child,
  .benefit-item--featured {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid > :first-child,
  .benefit-item--featured {
    grid-column: span 2;
  }

  .benefit-item--featured .benefit-icon,
  .benefit-item--featured .benefit-icon img {
    width: 104px;
    height: 104px;
  }
}

.benefits-container {
  text-align: left;
}

.benefits-intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

/* Test drive */
.test-drive-section {
  background: linear-gradient(180deg, #f3fcf9 0%, #e8f4ff 100%);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.test-drive-inner {
  text-align: left;
}

.test-drive-desc {
  margin-bottom: 1.75rem;
}

.test-drive-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.test-drive-section .btn-primary.test-drive-btn {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.85rem;
}

.test-drive-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-green-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--brand-green-rgb), 0.35);
  padding-bottom: 2px;
  transition: color var(--transition-smooth), border-color var(--transition-smooth);
}

.test-drive-link:hover {
  color: var(--brand-blue);
  border-color: rgba(var(--brand-blue-rgb), 0.35);
}

.test-drive-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ----- Forms (booking modal on book.html) ----- */
.booking-form {
  display: grid;
  gap: 1.25rem;
}

.form-row label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.booking-form input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.9rem 1.25rem;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-soft);
  color: var(--color-text);
  transition: border-color var(--transition-smooth);
}

.booking-form input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.8;
}

.booking-form input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
}

.form-row-submit {
  margin-top: 0.5rem;
}

.btn-primary {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 1rem 2rem;
  width: 100%;
  background: var(--gradient-cta);
  color: var(--btn-primary-text);
  border: 1px solid var(--brand-green-deep);
  border-radius: var(--radius-soft);
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
  box-shadow: 0 8px 26px rgba(var(--brand-green-rgb), 0.42);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--gradient-cta-hover);
  box-shadow: 0 14px 40px rgba(var(--brand-green-rgb), 0.48);
}

.btn-primary:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ----- Blog — same .section + .container column as cars/collections ----- */
.section.blog-section {
  margin-top: 0;
  border-top: 1px solid var(--color-border-soft);
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f8ff 55%, #f8fcfb 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(var(--brand-blue-rgb), 0.06) 0%, transparent 55%);
}

.blog-section .section-subtitle {
  margin-bottom: 0.65rem;
}

.blog-section-desc.section-desc {
  margin-bottom: 2.25rem;
}

.blog-eyebrow-tight {
  letter-spacing: 0.24em;
}

/* Featured card + 2×2 destination grid */
.blog-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  grid-template-columns: 1fr;
  text-align: left;
  width: 100%;
}

.blog-card {
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  min-height: 0;
}

.blog-card:hover {
  border-color: rgba(var(--brand-blue-rgb), 0.22);
  box-shadow: 0 16px 44px rgba(var(--brand-blue-rgb), 0.1);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}

.blog-card-link:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.blog-card-link--row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}

@media (min-width: 400px) {
  .blog-card-link--row {
    flex-wrap: nowrap;
  }
}

.blog-card--compact .blog-card-media--thumb {
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  min-height: 168px;
  aspect-ratio: 16 / 10;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card--featured .blog-card-media {
  aspect-ratio: 16/11;
}

.blog-card-link--row .blog-card-media--thumb {
  flex: 0 0 38%;
  max-width: 200px;
  min-height: 112px;
  aspect-ratio: auto;
  align-self: stretch;
  width: auto;
}

@media (min-width: 480px) {
  .blog-card-link--row .blog-card-media--thumb {
    flex-basis: 42%;
    max-width: 220px;
    min-height: 124px;
  }
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 0.75s var(--transition-smooth);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.blog-card-link--row .blog-card-media::after {
  background: linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.4) 100%);
}

.blog-card-text {
  position: relative;
  z-index: 2;
  padding: 1.1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  text-align: left;
}

.blog-card-link--row .blog-card-text {
  flex: 1 1 auto;
}

.blog-meta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  margin-bottom: 0.35rem;
  text-align: left;
  align-self: flex-start;
}

.blog-card-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
  text-align: left;
  width: 100%;
}

.blog-card--compact .blog-card-title {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.2;
}

.blog-card--featured .blog-card-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

@media (min-width: 700px) and (max-width: 899px) {
  .blog-layout {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card--featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
    min-height: 0;
  }

  .blog-card--featured {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
  }

  .blog-card--featured .blog-card-link {
    flex: 1;
  }

  .blog-card--featured .blog-card-media {
    flex: 1 1 58%;
    min-height: 240px;
    aspect-ratio: auto;
  }

  .blog-card--compact:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .blog-card--compact:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .blog-card--compact:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .blog-card--compact:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }

  .blog-card--compact {
    display: flex;
    flex-direction: column;
  }

  .blog-card--compact .blog-card-link {
    flex: 1;
    min-height: 0;
  }

  .blog-card--compact .blog-card-media--thumb {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    min-height: 132px;
    aspect-ratio: 16 / 10;
  }
}

.blog-card-excerpt {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
  text-align: left;
  width: 100%;
}

.blog-read-more {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  border-bottom: 1px solid rgba(var(--brand-blue-rgb), 0.35);
  padding-bottom: 2px;
  transition: color var(--transition-smooth), border-color var(--transition-smooth);
}

.blog-card:hover .blog-read-more {
  color: var(--brand-green-deep);
  border-color: rgba(var(--brand-green-rgb), 0.45);
}

.blog-all-cta {
  text-align: left;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.blog-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  padding: 1rem 2.25rem;
  color: var(--btn-primary-text);
  text-decoration: none;
  background: var(--gradient-cta);
  border: 1px solid var(--brand-green-deep);
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 28px rgba(var(--brand-green-rgb), 0.42);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.blog-all-button:hover {
  transform: translateY(-2px);
  background: var(--gradient-cta-hover);
  box-shadow: 0 14px 40px rgba(var(--brand-green-rgb), 0.48);
}

.blog-all-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.blog-card--compact .blog-card-excerpt {
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--color-text-muted);
}

.blog-card--compact .blog-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ----- Blog article page ----- */
.blog-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.blog-page-intro {
  max-width: none;
  width: 100%;
  margin-bottom: 3rem;
  text-align: left;
}

.blog-page-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  text-align: left;
}

.blog-page-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 36rem;
}

.blog-page-intro .section-desc.blog-page-sub {
  margin-bottom: 0;
}

.blog-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin: 0 0 2.5rem;
}

.blog-toc a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.42rem 0.9rem;
  border: 1px solid var(--color-border-soft);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--transition-smooth), color var(--transition-smooth), background var(--transition-smooth);
}

.blog-toc a:hover,
.blog-toc a:focus {
  border-color: rgba(var(--brand-blue-rgb), 0.35);
  color: var(--brand-blue);
  background: var(--color-bg-mint);
}

.blog-toc a:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.blog-article-facts {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin: 0.35rem 0 0;
}

.blog-article {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border-soft);
  scroll-margin-top: 5rem;
}

.blog-article:first-of-type {
  border-top: none;
  padding-top: 0;
}

.blog-article-figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  background: var(--color-bg-subtle);
}

.blog-article-figure img {
  width: 100%;
  height: auto;
  max-height: min(52vh, 440px);
  object-fit: cover;
  display: block;
}

.blog-article-figure--inline {
  margin: 1.75rem 0;
}

.blog-article-figure--inline img {
  max-height: min(40vh, 380px);
}

.blog-figure-caption {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-muted);
  padding: 0.75rem 1rem 1rem;
  margin: 0;
  background: var(--color-bg-mint);
}

.blog-article-header {
  margin-bottom: 1.25rem;
  text-align: left;
}

.blog-article-title {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  text-align: left;
}

.blog-article-body {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-text);
  max-width: 44rem;
}

.blog-article-body p + p {
  margin-top: 1rem;
}

.blog-article-body p + .blog-article-figure--inline {
  margin-top: 1.5rem;
}

.blog-article-body .blog-article-figure--inline + p {
  margin-top: 1.25rem;
}

.blog-back {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
  margin-bottom: 2rem;
}

.blog-back:hover {
  color: var(--brand-green-deep);
}

/* ----- Footer: minimal strip (not a second content block) ----- */
.footer--minimal {
  margin-top: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: var(--color-bg-mint);
  border-top: 1px solid var(--color-border-soft);
}

.footer-minimal-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding-bottom: 1.5rem;
}

.footer-minimal-bar .logo {
  font-size: 1.35rem;
}

.footer-minimal-bar .logo--image img {
  height: clamp(44px, 7vw, 62px);
  max-width: min(260px, 72vw);
}

.footer-minimal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

.footer-minimal-nav a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.footer-minimal-nav a:hover {
  color: var(--brand-blue);
}

.footer-minimal-nav a:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.footer-minimal-nav a[aria-current="page"] {
  color: var(--brand-green-deep);
  font-weight: 600;
}

.footer-minimal-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}

.footer-minimal-contact a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
}

.footer-minimal-contact a:hover {
  color: var(--brand-green-deep);
}

.footer-minimal-dot {
  color: var(--color-text-muted);
}

.footer-minimal-bottom {
  border-top: 1px solid var(--color-border-soft);
  padding-top: 1rem;
}

.footer-minimal-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-legal {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .footer-minimal-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .footer-minimal-nav {
    justify-content: flex-start;
    order: 3;
    width: 100%;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border-soft);
  }
  .footer-minimal-contact {
    justify-content: flex-end;
    margin-left: auto;
  }
}

@media (min-width: 900px) {
  .footer-minimal-bar {
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }
  .footer-minimal-nav {
    order: 0;
    width: auto;
    padding-top: 0;
    border-top: none;
    flex: 1;
    justify-content: center;
  }
  .footer-minimal-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-legal {
    text-align: right;
  }
}

.footer-minimal-bar .logo {
  font-size: 1.15rem;
}

/* ----- Book page (services) + register page (contacts) ----- */
.page-book .book-main {
  padding: 6.25rem 1.15rem 9.5rem;
}

.page-register .book-main {
  padding-bottom: 4rem;
}

.page-book .book-main > .container,
.page-register .book-main > .container {
  max-width: 720px;
}

.page-book .blog-back,
.page-register .blog-back {
  margin-bottom: 1.15rem;
}

.book-progress {
  margin: 0 0 1.35rem;
}

.book-progress-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.book-progress-item {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  text-align: center;
  color: #4b5563;
}

.book-progress-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 13px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: rgba(26, 35, 50, 0.12);
}

.book-progress-item.is-complete:not(:last-child)::after {
  background: var(--brand-green);
}

.book-progress-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(26, 35, 50, 0.55);
  background: var(--color-bg-subtle);
  border: 2px solid rgba(26, 35, 50, 0.16);
  z-index: 1;
}

.book-progress-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: inherit;
}

.book-progress-item.is-complete {
  color: var(--brand-green-deep);
}

.book-progress-item.is-complete .book-progress-num {
  color: #ffffff;
  background: var(--brand-green);
  border-color: var(--brand-green-deep);
}

.book-progress-item.is-current {
  color: var(--brand-blue);
}

.book-progress-item.is-current .book-progress-num {
  color: #ffffff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.book-progress-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
}

.book-progress-link:hover .book-progress-label {
  text-decoration: underline;
}

.book-progress-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 8px;
}

.register-page-header {
  margin-bottom: 1.25rem;
  max-width: 40rem;
}

.register-lead {
  margin-bottom: 0;
}

.register-summary-box {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text);
  padding: 1.25rem 1.35rem;
  margin-bottom: 2rem;
  border-radius: var(--radius-soft);
  border: 1px solid var(--color-border-soft);
  background: var(--color-bg-subtle);
  white-space: pre-wrap;
  max-width: 40rem;
}

.register-summary-empty {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  white-space: normal;
}

.register-summary-empty a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
}

.register-summary-empty a:hover {
  text-decoration: underline;
}

.register-booking-form {
  max-width: 32rem;
}

.register-booking-form .form-row input[type="number"] {
  max-width: 12rem;
}

.book-page-header {
  margin-bottom: 1.15rem;
  max-width: none;
  text-align: left;
  width: 100%;
}

.book-page-h1 {
  font-size: clamp(1.7rem, 5.5vw, 2.2rem);
  margin-bottom: 0.45rem;
}

.book-page-lead {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3a4454;
  margin: 0;
  max-width: 38rem;
}

.book-trip-card {
  margin: 0 0 1.75rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: calc(var(--radius-soft) - 4px);
  border: 1px solid var(--color-border-soft);
  background: var(--color-bg-subtle);
}

.book-trip-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.45rem;
}

.book-car-line {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.book-car-line a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
}

.book-car-line a:hover {
  text-decoration: underline;
}

.book-rental-line {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--brand-green-deep);
  margin: 0 0 0.35rem;
}

.book-rental-line[hidden] {
  display: none;
}

.book-quote-total {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.book-fees-section:not([hidden]) + .book-quote-total {
  margin-top: -0.85rem;
}

.book-quote-total[hidden] {
  display: none;
}

.book-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
}

.book-date-field {
  min-width: 0;
}

.book-date-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4b5563;
  margin: 0 0 0.3rem;
}

.book-date-field input[type="date"] {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.5rem 0.55rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: var(--color-text);
  text-align: left;
  overflow: hidden;
}

.book-date-field input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  margin: 0;
  padding: 0;
  min-height: 1.2em;
}

.book-date-field input[type="date"]::-webkit-datetime-edit {
  margin: 0;
  padding: 0;
}

.book-date-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.book-date-field input[type="date"]::-webkit-calendar-picker-indicator {
  margin: 0 0 0 0.15rem;
  padding: 0;
  width: 0.95em;
  height: 0.95em;
  opacity: 0.45;
}

.book-date-field input[type="date"]:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--brand-green-rgb), 0.18);
}

.book-date-field input[type="date"].is-invalid {
  border-color: #c23a3a;
  box-shadow: 0 0 0 3px rgba(194, 58, 58, 0.14);
}

.book-dates-error {
  margin: 0.7rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: #b42318;
}

.book-dates-error[hidden] {
  display: none;
}

.book-services-section {
  margin-bottom: 1.25rem;
}

.book-services-heading {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 0.35rem;
  text-align: left;
}

.book-services-lead {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #3a4454;
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 36rem;
  text-align: left;
}

.book-services-empty {
  margin: 0;
  padding: 1.1rem 1.15rem;
  border-radius: calc(var(--radius-soft) - 4px);
  border: 1px dashed var(--color-border);
  background: var(--color-bg-subtle);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(26, 35, 50, 0.72);
}

.services-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card-skeleton {
  min-height: 6.25rem;
  border-radius: calc(var(--radius-soft) - 4px);
  border: 1px solid var(--color-border-soft);
  background: linear-gradient(90deg, var(--color-bg-subtle) 0%, #e4eef8 48%, var(--color-bg-subtle) 100%);
  background-size: 200% 100%;
  animation: book-skel 1.15s ease-in-out infinite;
}

@keyframes book-skel {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-kicker,
  .hero-subline {
    animation: none;
    opacity: 1;
  }

  .service-card-skeleton {
    animation: none;
  }
}

.service-card {
  display: block;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.service-card input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.service-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  height: 100%;
  min-height: 5.5rem;
  padding: 1rem 1.05rem;
  border-radius: calc(var(--radius-soft) - 4px);
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
  transition: border-color var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card:hover .service-card-inner {
  border-color: rgba(var(--brand-green-rgb), 0.25);
}

.service-card input:focus-visible + .service-card-inner {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.service-card input:checked + .service-card-inner {
  border-color: rgba(var(--brand-green-rgb), 0.45);
  background: rgba(var(--brand-green-rgb), 0.09);
  box-shadow: 0 0 0 1px rgba(var(--brand-green-rgb), 0.15);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #f3f8ff 0%, #e7f0fd 100%);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-blue-rgb), 0.1);
  line-height: 0;
}

.service-icon svg {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
}

.service-icon--wifi {
  background: linear-gradient(180deg, #f0fdf7 0%, #ddf8eb 100%);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-green-rgb), 0.16);
}

.service-icon--ins-basic,
.service-icon--ins-full,
.service-icon--ins-plus {
  background: linear-gradient(180deg, #f0fdf7 0%, #ddf8eb 100%);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-green-rgb), 0.16);
}

.service-icon--ins-plus {
  background: linear-gradient(180deg, #ecfdf5 0%, #d7f7e6 100%);
}

.service-card input:checked + .service-card-inner .service-icon {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(var(--brand-green-rgb), 0.22);
}

.service-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
  flex: 1;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.service-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(26, 35, 50, 0.68);
}

.service-price {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-top: 0.15rem;
}

.service-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--color-border);
  margin-top: 2px;
  transition: border-color var(--transition-smooth), background var(--transition-smooth);
}

.service-card input:checked + .service-card-inner .service-check {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: inset 0 0 0 2px #ffffff;
}

.book-insurance-section {
  margin-top: 1.75rem;
}

.book-insurance-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  color: var(--color-text);
}

.book-insurance-hint {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.5;
  color: #8a4b12;
  background: #fff6e8;
  border: 1px solid rgba(196, 122, 42, 0.28);
  border-radius: calc(var(--radius-soft) - 6px);
  padding: 0.7rem 0.85rem;
}

.service-card-wrap {
  position: relative;
  height: 100%;
}

.service-card-wrap .service-card {
  display: block;
  height: 100%;
}

.service-card-wrap .service-card-text {
  padding-right: 1.75rem;
}

.service-card-wrap.is-locked .service-card {
  cursor: not-allowed;
}

.service-card-wrap.is-locked .service-card-inner {
  opacity: 0.58;
  background: var(--color-bg-subtle);
}

.service-lock-hint {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.4;
  color: #8a4b12;
}

.service-check--radio {
  border-radius: 999px;
}

.service-info-btn {
  position: absolute;
  top: 0.9rem;
  right: 3.15rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(26, 35, 50, 0.08);
}

.service-info-btn:hover,
.service-info-btn:focus-visible {
  border-color: var(--brand-blue);
  background: rgba(var(--brand-blue-rgb), 0.08);
  outline: none;
}

.insurance-info-modal .insurance-info-panel {
  max-width: 400px;
  max-height: min(70vh, 420px);
  padding: 1.5rem 1.25rem 1.35rem;
}

.insurance-info-modal .booking-modal-summary {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.book-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  padding: 0.75rem 1.15rem calc(0.85rem + env(safe-area-inset-bottom, 0));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border-soft);
  box-shadow: 0 -8px 32px rgba(var(--brand-blue-rgb), 0.08);
}

.book-sticky-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.book-sticky-meta {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  color: #3a4454;
  text-align: center;
}

.btn-book-trigger {
  width: 100%;
  max-width: none;
  min-height: 52px;
  border-radius: var(--radius-pill);
}

.btn-book-trigger:hover {
  transform: none;
}

@media (max-width: 379px) {
  .book-dates {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .book-date-field input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
  }
}

@media (min-width: 640px) {
  .page-book .book-main {
    padding: 6.5rem 1.5rem 8.25rem;
  }

  .page-register .book-main {
    padding-bottom: 4rem;
  }

  .book-sticky-bar {
    padding: 0.9rem 1.5rem calc(0.9rem + env(safe-area-inset-bottom, 0));
  }

  .book-sticky-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .book-sticky-meta {
    text-align: left;
    flex: 1;
  }

  .btn-book-trigger {
    width: auto;
    min-width: 240px;
    flex-shrink: 0;
  }
}

/* Modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  max-height: min(92vh, 640px);
  overflow-y: auto;
  margin: 0;
  padding: 2rem 1.5rem 1.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfa 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
  box-shadow: 0 -20px 80px rgba(var(--brand-blue-rgb), 0.12);
}

@media (min-width: 520px) {
  .booking-modal {
    align-items: center;
    padding: 1.5rem;
  }

  .booking-modal-panel {
    border-radius: var(--radius-soft);
    box-shadow: 0 24px 80px rgba(var(--brand-blue-rgb), 0.15);
  }
}

.booking-modal-x {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--color-bg-subtle);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition-smooth);
}

.booking-modal-x:hover {
  background: rgba(var(--brand-blue-rgb), 0.1);
}

.booking-modal-heading {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}

.booking-modal-summary {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  white-space: pre-line;
}

.booking-form--modal {
  margin-top: 0.5rem;
}

.register-success-panel {
  text-align: center;
}

.register-success-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(var(--brand-green-rgb), 0.15);
  color: var(--brand-green-deep);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.register-success-voucher {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-green-deep);
}

.register-success-home-btn {
  width: 100%;
  margin-top: 0.25rem;
}

.register-success-modal .booking-modal-heading {
  text-align: center;
  padding-right: 0;
}

.register-success-modal .booking-modal-summary {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-row label .optional {
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-text-muted);
}

@media (min-width: 900px) {
  .blog-card--compact .blog-card-text {
    flex: 1 1 52%;
    min-width: 148px;
  }
}

/* ----- Collection pages: gallery of cars for an experience ----- */
.page-collection .collection-page-main {
  padding: 6.5rem 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-page-header {
  margin-bottom: 2.5rem;
  max-width: none;
  width: 100%;
  text-align: left;
}

.collection-page-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  margin-bottom: 0.75rem;
}

.collection-page-title {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.collection-page-lead {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 36rem;
}

.collection-page-about {
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-soft);
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-soft);
}

.collection-page-about h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
  text-align: left;
}

.collection-page-about p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.collection-page-about p + p {
  margin-top: 0.75rem;
}

.collection-gallery-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  text-align: left;
}

.collection-gallery-sub {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* Carousel: arrows + horizontal scroll / swipe */
.collection-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: stretch;
  margin-top: 0.5rem;
}

.collection-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--brand-green-rgb), 0.45) rgba(var(--brand-blue-rgb), 0.08);
  padding-bottom: 0.35rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}

.collection-carousel-viewport::-webkit-scrollbar {
  height: 6px;
}

.collection-carousel-viewport::-webkit-scrollbar-thumb {
  background: rgba(var(--brand-green-rgb), 0.35);
  border-radius: var(--radius-pill);
}

.collection-carousel-track {
  display: flex;
  gap: 1.25rem;
  padding: 0.35rem 0.25rem 0.65rem;
  width: max-content;
  min-width: 100%;
}

.collection-carousel .collection-car-tile {
  flex: 0 0 min(300px, calc(100vw - 6.5rem));
  max-width: 380px;
  scroll-snap-align: start;
  scroll-margin-inline: 0.25rem;
}

@media (min-width: 700px) {
  .collection-carousel .collection-car-tile {
    flex: 0 0 clamp(300px, 30vw, 380px);
  }
}

.collection-carousel-btn {
  align-self: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: var(--brand-blue);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth), opacity var(--transition-smooth);
}

.collection-carousel-btn:hover:not(:disabled) {
  background: rgba(var(--brand-green-rgb), 0.12);
  border-color: rgba(var(--brand-green-rgb), 0.4);
  color: var(--brand-green-deep);
}

.collection-carousel-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.collection-carousel-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.collection-carousel-hint {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  text-align: left;
  padding-left: 0.25rem;
}

.collection-car-tile {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
  box-shadow: var(--shadow-photo);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.collection-car-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-green-rgb), 0.22);
}

.collection-car-tile-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.collection-car-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--transition-smooth);
}

.collection-car-tile:hover .collection-car-tile-media img {
  transform: scale(1.04);
}

.collection-car-tile-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.collection-car-tile-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.collection-car-tile-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  margin-bottom: 0.5rem;
}

.collection-car-tile-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.collection-car-tile-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.collection-car-tile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.collection-car-tile-actions a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
}

.collection-car-tile-actions .link-gallery {
  color: var(--brand-blue);
  text-decoration: none;
}

.collection-car-tile-actions .link-gallery:hover {
  color: var(--brand-green-deep);
}

.collection-car-tile-actions .link-gallery:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.collection-car-tile-actions .link-book {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  background: var(--gradient-cta);
  color: var(--btn-primary-text);
  text-decoration: none;
  border: 1px solid var(--brand-green-deep);
  border-radius: calc(var(--radius-soft) - 8px);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(var(--brand-green-rgb), 0.4);
  transition: filter var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.collection-car-tile-actions .link-book:hover {
  background: var(--gradient-cta-hover);
  filter: brightness(1.02);
  box-shadow: 0 10px 28px rgba(var(--brand-green-rgb), 0.5);
}

.collection-car-tile-actions .link-book:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ----- Car detail page (gallery + path guide) ----- */
.page-car-detail .car-detail-main {
  padding: 6.5rem 1.5rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.car-detail-back {
  display: inline-block;
  margin-bottom: 1.75rem;
}

.car-detail-header-block {
  margin-bottom: 1.5rem;
  text-align: left;
  max-width: none;
  width: 100%;
}

.car-detail-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(var(--brand-blue-rgb), 0.35);
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.car-detail-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-align: left;
}

.car-detail-price {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.car-detail-lead {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 36rem;
}

.car-detail-hero {
  margin: 2rem 0 1.5rem;
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-photo);
}

.car-detail-hero img {
  width: 100%;
  height: auto;
  max-height: min(56vh, 520px);
  object-fit: cover;
  display: block;
}

.car-gallery-section {
  margin: 2.5rem 0;
}

.car-gallery-heading {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  text-align: left;
}

.car-gallery-intro {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.car-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .car-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
}

.car-gallery-item {
  margin: 0;
  border-radius: calc(var(--radius-soft) - 8px);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  aspect-ratio: 4/3;
}

.car-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.car-gallery-item:hover img {
  transform: scale(1.05);
}

.path-guide-section {
  margin: 2.5rem 0;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-soft);
  background: linear-gradient(145deg, rgba(var(--brand-blue-rgb), 0.06) 0%, rgba(var(--brand-green-rgb), 0.08) 100%);
  border: 1px solid rgba(var(--brand-green-rgb), 0.22);
}

.path-guide-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  text-align: left;
}

.path-guide-body {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.path-guide-body p + p {
  margin-top: 0.85rem;
}

.car-specs-section {
  margin: 2rem 0;
}

.car-specs-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.car-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .car-specs-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.car-specs-list li {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  padding: 0.65rem 0.85rem;
  background: var(--color-bg-subtle);
  border-radius: calc(var(--radius-soft) - 10px);
  border: 1px solid var(--color-border-soft);
}

.car-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-soft);
}

.car-detail-actions .btn-primary {
  width: auto;
  min-width: 200px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.car-detail-actions .btn-secondary {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-blue);
  text-decoration: none;
  padding: 0.75rem 0;
}

.car-detail-actions .btn-secondary:hover {
  color: var(--brand-green-deep);
}

.car-detail-actions .btn-secondary:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----- AOS-style reveal (no lib) ----- */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- About page ----- */
.page-about .about-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.about-page-intro {
  max-width: none;
  width: 100%;
  margin-bottom: 2.5rem;
}

.about-page-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.about-page-intro .section-subtitle {
  max-width: 40rem;
  margin-bottom: 0;
}

.about-hero {
  position: relative;
  margin-bottom: 3.5rem;
}

.about-hero-media {
  position: relative;
  width: 100%;
  max-height: min(52vh, 420px);
  overflow: hidden;
  border-radius: 0;
}

.about-hero-media img {
  width: 100%;
  height: min(52vh, 420px);
  object-fit: cover;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 35, 50, 0.15) 0%, rgba(26, 35, 50, 0.55) 100%);
  pointer-events: none;
}

.about-hero-caption {
  position: relative;
  margin-top: -4.5rem;
  z-index: 1;
}

.about-hero-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 36rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--brand-blue-rgb), 0.92) 0%, rgba(var(--brand-green-rgb), 0.88) 100%);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-photo);
}

.about-story {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-story {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-story-media {
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-photo);
}

.about-story-media img {
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.about-story-text h2 {
  font-size: clamp(1.65rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.about-story-text p {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-story-text p + p {
  margin-top: 1rem;
}

.about-values {
  margin-bottom: 4rem;
}

.about-values .section-title {
  margin-bottom: 2rem;
}

.about-values-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-value-card {
  padding: 1.5rem 1.35rem;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-soft);
  border-radius: calc(var(--radius-soft) - 6px);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-photo);
}

.about-value-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.about-value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.about-value-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.about-gallery {
  margin-bottom: 4rem;
}

.about-gallery-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-gallery-item {
  margin: 0;
  border-radius: calc(var(--radius-soft) - 6px);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  background: var(--color-bg-subtle);
}

.about-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-gallery-item figcaption {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.75rem 1rem;
  background: var(--color-bg-mint);
}

.about-suggestions {
  margin-bottom: 4rem;
}

.about-suggestions-lead {
  margin-bottom: 2rem;
}

.about-suggestions-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-suggestions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-suggestion-card {
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
  box-shadow: var(--shadow-photo);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.about-suggestion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-photo-hover);
}

.about-suggestion-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.about-suggestion-link:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.about-suggestion-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.about-suggestion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.about-suggestion-card:hover .about-suggestion-media img {
  transform: scale(1.04);
}

.about-suggestion-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.about-suggestion-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  background: var(--color-accent-soft);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.65rem;
}

.about-suggestion-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.about-suggestion-body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.about-suggestion-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.about-suggestion-card:hover .about-suggestion-cta {
  color: var(--brand-green-deep);
}

.about-cta {
  margin-bottom: 1rem;
}

.about-cta-inner {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: linear-gradient(145deg, var(--color-bg-subtle) 0%, var(--color-bg-mint) 100%);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-soft);
}

.about-cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.65rem;
}

.about-cta-inner p {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.about-cta-actions .btn-primary {
  width: auto;
  min-width: 180px;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.about-cta-secondary {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-blue);
  text-decoration: none;
  padding: 0.75rem 0.5rem;
}

.about-cta-secondary:hover {
  color: var(--brand-green-deep);
}

.about-cta-secondary:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----- Homepage extras: desktop defaults (mobile layout below) ----- */
.hero-mobile-bar,
.home-cats,
.home-popular-head,
.cars-popular,
.home-all-title-mobile,
.home-all-count,
.m-sheet {
  display: none;
}

.home-all-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
  scroll-margin-top: 5.5rem;
}

.home-all-head .section-title {
  margin-bottom: 0;
}

.home-sort {
  display: none;
}

.home-sort select {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem 1.4rem 0.35rem 0.2rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%231a2332' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  max-width: 220px;
}

.home-sort select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 6px;
}

.car-card-overlay {
  display: none;
}

/* ============================================
   Mobile homepage — compact localrent-like layout
   ============================================ */
@media (max-width: 767px) {
  .page-home .header {
    padding: 0.7rem 0.9rem;
  }

  .page-home .header.is-on-hero:not(.is-menu-open) {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
  }

  .page-home .header.is-on-hero:not(.is-menu-open) .logo,
  .page-home .header.is-on-hero:not(.is-menu-open) .menu-toggle {
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  }

  .page-home .header.is-on-hero:not(.is-menu-open) .logo--image img {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  }

  .page-home .header.is-on-hero:not(.is-menu-open) .menu-toggle span {
    background: #ffffff;
  }

  .page-home .header.is-on-hero:not(.is-menu-open) .lang-switch-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.45);
  }

  .page-home .header.is-on-hero:not(.is-menu-open) .lang-switch-btn.is-active {
    color: var(--btn-primary-text);
    background: var(--gradient-cta);
    border-color: var(--brand-green-deep);
  }

  .page-home .hero-calendar-popup {
    z-index: 240;
  }

  .page-home .hero {
    min-height: 0;
    padding: 0 0 0.35rem;
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
  }

  .page-home .hero-bg {
    position: relative;
    height: 270px;
    flex-shrink: 0;
  }

  .page-home .hero-bg-image {
    opacity: 1;
    transform: none;
    filter: saturate(1.06) contrast(1.06) brightness(0.78);
    object-position: 32% 42%;
  }

  .page-home .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.45) 100%);
  }

  .page-home .hero-bg-vignette,
  .page-home .hero-bg-grain,
  .page-home .hero-kicker,
  .page-home .hero-subline,
  .page-home .hero-scroll-hint {
    display: none;
  }

  .page-home .hero-content--center {
    margin-top: -7.4rem;
    padding: 0 0.8rem 0;
    max-width: none;
    width: 100%;
    align-items: stretch;
    text-align: left;
    overflow: visible;
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  .page-home .hero-copy {
    padding-top: 0;
  }

  .page-home .hero-title {
    color: #ffffff;
    font-family: var(--font-sans), var(--font-arm);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: none;
    line-height: 1.2;
    margin: 0 0 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
    animation: none;
    opacity: 1;
  }

  .page-home .hero-search {
    padding: 0.95rem 0.9rem 1rem;
    border: 1px solid rgba(var(--brand-green-rgb), 0.45);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(26, 35, 50, 0.12);
    overflow: visible;
  }

  .page-home .hero-mobile-bar {
    display: none;
  }

  .page-home .hero-booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .page-home .hero-booking-field,
  .page-home .hero-booking-submit {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-column: auto;
    padding: 0;
    border-left: none;
  }

  .page-home .hero-booking-field + .hero-booking-field,
  .page-home .hero-booking-submit {
    border-left: none;
  }

  .page-home .hero-booking-label {
    min-height: 0;
    margin-bottom: 0.1rem;
    font-size: 0.75rem;
  }

  .page-home .hero-booking-submit .hero-booking-label--invisible,
  .page-home .hero-booking-submit .hero-booking-hint {
    display: none;
  }

  .page-home .hero-booking-date-time {
    grid-template-columns: minmax(0, 1.35fr) minmax(5.4rem, 0.85fr);
    gap: 0.45rem;
  }

  .page-home .hero-booking-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    margin-top: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(26, 35, 50, 0.1);
  }

  .page-home .hero-booking-checkbox {
    min-height: 44px;
    align-items: flex-start;
    margin-top: 0.15rem;
  }

  .page-home .hero-time-picker.is-open {
    z-index: 30;
  }

  .page-home .hero-booking-extra:not([hidden]) {
    display: block;
    margin-top: 0.75rem;
    padding: 0;
    border-top: none;
  }

  .page-home .hero-location-fees-total:not([hidden]) {
    display: block;
    margin-top: 0.65rem;
  }

  .page-home .hero-booking-submit {
    display: flex;
  }

  .page-home .hero-pickup-notes:not([hidden]) {
    display: block;
    flex: none;
  }

  .page-home .btn-search--hero {
    width: 100%;
  }

  .hero-m-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-m-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.12rem;
    width: 100%;
    padding: 0.72rem 0.9rem 0.78rem;
    background: #fff;
    border: none;
    border-bottom: 1px solid rgba(26, 35, 50, 0.1);
    text-align: left;
    cursor: pointer;
    font-family: var(--font-sans);
    color: var(--color-text);
    position: relative;
  }

  .hero-m-split .hero-m-field:first-child {
    border-right: 1px solid rgba(26, 35, 50, 0.1);
  }

  .hero-m-field--dates {
    padding-right: 2rem;
  }

  .hero-m-field--dates::after,
  .hero-m-split .hero-m-field::after {
    content: '';
    position: absolute;
    right: 0.75rem;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%239aa3b2' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .hero-m-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-text-muted);
    line-height: 1.2;
  }

  .hero-m-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 1rem;
  }

  .hero-m-actions {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 0.55rem;
    padding: 0.7rem;
    background: #fff;
  }

  .hero-m-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    border: 1px solid rgba(var(--brand-green-rgb), 0.45);
    background: #fff;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
  }

  .hero-m-chip.is-open {
    background: rgba(var(--brand-green-rgb), 0.1);
    border-color: var(--brand-green);
  }

  .hero-m-chip-icon {
    flex-shrink: 0;
    color: var(--brand-green-deep);
  }

  .hero-m-chip:focus-visible,
  .hero-m-field:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
  }

  .page-home .home-cats:not([hidden]) {
    display: block;
    padding: 0.85rem 0 0.15rem;
  }

  .home-cats-track {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0 0.8rem 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-cats-track::-webkit-scrollbar {
    display: none;
  }

  .home-cat {
    flex: 0 0 42%;
    min-height: 92px;
    background: #f3f5f7;
    border-radius: 14px;
    padding: 0.7rem 0.75rem 0.55rem;
    text-decoration: none;
    color: var(--color-text);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .home-cat-title {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
    max-width: 72%;
  }

  .home-cat-icon {
    align-self: flex-end;
    line-height: 0;
  }

  .page-home .cars-section {
    padding: 1.1rem 0.8rem 2.5rem;
  }

  .page-home .cars-section .container {
    max-width: none;
  }

  .page-home .home-desktop-only,
  .page-home .home-all-title-desktop {
    display: none;
  }

  .page-home .home-popular-head:not([hidden]),
  .page-home .home-all-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0 0.75rem;
  }

  .page-home .home-block-title,
  .page-home .home-all-head .section-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    flex-wrap: wrap;
  }

  .page-home .home-all-title-mobile,
  .page-home .home-all-count {
    display: inline;
  }

  .page-home .home-all-count {
    font-weight: 700;
    color: var(--color-text);
  }

  .page-home .home-block-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    white-space: nowrap;
  }

  .page-home .home-sort {
    display: block;
    flex-shrink: 0;
  }

  .page-home .home-sort select {
    font-size: 0.78rem;
    max-width: 150px;
    color: var(--color-text-muted);
  }

  .page-home .cars-popular:not([hidden]) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.35rem;
  }

  .page-home .cars-grid {
    gap: 0.85rem;
  }

  .page-home .car-card {
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 14px;
  }

  .page-home .car-card::before {
    display: none;
  }

  .page-home .car-card:hover {
    transform: none;
    box-shadow: none;
  }

  .page-home .car-card-image {
    margin: 0;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    box-shadow: none;
  }

  .page-home .cars-grid .car-card-image {
    aspect-ratio: 16 / 11;
  }

  .page-home .car-card-image::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
  }

  .page-home .car-card-image::after {
    display: none;
  }

  .page-home .car-card-overlay {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 2.2rem 0.7rem 0.7rem;
    color: #fff;
    text-align: left;
  }

  .page-home .car-card-overlay .car-card-title {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0 0 0.12rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  }

  .page-home .car-card-overlay .car-card-price {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
  }

  .page-home .car-card-badge {
    top: 0.55rem;
    left: 0.55rem;
    bottom: auto;
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0.28rem 0.55rem;
    background: #7c5cbf;
    color: #fff;
    border: none;
    box-shadow: none;
  }

  .page-home .car-card-body,
  .page-home .car-card-footer {
    display: none;
  }

  .page-home .benefits-section,
  .page-home .blog-section {
    padding: 2.25rem 0.8rem;
  }

  .page-home .section-title {
    font-size: 1.45rem;
  }

  .m-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 220;
  }

  .m-sheet[hidden] {
    display: none;
  }

  .m-sheet-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(16, 22, 32, 0.45);
    cursor: pointer;
  }

  .m-sheet-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 82vh;
    overflow: auto;
    background: #fff;
    border-radius: 18px 18px 0 0;
    padding: 0.85rem 0.9rem 1.4rem;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
  }

  .m-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
  }

  .m-sheet-head h3 {
    font-size: 1.05rem;
    color: var(--color-text);
    margin: 0;
  }

  .m-sheet-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f5f7;
    border-radius: 50%;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text);
  }

  .m-sheet-list button,
  .m-filter-opt {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.85rem 0.2rem;
    border: none;
    border-bottom: 1px solid rgba(26, 35, 50, 0.08);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
  }

  .m-sheet-list button.is-selected {
    color: var(--brand-green-deep);
  }

  .m-sheet-group {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.85rem 0.2rem 0.35rem;
  }

  .m-filters-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin: 0 0 0.35rem;
  }

  .m-filter-opt {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
  }

  .m-filter-opt input {
    accent-color: var(--brand-green);
  }

  body.m-sheet-open {
    overflow: hidden;
  }
}

/* ----- Catalog skeleton / error ----- */
.car-card--skeleton {
  pointer-events: none;
}

.car-card--skeleton .car-card-image,
.skel-line {
  background: linear-gradient(90deg, #ece8e1 25%, #f6f3ee 50%, #ece8e1 75%);
  background-size: 200% 100%;
  animation: catalog-skel 1.2s ease-in-out infinite;
}

.car-card--skeleton .car-card-image {
  min-height: 180px;
}

.skel-line {
  display: block;
  height: 0.85rem;
  border-radius: 4px;
  margin: 0.45rem 0;
}

.skel-line--short { width: 60%; }
.skel-line--price { width: 40%; }

@keyframes catalog-skel {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.catalog-error {
  text-align: center;
  padding: 2.5rem 1rem;
}

.catalog-retry-btn {
  margin-top: 1rem;
}

/* ----- FAQ ----- */
.faq-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.faq-list {
  margin: 1.75rem 0 0;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-soft, rgba(0, 0, 0, 0.08));
  padding: 1.15rem 0;
}

.faq-item dt {
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.faq-item dd {
  margin: 0;
  color: var(--color-text-muted, #5c574f);
  line-height: 1.55;
}
