/* ============================================================
   971 PLUS RENT A CAR — design system
   Palette keyed to the brand logo + real showroom photography
   (see CLAUDE-DESIGN.md "Visual system"). Mobile-first.
   ============================================================ */




:root{
  /* core palette (CLAUDE-DESIGN.md) */
  --bg:#0E0F11;        /* showroom matte-black wall */
  --bg-2:#0A0B0C;      /* deepest black for full-bleed bands */
  --surface:#17191C;   /* cards / sections */
  --surface-2:#1E2125; /* lifted card / hover */
  --text:#F4F5F6;      /* near-white signage */
  --muted:#A6ABB2;     /* secondary text */
  --muted-2:#71767D;   /* faint captions */
  --primary:#E10A17;   /* logo "PLUS" scarlet */
  --primary-600:#c20912;
  --secondary:#C9CCD1; /* polished concrete grey */
  --accent:#C9A24B;    /* logo gold dash — sparingly */
  --border:#2A2D31;    /* hairlines */
  --border-soft:#212427;
  --focus:#5AA0FF;     /* visible focus ring */
  --whatsapp:#25D366;

  --maxw:1200px;
  --gutter:clamp(20px, 5vw, 56px);
  --radius:14px;
  --radius-sm:10px;
  --radius-lg:22px;

  --shadow:0 18px 50px -18px rgba(0,0,0,.7);
  --shadow-sm:0 8px 24px -12px rgba(0,0,0,.65);

  --ff-display:'Sora', system-ui, -apple-system, sans-serif;
  --ff-body:'Inter', system-ui, -apple-system, sans-serif;

  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--ff-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

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

h1,h2,h3,h4{ font-family:var(--ff-display); font-weight:700; line-height:1.06; letter-spacing:-.02em; margin:0; text-wrap:balance; }

/* ---------- layout helpers ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(56px, 9vw, 116px); }
.section--tight{ padding-block:clamp(40px,6vw,72px); }
.eyebrow{
  font-family:var(--ff-display); font-weight:600;
  font-size:.74rem; letter-spacing:.26em; text-transform:uppercase;
  color:var(--primary); margin:0 0 16px; display:flex; align-items:center; gap:12px;
}
.eyebrow::before{ content:""; width:30px; height:2px; background:var(--primary); display:inline-block; }
.eyebrow--center{ justify-content:center; }
.section-title{ font-size:clamp(1.9rem, 5.2vw, 3.2rem); }
.section-head{ max-width:680px; }
.section-head--center{ margin-inline:auto; text-align:center; }
.lead{ color:var(--muted); font-size:clamp(1rem,2.4vw,1.16rem); line-height:1.65; margin:18px 0 0; }
.text-accent{ color:var(--accent); }
.text-primary{ color:var(--primary); }

/* ---------- buttons ---------- */
.btn{
  --bg-btn:var(--primary);
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--ff-display); font-weight:600; font-size:.98rem; letter-spacing:.01em;
  padding:15px 26px; min-height:52px; border-radius:999px; border:1px solid transparent;
  cursor:pointer; transition:transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space:nowrap;
}
.btn svg{ width:19px; height:19px; flex:none; }
.btn--primary{ background:var(--primary); color:#fff; box-shadow:0 12px 30px -10px rgba(225,10,23,.6); }
.btn--primary:hover{ background:var(--primary-600); transform:translateY(-2px); box-shadow:0 18px 38px -12px rgba(225,10,23,.7); }
.btn--whatsapp{ background:var(--whatsapp); color:#062a12; }
.btn--whatsapp:hover{ background:#1fc35c; transform:translateY(-2px); box-shadow:0 16px 34px -12px rgba(37,211,102,.5); }
.btn--ghost{ background:transparent; color:var(--text); border-color:var(--border); }
.btn--ghost:hover{ border-color:var(--secondary); background:rgba(255,255,255,.04); transform:translateY(-2px); }
.btn--block{ width:100%; }
.btn--sm{ min-height:46px; padding:12px 20px; font-size:.9rem; }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:80;
  background:rgba(10,11,12,.72);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom:1px solid var(--border-soft);
  transition:background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled{ background:rgba(10,11,12,.94); border-color:var(--border); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:18px; min-height:78px; }
.brand{ display:flex; align-items:center; flex:none; }
.brand img{ height:46px; width:auto; }
.nav{ display:none; }
.nav-links{ display:flex; align-items:center; gap:6px; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-family:var(--ff-display); font-weight:500; font-size:.94rem; color:var(--muted);
  padding:10px 16px; border-radius:999px; transition:color .2s var(--ease), background .2s var(--ease); position:relative;
}
.nav-links a:hover{ color:var(--text); }
.nav-links a.active{ color:var(--text); }
.nav-links a.active::after{ content:""; position:absolute; left:50%; bottom:2px; transform:translateX(-50%); width:18px; height:2px; background:var(--primary); border-radius:2px; }
.header-cta{ display:none; align-items:center; gap:10px; flex:none; }

.nav-toggle{
  display:inline-flex; flex-direction:column; gap:5px; justify-content:center;
  width:48px; height:48px; padding:0 12px; background:transparent; border:1px solid var(--border);
  border-radius:12px; cursor:pointer; flex:none;
}
.nav-toggle span{ display:block; height:2px; width:22px; background:var(--text); border-radius:2px; transition:transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav{
  position:fixed; inset:0 0 0 auto; width:min(86vw,360px); z-index:95;
  background:var(--surface); border-left:1px solid var(--border);
  transform:translateX(100%); transition:transform .38s var(--ease);
  display:flex; flex-direction:column; padding:26px 24px calc(24px + env(safe-area-inset-bottom));
  overflow-y:auto;
}
.mobile-nav.open{ transform:translateX(0); }
.mobile-nav__top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.mobile-nav__top img{ height:40px; }
.mobile-nav__close{ width:46px; height:46px; border:1px solid var(--border); border-radius:12px; background:transparent; color:var(--text); font-size:1.5rem; cursor:pointer; line-height:1; }
.mobile-nav a.mlink{ font-family:var(--ff-display); font-weight:600; font-size:1.5rem; color:var(--text); padding:16px 0; border-bottom:1px solid var(--border-soft); display:flex; justify-content:space-between; align-items:center; }
.mobile-nav a.mlink .arr{ color:var(--muted-2); }
.mobile-nav a.mlink.active{ color:var(--primary); }
.mobile-nav__cta{ margin-top:auto; padding-top:28px; display:grid; gap:12px; }
.scrim{ position:fixed; inset:0; background:rgba(0,0,0,.6); backdrop-filter:blur(2px); z-index:90; opacity:0; visibility:hidden; transition:opacity .3s var(--ease), visibility .3s; }
.scrim.show{ opacity:1; visibility:visible; }
body.no-scroll{ overflow:hidden; }

/* ---------- hero ---------- */
.hero{ position:relative; isolation:isolate; min-height:min(92vh, 820px); display:flex; align-items:flex-end; overflow:hidden; }
.hero__media{ position:absolute; inset:0; z-index:-2; }
.hero__media img{ width:100%; height:100%; object-fit:cover; object-position:center 38%; }
.hero__scrim{ position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(10,11,12,.62) 0%, rgba(10,11,12,.18) 30%, rgba(10,11,12,.55) 72%, rgba(10,11,12,.97) 100%),
    linear-gradient(90deg, rgba(10,11,12,.8) 0%, rgba(10,11,12,.1) 60%);
}
.hero__inner{ padding-block:clamp(40px,8vw,90px) clamp(48px,7vw,84px); }
.hero h1{ font-size:clamp(2.5rem, 8.4vw, 5.1rem); font-weight:800; max-width:14ch; }
.hero h1 em{ font-style:normal; color:var(--primary); }
.hero__sub{ color:var(--secondary); font-size:clamp(1.05rem,2.8vw,1.32rem); max-width:46ch; margin:24px 0 0; line-height:1.5; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero__tag{ display:inline-flex; align-items:center; gap:10px; font-family:var(--ff-display); font-size:.78rem; letter-spacing:.22em; text-transform:uppercase; color:var(--secondary); margin-bottom:22px; }
.hero__tag .dot{ width:7px; height:7px; border-radius:50%; background:var(--primary); box-shadow:0 0 0 4px rgba(225,10,23,.22); }

/* ---------- value strip ---------- */
.values{ background:var(--bg-2); border-block:1px solid var(--border-soft); }
.values__grid{ display:grid; grid-template-columns:1fr; gap:0; }
.value{ display:flex; gap:16px; align-items:flex-start; padding:26px 4px; border-bottom:1px solid var(--border-soft); }
.value:last-child{ border-bottom:none; }
.value__ico{ width:46px; height:46px; flex:none; border-radius:12px; display:grid; place-items:center; background:var(--surface); border:1px solid var(--border); color:var(--primary); }
.value__ico svg{ width:23px; height:23px; }
.value h3{ font-size:1.06rem; font-family:var(--ff-display); font-weight:600; margin:2px 0 5px; }
.value p{ margin:0; color:var(--muted); font-size:.92rem; line-height:1.5; }

/* ---------- fleet cards ---------- */
.grid-fleet{ display:grid; grid-template-columns:1fr; gap:22px; }
.car-card{
  background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.car-card:hover{ transform:translateY(-5px); border-color:var(--border); box-shadow:var(--shadow); }
.car-card__media{ position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--bg-2); }
.car-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.car-card:hover .car-card__media img{ transform:scale(1.05); }
.car-card__cat{ position:absolute; top:14px; left:14px; font-family:var(--ff-display); font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600; color:var(--text); background:rgba(10,11,12,.66); backdrop-filter:blur(6px); border:1px solid rgba(255,255,255,.12); padding:7px 12px; border-radius:999px; }
.car-card__body{ padding:22px 22px 24px; display:flex; flex-direction:column; flex:1; }
.car-card__name{ font-family:var(--ff-display); font-size:1.28rem; font-weight:600; }
.car-card__year{ color:var(--muted-2); font-weight:500; font-size:.92rem; }
.car-card__specs{ display:flex; flex-wrap:wrap; gap:8px 16px; margin:14px 0 18px; color:var(--muted); font-size:.85rem; }
.car-card__specs span{ display:inline-flex; align-items:center; gap:7px; }
.car-card__specs svg{ width:15px; height:15px; color:var(--muted-2); }
.car-card__foot{ margin-top:auto; display:flex; align-items:flex-end; justify-content:space-between; gap:14px; padding-top:18px; border-top:1px solid var(--border-soft); }
.price{ display:flex; flex-direction:column; line-height:1.1; }
.price__amt{ font-family:var(--ff-display); font-weight:700; font-size:1.46rem; }
.price__amt .cur{ font-size:.78rem; color:var(--accent); font-weight:600; letter-spacing:.04em; }
.price__per{ color:var(--muted-2); font-size:.78rem; margin-top:3px; }
.price--poa .price__amt{ font-size:1.16rem; color:var(--accent); }
.card-actions{ display:flex; gap:8px; }
.icon-btn{ width:46px; height:46px; flex:none; border-radius:12px; display:grid; place-items:center; border:1px solid var(--border); background:transparent; color:var(--text); transition:.25s var(--ease); cursor:pointer; }
.icon-btn:hover{ border-color:var(--secondary); background:rgba(255,255,255,.05); transform:translateY(-2px); }
.icon-btn.wa:hover{ background:var(--whatsapp); border-color:var(--whatsapp); color:#062a12; }
.icon-btn svg{ width:20px; height:20px; }
.card-link{ position:absolute; inset:0; z-index:1; }

/* filter chips */
.filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:34px; }
.chip{
  font-family:var(--ff-display); font-weight:500; font-size:.9rem; color:var(--muted);
  background:var(--surface); border:1px solid var(--border-soft); padding:11px 19px; border-radius:999px;
  cursor:pointer; transition:.25s var(--ease); min-height:44px; display:inline-flex; align-items:center; gap:8px;
}
.chip:hover{ color:var(--text); border-color:var(--border); }
.chip.active{ background:var(--primary); border-color:var(--primary); color:#fff; }
.chip .count{ font-size:.78rem; opacity:.7; }

/* ---------- generic section image / split ---------- */
.split{ display:grid; grid-template-columns:1fr; gap:clamp(32px,5vw,64px); align-items:center; }
.media-frame{ position:relative; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); background:var(--surface); }
.media-frame img{ width:100%; height:100%; object-fit:cover; }
.feature-list{ list-style:none; margin:28px 0 0; padding:0; display:grid; gap:18px; }
.feature-list li{ display:flex; gap:16px; align-items:flex-start; }
.feature-list .fico{ width:42px; height:42px; flex:none; border-radius:11px; display:grid; place-items:center; background:var(--surface-2); border:1px solid var(--border); color:var(--primary); }
.feature-list .fico svg{ width:21px; height:21px; }
.feature-list h4{ font-family:var(--ff-display); font-size:1.05rem; font-weight:600; margin:1px 0 4px; }
.feature-list p{ margin:0; color:var(--muted); font-size:.92rem; line-height:1.5; }

/* stat row */
.stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--border-soft); border:1px solid var(--border-soft); border-radius:var(--radius); overflow:hidden; }
.stat{ background:var(--surface); padding:24px 20px; }
.stat__num{ font-family:var(--ff-display); font-weight:700; font-size:clamp(1.7rem,5vw,2.3rem); color:var(--text); letter-spacing:-.02em; }
.stat__num .text-primary{ color:var(--primary); }
.stat__lbl{ color:var(--muted); font-size:.86rem; margin-top:4px; }

/* ---------- gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.gallery-cell{ position:relative; overflow:hidden; border-radius:var(--radius-sm); aspect-ratio:4/3; cursor:pointer; background:var(--surface); }
.gallery-cell img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease), opacity .3s; }
.gallery-cell:hover img{ transform:scale(1.06); }
.gallery-cell::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%,rgba(10,11,12,.4)); opacity:0; transition:opacity .3s; }
.gallery-cell:hover::after{ opacity:1; }

/* lightbox */
.lightbox{ position:fixed; inset:0; z-index:120; background:rgba(6,7,8,.94); display:flex; align-items:center; justify-content:center; padding:24px; opacity:0; visibility:hidden; transition:opacity .3s var(--ease), visibility .3s; }
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:94vw; max-height:84vh; border-radius:10px; box-shadow:0 30px 80px -20px #000; }
.lightbox__close,.lightbox__nav{ position:absolute; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); color:#fff; width:54px; height:54px; border-radius:50%; cursor:pointer; display:grid; place-items:center; transition:.2s; }
.lightbox__close:hover,.lightbox__nav:hover{ background:rgba(255,255,255,.18); }
.lightbox__close{ top:20px; right:20px; font-size:1.6rem; }
.lightbox__nav{ top:50%; transform:translateY(-50%); font-size:1.8rem; }
.lightbox__nav.prev{ left:16px; }
.lightbox__nav.next{ right:16px; }

/* ---------- FAQ ---------- */
.faq{ border-top:1px solid var(--border-soft); }
.faq__item{ border-bottom:1px solid var(--border-soft); }
.faq__q{ width:100%; text-align:left; background:transparent; border:none; color:var(--text); cursor:pointer;
  font-family:var(--ff-display); font-weight:600; font-size:clamp(1.02rem,2.6vw,1.18rem);
  padding:24px 48px 24px 0; position:relative; display:block; }
.faq__q::after{ content:"+"; position:absolute; right:6px; top:50%; transform:translateY(-50%); font-size:1.7rem; font-weight:400; color:var(--primary); transition:transform .3s var(--ease); line-height:1; }
.faq__item.open .faq__q::after{ transform:translateY(-50%) rotate(45deg); }
.faq__a{ overflow:hidden; max-height:0; transition:max-height .4s var(--ease); }
.faq__a-inner{ padding:0 40px 26px 0; color:var(--muted); line-height:1.65; }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; overflow:hidden; background:var(--bg-2); border-block:1px solid var(--border-soft); isolation:isolate; }
.cta-band__media{ position:absolute; inset:0; z-index:-2; }
.cta-band__media img{ width:100%; height:100%; object-fit:cover; object-position:center 40%; }
.cta-band__scrim{ position:absolute; inset:0; z-index:-1; background:linear-gradient(90deg, rgba(10,11,12,.96) 0%, rgba(10,11,12,.8) 45%, rgba(10,11,12,.5) 100%); }
.cta-band__inner{ padding-block:clamp(56px,9vw,104px); max-width:620px; }
.cta-band h2{ font-size:clamp(2rem,5.6vw,3.4rem); }
.cta-band p{ color:var(--secondary); font-size:clamp(1.05rem,2.6vw,1.24rem); margin:18px 0 32px; }
.cta-band__actions{ display:flex; flex-wrap:wrap; gap:14px; }

/* ---------- forms ---------- */
.form-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-family:var(--ff-display); font-size:.84rem; font-weight:500; color:var(--secondary); letter-spacing:.02em; }
.field input,.field select,.field textarea{
  background:var(--bg-2); border:1px solid var(--border); border-radius:12px; color:var(--text);
  font-family:var(--ff-body); font-size:1rem; padding:14px 16px; width:100%; transition:border-color .2s var(--ease), background .2s;
}
.field textarea{ resize:vertical; min-height:120px; }
.field input::placeholder,.field textarea::placeholder{ color:var(--muted-2); }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--focus); background:#101113; }
.field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A6ABB2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:44px; }
.field--full{ grid-column:1/-1; }

