/* ==========================================================================
   MSG Car Hire Malta — Design System
   Brand: logo yellow #FFFF00 / site accent #EEEE22, graphite #656565
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  font-weight: 400 900;
  font-stretch: 100% 125%;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin-ext.woff2') format('woff2');
  font-weight: 400 900;
  font-stretch: 100% 125%;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --brand:      #EEEE22;
  --brand-hi:   #F8F857;
  --brand-lo:   #C8C80E;
  --brand-ink:  #12120A;
  --brand-a12:  rgba(238, 238, 34, .12);
  --brand-a20:  rgba(238, 238, 34, .20);
  --brand-a35:  rgba(238, 238, 34, .35);

  /* Dark surfaces */
  --ink-950:    #07080A;
  --ink-900:    #0B0D0F;
  --ink-850:    #101316;
  --ink-800:    #14181C;
  --ink-750:    #1A1F24;
  --ink-700:    #232930;

  /* Light surfaces (Maltese limestone) */
  --sand-50:    #FAF8F3;
  --sand-100:   #F3EFE6;
  --sand-200:   #E7E0D2;
  --sand-300:   #D6CCB8;

  /* Text */
  --txt:        #F4F5F6;
  --txt-2:      #A9B0B7;
  --txt-3:      #767E86;
  --txt-dark:   #14181C;
  --txt-dark-2: #55606A;

  /* Lines */
  --line:       rgba(255, 255, 255, .09);
  --line-2:     rgba(255, 255, 255, .16);
  --line-dark:  rgba(20, 24, 28, .12);

  /* Type */
  --font-display: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Metrics */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(0,0,0,.3);
  --sh-2: 0 10px 30px -12px rgba(0,0,0,.65);
  --sh-3: 0 28px 70px -20px rgba(0,0,0,.8);
  --sh-glow: 0 12px 40px -8px rgba(238,238,34,.32);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--txt);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'cv05' 1, 'ss03' 1;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--brand); color: var(--brand-ink); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: 1440px; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.skip-link {
  position: absolute; left: 50%; top: -80px; transform: translateX(-50%);
  z-index: 200; background: var(--brand); color: var(--brand-ink);
  padding: .7rem 1.25rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.028em;
  text-wrap: balance;
}
.display {
  font-size: clamp(2.15rem, 8.4vw, 6.1rem);
  font-weight: 800;
  font-variation-settings: 'wdth' 108;
  line-height: .96;
  letter-spacing: -.038em;
}
.h1 { font-size: clamp(2rem, 6vw, 4.2rem); font-weight: 800; font-variation-settings: 'wdth' 106; letter-spacing: -.034em; }
.h2 { font-size: clamp(1.7rem, 4.4vw, 3.25rem); font-weight: 750; font-variation-settings: 'wdth' 104; }
.h3 { font-size: clamp(1.35rem, 2.1vw, 1.8rem); font-weight: 700; }
.h4 { font-size: clamp(1.1rem, 1.5vw, 1.28rem); font-weight: 650; letter-spacing: -.018em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand));
}
.eyebrow--center::before { display: none; }
.eyebrow--dark { color: #756705; }

.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  color: var(--txt-2);
  line-height: 1.72;
  max-width: 62ch;
  text-wrap: pretty;
}
.lead--dark { color: var(--txt-dark-2); }
.muted { color: var(--txt-2); }
.tiny { font-size: .8rem; line-height: 1.6; color: var(--txt-3); }
.mark { color: var(--brand); }

/* Section heading block */
.sec-head { max-width: 780px; }
.sec-head .h2 { margin-top: 1.1rem; }
.sec-head .lead { margin-top: 1.35rem; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .lead { margin-inline: auto; }
.sec-head--split {
  display: grid; gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr);
  max-width: none; align-items: end;
}
@media (min-width: 900px) {
  .sec-head--split { grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr); }
  .sec-head--split .lead { margin-top: 0; padding-bottom: .4rem; }
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: var(--brand-ink);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .93rem; font-weight: 650; letter-spacing: -.005em;
  white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); background: var(--brand-hi); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--txt);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn--dark { --btn-bg: var(--ink-800); --btn-fg: var(--txt); }
