/*
 * AppAlbania Rental Sys - theme styles.
 *
 * Re-skin by changing the tokens in :root (or the theme options screen,
 * which overrides the colour tokens inline). Nothing below :root should
 * need editing per client.
 */

:root{
  /* Brand - overridden inline from theme options */
  --accent:#f26a1b;
  --accent-2:#d8560f;
  /* Text-on-orange needs 4.5:1 for WCAG AA; the brand orange only reaches
     3.06:1 against white. Buttons and other text-bearing orange surfaces use
     this darker tone. Set --btn-bg to var(--accent) to use the exact brand
     colour instead, at the cost of contrast. */
  --btn-bg:#c9500c;
  --btn-bg-hover:#a83f00;
  --navy:#14284d;
  --navy-2:#0b1730;
  --card-top:#1a3357;
  --card-bot:#0c1c38;

  /* Neutrals */
  --ink:#12141a;
  --muted:#6b7280;
  --muted-d:#9aa7bd;
  --surface:#f3f5f9;
  --line:#e6e9f0;
  --bg:#fff;
  --ok:#2fbf71;
  --danger:#e04f4f;

  /* Header. Set --header-bg to #fff and --header-fg to var(--ink)
     for a light header when the client logo is dark. */
  --header-bg:#14284d;
  --header-fg:#ffffff;

  /* Shape */
  --r:14px;
  --r-sm:10px;
  --shadow:0 10px 30px rgba(12,23,48,.12);
  --shadow-sm:0 2px 10px rgba(12,23,48,.08);
  --wrap:1200px;
  --gap:20px;

  /* Type */
  --font:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}

html{-webkit-text-size-adjust:100%}

/* A page shorter than the viewport used to end at the footer and leave the
   browser's own white below it. The column keeps the footer at the bottom. */
body{
  margin:0;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  font-family:var(--font);
  font-size:16px;
  line-height:1.6;
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden;
}

img,svg,video{max-width:100%;height:auto;display:block}
a{color:inherit}
h1,h2,h3,h4{line-height:1.2;margin:0 0 .6rem;font-weight:800;letter-spacing:-.01em}
h1{font-size:clamp(1.9rem,4vw,2.9rem)}
h2{font-size:clamp(1.4rem,2.6vw,2rem)}
p{margin:0 0 1rem}
ul{margin:0;padding:0}

.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:20px;width:100%}
.wrap--narrow{max-width:760px}
.center{text-align:center}

.screen-reader-text{
  position:absolute!important;width:1px;height:1px;overflow:hidden;
  clip:rect(1px,1px,1px,1px);white-space:nowrap;
}
.skip-link:focus{
  position:fixed;top:10px;left:10px;z-index:999;width:auto;height:auto;clip:auto;
  background:#fff;color:var(--ink);padding:.6rem 1rem;border-radius:var(--r-sm);
}
:focus-visible{outline:3px solid var(--accent);outline-offset:2px}