/* map placeholder */
.map-ph{ position:relative; border:1px dashed var(--border); border-radius:var(--radius); background:
  repeating-linear-gradient(45deg, var(--surface) 0 18px, var(--bg-2) 18px 36px);
  min-height:300px; display:grid; place-items:center; text-align:center; overflow:hidden; }
.map-ph__label{ background:rgba(10,11,12,.78); border:1px solid var(--border); padding:14px 22px; border-radius:999px; font-family:var(--ff-display); font-weight:600; color:var(--secondary); display:inline-flex; gap:10px; align-items:center; }
.map-ph__label svg{ width:20px; height:20px; color:var(--primary); }

/* contact tiles */
.contact-tiles{ display:grid; gap:14px; }
.ctile{ display:flex; gap:16px; align-items:center; padding:20px; background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--radius); transition:.25s var(--ease); }
.ctile:hover{ border-color:var(--border); transform:translateY(-2px); }
.ctile__ico{ width:48px; height:48px; flex:none; border-radius:12px; display:grid; place-items:center; background:var(--surface-2); border:1px solid var(--border); color:var(--primary); }
.ctile__ico svg{ width:23px; height:23px; }
.ctile__lbl{ font-size:.8rem; color:var(--muted-2); letter-spacing:.04em; text-transform:uppercase; font-family:var(--ff-display); }
.ctile__val{ font-family:var(--ff-display); font-weight:600; font-size:1.04rem; margin-top:3px; word-break:break-word; }