.btn--dark:hover { background: var(--ink-750); box-shadow: var(--sh-2); }
.btn--outline-dark {
  --btn-bg: transparent; --btn-fg: var(--txt-dark);
  box-shadow: inset 0 0 0 1px rgba(20,24,28,.2);
}
.btn--outline-dark:hover { background: rgba(20,24,28,.05); box-shadow: inset 0 0 0 1px rgba(20,24,28,.3); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 600; color: var(--brand);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .3s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.topbar {
  position: relative; z-index: 60;
  background: var(--ink-950);
  border-bottom: 1px solid var(--line);
  font-size: .78rem; color: var(--txt-2);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 40px;
}
.topbar__note { display: flex; align-items: center; gap: .55rem; }
.topbar__note svg { width: 14px; height: 14px; color: var(--brand); flex: none; }
.topbar__links { display: none; align-items: center; gap: 1.5rem; }
.topbar a:hover { color: var(--brand); }
@media (min-width: 760px) { .topbar__links { display: flex; } }

.site-header {
  position: sticky; top: 0; z-index: 70;
  background: rgba(11, 13, 15, .72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-stuck {
  background: rgba(8, 9, 11, .9);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { width: 46px; height: auto; }
.brand__text { display: none; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: .96rem;
  letter-spacing: -.02em; font-variation-settings: 'wdth' 108;
}
.brand__sub {
  font-size: .61rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--txt-3);
}
@media (min-width: 420px) { .brand__text { display: block; } }

.nav__menu { display: none; align-items: center; gap: .3rem; }
.nav__link {
  position: relative; padding: .6rem .8rem;
  font-size: .88rem; font-weight: 500; color: var(--txt-2);
  border-radius: 8px;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: .8rem; right: .8rem; bottom: .32rem;
  height: 1.5px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--txt); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: .7rem; }
.nav__phone {
  display: none; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 600;
}
.nav__phone svg { width: 16px; height: 16px; color: var(--brand); }
.nav__phone:hover { color: var(--brand); }
@media (min-width: 1060px) { .nav__menu { display: flex; } }
@media (min-width: 640px) { .nav__phone { display: flex; } }

@media (max-width: 560px) {
  .nav { gap: .6rem; min-height: 66px; }
  .brand img { width: 40px; }
  .brand__name { font-size: .9rem; }
  .brand__sub { display: none; }
  .nav__actions { gap: .45rem; }
  .nav__actions .btn { padding: .72rem 1.05rem; font-size: .85rem; }
}
@media (max-width: 359px) {
  .nav__actions .btn { display: none; }
}
.burger {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.burger span {
  display: block; width: 18px; height: 1.6px; background: var(--txt);
  border-radius: 2px; transition: transform .35s var(--ease-out), opacity .2s;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
@media (min-width: 1060px) { .burger { display: none; } }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink-950);
  padding: 6.5rem var(--gutter) 2.5rem;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease-out), visibility .35s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__list { display: flex; flex-direction: column; gap: .15rem; }
.drawer__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem .25rem;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  letter-spacing: -.03em;
  border-bottom: 1px solid var(--line);
}
.drawer__list a span { font-family: var(--font-body); font-size: .72rem; color: var(--txt-3); font-weight: 500; letter-spacing: .08em; }
.drawer__list a:hover { color: var(--brand); }
.drawer__foot { margin-top: auto; padding-top: 2.5rem; display: grid; gap: .75rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex; align-items: flex-end;
  padding-top: clamp(3rem, 9vw, 6rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 55%;
  filter: grayscale(.32) contrast(1.06) brightness(.72) saturate(.85);
  transform: scale(1.04);
  animation: heroDrift 24s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.11) translate3d(-1.4%, -1%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, var(--ink-950) 6%, rgba(11,13,15,.9) 34%, rgba(11,13,15,.38) 62%, rgba(11,13,15,.55) 100%),
    linear-gradient(to top, var(--ink-900) 1%, rgba(11,13,15,0) 42%);
}
.hero__glow {
  position: absolute; z-index: -1;
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  right: 4%; top: 16%;
  background: radial-gradient(circle, var(--brand-a20) 0%, transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}
.hero__inner { position: relative; width: 100%; }
.hero__content { max-width: 780px; }
.hero .display { margin-top: 1.4rem; }
.hero .display em {
  font-style: normal; color: var(--brand);
  display: inline-block;
}
.hero__sub { margin-top: 1.6rem; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: #C9CFD5; max-width: 56ch; line-height: 1.7; }
.hero__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__chips {
  margin-top: 2.6rem;
  display: flex; flex-wrap: wrap; gap: .5rem .55rem;
}
@media (max-width: 560px) {
  .hero__cta { display: grid; grid-template-columns: 1fr; gap: .65rem; }
  .hero__cta .btn { width: 100%; }
  .hero__chips { margin-top: 2rem; gap: .45rem; }
  .hero__chips .chip { font-size: .74rem; padding: .42rem .7rem .42rem .6rem; }
  .hero__chips .chip svg { width: 12px; height: 12px; }
}
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .48rem .95rem .48rem .75rem;
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 0 0 1px var(--line);
  backdrop-filter: blur(8px);
  font-size: .8rem; color: #D3D8DD; font-weight: 500;
}
.chip svg { width: 14px; height: 14px; color: var(--brand); flex: none; }

/* ---------- Booking widget ---------- */
.booking {
  position: relative; z-index: 20;
  margin-top: clamp(-3.5rem, -3vw, -2rem);
}
.booking__card {
  background: linear-gradient(160deg, rgba(26,31,36,.92), rgba(16,19,22,.96));
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-3);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
}
.booking__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem;
  margin-bottom: 1.25rem;
}
.booking__title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -.02em;
}
.booking__note { font-size: .78rem; color: var(--txt-3); }
.booking__grid {
  display: grid; gap: .85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 720px) { .booking__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1180px) {
  .booking__grid {
    grid-template-columns:
      minmax(0, 1.5fr) minmax(0, 1.5fr)
      minmax(0, 1.15fr) minmax(0, .66fr)
      minmax(0, 1.15fr) minmax(0, .66fr)
      minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: end;
  }
}
.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field--span2 { grid-column: span 2; }
.field__label {
  font-size: .68rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--txt-3);
  padding-left: .15rem;
}
.field__box {
  position: relative;
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 0 .7rem;
  min-height: 52px;
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field__box:hover { background: rgba(255,255,255,.06); }
.field__box:focus-within { box-shadow: inset 0 0 0 1.5px var(--brand); background: rgba(255,255,255,.06); }
.field__box > svg { width: 16px; height: 16px; color: var(--brand); flex: none; }
.field__box select,
.field__box input {
  width: 100%; min-width: 0; border: 0; background: none; outline: none;
  font-size: .875rem; font-weight: 500; color: var(--txt);
  padding: .8rem 0;
  appearance: none; -webkit-appearance: none;
}
.field__box select option { background: var(--ink-800); color: var(--txt); }
.field__box input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.4); opacity: .5; cursor: pointer;
}
.field__box--select::after {
  content: ''; position: absolute; right: .75rem; top: 50%;
  width: 7px; height: 7px; margin-top: -5px;
  border-right: 1.6px solid var(--txt-3); border-bottom: 1.6px solid var(--txt-3);
  transform: rotate(45deg); pointer-events: none;
}
.field__box--select select { padding-right: 1.05rem; }
.time-row { display: flex; align-items: center; gap: .3rem; }
.time-row select { width: auto !important; text-align: center; }
.booking__submit .btn { height: 52px; padding-inline: 1.2rem; }
.booking__foot {
  margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .4rem 1.4rem;
  font-size: .76rem; color: var(--txt-3);
}
.booking__foot span { display: inline-flex; align-items: center; gap: .4rem; }
.booking__foot svg { width: 13px; height: 13px; color: var(--brand); }

