:root {
  --navy: #102a43;
  --navy-2: #173f5f;
  --navy-3: #0a1d2e;
  --charcoal: #243746;
  --muted: #5f7283;
  --line: #dce5eb;
  --soft: #f4f7f9;
  --soft-blue: #eaf2f7;
  --white: #ffffff;
  --accent: #f4b942;
  --accent-dark: #9c6d06;
  --success: #16794a;
  --danger: #b13a34;
  --shadow-sm: 0 8px 24px rgba(16, 42, 67, .08);
  --shadow-md: 0 18px 50px rgba(16, 42, 67, .13);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --focus: 0 0 0 4px rgba(244, 185, 66, .4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { color: var(--navy-2); }
button, input, select, textarea { font: inherit; }
button, [type="button"], [type="submit"], a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; box-shadow: var(--focus); }
h1, h2, h3, h4 { margin: 0 0 .55em; color: var(--navy); font-family: Manrope, Inter, sans-serif; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 8vw, 4.8rem); }
h2 { font-size: clamp(1.85rem, 5vw, 3.15rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.2em; }
ul, ol { padding-left: 1.2rem; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 99999; transform: translateY(-150%); background: var(--white); color: var(--navy); padding: 12px 18px; border-radius: 8px; font-weight: 700; box-shadow: var(--shadow-md); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.narrow { width: min(100%, 820px); margin-inline: auto; }
.centered { text-align: center; }
.eyebrow { margin: 0 0 10px; color: var(--accent-dark); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.section { padding: 74px 0; }
.section-tinted { background: var(--soft); }
.section-heading { display: grid; gap: 12px; align-items: end; margin-bottom: 30px; }
.section-heading > p { max-width: 610px; color: var(--muted); }
.section-heading.centered { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.centered-action { margin: 32px 0 0; text-align: center; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 12px 19px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 10px 22px rgba(16, 42, 67, .18); }
.button-primary:hover { background: var(--navy-2); color: var(--white); }
.button-secondary { border-color: #b9c8d3; background: var(--white); color: var(--navy); }
.button-secondary:hover { border-color: var(--navy); background: var(--soft-blue); color: var(--navy); }
.button-light { background: var(--white); color: var(--navy); }
.button-light:hover { background: var(--soft-blue); color: var(--navy); }
.button-full { width: 100%; }
.link-button { border: 0; padding: 0; background: transparent; color: inherit; text-decoration: underline; text-underline-offset: .2em; cursor: pointer; }

.site-header { position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(220,229,235,.85); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); transition: box-shadow .2s ease; }
.site-header.is-compact { box-shadow: 0 8px 25px rgba(16,42,67,.08); }
.header-inner { display: grid; min-height: 78px; grid-template-columns: 1fr auto; align-items: center; gap: 16px; transition: min-height .2s ease; }
.site-header.is-compact .header-inner { min-height: 66px; }
.brand { display: inline-flex; width: 190px; align-items: center; }
.brand img, .brand .custom-logo { width: 100%; height: auto; }
.menu-toggle { display: grid; width: 46px; height: 46px; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); cursor: pointer; }
.menu-toggle span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.primary-navigation { position: fixed; inset: 79px 0 auto; display: none; max-height: calc(100vh - 79px); overflow: auto; border-top: 1px solid var(--line); background: var(--white); padding: 20px 16px 30px; box-shadow: var(--shadow-md); }
.primary-navigation.is-open { display: block; }
.primary-navigation ul { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.primary-navigation a { display: block; border-radius: 8px; padding: 13px 10px; color: var(--navy); font-weight: 650; text-decoration: none; }
.primary-navigation a:hover { background: var(--soft); }
.header-actions { display: none; }

.hero { position: relative; overflow: hidden; padding: 48px 0 0; background: linear-gradient(180deg, #f6fafc 0%, #fff 82%); }
.hero::before { position: absolute; top: -170px; right: -220px; width: 520px; height: 520px; border: 90px solid rgba(16,42,67,.035); border-radius: 50%; content: ""; }
.hero-grid { position: relative; display: grid; gap: 30px; align-items: center; }
.hero-copy { max-width: 680px; }
.hero h1 { max-width: 800px; }
.hero-lead { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 3vw, 1.25rem); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-visual { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.hero-visual img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.hero-visual > span { position: absolute; right: 12px; bottom: 12px; left: 12px; border-radius: 9px; background: rgba(10,29,46,.88); color: var(--white); padding: 9px 12px; font-size: .78rem; text-align: center; }
.booking-panel { position: relative; z-index: 2; margin-top: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 22px; box-shadow: var(--shadow-md); }
.booking-panel-heading { display: grid; gap: 4px; margin-bottom: 18px; }
.booking-panel-heading h2 { font-size: 1.45rem; }
.booking-panel-heading > p { color: var(--muted); font-size: .92rem; }
.tolia-form-grid { display: grid; gap: 14px; }
.tolia-form-grid label, .tolia-booking-flow label, .tolia-manage-form label { display: grid; gap: 7px; color: var(--navy); font-size: .84rem; font-weight: 700; }
input, select, textarea { width: 100%; min-height: 50px; border: 1px solid #b8c7d2; border-radius: 10px; background: var(--white); color: var(--charcoal); padding: 11px 13px; }
textarea { min-height: 100px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #8095a4; }
input:invalid:not(:placeholder-shown), select:invalid:not(:focus) { border-color: var(--danger); }
.tolia-search-button { align-self: end; width: 100%; }
.tolia-form-message { margin: 10px 0 0; color: var(--danger); font-size: .9rem; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; }
.trust-grid > div { display: grid; min-height: 100px; place-content: center; gap: 8px; border-bottom: 1px solid var(--line); padding: 18px 10px; text-align: center; }
.trust-grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
.trust-grid span { display: inline-grid; width: 34px; height: 34px; margin-inline: auto; place-items: center; border-radius: 50%; background: var(--soft-blue); color: var(--navy); font-weight: 800; }
.trust-grid strong { color: var(--navy); font-size: .84rem; }

.tolia-filter-row { display: flex; gap: 8px; margin: 0 0 24px; overflow-x: auto; padding: 4px 2px 10px; scrollbar-width: thin; }
.tolia-filter-row button { flex: 0 0 auto; min-height: 42px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--navy); padding: 8px 16px; font-weight: 700; cursor: pointer; }
.tolia-filter-row button.is-active, .tolia-filter-row button:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.tolia-vehicle-grid { display: grid; gap: 20px; }
.tolia-vehicle-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.tolia-vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tolia-vehicle-card[hidden] { display: none; }
.tolia-vehicle-media { position: relative; display: block; overflow: hidden; background: var(--soft-blue); text-decoration: none; }
.tolia-vehicle-media img, .tolia-image-placeholder { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .35s ease; }
.tolia-vehicle-card:hover .tolia-vehicle-media img { transform: scale(1.025); }
.tolia-image-placeholder { display: grid; place-items: center; background: linear-gradient(145deg, #dce8ef, #f4f8fa); color: var(--muted); padding: 24px; text-align: center; }
.tolia-image-placeholder.large { min-height: 350px; border-radius: var(--radius); }
.tolia-image-placeholder span { max-width: 230px; border: 1px dashed #9eb1bd; border-radius: 8px; background: rgba(255,255,255,.65); padding: 10px; font-size: .8rem; }
.tolia-status { display: inline-flex; align-items: center; border-radius: 999px; background: var(--soft); color: var(--navy); padding: 6px 10px; font-size: .72rem; font-weight: 800; text-transform: capitalize; }
.tolia-vehicle-media .tolia-status { position: absolute; top: 12px; left: 12px; box-shadow: 0 4px 15px rgba(16,42,67,.14); }
.status-active, .status-approved, .status-confirmed { background: #dff4e8; color: #0c623b; }
.status-unavailable, .status-rented, .status-service { background: #fff0d5; color: #855604; }
.status-retired, .status-cancelled, .status-declined { background: #f7dfde; color: #8a2e2a; }
.tolia-vehicle-card-body { padding: 19px; }
.tolia-vehicle-card h3 { margin-bottom: 14px; }
.tolia-vehicle-card h3 a { color: var(--navy); text-decoration: none; }
.tolia-spec-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tolia-spec-row span { border-radius: 999px; background: var(--soft); color: var(--muted); padding: 5px 9px; font-size: .74rem; }
.tolia-rate { margin: 18px 0 14px; color: var(--muted); }
.tolia-rate strong { color: var(--navy); font-size: 1.35rem; }
.tolia-card-actions { display: grid; gap: 9px; }

.steps-grid { display: grid; gap: 16px; margin-top: 30px; }
.steps-grid article { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 26px; }
.steps-grid article > span { display: grid; width: 46px; height: 46px; margin-bottom: 20px; place-items: center; border-radius: 12px; background: var(--navy); color: var(--white); font-weight: 800; }
.steps-grid p { color: var(--muted); }
.split-layout { display: grid; gap: 34px; align-items: center; }
.why-visual { min-height: 360px; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--navy), #265d82); padding: 28px; }
.map-card { position: relative; display: grid; height: 100%; min-height: 304px; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: 20px; background: linear-gradient(30deg, rgba(255,255,255,.07) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.07) 75%); background-size: 42px 42px; color: var(--white); font-family: Manrope, sans-serif; font-size: 1.6rem; font-weight: 800; }
.map-card::before, .map-card::after { position: absolute; width: 130%; height: 25px; border-radius: 20px; background: rgba(255,255,255,.16); content: ""; transform: rotate(-22deg); }
.map-card::after { transform: rotate(35deg); }
.map-card span { position: relative; z-index: 2; border-radius: 10px; background: var(--white); color: var(--navy); padding: 10px 16px; }
.map-card i { position: absolute; z-index: 3; width: 20px; height: 20px; border: 5px solid var(--accent); border-radius: 50% 50% 50% 0; background: var(--white); transform: rotate(-45deg); }
.map-card i:nth-child(2) { top: 22%; left: 25%; }
.map-card i:nth-child(3) { top: 35%; right: 22%; }
.map-card i:nth-child(4) { right: 35%; bottom: 20%; }
.check-list { display: grid; gap: 12px; margin: 22px 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; top: 3px; left: 0; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; background: #dff4e8; color: var(--success); content: "✓"; font-size: .75rem; font-weight: 900; }

.tolia-location-grid { display: grid; gap: 14px; }
.tolia-location-grid article { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 22px; }
.tolia-location-grid p { color: var(--muted); }
.tolia-icon { display: grid; width: 42px; height: 42px; margin-bottom: 16px; place-items: center; border-radius: 11px; background: var(--soft-blue); color: var(--navy); font-weight: 800; }
.service-map { display: grid; min-height: 240px; margin-top: 20px; place-items: center; border: 1px dashed #99aeba; border-radius: var(--radius); background: linear-gradient(35deg,#e8f0f4 25%,#eef5f7 25%,#eef5f7 50%,#e8f0f4 50%,#e8f0f4 75%,#eef5f7 75%); background-size: 34px 34px; text-align: center; }
.service-map > div { max-width: 520px; border-radius: 14px; background: rgba(255,255,255,.92); padding: 20px; box-shadow: var(--shadow-sm); }
.service-map strong, .service-map span { display: block; }
.service-map span { margin-top: 6px; color: var(--muted); font-size: .9rem; }

.reviews-placeholder { border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); padding: 30px; }
.reviews-placeholder > span { display: block; margin-bottom: 10px; color: var(--accent-dark); letter-spacing: .12em; }
.reviews-placeholder strong { display: block; margin-bottom: 6px; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.2rem; }
.reviews-placeholder p { color: var(--muted); }
.split-faq { display: grid; gap: 34px; }
.tolia-faq-list { border-top: 1px solid var(--line); }
.tolia-faq-item { border-bottom: 1px solid var(--line); }
.tolia-faq-item h3 { margin: 0; font-family: Inter, sans-serif; font-size: 1rem; letter-spacing: 0; }
.tolia-faq-item button { display: flex; width: 100%; min-height: 66px; align-items: center; justify-content: space-between; gap: 16px; border: 0; background: transparent; color: var(--navy); padding: 15px 2px; text-align: left; cursor: pointer; }
.tolia-faq-item button span:last-child { font-size: 1.5rem; transition: transform .2s ease; }
.tolia-faq-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.tolia-faq-item > div { color: var(--muted); padding: 0 0 18px; }
.final-cta { background: var(--navy); color: var(--white); padding: 56px 0; }
.final-cta h2, .final-cta .eyebrow { color: var(--white); }
.final-cta .eyebrow { opacity: .76; }
.final-cta p { color: #d9e4eb; }
.final-cta-inner { display: grid; gap: 25px; align-items: center; }
.final-cta-inner > div:last-child { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.final-cta-inner > div:last-child > a:not(.button), .final-cta-inner > div:last-child > span { color: var(--white); font-weight: 700; }

.page-hero { border-bottom: 1px solid var(--line); background: linear-gradient(180deg,#f2f7fa,#fff); padding: 60px 0; }
.page-hero p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.content-prose { overflow-wrap: anywhere; }
.content-prose > *:first-child { margin-top: 0; }
.content-prose h2 { margin-top: 1.5em; }
.content-prose h3 { margin-top: 1.4em; }
.content-prose a:not(.button) { font-weight: 600; }
.content-prose table { width: 100%; border-collapse: collapse; }
.content-prose th, .content-prose td { border: 1px solid var(--line); padding: 10px; text-align: left; }
.tolia-legal-draft, .tolia-notice, .tolia-error, .tolia-confirmation { border-left: 4px solid var(--accent); border-radius: 8px; background: #fff7e4; padding: 16px 18px; }
.tolia-error { border-left-color: var(--danger); background: #fff1f0; color: #782723; }
.tolia-confirmation { border-left-color: var(--success); background: #eefaf3; }

.vehicle-detail-hero { background: var(--soft); padding: 34px 0 56px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--muted); }
.vehicle-detail-grid { display: grid; gap: 24px; }
.vehicle-gallery img { width: 100%; border-radius: var(--radius); aspect-ratio: 3/2; object-fit: cover; box-shadow: var(--shadow-sm); }
.gallery-note { margin-top: 8px; color: var(--muted); font-size: .78rem; }
.vehicle-summary { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 23px; box-shadow: var(--shadow-sm); }
.vehicle-summary .tolia-status { margin-bottom: 16px; }
.vehicle-price { margin: 16px 0 4px; color: var(--muted); }
.vehicle-price strong { color: var(--navy); font-size: 2rem; }
.rate-note { color: var(--muted); font-size: .78rem; }
.vehicle-summary .button { margin-top: 9px; }
.vehicle-content-grid { display: grid; gap: 30px; }
.spec-grid { display: grid; gap: 10px; margin: 22px 0 34px; }
.spec-grid > div { border: 1px solid var(--line); border-radius: 12px; background: var(--white); padding: 14px; }
.spec-grid span, .spec-grid strong { display: block; }
.spec-grid span { margin-bottom: 4px; color: var(--muted); font-size: .76rem; }
.spec-grid strong { color: var(--navy); }
.feature-list { display: grid; gap: 9px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 27px; }
.feature-list li::before { position: absolute; left: 0; color: var(--success); content: "✓"; font-weight: 900; }
.policy-card { align-self: start; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); padding: 22px; }
.policy-card > div { border-top: 1px solid var(--line); padding: 16px 0 2px; }
.policy-card h3 { margin-bottom: 4px; font-size: .96rem; }
.policy-card p { color: var(--muted); font-size: .88rem; }
.vehicle-sticky-mobile { position: fixed; right: 0; bottom: 0; left: 0; z-index: 950; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); background: var(--white); padding: 10px 16px max(10px, env(safe-area-inset-bottom)); box-shadow: 0 -8px 24px rgba(16,42,67,.13); }
.vehicle-sticky-mobile span { max-width: 42%; overflow: hidden; color: var(--navy); font-size: .78rem; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }

.tolia-progress { display: grid; grid-template-columns: repeat(6, minmax(70px,1fr)); gap: 8px; margin-bottom: 30px; overflow-x: auto; padding-bottom: 8px; }
.tolia-progress span { display: grid; min-width: 78px; gap: 6px; color: var(--muted); font-size: .68rem; text-align: center; }
.tolia-progress b { display: grid; width: 30px; height: 30px; margin-inline: auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--navy); }
.tolia-progress span.is-active b, .tolia-progress span.is-complete b { border-color: var(--navy); background: var(--navy); color: var(--white); }
.tolia-booking-flow { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 20px; box-shadow: var(--shadow-sm); }
.tolia-booking-flow section > h2 { font-size: 1.7rem; }
.tolia-booking-vehicle-list, .tolia-extras-list { display: grid; gap: 10px; }
.tolia-choice-card { display: flex !important; min-height: 72px; grid-template-columns: auto 1fr; align-items: center; gap: 12px !important; border: 1px solid var(--line); border-radius: 12px; background: var(--white); padding: 13px; cursor: pointer; }
.tolia-choice-card:has(input:checked) { border-color: var(--navy); background: var(--soft-blue); box-shadow: 0 0 0 2px rgba(16,42,67,.08); }
.tolia-choice-card.is-disabled { opacity: .58; cursor: not-allowed; }
.tolia-choice-card input { width: 22px; min-height: 22px; flex: 0 0 22px; }
.tolia-choice-card span { display: grid; }
.tolia-choice-card strong { color: var(--navy); }
.tolia-choice-card small { color: var(--muted); font-weight: 500; }
.tolia-step-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; margin-top: 25px; }
.tolia-privacy-note { border-radius: 8px; background: var(--soft); color: var(--muted); padding: 13px; font-size: .85rem; }
.tolia-price-review { border: 1px solid var(--line); border-radius: 14px; background: var(--soft); padding: 18px; }
.tolia-price-review dl { margin: 0; }
.tolia-price-review dl > div { display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--line); padding: 10px 0; }
.tolia-price-review dl > div:last-child { border-bottom: 0; }
.tolia-price-review dt { color: var(--muted); }
.tolia-price-review dd { margin: 0; color: var(--navy); font-weight: 750; text-align: right; }
.tolia-price-review .total { font-size: 1.08rem; }
.tolia-price-review .total dt, .tolia-price-review .total dd { color: var(--navy); font-weight: 800; }
.tolia-agreement { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; margin-top: 18px; }
.tolia-agreement input { width: 21px; min-height: 21px; flex: 0 0 21px; }
.tolia-manage-form { display: grid; gap: 14px; max-width: 620px; }
.tolia-reservation-summary { margin-top: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); padding: 22px; }
.tolia-account-reservations { display: grid; gap: 14px; }
.tolia-account-reservations article { border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.tolia-owner-stats { display: grid; gap: 12px; margin-bottom: 20px; }
.tolia-owner-stats article { border: 1px solid var(--line); border-radius: 14px; background: var(--soft); padding: 18px; }
.tolia-owner-stats strong, .tolia-owner-stats span { display: block; }
.tolia-owner-stats strong { color: var(--navy); font-family: Manrope, sans-serif; font-size: 2rem; }
.contact-grid { display: grid; gap: 25px; }
.contact-cards { display: grid; gap: 14px; }
.contact-cards article, .contact-form-placeholder { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 22px; box-shadow: var(--shadow-sm); }
.contact-cards article > span { font-size: 1.5rem; }
.contact-cards h2 { margin-top: 10px; font-size: 1.25rem; }

.site-footer { background: var(--navy-3); color: #c9d6e2; padding: 58px 0 110px; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand img { width: 190px; margin-bottom: 18px; }
.footer-brand p { max-width: 360px; }
.site-footer h2 { color: var(--white); font-size: .94rem; letter-spacing: .02em; }
.site-footer a, .site-footer span { display: block; width: fit-content; margin-bottom: 8px; color: #c9d6e2; font-size: .88rem; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: grid; gap: 14px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; }
.footer-bottom p { margin: 0; font-size: .8rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-bottom nav a, .footer-bottom nav button { display: inline; margin: 0; color: #c9d6e2; font-size: .78rem; }
.mobile-booking-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 900; display: flex; align-items: center; justify-content: center; gap: 12px; border-top: 1px solid var(--line); background: rgba(255,255,255,.98); padding: 10px 16px max(10px, env(safe-area-inset-bottom)); box-shadow: 0 -8px 24px rgba(16,42,67,.1); }
.mobile-booking-bar > a:not(.button) { color: var(--navy); font-weight: 800; }
.single-rental-vehicle .mobile-booking-bar { display: none; }

@media (min-width: 580px) {
  .tolia-form-grid { grid-template-columns: 1fr 1fr; }
  .tolia-search-button { grid-column: 1 / -1; }
  .tolia-vehicle-grid, .tolia-location-grid, .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tolia-card-actions { grid-template-columns: 1fr 1.25fr; }
  .spec-grid, .tolia-owner-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (min-width: 760px) {
  .section { padding: 96px 0; }
  .hero { padding-top: 72px; }
  .hero-grid { grid-template-columns: minmax(0,1.02fr) minmax(360px,.98fr); gap: 42px; }
  .booking-panel { padding: 28px; }
  .booking-panel-heading { grid-template-columns: 1fr .7fr; align-items: end; }
  .tolia-form-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .tolia-form-grid .tolia-search-button { grid-column: span 1; }
  .trust-grid { grid-template-columns: repeat(4,1fr); }
  .trust-grid > div { border-right: 1px solid var(--line); border-bottom: 0; }
  .trust-grid > div:last-child { border-right: 0; }
  .tolia-vehicle-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .steps-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .split-layout { grid-template-columns: .9fr 1.1fr; gap: 70px; }
  .tolia-location-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .split-faq { grid-template-columns: .72fr 1.28fr; gap: 70px; }
  .final-cta-inner { grid-template-columns: 1fr auto; }
  .vehicle-detail-grid { grid-template-columns: minmax(0,1.45fr) minmax(300px,.55fr); align-items: start; }
  .vehicle-summary { position: sticky; top: 94px; }
  .vehicle-content-grid { grid-template-columns: minmax(0,1.35fr) minmax(290px,.65fr); gap: 55px; }
  .policy-card { position: sticky; top: 94px; }
  .spec-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .vehicle-sticky-mobile, .mobile-booking-bar { display: none; }
  .site-footer { padding-bottom: 38px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3,1fr); }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; }
  .tolia-owner-stats { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (min-width: 1020px) {
  .header-inner { grid-template-columns: 210px 1fr auto; }
  .brand { width: 200px; }
  .menu-toggle { display: none; }
  .primary-navigation { position: static; display: block; max-height: none; overflow: visible; border: 0; background: transparent; padding: 0; box-shadow: none; }
  .primary-navigation ul { display: flex; align-items: center; justify-content: center; gap: 1px; }
  .primary-navigation a { padding: 9px 10px; font-size: .88rem; white-space: nowrap; }
  .header-actions { display: flex; align-items: center; gap: 15px; }
  .header-phone { font-size: .82rem; font-weight: 750; white-space: nowrap; text-decoration: none; }
  .header-cta { min-height: 44px; padding: 10px 15px; font-size: .85rem; }
  .section-heading { grid-template-columns: 1fr .65fr; }
  .tolia-vehicle-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