/* ---------- footer ---------- */
.site-footer{ background:var(--bg-2); border-top:1px solid var(--border-soft); padding-block:clamp(48px,7vw,76px) 0; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:40px; }
.footer-brand img{ height:50px; margin-bottom:20px; }
.footer-brand p{ color:var(--muted); max-width:34ch; font-size:.95rem; }
.footer-col h4{ font-family:var(--ff-display); font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted-2); margin:0 0 18px; font-weight:600; }
.footer-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:13px; }
.footer-col a,.footer-col span{ color:var(--muted); font-size:.95rem; transition:color .2s; }
.footer-col a:hover{ color:var(--text); }
.socials{ display:flex; gap:10px; margin-top:6px; }
.socials a{ width:44px; height:44px; border-radius:12px; border:1px solid var(--border); display:grid; place-items:center; color:var(--muted); transition:.25s var(--ease); }
.socials a:hover{ color:var(--text); border-color:var(--secondary); transform:translateY(-2px); }
.socials svg{ width:20px; height:20px; }
.footer-bottom{ margin-top:clamp(40px,6vw,64px); border-top:1px solid var(--border-soft); padding-block:26px; display:flex; flex-wrap:wrap; gap:10px 24px; justify-content:space-between; align-items:center; color:var(--muted-2); font-size:.84rem; }
.footer-bottom a{ color:var(--muted-2); }
.footer-bottom a:hover{ color:var(--muted); }