/* ---------- Stats / marquee strip ---------- */
.stats {
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
  border-block: 1px solid var(--line);
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--ink-900);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.8rem);
  display: flex; flex-direction: column; gap: .3rem;
  transition: background-color .35s var(--ease);
}
.stat:hover { background: var(--ink-850); }
.stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -.04em;
  font-variation-settings: 'wdth' 106;
  color: var(--brand);
  line-height: 1;
}
.stat__label { font-size: .82rem; color: var(--txt-2); margin-top: .5rem; }

/* ---------- Fleet ---------- */
.fleet-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; gap: clamp(1rem, 1.8vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}
.car-card {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column;
  background: linear-gradient(168deg, var(--ink-800), var(--ink-850) 62%);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 1.6rem 1.5rem 1.5rem;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.car-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 70% at 50% 108%, var(--brand-a12), transparent 62%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.car-card:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-3); }
.car-card:hover::before { opacity: 1; }
.car-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.car-card__cat {
  font-family: var(--font-display); font-size: 1.32rem; font-weight: 750;
  letter-spacing: -.03em;
}
.car-card__tag {
  font-size: .66rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-a12);
  padding: .32rem .6rem; border-radius: 6px; white-space: nowrap;
}
.car-card__desc { margin-top: .55rem; font-size: .875rem; color: var(--txt-2); line-height: 1.6; }
.car-card__models {
  margin-top: .85rem;
  font-size: .78rem; line-height: 1.5; color: var(--txt-3);
}
.car-card__models span { color: var(--txt-3); opacity: .75; font-style: italic; }
.fleet-row__body .car-card__models { margin-top: 1rem; font-size: .84rem; }
.car-card__art {
  margin: 1.25rem -.75rem .35rem;
  display: grid; place-items: center;
  min-height: 132px;
}
.car-card__art svg { width: 100%; max-width: 300px; height: auto; }
/* Vehicle illustrations (shared by fleet cards and the fleet page) */
.car-body {
  fill: #2A3138; stroke: rgba(255, 255, 255, .07); stroke-width: 1.5;
  transition: fill .45s var(--ease);
}
.car-shade { fill: #1B2128; }
.car-glass { fill: #0E1114; }
.car-tyre  { fill: #0B0D0F; }
.car-rim   { fill: #39414A; transition: fill .45s var(--ease); }
.car-hub   { fill: #0B0D0F; }
.car-lamp  { fill: var(--brand); transition: filter .45s var(--ease); }
.car-shadow { fill: #000; opacity: .35; }
.car-line {
  fill: none; stroke: #2A3138; stroke-width: 7;
  stroke-linecap: round; transition: stroke .45s var(--ease);
}
.car-card:hover .car-body, .fleet-row:hover .car-body { fill: #343D47; }
.car-card:hover .car-line, .fleet-row:hover .car-line { stroke: #343D47; }
.car-card:hover .car-rim,  .fleet-row:hover .car-rim  { fill: var(--brand); }
.car-card:hover .car-lamp, .fleet-row:hover .car-lamp { filter: drop-shadow(0 0 7px var(--brand-a35)); }

/* ---------- Fleet page rows ---------- */
.fleet-rows {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid; gap: clamp(1.25rem, 2.5vw, 2rem);
}
.fleet-row {
  display: grid; gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
  padding: clamp(1.35rem, 2.6vw, 2.25rem);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--ink-800), var(--ink-850) 68%);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .45s var(--ease-out);
  scroll-margin-top: 110px;
}
.fleet-row:hover { box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-2); }
@media (min-width: 880px) {
  .fleet-row { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
  .fleet-row:nth-child(even) .fleet-row__art { order: 2; }
}
.fleet-row__art {
  position: relative; isolation: isolate;
  display: grid; place-items: center;
  min-height: 210px; padding: 1.25rem;
  border-radius: var(--r-md);
  background: radial-gradient(110% 80% at 50% 106%, var(--brand-a12), transparent 62%), var(--ink-900);
  box-shadow: inset 0 0 0 1px var(--line);
}
.fleet-row__art svg { width: 100%; max-width: 400px; height: auto; }
.fleet-row__head { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; }
.fleet-row__body .lead { margin-top: 1rem; font-size: 1rem; }
.fleet-row__specs {
  margin-top: 1.5rem; padding-top: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 165px), 1fr));
}
.fleet-row__label {
  margin-top: 1.5rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--txt-3);
}
.fleet-row__chips { margin-top: .8rem; display: flex; flex-wrap: wrap; gap: .45rem; }
.fleet-row__chips .chip { padding: .42rem .85rem; }
.fleet-row__cta {
  margin-top: 1.85rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
}
.car-specs {
  margin-top: 1.1rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem .8rem;
}
.car-specs li { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--txt-2); }
.car-specs svg { width: 15px; height: 15px; color: var(--txt-3); flex: none; }
.car-card__foot {
  margin-top: 1.3rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.car-card__price { display: flex; flex-direction: column; }
.car-card__price b { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; letter-spacing: -.02em; }
.car-card__price span { font-size: .72rem; color: var(--txt-3); }

/* ---------- Feature cards ---------- */
.feature-grid {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  display: grid; gap: clamp(1rem, 1.8vw, 1.4rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.feature {
  position: relative;
  padding: 1.9rem 1.6rem;
  border-radius: var(--r-md);
  background: var(--ink-850);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background-color .4s var(--ease);
}
.feature:hover { transform: translateY(-4px); background: var(--ink-800); box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-2); }
.feature__icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--brand-a12); color: var(--brand);
  margin-bottom: 1.15rem;
}
.feature__icon svg { width: 21px; height: 21px; }
.feature h3 { font-size: 1.06rem; font-weight: 700; letter-spacing: -.02em; }
.feature p { margin-top: .55rem; font-size: .88rem; color: var(--txt-2); line-height: 1.66; }

/* ---------- About / founders ---------- */
.about-grid {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 940px) { .about-grid { grid-template-columns: minmax(0, .92fr) minmax(0, 1fr); } }
.about-media { position: relative; }
.about-media__frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-3);
  aspect-ratio: 4 / 3.2;
}
.about-media__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%;
  filter: contrast(1.04) saturate(.9);
}
.about-media__frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,8,10,.55), transparent 45%);
}
.about-media__badge {
  position: absolute; right: clamp(-.5rem, -1vw, -1.5rem); bottom: -1.25rem;
  background: var(--brand); color: var(--brand-ink);
  padding: 1rem 1.35rem; border-radius: var(--r-md);
  box-shadow: var(--sh-2);
  max-width: 210px;
}
.about-media__badge b {
  display: block; font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 800; line-height: 1; letter-spacing: -.04em;
}
.about-media__badge span { font-size: .74rem; font-weight: 550; line-height: 1.35; display: block; margin-top: .3rem; }
.about-body .h2 { margin-top: 1.1rem; }
.about-body p { margin-top: 1.25rem; color: var(--txt-2); line-height: 1.75; }
.about-body p.first { color: #D6DBE0; font-size: 1.06rem; }
.about-sign {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1.5rem;
}
.about-sign div { display: flex; flex-direction: column; }
.about-sign b { font-family: var(--font-display); font-size: 1.35rem; font-weight: 750; letter-spacing: -.03em; color: var(--brand); }
.about-sign span { font-size: .78rem; color: var(--txt-3); }

/* ---------- Steps ---------- */
.steps {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  counter-reset: step;
}
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
  letter-spacing: -.05em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.4px var(--line-2);
}
.step::after {
  content: ''; position: absolute; top: 1.35rem; left: 4.2rem; right: -1.5rem;
  height: 1px; background: linear-gradient(90deg, var(--line-2), transparent);
  display: none;
}
@media (min-width: 900px) { .step:not(:last-child)::after { display: block; } }
.step h3 { font-size: 1.15rem; font-weight: 700; }
.step p { margin-top: .6rem; font-size: .89rem; color: var(--txt-2); line-height: 1.68; }

