/* ==========================================================================
   BUENO CAR — Design System
   Palette: noir / anthracite / blanc + rouge signal (accent) + or (marque)
   Display: "Fraunces" (éditorial) — Body: "Inter" — Data/plates: "Space Mono"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root{
  /* Core palette */
  --black:        #0a0a0b;
  --anthracite-1: #15171b;
  --anthracite-2: #1e2126;
  --anthracite-3: #2b2f36;
  --line-dark:    rgba(255,255,255,.10);
  --line-dark-2:  rgba(255,255,255,.18);

  --white:        #ffffff;
  --paper:        #f6f5f3;
  --paper-2:      #eeece7;
  --ink:          #14151a;
  --ink-soft:     #4a4d55;
  --line-light:   rgba(10,10,11,.10);

  --red:          #b5202c;
  --red-dark:     #8f1922;
  --red-soft:     rgba(181,32,44,.10);

  --gold:         #c9a24a;
  --gold-soft:    rgba(201,162,74,.14);

  --success:      #2f7a4f;

  /* Type */
  --f-display: 'Fraunces', 'Iowan Old Style', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'Space Mono', 'SFMono-Regular', monospace;

  /* Layout */
  --container: 1240px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-s: 4px;
  --radius-m: 10px;
  --radius-l: 22px;

  --shadow-1: 0 2px 10px rgba(10,10,11,.06);
  --shadow-2: 0 18px 50px rgba(10,10,11,.16);
  --shadow-red: 0 14px 34px rgba(181,32,44,.28);

  --ease: cubic-bezier(.22,.68,0,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
input, select, textarea{ font-family: inherit; font-size: inherit; }
h1,h2,h3,h4,p{ margin:0; }

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

:focus-visible{ outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- Containers ---------- */
.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide{ max-width: var(--container-wide); margin:0 auto; padding: 0 var(--gutter); }
section{ position:relative; }

/* ---------- Type scale ---------- */
.eyebrow{
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background: var(--red);
}
.eyebrow.on-dark{ color: var(--gold); }
.eyebrow.on-dark::before{ background: var(--gold); }

h1, .h1{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -0.01em;
}
h2, .h2{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
h3, .h3{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
}
.lede{
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
}
.on-dark .lede, .lede.on-dark{ color: rgba(255,255,255,.68); }

/* ---------- Plate chip (signature motif) ----------
   Riffs on the black-on-white Moroccan plate: a bordered rectangle
   with condensed spaced mono type — used for specs, filters, tags. */
.plate{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 11px;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  white-space: nowrap;
}
.plate.on-dark{
  border-color: rgba(255,255,255,.35);
  background: transparent;
  color: rgba(255,255,255,.85);
}
.plate.accent{ border-color: var(--red); color: var(--red); }
.plate .dot{ width:4px; height:4px; border-radius:50%; background: currentColor; opacity:.5; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg{ width:16px; height:16px; flex-shrink:0; transition: transform .3s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }
.btn-primary{ background: var(--red); color:#fff; box-shadow: var(--shadow-red); }
.btn-primary:hover{ background: var(--red-dark); transform: translateY(-2px); }
.btn-dark{ background: var(--ink); color:#fff; }
.btn-dark:hover{ background:#000; transform: translateY(-2px); }
.btn-ghost-dark{ border-color: rgba(255,255,255,.4); color:#fff; }
.btn-ghost-dark:hover{ border-color:#fff; background: rgba(255,255,255,.08); }
.btn-ghost-light{ border-color: var(--line-light); color: var(--ink); background:#fff; }
.btn-ghost-light:hover{ border-color: var(--ink); }
.btn-outline-red{ border-color: var(--red); color: var(--red); background:transparent; }
.btn-outline-red:hover{ background: var(--red); color:#fff; }
.btn-sm{ padding: 10px 18px; font-size: 13px; }
.btn-block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 200;
  background: rgba(10,10,11,.62);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-scrolled{ background: rgba(10,10,11,.92); }
.header-inner{
  max-width: var(--container-wide);
  margin:0 auto;
  padding: 16px var(--gutter);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
}
.brand{ display:flex; align-items:center; gap:11px; }
.brand img{ height:38px; width:38px; border-radius:9px; }
.brand-word{ font-family: var(--f-display); font-weight:600; font-size:19px; color:#fff; letter-spacing:.01em;}
.brand-word span{ color: var(--gold); }
.brand-sub{ font-family: var(--f-mono); font-size:9px; letter-spacing:.18em; color: rgba(255,255,255,.5); text-transform:uppercase; display:block; margin-top:1px;}

.main-nav{ display:flex; align-items:center; gap: 30px; }
.main-nav a{
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  position:relative;
  padding: 6px 0;
  transition: color .2s;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:0;
  height:1px; background: var(--gold);
  transition: right .3s var(--ease);
}
.main-nav a:hover{ color:#fff; }
.main-nav a:hover::after, .main-nav a.active::after{ right:0; }
.main-nav a.active{ color:#fff; }

.header-actions{ display:flex; align-items:center; gap:14px; }
.header-actions .tel{
  display:flex; align-items:center; gap:8px;
  font-family: var(--f-mono); font-size:12.5px; color: rgba(255,255,255,.72);
}
.header-actions .tel svg{ width:15px;height:15px; color: var(--gold); }

.nav-toggle{
  display:none;
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  color:#fff;
  align-items:center; justify-content:center;
}

/* Mobile nav */
.mobile-nav{
  position: fixed; inset:0;
  background: var(--black);
  z-index: 300;
  display:flex; flex-direction:column;
  padding: 26px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
.mobile-nav.is-open{ transform: translateY(0); }
.mobile-nav .header-inner{ padding:0 0 30px; }
.mobile-nav-links{ display:flex; flex-direction:column; gap:2px; margin-top:20px; }
.mobile-nav-links a{
  font-family: var(--f-display);
  font-size: 30px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  color:#fff;
  display:flex; align-items:center; justify-content:space-between;
}
.mobile-nav-foot{ margin-top:auto; display:flex; flex-direction:column; gap:16px; padding-top:24px;}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: 100svh;
  display:flex;
  align-items:flex-end;
  color:#fff;
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position: 60% 30%; }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,8,9,.55) 0%, rgba(8,8,9,.25) 30%, rgba(8,8,9,.55) 68%, rgba(6,6,7,.96) 100%);
}
.hero-road{
  position:absolute; left:0; right:0; bottom:0; height:46%;
  background: linear-gradient(180deg, transparent, rgba(6,6,7,.9) 80%);
  z-index:1;
}
.hero-inner{
  position:relative; z-index:2;
  width:100%;
  padding: 0 var(--gutter) 0;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 30px;
}
.hero-top{ display:flex; align-items:center; gap:16px; margin-bottom:22px; }
.hero-title{ max-width: 15ch; }
.hero-title em{ font-style:italic; color: var(--gold); font-weight:500; }
.hero-sub{ margin-top:18px; max-width:44ch; font-size:17px; line-height:1.6; color:rgba(255,255,255,.78); }
.hero-ctas{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }

.hero-stats{
  display:flex; gap:0;
  margin-top: 46px;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  flex-wrap:wrap;
}
.hero-stat{ padding: 0 28px 0 0; margin-right:28px; border-right:1px solid var(--line-dark); }
.hero-stat:last-child{ border-right:none; }
.hero-stat b{ font-family: var(--f-display); font-size: 26px; display:block; color:#fff; }
.hero-stat span{ font-family: var(--f-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color: rgba(255,255,255,.55); }

/* ---------- Booking widget ---------- */
.booking{
  position:relative;
  z-index: 20;
  margin: -86px auto 0;
  max-width: var(--container-wide);
  padding: 0 var(--gutter);
}
.booking-card{
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-2);
  padding: 26px 26px 22px;
}
.booking-tabs{ display:flex; gap:8px; margin-bottom: 18px; }
.booking-tab{
  font-family: var(--f-mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase;
  padding:9px 16px; border-radius: 999px; border:1px solid var(--line-light); background: var(--paper);
  color: var(--ink-soft); transition: all .2s;
}
.booking-tab.is-active{ background: var(--ink); color:#fff; border-color: var(--ink); }

.booking-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-m);
  overflow:hidden;
}
.b-field{
  padding: 13px 18px;
  border-right: 1px solid var(--line-light);
  position:relative;
}
.b-field:last-child{ border-right:none; }
.b-field label{
  display:block; font-family: var(--f-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase;
  color: var(--ink-soft); margin-bottom:5px;
}
.b-field select, .b-field input{
  width:100%; border:none; background:transparent; padding:0; font-size:14.5px; font-weight:600; color: var(--ink);
  appearance:none; -webkit-appearance:none;
}
.b-field select:focus, .b-field input:focus{ outline:none; }
.b-field.b-submit{ padding:0; border-right:none; }
.b-field .btn{ width:100%; height:100%; border-radius:0; padding: 20px; }

@media (max-width: 980px){
  .booking-grid{ grid-template-columns: repeat(2, 1fr); }
  .b-field{ border-bottom:1px solid var(--line-light); }
  .b-field:nth-child(2n){ border-right:none; }
  .b-field.b-submit{ grid-column: 1 / -1; }
}

/* ---------- Generic section paddings ---------- */
.section{ padding: 110px 0; }
.section-sm{ padding: 70px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:40px;
  margin-bottom: 54px; flex-wrap:wrap;
}
.section-head .h2{ margin-top:14px; }
.section-tools{ display:flex; gap:10px; }

.on-dark{ background: var(--black); color:#fff; }
.on-anthracite{ background: var(--anthracite-1); color:#fff; }
.on-paper{ background: var(--paper); }
.on-paper2{ background: var(--paper-2); }
.on-white{ background:#fff; }

/* ---------- Feature / advantages ---------- */
.feat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  overflow:hidden;
}
.feat-card{
  background: var(--anthracite-1);
  padding: 34px 26px;
  transition: background .3s;
}
.feat-card:hover{ background: var(--anthracite-2); }
.feat-num{ font-family: var(--f-mono); font-size:11px; color: var(--gold); letter-spacing:.08em; }
.feat-card h4{ font-family: var(--f-display); font-size:19px; font-weight:600; margin: 16px 0 10px; color:#fff; }
.feat-card p{ font-size:14px; line-height:1.6; color: rgba(255,255,255,.6); }
.feat-icon{ width:34px; height:34px; color: var(--gold); margin-bottom: 6px;}

@media (max-width: 980px){ .feat-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .feat-grid{ grid-template-columns: 1fr; } }

/* ---------- Category cards ---------- */
.cat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card{
  position:relative;
  border-radius: var(--radius-m);
  padding: 26px 20px 22px;
  background: var(--white);
  border: 1px solid var(--line-light);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.cat-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: transparent; }
.cat-card .cat-icon{ width:30px; height:30px; color: var(--red); margin-bottom:18px; }
.cat-card h4{ font-family: var(--f-display); font-size:18px; font-weight:600; }
.cat-card p{ font-size:13px; color: var(--ink-soft); margin-top:6px; }
.cat-card .cat-count{ font-family: var(--f-mono); font-size:11px; color: var(--ink-soft); margin-top:16px; display:block; }
.cat-card .cat-arrow{ position:absolute; top:24px; right:20px; width:16px; height:16px; color: var(--ink-soft); transition: all .3s; }
.cat-card:hover .cat-arrow{ color: var(--red); transform: translate(3px,-3px); }

@media (max-width: 980px){ .cat-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .cat-grid{ grid-template-columns: 1fr; } }

/* ---------- Vehicle cards ---------- */
.veh-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.veh-card{
  background:#fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-m);
  overflow:hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.veh-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-2); }
.veh-media{ position:relative; aspect-ratio: 4/3; overflow:hidden; background: var(--paper-2); }
.veh-media img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.veh-card:hover .veh-media img{ transform: scale(1.06); }
.veh-badge{
  position:absolute; top:14px; left:14px;
  font-family: var(--f-mono); font-size:10.5px; letter-spacing:.06em; text-transform:uppercase;
  padding:6px 10px; border-radius:999px; background: rgba(10,10,11,.72); color:#fff; backdrop-filter: blur(4px);
}
.veh-price-tag{
  position:absolute; bottom:14px; right:14px;
  background:#fff; border-radius: var(--radius-s); padding:7px 12px;
  font-family: var(--f-mono); font-weight:700; font-size:14px; color: var(--ink);
  box-shadow: var(--shadow-1);
}
.veh-price-tag small{ font-family: var(--f-body); font-weight:500; font-size:10px; color: var(--ink-soft); }
.veh-body{ padding: 18px 20px 20px; }
.veh-body .veh-cat{ font-family: var(--f-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--red); }
.veh-body h4{ font-family: var(--f-display); font-size:20px; font-weight:600; margin-top:6px; }
.veh-specs{ display:flex; flex-wrap:wrap; gap:7px; margin: 14px 0 18px; }
.veh-foot{ display:flex; gap:10px; }
.veh-foot .btn{ flex:1; }

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

/* ---------- Steps ---------- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:0; position:relative; }
.step{ padding: 0 22px; position:relative; }
.step:not(:last-child)::after{
  content:"";
  position:absolute; top:22px; right:-2px; width: calc(100% - 44px); height:1px;
  background-image: linear-gradient(90deg, var(--line-light) 50%, transparent 50%);
  background-size: 10px 1px;
}
.step-index{ font-family: var(--f-display); font-size: 40px; font-weight:600; color: var(--paper-2); -webkit-text-stroke: 1.4px var(--ink); color:transparent; }
.step h4{ font-family: var(--f-display); font-size:18px; margin: 14px 0 8px; }
.step p{ font-size:13.5px; color: var(--ink-soft); line-height:1.55; }

@media (max-width: 860px){
  .steps{ grid-template-columns: repeat(2,1fr); row-gap:36px; }
  .step:nth-child(2)::after{ display:none; }
}
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } .step::after{ display:none;} }

/* ---------- Testimonials ---------- */
.testi-track{ display:flex; gap:20px; overflow-x:auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width:none; }
.testi-track::-webkit-scrollbar{ display:none; }
.testi-card{
  scroll-snap-align:start;
  flex: 0 0 min(380px, 84vw);
  background: var(--anthracite-1);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  padding: 28px 26px;
  color:#fff;
}
.testi-stars{ display:flex; gap:4px; color: var(--gold); margin-bottom:16px; }
.testi-stars svg{ width:15px; height:15px; }
.testi-card p{ font-size:15px; line-height:1.65; color: rgba(255,255,255,.82); }
.testi-who{ display:flex; align-items:center; gap:12px; margin-top:22px; }
.testi-avatar{ width:38px; height:38px; border-radius:50%; background: var(--gold-soft); display:flex; align-items:center; justify-content:center; font-family: var(--f-display); color: var(--gold); font-weight:700; font-size:14px; }
.testi-who b{ display:block; font-size:13.5px; }
.testi-who span{ font-family: var(--f-mono); font-size:10.5px; color: rgba(255,255,255,.5); }

/* ---------- FAQ ---------- */
.faq-list{ max-width: 860px; }
.faq-item{ border-bottom: 1px solid var(--line-light); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding: 22px 4px; background:none; border:none; text-align:left;
  font-family: var(--f-display); font-size: 18px; font-weight:600; color: var(--ink);
}
.faq-q .plus{ width:22px; height:22px; flex-shrink:0; position:relative; }
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background: var(--ink); border-radius:2px; transition: transform .3s var(--ease); }
.faq-q .plus::before{ top:50%; left:0; width:100%; height:2px; margin-top:-1px; }
.faq-q .plus::after{ left:50%; top:0; height:100%; width:2px; margin-left:-1px; }
.faq-item.is-open .plus::after{ transform: rotate(90deg) scale(0); }
.faq-item.is-open .plus::before{ background: var(--red); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a-in{ padding: 0 4px 24px; font-size:15px; line-height:1.65; color: var(--ink-soft); max-width:70ch; }

/* ---------- CTA banner ---------- */
.cta-banner{
  border-radius: var(--radius-l);
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 60px var(--gutter);
  color:#fff;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%;
  background: rgba(255,255,255,.08);
}
.cta-banner h3{ font-family: var(--f-display); font-size: clamp(26px,3.4vw,38px); font-weight:600; max-width:16ch; position:relative; }
.cta-banner p{ margin-top:10px; color: rgba(255,255,255,.85); max-width:44ch; position:relative;}
.cta-actions{ display:flex; gap:12px; position:relative; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--black); color: rgba(255,255,255,.7); padding-top: 80px; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap:40px; padding-bottom: 60px; border-bottom: 1px solid var(--line-dark); }
.footer-brand p{ font-size:13.5px; line-height:1.7; margin-top:16px; color: rgba(255,255,255,.5); max-width:32ch;}
.footer-col h5{ font-family: var(--f-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,.9); margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:13.5px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover{ color: var(--gold); }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; border:1px solid var(--line-dark); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ border-color: var(--gold); color: var(--gold); }
.footer-social svg{ width:15px; height:15px; }
.newsletter-form{ display:flex; margin-top:14px; border:1px solid var(--line-dark); border-radius: 999px; overflow:hidden; padding: 4px; }
.newsletter-form input{ flex:1; background:none; border:none; padding: 9px 14px; color:#fff; font-size:13px; }
.newsletter-form button{ background: var(--gold); border:none; color:var(--black); width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.footer-bottom{ display:flex; align-items:center; justify-content:space-between; padding: 26px 0 34px; gap:20px; flex-wrap:wrap; font-size:12.5px; color: rgba(255,255,255,.42); }
.footer-bottom ul{ display:flex; gap:22px; flex-wrap:wrap; }
.footer-bottom a:hover{ color: rgba(255,255,255,.8); }

@media (max-width: 980px){
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap:40px; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding: 168px 0 70px;
  background: var(--anthracite-1);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.page-hero::after{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 85% 20%, rgba(201,162,74,.14), transparent 55%);
}
.breadcrumb{ display:flex; gap:8px; align-items:center; font-family: var(--f-mono); font-size:11.5px; color: rgba(255,255,255,.5); margin-bottom:20px; text-transform:uppercase; letter-spacing:.05em; }
.breadcrumb a:hover{ color:#fff; }
.page-hero h1{ font-size: clamp(34px,5vw,58px); max-width: 20ch; }
.page-hero .lede{ margin-top:16px; }

/* ---------- Filters (fleet) ---------- */
.fleet-layout{ display:grid; grid-template-columns: 270px 1fr; gap: 40px; align-items:start; }
.filters{
  background:#fff; border:1px solid var(--line-light); border-radius: var(--radius-m);
  padding: 24px; position:sticky; top:100px;
}
.filters h5{ font-family: var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-soft); margin: 22px 0 12px; }
.filters h5:first-child{ margin-top:0; }
.f-group{ display:flex; flex-direction:column; gap:9px; }
.f-check{ display:flex; align-items:center; gap:9px; font-size:14px; cursor:pointer; }
.f-check input{ accent-color: var(--red); width:15px; height:15px; }
.f-range{ width:100%; accent-color: var(--red); margin-top:6px; }
.f-price-val{ font-family: var(--f-mono); font-size:13px; display:flex; justify-content:space-between; margin-top:6px; color: var(--ink-soft); }
.filters .btn{ margin-top: 22px; }
.results-bar{ display:flex; align-items:center; justify-content:space-between; margin-bottom:26px; flex-wrap:wrap; gap:14px; }
.results-count{ font-size:14px; color: var(--ink-soft); }
.sort-select{
  border:1px solid var(--line-light); border-radius:999px; padding:9px 16px; font-size:13px; background:#fff;
}
.mobile-filter-btn{ display:none; }

@media (max-width: 900px){
  .fleet-layout{ grid-template-columns: 1fr; }
  .filters{ position:fixed; inset:0; z-index:400; border-radius:0; overflow-y:auto; transform: translateX(-100%); transition: transform .4s var(--ease); }
  .filters.is-open{ transform: translateX(0); }
  .mobile-filter-btn{ display:inline-flex; }
  .filters-close{ display:flex !important; }
}
.filters-close{ display:none; width:36px; height:36px; border-radius:50%; border:1px solid var(--line-light); align-items:center; justify-content:center; margin-bottom:14px; float:right; }

/* ---------- Modal (vehicle detail) ---------- */
.modal-overlay{
  position:fixed; inset:0; background: rgba(10,10,11,.7); backdrop-filter: blur(4px);
  z-index:500; display:flex; align-items:center; justify-content:center; padding: 24px;
  opacity:0; pointer-events:none; transition: opacity .3s;
}
.modal-overlay.is-open{ opacity:1; pointer-events:all; }
.modal-box{
  background:#fff; border-radius: var(--radius-l); max-width: 940px; width:100%; max-height: 88vh; overflow-y:auto;
  transform: translateY(24px) scale(.98); transition: transform .35s var(--ease);
  display:grid; grid-template-columns: 1.1fr 1fr;
}
.modal-overlay.is-open .modal-box{ transform: translateY(0) scale(1); }
.modal-close{ position:absolute; top:18px; right:18px; width:38px; height:38px; border-radius:50%; background:#fff; box-shadow: var(--shadow-1); display:flex; align-items:center; justify-content:center; z-index:5; }
.modal-media{ position:relative; }
.modal-media img{ width:100%; height:100%; object-fit:cover; min-height: 280px; }
.modal-info{ padding: 34px 32px; }
.modal-info .veh-cat{ font-family: var(--f-mono); font-size:11px; color: var(--red); letter-spacing:.08em; text-transform:uppercase; }
.modal-info h3{ font-family: var(--f-display); font-size:28px; margin: 8px 0 16px; }
.modal-specs{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin: 18px 0 22px; }
.modal-spec{ display:flex; align-items:center; gap:9px; font-size:13.5px; color: var(--ink-soft); }
.modal-spec svg{ width:17px; height:17px; color: var(--red); flex-shrink:0; }
.modal-price{ display:flex; align-items:baseline; gap:8px; padding: 18px 0; border-top:1px solid var(--line-light); border-bottom:1px solid var(--line-light); margin: 18px 0; }
.modal-price b{ font-family: var(--f-display); font-size:30px; }
.modal-price span{ font-size:13px; color: var(--ink-soft); }

@media (max-width: 760px){ .modal-box{ grid-template-columns: 1fr; } .modal-media img{ min-height:200px; } }

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-family: var(--f-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea{
  border:1px solid var(--line-light); border-radius: var(--radius-s); padding: 13px 15px; font-size:14.5px; background:#fff; color:var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--red); outline:none; }
.field textarea{ resize: vertical; min-height:120px; }
.on-dark .field label{ color: rgba(255,255,255,.55); }
.on-dark .field input, .on-dark .field select, .on-dark .field textarea{ background: var(--anthracite-2); border-color: var(--line-dark); color:#fff; }

.form-note{ font-size:12.5px; color: var(--ink-soft); margin-top:14px; }
.form-success{ display:none; align-items:center; gap:12px; background: rgba(47,122,79,.08); border:1px solid rgba(47,122,79,.3); color: var(--success); padding:16px 18px; border-radius: var(--radius-s); font-size:14px; margin-top:16px;}
.form-success.is-shown{ display:flex; }
.form-success svg{ width:20px; height:20px; flex-shrink:0; }

/* ---------- Reservation wizard ---------- */
.wizard-shell{ display:grid; grid-template-columns: 1fr 340px; gap: 40px; align-items:start; }
.wizard-dots{ display:flex; align-items:center; gap:0; margin-bottom: 44px; }
.w-dot{ display:flex; align-items:center; gap:12px; color: var(--ink-soft); }
.w-dot .w-circle{
  width:34px; height:34px; border-radius:50%; border:1.5px solid var(--line-light);
  display:flex; align-items:center; justify-content:center; font-family: var(--f-mono); font-size:13px; flex-shrink:0;
  transition: all .3s;
}
.w-dot span.w-label{ font-size:13px; font-weight:600; white-space:nowrap; }
.w-dot.is-active .w-circle{ background: var(--ink); border-color: var(--ink); color:#fff; }
.w-dot.is-active{ color: var(--ink); }
.w-dot.is-done .w-circle{ background: var(--red); border-color: var(--red); color:#fff; }
.w-dot.is-done{ color: var(--ink); }
.w-connector{ flex:1; height:1px; background: var(--line-light); margin: 0 14px; min-width: 20px; }

.wizard-card{ background:#fff; border:1px solid var(--line-light); border-radius: var(--radius-l); padding: 38px; }
.wizard-card h3{ font-family: var(--f-display); font-size:24px; margin-bottom:6px; }
.wizard-card > p.lede{ margin-bottom: 26px; max-width:60ch; }

.option-card{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  border:1px solid var(--line-light); border-radius: var(--radius-m); padding: 16px 18px; margin-bottom:12px;
  cursor:pointer; transition: border-color .2s, background .2s;
}
.option-card:hover{ border-color: var(--ink); }
.option-card input:checked ~ .option-check{ background: var(--red); border-color: var(--red); }
.option-left{ display:flex; align-items:center; gap:14px; }
.option-check{
  width:22px; height:22px; border-radius:6px; border:1.5px solid var(--line-light); flex-shrink:0; position:relative; transition: all .2s;
}
.option-card input{ position:absolute; opacity:0; width:22px; height:22px; margin:0; cursor:pointer; }
.option-check::after{
  content:""; position:absolute; left:50%; top:46%; width:5px; height:9px; border-right:2px solid #fff; border-bottom:2px solid #fff;
  transform: translate(-50%,-50%) rotate(45deg) scale(0); transition: transform .2s;
}
.option-card input:checked ~ .option-check::after{ transform: translate(-50%,-50%) rotate(45deg) scale(1); }
.option-title{ font-weight:600; font-size:14.5px; }
.option-desc{ font-size:12.5px; color: var(--ink-soft); margin-top:2px; }
.option-price{ font-family: var(--f-mono); font-size:13.5px; font-weight:700; white-space:nowrap; }

.summary-card{ background: var(--anthracite-1); color:#fff; border-radius: var(--radius-l); padding:30px; position:sticky; top:100px; }
.summary-card h5{ font-family: var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color: rgba(255,255,255,.5); margin-bottom:16px; }
.summary-row{ display:flex; justify-content:space-between; font-size:14px; padding:10px 0; border-bottom:1px solid var(--line-dark); }
.summary-row b{ font-weight:600; }
.summary-total{ display:flex; justify-content:space-between; align-items:baseline; margin-top:18px; }
.summary-total b{ font-family: var(--f-display); font-size:28px; }

.wizard-actions{ display:flex; justify-content:space-between; gap:14px; margin-top:30px; }

.wizard-success{ display:none; text-align:center; padding: 70px 20px; }
.wizard-success .ok-circle{ width:74px; height:74px; border-radius:50%; background: rgba(47,122,79,.1); display:flex; align-items:center; justify-content:center; margin:0 auto 24px; color: var(--success); }
.wizard-success h3{ font-family: var(--f-display); font-size:28px; }
.wizard-success p{ color: var(--ink-soft); margin-top:12px; max-width:48ch; margin-left:auto; margin-right:auto; }
.wizard-success .plate{ margin-top:18px; }

@media (max-width: 900px){
  .wizard-shell{ grid-template-columns: 1fr; }
  .wizard-card{ padding: 26px; }
  .w-dot .w-label{ display:none; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------- Misc components ---------- */
.divider-dash{
  height:1px; background-image: linear-gradient(90deg, var(--line-light) 50%, transparent 50%); background-size: 12px 1px;
}
.pill-list{ display:flex; flex-wrap:wrap; gap:8px; }

.stat-strip{ display:grid; grid-template-columns: repeat(4,1fr); border-top:1px solid var(--line-light); border-bottom:1px solid var(--line-light); }
.stat-strip .stat{ padding: 30px 22px; border-right:1px solid var(--line-light); }
.stat-strip .stat:last-child{ border-right:none; }
.stat-strip .stat b{ font-family: var(--f-display); font-size:34px; display:block; }
.stat-strip .stat span{ font-family: var(--f-mono); font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; color: var(--ink-soft); }
@media (max-width:760px){ .stat-strip{ grid-template-columns: repeat(2,1fr);} .stat-strip .stat:nth-child(2){ border-right:none; } }

.value-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
@media (max-width: 860px){ .value-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .value-grid{ grid-template-columns: 1fr; } }

.team-note{ display:flex; gap:20px; align-items:flex-start; }

.blog-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
@media (max-width: 900px){ .blog-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .blog-grid{ grid-template-columns: 1fr; } }
.blog-card{ background:#fff; border:1px solid var(--line-light); border-radius: var(--radius-m); overflow:hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.blog-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-2); }
.blog-media{ aspect-ratio: 16/10; overflow:hidden; }
.blog-media img{ width:100%; height:100%; object-fit:cover; }
.blog-body{ padding: 20px 22px 24px; }
.blog-meta{ font-family: var(--f-mono); font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; color: var(--red); }
.blog-body h4{ font-family: var(--f-display); font-size:19px; margin: 10px 0 8px; line-height:1.25; }
.blog-body p{ font-size:13.5px; color: var(--ink-soft); line-height:1.6; }
.blog-read{ display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:13px; font-weight:600; color: var(--ink); }
.blog-read svg{ width:14px; height:14px; }

.pricing-table{ width:100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td{ padding: 16px 18px; text-align:left; border-bottom:1px solid var(--line-light); font-size:14px; }
.pricing-table th{ font-family: var(--f-mono); font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; color: var(--ink-soft); font-weight:600; }
.pricing-table td:not(:first-child), .pricing-table th:not(:first-child){ font-family: var(--f-mono); }
.pricing-table tbody tr:hover{ background: var(--paper); }
.table-wrap{ overflow-x:auto; border:1px solid var(--line-light); border-radius: var(--radius-m); }
.table-wrap .pricing-table{ min-width: 620px; }

.info-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
@media (max-width:860px){ .info-cards{ grid-template-columns:1fr; } }
.info-card{ background:#fff; border:1px solid var(--line-light); border-radius: var(--radius-m); padding:26px; }
.info-card svg{ width:26px; height:26px; color: var(--red); margin-bottom:14px; }
.info-card h4{ font-family: var(--f-display); font-size:17px; margin-bottom:8px; }
.info-card p{ font-size:13.5px; color: var(--ink-soft); line-height:1.6; }

.map-embed{ border-radius: var(--radius-m); overflow:hidden; border:1px solid var(--line-light); filter: grayscale(.3) contrast(1.05); }
.map-embed iframe{ width:100%; height:100%; min-height: 340px; border:0; display:block; }

.back-top{
  position:fixed; right:22px; bottom:22px; width:48px; height:48px; border-radius:50%;
  background: var(--ink); color:#fff; display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform: translateY(10px); transition: all .3s; z-index:150;
  box-shadow: var(--shadow-2);
}
.back-top.is-shown{ opacity:1; pointer-events:all; transform:none; }
.back-top svg{ width:18px; height:18px; }

.whatsapp-float{
  position:fixed; left:22px; bottom:22px; width:54px; height:54px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center; z-index:150; box-shadow: var(--shadow-2);
}
.whatsapp-float svg{ width:26px; height:26px; color:#fff; }

/* Scroll progress route line */
.route-progress{ position:fixed; top:0; left:0; height:3px; background: linear-gradient(90deg, var(--red), var(--gold)); z-index: 400; width:0%; }

/* Responsive nav visibility */
@media (max-width: 1080px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .header-actions .tel{ display:none; }
}
@media (max-width: 760px){
  .section{ padding: 76px 0; }
  .footer-top{ padding-bottom:40px; }
}