/* ---------- sticky mobile action bar ---------- */
.mobile-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:70;
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:1px;
  background:var(--border); border-top:1px solid var(--border);
  padding-bottom:env(safe-area-inset-bottom);
}
.mobile-bar a{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; padding:11px 6px; background:var(--surface); color:var(--text); font-family:var(--ff-display); font-size:.72rem; font-weight:600; min-height:60px; }
.mobile-bar a svg{ width:21px; height:21px; }
.mobile-bar a.wa{ background:var(--whatsapp); color:#062a12; }
.mobile-bar a.call{ color:var(--text); }
.mobile-bar a .lbl{ letter-spacing:.02em; }
body.has-mobilebar{ padding-bottom:72px; }

/* ---------- breadcrumb ---------- */
.crumb{ display:flex; gap:8px; align-items:center; color:var(--muted-2); font-size:.86rem; font-family:var(--ff-display); padding-top:26px; }
.crumb a:hover{ color:var(--text); }
.crumb .sep{ opacity:.5; }

/* page hero (interior pages) */
.page-hero{ position:relative; isolation:isolate; overflow:hidden; border-bottom:1px solid var(--border-soft); }
.page-hero__media{ position:absolute; inset:0; z-index:-2; }
.page-hero__media img{ width:100%; height:100%; object-fit:cover; object-position:center 42%; }
.page-hero__scrim{ position:absolute; inset:0; z-index:-1; background:linear-gradient(180deg, rgba(10,11,12,.7) 0%, rgba(10,11,12,.55) 50%, rgba(10,11,12,.92) 100%); }
.page-hero__inner{ padding-block:clamp(54px,9vw,104px) clamp(40px,6vw,68px); }
.page-hero h1{ font-size:clamp(2.2rem,6.4vw,4rem); font-weight:800; }
.page-hero p{ color:var(--secondary); font-size:clamp(1.02rem,2.6vw,1.22rem); max-width:52ch; margin:18px 0 0; }

/* utility */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }
.divider{ height:1px; background:var(--border-soft); border:none; margin:0; }
.note{ font-size:.82rem; color:var(--muted-2); line-height:1.5; }
.badge-incl{ display:inline-flex; align-items:center; gap:8px; font-size:.82rem; color:var(--muted); }
.badge-incl svg{ width:16px; height:16px; color:var(--whatsapp); }