/* ---------- Light section (rates) ---------- */
.section--light {
  background: var(--sand-100);
  color: var(--txt-dark);
}
.section--light h1, .section--light h2, .section--light h3, .section--light h4 { color: var(--txt-dark); }
.rates-grid {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  display: grid; gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 900px) { .rates-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); } }
.rate-panel {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 1px 2px rgba(20,24,28,.06), 0 20px 50px -30px rgba(20,24,28,.35);
}
.rate-panel h3 { font-size: 1.2rem; }
.rate-panel__sub { font-size: .86rem; color: var(--txt-dark-2); margin-top: .4rem; }
.rate-list { margin-top: 1.5rem; display: flex; flex-direction: column; }
.rate-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px dashed var(--sand-300);
  font-size: .92rem;
}
.rate-list li:last-child { border-bottom: 0; }
.rate-list strong { font-family: var(--font-display); font-weight: 750; font-size: 1.02rem; letter-spacing: -.02em; white-space: nowrap; }
.rate-list small { display: block; font-size: .76rem; color: var(--txt-dark-2); margin-top: .15rem; }
.incl-list { margin-top: 1.5rem; display: grid; gap: .8rem; }
.incl-list li { display: flex; gap: .7rem; font-size: .9rem; line-height: 1.55; }
.incl-list svg { width: 18px; height: 18px; flex: none; margin-top: .12rem; color: #14181C; }
.incl-list .ic-yes { color: #1D7A3D; }
.incl-list .ic-no { color: #A8543A; }
.rate-note {
  margin-top: auto; padding: 1rem 1.15rem;
  margin-top: 1.75rem;
  background: var(--sand-100); border-radius: var(--r-sm);
  border-left: 3px solid var(--brand);
  font-size: .82rem; color: var(--txt-dark-2); line-height: 1.6;
}

/* ---------- Destinations ---------- */
.dest-grid {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  display: grid; gap: clamp(.85rem, 1.4vw, 1.15rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(170px, 1fr);
}
@media (min-width: 760px) {
  .dest-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(215px, 1fr);
  }
  /* Explicit placement keeps the mosaic deterministic across all widths. */
  .dest-grid > :nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
  .dest-grid > :nth-child(2) { grid-area: 1 / 2 / 2 / 4; }
  .dest-grid > :nth-child(3) { grid-area: 1 / 4 / 2 / 5; }
  .dest-grid > :nth-child(4) { grid-area: 2 / 2 / 3 / 3; }
  .dest-grid > :nth-child(5) { grid-area: 2 / 3 / 3 / 4; }
  .dest-grid > :nth-child(6) { grid-area: 2 / 4 / 3 / 5; }
  .dest-grid > :nth-child(7) { grid-area: 3 / 1 / 4 / 2; }
  .dest-grid > :nth-child(8) { grid-area: 3 / 2 / 4 / 4; }
  .dest-grid > :nth-child(9) { grid-area: 3 / 4 / 4 / 5; }
}
.dest {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  min-height: 200px;
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px var(--line);
}
.dest img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter .6s var(--ease);
  filter: saturate(.92) contrast(1.03);
}
.dest::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(7,8,10,.88) 0%, rgba(7,8,10,.34) 45%, rgba(7,8,10,.02) 100%);
  transition: opacity .5s var(--ease);
}
.dest:hover img { transform: scale(1.07); filter: saturate(1.05) contrast(1.06); }
.dest__label { position: relative; }
.dest__name {
  font-family: var(--font-display); font-weight: 750; font-size: 1.05rem;
  letter-spacing: -.025em; line-height: 1.15;
}
.dest__meta {
  display: flex; align-items: center; gap: .4rem;
  margin-top: .3rem; font-size: .74rem; color: #C0C6CC;
}
.dest__meta svg { width: 12px; height: 12px; color: var(--brand); }
.dest--tall { grid-row: span 2; }
.dest--tall img { object-position: 50% 62%; }
.dest--wide { grid-column: span 2; }