/* ---------- Buttons ---------- */

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.45rem;
  background:var(--btn-bg);color:#fff;border:0;border-radius:var(--r-sm);
  padding:.78rem 1.35rem;font:inherit;font-weight:700;line-height:1.1;
  text-decoration:none;cursor:pointer;transition:background .15s ease,transform .15s ease;
}
.btn:hover,.btn:focus{background:var(--btn-bg-hover)}
.btn:active{transform:translateY(1px)}
.btn--sm{padding:.45rem .9rem;font-size:.85rem}
.btn--ghost{background:transparent;border:1px solid rgba(255,255,255,.5);color:#fff}
.btn--ghost:hover{background:rgba(255,255,255,.12)}
.btn--block{width:100%}

/* ---------- Header ---------- */

.site-header{position:sticky;top:0;z-index:60;background:#fff;box-shadow:var(--shadow-sm)}

.utility{background:var(--navy-2);color:#dfe6f2;font-size:.85rem}
.utility .wrap{display:flex;align-items:center;justify-content:flex-end;gap:1.2rem;min-height:42px;flex-wrap:wrap}
.utility a:not(.btn){text-decoration:none;color:inherit}
.utility .btn{color:#fff;text-decoration:none}
.utility__phone{display:inline-flex;align-items:center;gap:.4rem;font-weight:600}
.utility__phone:hover{color:var(--accent)}
.utility__menu{display:flex;gap:1.1rem;list-style:none;flex-wrap:wrap}
.utility__menu a:hover{color:var(--accent)}

.masthead{background:var(--header-bg);color:var(--header-fg);border-top:1px solid rgba(255,255,255,.08)}
.masthead .wrap{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:78px}
.brand img,.custom-logo{max-height:56px;width:auto}
.brand__text{font-weight:800;font-size:1.25rem;text-decoration:none;letter-spacing:-.02em;color:var(--header-fg)}

.primary-nav__menu{display:flex;align-items:center;gap:1.6rem;list-style:none}
.primary-nav__menu a{
  text-decoration:none;font-weight:600;font-size:.95rem;padding:.4rem 0;color:var(--header-fg);
  display:inline-block;border-bottom:2px solid transparent;transition:color .15s,border-color .15s;
}
.primary-nav__menu .gtranslate_wrapper{display:flex;align-items:center;gap:.3rem}
.primary-nav__menu .gtranslate_wrapper img{display:inline-block}
.primary-nav__menu a:hover,.primary-nav__menu .current-menu-item>a{color:var(--accent);border-bottom-color:var(--accent)}
.primary-nav__menu .sub-menu{display:none}

.nav-toggle{display:none;background:none;border:0;color:var(--header-fg);cursor:pointer;
  width:44px;height:44px;align-items:center;justify-content:center}
.nav-toggle__close{display:none}

/* ---------- Hero ---------- */

.hero{
  position:relative;
  min-height:520px;
  display:flex;align-items:center;
  background:var(--navy-2);
  padding-block:56px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;inset:0;z-index:0;
  width:100%;height:100%;object-fit:cover;object-position:center;
}
.hero::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(100deg,rgba(6,12,26,.82) 0%,rgba(6,12,26,.55) 45%,rgba(6,12,26,.2) 100%);
}
.hero .wrap{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:2.5rem}
.hero__copy{max-width:600px;color:#fff}
.hero h1{color:#fff;margin-bottom:1rem;text-shadow:0 2px 20px rgba(0,0,0,.35)}
.hero h1 b{color:var(--accent);font-weight:800}
.rating{display:inline-flex;align-items:center;gap:.5rem;color:#fff;font-size:.95rem;margin:0}
.rating .stars{display:inline-flex;color:var(--accent)}
.rating__count{color:var(--muted-d)}
.hero__search{flex:0 0 auto}

/* ---------- Search widget (wraps Vik) ---------- */

.ars-search{
  position:relative;background:var(--navy);border-radius:var(--r);
  padding:22px;width:min(408px,92vw);color:#fff;box-shadow:var(--shadow);
}
.ars-search::before{
  content:"";position:absolute;inset:16px -16px -16px 16px;
  background:var(--accent);opacity:.9;border-radius:var(--r);z-index:-1;
}

/* ---------- Feature strip ---------- */

.features{background:#fff;border-bottom:1px solid var(--line)}
/* Centred with a generous gap, so the strip stays balanced whether the site
   shows four features or one. */
.features .wrap{
  display:flex;justify-content:center;align-items:center;
  gap:clamp(1.4rem,5.5vw,4.5rem);flex-wrap:wrap;padding-block:18px;
}
.features .f{display:flex;align-items:center;gap:.55rem;font-size:.92rem;font-weight:600;color:#33405c}
.features .f .ars-i{color:var(--accent);flex:0 0 auto}

/* ---------- Sections ---------- */

.section{padding-block:56px}
.section.alt{background:var(--surface)}
.section__head{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1.6rem}
.section__head h2{margin:0}
.section__more{margin:1.6rem 0 0;text-align:center}

.page-head{background:var(--navy);color:#fff;padding-block:44px}
.page-head h1{color:#fff;margin:0}
.page-head__sub{color:var(--muted-d);margin:.5rem 0 0}

/* ---------- Car card ---------- */

.rail-nav{display:flex;gap:.5rem}
.rail-nav button{
  width:42px;height:42px;border-radius:50%;border:0;background:var(--navy);color:#fff;
  display:grid;place-items:center;cursor:pointer;transition:background .15s;
}
.rail-nav button:hover{background:var(--accent)}

.rail{
  display:flex;gap:var(--gap);overflow-x:auto;scroll-snap-type:x mandatory;
  padding-bottom:8px;scrollbar-width:thin;
}
.rail>.car{flex:0 0 300px;scroll-snap-align:start}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap)}

.car{
  background:linear-gradient(180deg,var(--card-top),var(--card-bot));
  border-radius:var(--r);color:#fff;padding:18px;
  display:flex;flex-direction:column;gap:.45rem;box-shadow:var(--shadow);
}
.car__head{min-height:52px}
.car__name{margin:0;font-size:1.05rem;font-weight:800;text-transform:uppercase;letter-spacing:.01em}
.car__sub{margin:.1rem 0 0;color:var(--muted-d);font-size:.78rem}
.car__specs{display:flex;flex-wrap:wrap;gap:6px;list-style:none;margin:.3rem 0}
.spec{
  display:inline-flex;align-items:center;gap:5px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  border-radius:999px;padding:4px 10px;font-size:.71rem;line-height:1.3;color:#e7edf7;
}
.spec .ars-i{opacity:.85;flex:0 0 auto}
/* One fixed photo box per card. Source photos range from portrait phone
   snaps to wide studio renders; sizing by height alone made the rendered
   widths vary from 109px to 282px and the grid look ragged. */
.car__media{width:100%;height:150px;display:grid;place-items:center;margin:.5rem 0}
.car__img{width:100%;height:100%;object-fit:contain;object-position:center}
.car__img--empty{display:grid;place-items:center;width:100%;height:100%;color:rgba(255,255,255,.25)}
.car__km{display:flex;align-items:center;gap:.35rem;color:var(--ok);font-size:.82rem;margin:0}
.car__foot{display:flex;align-items:center;justify-content:space-between;gap:.8rem;margin-top:auto;padding-top:.7rem}
.car__price{margin:0;font-size:1.4rem;font-weight:800;line-height:1.2}
.car__price small{display:block;font-size:.7rem;font-weight:500;color:var(--muted-d)}
.car__foot .btn{flex:0 0 auto}

.results-count{font-weight:700;margin-bottom:1rem}

/* ---------- Included block ---------- */

.included__card{
  background:#fff;border-radius:var(--r);box-shadow:var(--shadow);overflow:hidden;
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.15fr);gap:0;align-items:stretch;
}
.included__img{width:100%;height:100%;object-fit:cover}
.included__body{padding:34px}
.included__list{list-style:none;display:grid;grid-template-columns:repeat(2,1fr);gap:.9rem 1.4rem}
.included__list li{display:flex;align-items:center;gap:.6rem;font-size:.92rem;font-weight:600}
.included__ico{
  flex:0 0 auto;width:36px;height:36px;border-radius:50%;
  background:rgba(242,106,27,.12);color:var(--accent);display:grid;place-items:center;
}

/* ---------- Categories ---------- */

.cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap)}
.cat{
  display:flex;align-items:center;gap:.9rem;background:var(--btn-bg);color:#fff;
  border-radius:var(--r);padding:20px;text-decoration:none;font-weight:700;
  transition:background .15s,transform .15s;
}
.cat:hover{background:var(--btn-bg-hover);transform:translateY(-2px)}
.cat__ico{flex:0 0 auto;width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.18);display:grid;place-items:center}
.cat__name{display:block}
.cat__meta{display:block;font-weight:500;font-size:.8rem;color:#fff}
.cat__arrow{margin-left:auto;flex:0 0 auto}

/* ---------- Post cards ---------- */

/* ---------- Blog ---------- */

.wrap--reading{max-width:760px}

.crumbs{margin:0 0 .9rem;font-size:.82rem}
.crumbs ol{list-style:none;display:flex;flex-wrap:wrap;gap:.35rem;margin:0;padding:0}
.crumbs li+li::before{content:"/";margin-right:.35rem;opacity:.5}
.crumbs a{color:inherit;text-decoration:none;opacity:.85}
.crumbs a:hover{opacity:1;text-decoration:underline}
.page-head .crumbs{color:#cdd5e4}

.post-grid{align-items:stretch}

.pcard{
  background:#fff;border-radius:var(--r);overflow:hidden;
  box-shadow:var(--shadow-sm);transition:transform .18s ease,box-shadow .18s ease;
}
.pcard:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.pcard__link{display:flex;flex-direction:column;height:100%;text-decoration:none;color:inherit}
.pcard__media{display:block;overflow:hidden;background:var(--surface)}
.pcard__media img{width:100%;height:200px;object-fit:cover;transition:transform .35s ease}
.pcard:hover .pcard__media img{transform:scale(1.04)}
.pcard__media--empty{display:grid;place-items:center;height:200px;color:#c3cad8}
.pcard__body{display:flex;flex-direction:column;gap:.5rem;padding:20px;flex:1 1 auto}
.pcard__meta{display:flex;flex-wrap:wrap;gap:.4rem;font-size:.78rem;color:var(--muted)}
.pcard__title{font-size:1.08rem;font-weight:800;line-height:1.3;letter-spacing:-.01em}
.pcard__excerpt{color:var(--muted);font-size:.92rem;line-height:1.55}
.pcard__more{
  margin-top:auto;display:inline-flex;align-items:center;gap:.3rem;
  /* --accent on white is 3.06:1; the button tone clears AA at 4.53:1. */
  color:var(--btn-bg);font-weight:700;font-size:.88rem;
}
.pcard:hover .pcard__title{color:var(--btn-bg-hover)}

.page-head--post h1{max-width:22ch}
.post-meta{display:flex;flex-wrap:wrap;gap:.45rem;color:var(--muted-d);font-size:.9rem;margin:.6rem 0 0}
.post-meta a{color:var(--muted-d)}
.post-meta a:hover{color:#fff}

.post-hero{margin:0 0 1.8rem}
.post-hero img{width:100%;height:auto;border-radius:var(--r);box-shadow:var(--shadow)}

.entry--post{font-size:1.06rem;line-height:1.75;color:#25292f}
.entry--post h2{font-size:1.5rem;margin:2.2rem 0 .7rem}
.entry--post h3{font-size:1.2rem;margin:1.8rem 0 .5rem}
.entry--post p{margin:0 0 1.2rem}
.entry--post ul,.entry--post ol{margin:0 0 1.2rem;padding-left:1.3rem}
.entry--post li{margin:.4rem 0}
.entry--post a{color:var(--accent-2);text-underline-offset:3px}
.entry--post img{border-radius:var(--r-sm);margin:1.4rem 0}
.entry--post blockquote{
  margin:1.6rem 0;padding:.4rem 0 .4rem 1.2rem;
  border-left:4px solid var(--accent);color:#3a4152;font-style:italic;
}
.entry--post code{background:var(--surface);padding:.15em .4em;border-radius:5px;font-size:.92em}

.post-tags{margin:1.6rem 0 0;display:flex;flex-wrap:wrap;gap:.4rem}
.post-tags a{
  font-size:.8rem;font-weight:600;text-decoration:none;color:#33405c;
  background:var(--surface);border:1px solid var(--line);border-radius:999px;padding:5px 12px;
}
.post-tags a:hover{border-color:var(--accent);color:var(--accent-2)}

.post-nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--gap);margin-top:2.2rem}
.post-nav__item{
  display:flex;flex-direction:column;gap:.3rem;padding:16px 18px;
  background:#fff;border-radius:var(--r);box-shadow:var(--shadow-sm);
  text-decoration:none;color:inherit;transition:box-shadow .18s ease;
}
.post-nav__item:hover{box-shadow:var(--shadow)}
.post-nav__item--next{text-align:right;grid-column:2}
.post-nav__item--next .post-nav__dir{justify-content:flex-end}
.post-nav__dir{display:flex;align-items:center;gap:.25rem;font-size:.78rem;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.03em}
.post-nav__title{font-weight:700;line-height:1.35}

.search-again{margin-bottom:1.6rem}
.search-again form{display:flex;gap:.6rem;max-width:520px}
.search-again input[type="search"]{
  flex:1 1 auto;padding:.7rem .9rem;border:1px solid var(--line);
  border-radius:var(--r-sm);font:inherit;background:#fff;
}
.search-again input[type="submit"]{
  background:var(--btn-bg);color:#fff;border:0;border-radius:var(--r-sm);
  padding:.7rem 1.2rem;font-weight:700;cursor:pointer;
}

@media (max-width:640px){
  .post-nav{grid-template-columns:1fr}
  .post-nav__item--next{grid-column:1;text-align:left}
  .post-nav__item--next .post-nav__dir{justify-content:flex-start}
  .entry--post{font-size:1.02rem}
}

/* ---------- Entry content ---------- */

.entry{background:#fff;border-radius:var(--r);padding:0}
.entry--vik{background:transparent}
.entry img{border-radius:var(--r-sm)}
.entry__meta{color:var(--muted);font-size:.88rem}

/* ---------- Footer ---------- */

.site-footer{background:var(--navy);color:#cdd5e4;padding-top:48px;font-size:.92rem}
.site-footer a{color:#cdd5e4;text-decoration:none}
.site-footer a:hover{color:#fff;text-decoration:underline}
.site-footer h3{color:#fff;text-transform:uppercase;letter-spacing:.06em;font-size:.82rem;margin:0 0 1.1rem}
/* The columns are built from menus, so how many there are varies. A fixed
   four-column grid left an empty track on the right and pushed the content
   against the left edge; laying them out as a centred row keeps the block
   balanced whatever the site has. */
.site-footer .cols{
  display:flex;flex-wrap:wrap;justify-content:center;
  gap:2rem 3.5rem;padding-bottom:40px;
}
.site-footer .col{flex:0 1 auto;min-width:170px}
.site-footer ul{list-style:none}
.site-footer li{margin:.45rem 0}
.site-footer .col ul:not(.contact) a::before{content:"›";color:var(--accent);margin-right:.5rem;font-weight:700}
.contact li{display:flex;align-items:flex-start;gap:.55rem}
.contact .ars-i{color:var(--accent);flex:0 0 auto;margin-top:.15rem}

.footer-bottom{background:var(--navy-2);color:#8a93a6;padding-block:16px;font-size:.85rem}
.footer-bottom .wrap{
  display:flex;align-items:center;justify-content:center;
  gap:1rem;flex-wrap:wrap;text-align:center;
}
.footer-bottom p{margin:0}
.socials{display:flex;gap:.5rem;list-style:none}
.socials a{
  width:34px;height:34px;border-radius:50%;background:var(--btn-bg);color:#fff;
  display:grid;place-items:center;transition:background .15s;
}
.socials a:hover{background:var(--btn-bg-hover)}

/* Floating WhatsApp button - official brand green, official glyph. */
.wa{
  position:fixed;right:20px;bottom:20px;width:56px;height:56px;border-radius:50%;
  background:#25d366;color:#fff;display:grid;place-items:center;z-index:70;
  box-shadow:0 4px 12px rgba(0,0,0,.15),0 0 0 0 rgba(37,211,102,.55);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
  -webkit-tap-highlight-color:transparent;
}
.wa .ars-i{width:32px;height:32px}
.wa:hover,.wa:focus-visible{
  background:#1faf54;transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.22),0 0 0 8px rgba(37,211,102,.16);
}
.wa:active{transform:translateY(0)}

@media (max-width:640px){
  .wa{right:14px;bottom:14px;width:52px;height:52px}
  .wa .ars-i{width:29px;height:29px}
}

/* ---------- Pagination ---------- */

.pagination{margin-top:2rem;display:flex;justify-content:center}
.pagination .page-numbers{
  display:inline-grid;place-items:center;min-width:38px;height:38px;padding:0 .6rem;
  border-radius:var(--r-sm);background:#fff;box-shadow:var(--shadow-sm);
  text-decoration:none;font-weight:600;margin:0 .2rem;
}
.pagination .current{background:var(--accent);color:#fff}

/* ---------- Responsive ---------- */

@media (max-width:1040px){
  .grid,.cat-grid{grid-template-columns:repeat(2,1fr)}
  .hero .wrap{flex-direction:column;align-items:flex-start}
  .hero__search{width:100%}
  .ars-search{width:min(420px,100%)}
  .included__card{grid-template-columns:1fr}
  .included__img{height:260px}
  .site-footer .cols{gap:2rem}
}

@media (max-width:820px){
  .nav-toggle{display:flex}
  .primary-nav{
    display:none;position:absolute;left:0;right:0;top:100%;background:var(--header-bg);
    box-shadow:var(--shadow);padding:12px 20px 20px;z-index:5;
  }
  body.nav-open .primary-nav{display:block}
  body.nav-open .nav-toggle__open{display:none}
  body.nav-open .nav-toggle__close{display:block}
  .primary-nav__menu{flex-direction:column;align-items:stretch;gap:0}
  .primary-nav__menu li{border-bottom:1px solid rgba(255,255,255,.12)}
  .primary-nav__menu a{display:block;padding:.85rem 0;border:0}
  .masthead .wrap{position:relative}

  /* Mobile utility bar: phone on the left, reservation CTA on the right.
     Your Orders / Terms live in the footer, so they are dropped here to keep
     the bar to a single row. */
  .utility .wrap{justify-content:space-between;flex-wrap:nowrap;gap:.6rem;font-size:.82rem}
  .utility__menu{display:none}
  .utility__phone{flex:0 1 auto;min-width:0}
  .utility__phone span{white-space:nowrap}
  .utility .btn{flex:0 0 auto;white-space:nowrap}
}

@media (max-width:640px){
  .grid,.cat-grid{grid-template-columns:1fr}
  .section{padding-block:40px}
  .hero{min-height:auto;padding-block:40px}
  /* Four features stacked one per line ate most of a phone screen; two by
     two keeps the strip to a glance. */
  .features .wrap{
    display:grid;grid-template-columns:1fr 1fr;
    gap:.85rem 1rem;justify-content:stretch;align-items:start;
  }
  .features .f{align-items:flex-start;font-size:.86rem;line-height:1.3}
  .features .f .ars-i{margin-top:1px}
  .included__body{padding:24px}
  .included__list{grid-template-columns:1fr}
  /* Two menu columns side by side, with the contact block spanning below -
     one column per menu wasted most of the width. */
  .site-footer .cols{
    display:grid;grid-template-columns:1fr 1fr;
    gap:1.7rem 1rem;align-items:start;text-align:left;
  }
  .site-footer .col{min-width:0}
  .site-footer .col--contact{grid-column:1/-1;text-align:center}
  .site-footer .col--contact .contact li{justify-content:center;text-align:left}
  .footer-bottom .wrap{justify-content:center;text-align:center}
  .rail>.car{flex-basis:270px}
}

@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}

@media print{
  .site-header,.site-footer,.wa,.rail-nav{display:none}
}

/* ---------- Content pages ---------- */

.prose{background:#fff;border-radius:var(--r);box-shadow:var(--shadow-sm);padding:34px}
.prose h2{margin-top:1.8rem;font-size:1.25rem}
.prose h2:first-child{margin-top:0}
.prose ul,.prose ol{padding-left:1.2rem;margin:0 0 1rem}
.prose li{margin:.3rem 0}

.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap);margin-bottom:var(--gap)}
.contact-card{
  background:#fff;border-radius:var(--r);box-shadow:var(--shadow);padding:26px;
  display:flex;flex-direction:column;gap:.5rem;text-align:center;align-items:center;
}
.contact-card .ico{
  width:54px;height:54px;border-radius:50%;background:rgba(242,106,27,.12);
  color:var(--accent);display:grid;place-items:center;
}
.contact-card h3{margin:0;font-size:1rem;text-transform:uppercase;letter-spacing:.04em}
.contact-card a{color:var(--accent);text-decoration:none;font-weight:700}
.contact-card a:hover{text-decoration:underline}
.contact-card p,
.contact-card__text{margin:0;color:var(--muted);font-size:.92rem}

.map-embed{border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow);line-height:0}
.map-embed iframe{width:100%;height:380px;border:0;display:block}

@media (max-width:820px){.contact-grid{grid-template-columns:1fr}}

/* ---------- Clickable car cards ----------
   The name and photo link to the car page, and the whole card is a target
   via a stretched overlay on the name link. The Book Now button sits above
   the overlay so it keeps its own destination. */
.car--linked{position:relative}
.car__name a{color:inherit;text-decoration:none}
.car__name a::after{content:"";position:absolute;inset:0;z-index:1;border-radius:var(--r)}
.car--linked:hover{box-shadow:0 14px 36px rgba(12,23,48,.22);transform:translateY(-2px)}
.car--linked{transition:transform .18s ease,box-shadow .18s ease}
.car--linked:hover .car__name{color:#fff;text-decoration:underline;text-underline-offset:3px}
.car__media{display:block}
.car__media,
.car__foot,
.car__specs{position:relative;z-index:2}
.car__foot .btn{position:relative;z-index:3}
.car--linked:focus-within{outline:3px solid var(--accent);outline-offset:3px}

/* ---------- Language switcher ----------
   Rendered by the theme next to the nav, so the switcher does not need to be
   injected into a menu by a shortcode plugin. */
.ars-lang{display:flex;align-items:center;gap:.35rem;flex:0 0 auto}
.ars-lang img{display:inline-block;vertical-align:middle}
.ars-lang .gtranslate_wrapper{display:flex;align-items:center;gap:.3rem}
.ars-lang-list{display:flex;gap:.5rem;list-style:none;margin:0;padding:0}
.ars-lang-list a{color:var(--header-fg);text-decoration:none;font-size:.85rem;font-weight:600;text-transform:uppercase}
.ars-lang-list a:hover{color:var(--accent)}

@media (max-width:820px){
  /* Sits beside the hamburger rather than inside the collapsed menu. */
  .masthead .wrap{gap:.5rem}
  .ars-lang{order:2;margin-left:auto;margin-right:.2rem}
  .nav-toggle{order:3}
}

.section__link{
  display:inline-flex;align-items:center;gap:.25rem;
  color:var(--btn-bg);font-weight:700;font-size:.9rem;text-decoration:none;
}
.section__link:hover{color:var(--accent-2);text-decoration:underline;text-underline-offset:3px}


/* Sticky footer: the main column takes the slack on short pages. */
.site-main{flex:1 0 auto}
.site-footer{flex-shrink:0}