/* ---------- vehicle detail ---------- */
.vd-grid{ display:grid; grid-template-columns:1fr; gap:clamp(28px,4vw,52px); align-items:start; }
.vd-media{ aspect-ratio:3/2; }
.vd-media img{ width:100%; height:100%; object-fit:cover; }
.vd-reuse-note{ position:absolute; left:0; right:0; bottom:0; margin:0; padding:14px 18px; font-size:.78rem; color:var(--secondary); background:linear-gradient(0deg, rgba(10,11,12,.92), transparent); }
.vd-title{ font-size:clamp(2rem,5.5vw,3rem); font-weight:800; margin-top:6px; }
.vd-year{ color:var(--muted-2); font-family:var(--ff-display); font-weight:500; margin:8px 0 0; }
.vd-tagline{ color:var(--muted); font-size:1.06rem; line-height:1.6; margin:16px 0 26px; max-width:46ch; }
.vd-price{ display:flex; flex-direction:column; gap:4px; padding:20px 0; border-block:1px solid var(--border-soft); }
.vd-price__amt{ font-family:var(--ff-display); font-weight:800; font-size:clamp(2rem,5vw,2.8rem); letter-spacing:-.02em; }
.vd-price__amt .cur{ font-size:1rem; color:var(--accent); font-weight:600; vertical-align:.5em; margin-right:4px; }
.vd-price__per{ color:var(--muted); font-size:.92rem; }
.vd-specs{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin:26px 0; }
.vd-spec{ display:flex; align-items:center; gap:13px; background:var(--surface); border:1px solid var(--border-soft); border-radius:12px; padding:14px 16px; }
.vd-spec__ico{ width:38px; height:38px; flex:none; border-radius:10px; display:grid; place-items:center; background:var(--surface-2); border:1px solid var(--border); color:var(--primary); }
.vd-spec__ico svg{ width:19px; height:19px; }
.vd-spec__v{ display:block; font-family:var(--ff-display); font-weight:600; font-size:1.02rem; }
.vd-spec__l{ display:block; color:var(--muted-2); font-size:.78rem; }
.vd-actions{ display:grid; gap:12px; margin-bottom:24px; }
.vd-incl{ list-style:none; margin:0; padding:22px 0 0; border-top:1px solid var(--border-soft); display:grid; gap:14px; }
.vd-incl li{ display:flex; gap:12px; align-items:flex-start; color:var(--muted); font-size:.95rem; }
.vd-incl svg{ width:18px; height:18px; color:var(--whatsapp); flex:none; margin-top:3px; }
@media (min-width:900px){ .vd-grid{ grid-template-columns:1.15fr 1fr; } .vd-specs{ grid-template-columns:repeat(2,1fr); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width:600px){
  .values__grid{ grid-template-columns:repeat(2,1fr); }
  .value{ border-bottom:1px solid var(--border-soft); padding:28px 24px; }
  .value:nth-child(odd){ border-right:1px solid var(--border-soft); }
  .value:nth-child(3),.value:nth-child(4){ border-bottom:none; }
  .grid-fleet{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .form-grid{ grid-template-columns:1fr 1fr; }
  .stats{ grid-template-columns:repeat(4,1fr); }
}
@media (min-width:900px){
  .nav{ display:block; }
  .header-cta{ display:flex; }
  .nav-toggle{ display:none; }
  .values__grid{ grid-template-columns:repeat(4,1fr); }
  .value{ border-bottom:none !important; border-right:1px solid var(--border-soft); }
  .value:last-child{ border-right:none; }
  .grid-fleet{ grid-template-columns:repeat(3,1fr); }
  .split{ grid-template-columns:1fr 1fr; }
  .split--media-left .media-frame{ order:-1; }
  .footer-grid{ grid-template-columns:2fr 1fr 1fr 1.2fr; gap:48px; }
  .gallery-grid{ grid-template-columns:repeat(4,1fr); }
  .mobile-bar{ display:none; }
  body.has-mobilebar{ padding-bottom:0; }
}
@media (min-width:1100px){
  /* point-symmetric mosaic: big tile top-left + bottom-right, wides and
     squares mirror each other so every cell completes the grid */
  .gallery-grid--feature{ grid-template-columns:repeat(4,1fr); grid-auto-rows:1fr; }
  .gallery-grid--feature > .gallery-cell{ aspect-ratio:auto; }
  .gallery-grid--feature > :nth-child(1){ grid-column:1/3; grid-row:1/3; } /* big   top-left    */
  .gallery-grid--feature > :nth-child(2){ grid-column:3;   grid-row:1;   } /* square             */
  .gallery-grid--feature > :nth-child(3){ grid-column:4;   grid-row:1;   } /* square             */
  .gallery-grid--feature > :nth-child(4){ grid-column:3/5; grid-row:2;   } /* wide  right        */
  .gallery-grid--feature > :nth-child(5){ grid-column:1;   grid-row:3;   } /* square             */
  .gallery-grid--feature > :nth-child(6){ grid-column:2;   grid-row:3;   } /* square             */
  .gallery-grid--feature > :nth-child(7){ grid-column:1/3; grid-row:4;   } /* wide  left         */
  .gallery-grid--feature > :nth-child(8){ grid-column:3/5; grid-row:3/5; } /* big   bottom-right */
}