/* ---------- Full-bleed band ---------- */
.band {
  position: relative; isolation: isolate;
  padding-block: clamp(5rem, 12vw, 9rem);
  overflow: hidden;
}
.band img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%;
  filter: grayscale(.25) brightness(.6) contrast(1.05);
}
.band::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, var(--ink-950) 2%, rgba(11,13,15,.9) 38%, rgba(11,13,15,.62) 100%),
    linear-gradient(to top, rgba(11,13,15,.6), transparent 55%);
}
.band__inner { max-width: 640px; }
.band .h2 { margin-top: 1.1rem; }
.band p { margin-top: 1.25rem; color: #C4CAD0; line-height: 1.72; }
.band__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- FAQ ---------- */
.faq-wrap {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid; gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 960px) { .faq-wrap { grid-template-columns: minmax(0, .62fr) minmax(0, 1fr); } }
.faq-aside { position: sticky; top: 110px; }
.faq-aside .lead { margin-top: 1.25rem; font-size: 1rem; }
.faq-help {
  margin-top: 2rem; padding: 1.4rem;
  border-radius: var(--r-md); background: var(--ink-850);
  box-shadow: inset 0 0 0 1px var(--line);
}
.faq-help h4 { font-size: .98rem; }
.faq-help p { margin-top: .45rem; font-size: .85rem; color: var(--txt-2); }
.faq-help .btn { margin-top: 1.1rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
  padding: 1.35rem .25rem;
  text-align: left;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 650;
  letter-spacing: -.02em; color: var(--txt);
  transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
  position: relative; flex: none; width: 22px; height: 22px; margin-top: .1rem;
  border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-2);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  background: currentColor; border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease-out), opacity .3s;
}
.faq-icon::before { width: 9px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 9px; }
.faq-item.is-open .faq-q { color: var(--brand); }
.faq-item.is-open .faq-icon { background: var(--brand-a12); box-shadow: inset 0 0 0 1px var(--brand-a35); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease-out);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 3rem 1.5rem .25rem;
  font-size: .92rem; color: var(--txt-2); line-height: 1.72;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 940px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); } }
.info-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--r-lg);
  background: var(--ink-850);
  box-shadow: inset 0 0 0 1px var(--line);
}
.info-list { display: grid; gap: 1.35rem; margin-top: 1.75rem; }
.info-row { display: flex; gap: 1rem; }
.info-row__ic {
  width: 40px; height: 40px; flex: none; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--brand-a12); color: var(--brand);
}
.info-row__ic svg { width: 18px; height: 18px; }
.info-row dt { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--txt-3); font-weight: 600; }
.info-row dd { margin: .3rem 0 0; font-size: .95rem; line-height: 1.6; }
.info-row dd a:hover { color: var(--brand); }
.hours-table { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.hours-table h4 { font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; color: var(--txt-3); font-weight: 600; }
.hours-table dl { margin-top: .9rem; display: grid; gap: .55rem; }
.hours-table div { display: flex; justify-content: space-between; gap: 1rem; font-size: .875rem; }
.hours-table dt { color: var(--txt-2); }
.hours-table dd { margin: 0; font-variant-numeric: tabular-nums; }
.hours-table .closed { color: var(--txt-3); }

.form-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, var(--ink-800), var(--ink-850));
  box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-2);
}
.form-grid { display: grid; gap: 1rem; margin-top: 1.6rem; }
@media (min-width: 560px) { .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .form-grid .span2 { grid-column: 1 / -1; } }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--txt-3); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .85rem 1rem;
  background: rgba(255,255,255,.04);
  border: 0; border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: .92rem; color: var(--txt);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.form-field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--txt-3); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1.5px var(--brand);
}
.form-consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .82rem; color: var(--txt-2); }
.form-consent input { margin-top: .22rem; accent-color: var(--brand); width: 16px; height: 16px; flex: none; }
.form-consent a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

.map-embed {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
  background: var(--ink-850);
  aspect-ratio: 21 / 8; min-height: 280px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) invert(.92) hue-rotate(180deg) contrast(.9); }

/* ---------- Final CTA ---------- */
.cta-final {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, var(--ink-800), var(--ink-950) 70%);
  box-shadow: inset 0 0 0 1px var(--line-2);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  text-align: center;
}
.cta-final::before {
  content: ''; position: absolute; z-index: -1;
  width: 700px; height: 700px; left: 50%; top: 100%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, var(--brand-a20), transparent 62%);
  filter: blur(20px);
}
.cta-final .h2 { margin-top: 1.1rem; }
.cta-final .lead { margin: 1.35rem auto 0; }
.cta-final__btns { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-950);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer-grid {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); } }
.footer-brand img { width: 62px; }
.footer-brand p { margin-top: 1.25rem; font-size: .88rem; color: var(--txt-2); line-height: 1.7; max-width: 34ch; }
.footer-social { margin-top: 1.6rem; display: flex; gap: .6rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--txt-2);
  transition: color .25s var(--ease), background-color .25s var(--ease), transform .3s var(--ease-out);
}
.footer-social a:hover { color: var(--brand-ink); background: var(--brand); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--txt-3);
}
.footer-col ul { margin-top: 1.25rem; display: grid; gap: .75rem; }
.footer-col a, .footer-col li { font-size: .88rem; color: var(--txt-2); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem 1.5rem;
  font-size: .78rem; color: var(--txt-3);
}
.footer-bottom a:hover { color: var(--brand); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: ''; position: absolute; z-index: -1;
  width: 900px; height: 620px; right: -8%; top: -42%;
  background: radial-gradient(ellipse, var(--brand-a12), transparent 66%);
  filter: blur(18px);
}
.page-hero__inner { max-width: 760px; }
.page-hero .h1 { margin-top: 1.1rem; }
.page-hero .lead { margin-top: 1.35rem; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .78rem; color: var(--txt-3); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .5; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 74ch; }
.prose h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin-top: 3rem; margin-bottom: .9rem;
  letter-spacing: -.028em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.08rem; margin-top: 2rem; margin-bottom: .6rem; }
.prose p, .prose li { color: var(--txt-2); font-size: .95rem; line-height: 1.78; }
.prose p + p { margin-top: 1rem; }
.prose ul { margin-top: 1rem; display: grid; gap: .6rem; }
.prose ul li { position: relative; padding-left: 1.35rem; }
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: .68em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand);
}
.prose strong { color: var(--txt); font-weight: 600; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose hr { margin: 2.5rem 0; border: 0; border-top: 1px solid var(--line); }
.legal-layout {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1000px) { .legal-layout { grid-template-columns: 220px minmax(0, 1fr); } }
.legal-nav { position: sticky; top: 110px; align-self: start; }
.legal-nav h4 { font-family: var(--font-body); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--txt-3); font-weight: 600; }
.legal-nav ul { margin-top: 1.1rem; display: grid; gap: .6rem; }
.legal-nav a { font-size: .85rem; color: var(--txt-2); }
.legal-nav a:hover, .legal-nav a[aria-current="page"] { color: var(--brand); }

/* ---------- Floating actions ---------- */
.float-actions {
  position: fixed; right: clamp(1rem, 2.5vw, 1.75rem); bottom: clamp(1rem, 2.5vw, 1.75rem);
  z-index: 65; display: flex; flex-direction: column; gap: .6rem;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink-800); color: var(--txt);
  box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-2);
  transition: transform .3s var(--ease-out), background-color .3s var(--ease), color .3s;
}
.float-btn:hover { transform: translateY(-3px) scale(1.04); }
.float-btn svg { width: 21px; height: 21px; }
.float-btn--wa { background: #1FAF5A; color: #fff; box-shadow: var(--sh-2); }
.float-btn--wa:hover { background: #23c464; }
.float-btn--top { opacity: 0; pointer-events: none; transition: opacity .35s var(--ease), transform .3s var(--ease-out); }
.float-btn--top.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Cookie consent ---------- */
.cookie {
  position: fixed; z-index: 95;
  left: clamp(1rem, 2.5vw, 1.75rem); bottom: clamp(1rem, 2.5vw, 1.75rem);
  width: min(100% - 2rem, 460px);
  display: flex; flex-direction: column; gap: 1.1rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(16, 19, 22, .96);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 0 0 1px var(--line-2), var(--sh-3);
  transform: translateY(14px); opacity: 0;
  transition: opacity .45s var(--ease), transform .45s var(--ease-out);
}
.cookie[hidden] { display: none; }
.cookie.is-in { opacity: 1; transform: none; }
.cookie__title { font-size: 1rem; font-weight: 700; letter-spacing: -.02em; }
.cookie__text { margin-top: .5rem; font-size: .85rem; line-height: 1.6; color: var(--txt-2); }
.cookie__text a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie__actions .btn { flex: 1 1 auto; padding: .8rem 1.1rem; font-size: .86rem; }
@media (max-width: 560px) {
  .cookie { left: 1rem; right: 1rem; bottom: 1rem; width: auto; padding: 1.2rem 1.25rem; }
}
/* keep the floating buttons clear of the banner while it is showing */
body.has-cookie-bar .float-actions { bottom: calc(clamp(1rem, 2.5vw, 1.75rem) + 210px); }
@media (min-width: 561px) { body.has-cookie-bar .float-actions { bottom: clamp(1rem, 2.5vw, 1.75rem); } }

/* ---------- 404 ---------- */
.notfound {
  min-height: 62vh; display: grid; place-items: center; text-align: center;
  padding-block: clamp(4rem, 10vw, 8rem);
}
.notfound__code {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(5rem, 18vw, 11rem); line-height: .9; letter-spacing: -.05em;
  color: transparent; -webkit-text-stroke: 2px var(--line-2);
}
.notfound .h2 { margin-top: 1.5rem; }
.notfound .lead { margin: 1.25rem auto 0; }
.notfound__links { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Noise / texture ---------- */
.grain::after {
  content: ''; position: fixed; inset: 0; z-index: 100; pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Utilities ---------- */
.divider { height: 1px; background: var(--line); }
.center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
body.is-locked { overflow: hidden; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
}
