:root {
  --bg: #070708;
  --bg-2: #101012;
  --bg-3: #17171b;
  --line: rgba(232, 228, 220, 0.12);
  --chalk: #efebe3;
  --mute: #9a948a;
  --silver: #c9c3b8;
  --red: #d5001c;
  --red-2: #ff2a3d;
  --gold: #c4a574;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html:not([data-lang="en"]) [data-only="en"] { display: none; }
html[data-lang="en"] [data-only="ru"] { display: none; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--chalk);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

h1, h2, .display {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #050505;
  display: grid;
  place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-mark {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  letter-spacing: 0.46em;
  margin-bottom: 22px;
}
.loader-bar {
  width: 180px;
  height: 1px;
  background: #2a2a2e;
  margin: 0 auto;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--red);
  animation: load 1.15s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s, backdrop-filter .35s, height .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 8, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  height: 68px;
}
.nav-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 13px;
}
.logo-mark {
  width: 22px;
  height: 28px;
  object-fit: contain;
}
.logo-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  letter-spacing: 0.18em;
}
.logo-word b { font-weight: 700; }
.logo-word span { font-weight: 500; opacity: .82; letter-spacing: 0.16em; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-left: auto;
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--chalk); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background .25s, box-shadow .35s;
}
.nav-cta:hover {
  background: var(--red-2);
  box-shadow: 0 0 28px rgba(213, 0, 28, 0.35);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  margin-left: 8px;
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: var(--mute);
  padding: 7px 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  cursor: pointer;
}
.lang-switch button.active {
  color: var(--chalk);
  background: rgba(255,255,255,.06);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  width: 28px; height: 18px;
  background: none; border: 0;
  position: relative;
  cursor: pointer;
}
.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--chalk);
  transition: .3s;
}
.burger span { top: 8px; }
.burger::before { top: 0; }
.burger::after { bottom: 0; }
.burger.is-open span { opacity: 0; }
.burger.is-open::before { top: 8px; transform: rotate(45deg); }
.burger.is-open::after { bottom: 8px; transform: rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
  transform: scale(1.08);
  animation: ken 18s ease-out forwards;
}
@keyframes ken { to { transform: scale(1); } }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,8,.35) 0%, rgba(7,7,8,.15) 38%, rgba(7,7,8,.92) 100%),
    linear-gradient(90deg, rgba(7,7,8,.55) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 88px;
}
.hero h1 {
  font-size: clamp(52px, 10vw, 128px);
  max-width: 14ch;
  margin: 18px 0 22px;
}
.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239,235,227,.7);
}
.hero-lead {
  max-width: 460px;
  color: var(--silver);
  font-size: 17px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pilot-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--silver);
}
.pilot-phones a {
  border-bottom: 1px solid rgba(213, 0, 28, 0.45);
  padding-bottom: 2px;
  word-break: break-word;
}
.phone-stack {
  display: grid;
  gap: 14px;
  margin: 14px 0 18px;
}
.phone-stack a {
  display: grid;
  gap: 4px;
  font-family: "Syne", "Inter Tight", sans-serif;
  font-size: clamp(22px, 6.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.phone-stack small {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-band .phone-stack { justify-items: center; text-align: center; }
.cta-band .phone-stack a { color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .35s var(--ease);
}
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(213,0,28,.28); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--chalk); }
.btn-ghost:hover { border-color: var(--chalk); }

.hero-meta {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 88px;
  z-index: 2;
  display: flex;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}
.hero-meta b { display: block; color: var(--chalk); font-size: 20px; letter-spacing: 0; font-family: "Syne", sans-serif; margin-top: 4px; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
}
.scroll-hint i {
  display: block;
  width: 1px;
  height: 38px;
  margin: 8px auto 0;
  background: linear-gradient(var(--red), transparent);
  animation: drip 1.6s ease-in-out infinite;
}
@keyframes drip { 50% { transform: scaleY(0.4); opacity: .4; } }

/* MARQUEE */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  background: #0b0b0d;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide 28s linear infinite;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
.marquee-track span { white-space: nowrap; }
.marquee-track b { color: var(--chalk); font-weight: 500; }
@keyframes slide { to { transform: translateX(-50%); } }

/* SECTIONS */
section { padding: 110px 0; }
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
}
.sec-head h2 { font-size: clamp(36px, 6vw, 64px); max-width: 12ch; }
.sec-head p { max-width: 360px; color: var(--mute); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise .9s var(--ease) forwards;
  animation-play-state: paused;
}
.reveal.in { animation-play-state: running; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* GRID SERVICES */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px 24px 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .45s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(213,0,28,.35); background: #141418; }
.card:hover::before { width: 100%; }
.card-num {
  font-family: "Syne", sans-serif;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}
.card h3 { font-size: 24px; margin-bottom: 10px; letter-spacing: -0.03em; }
.card p { color: var(--mute); font-size: 15px; flex: 1; }
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 22px;
  font-size: 13px;
  color: var(--silver);
}
.card-foot strong {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  color: var(--chalk);
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(0.9);
}
.split-copy h2 { font-size: clamp(36px, 5vw, 58px); margin: 14px 0 18px; }
.split-copy p { color: var(--mute); margin-bottom: 16px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stats b {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 32px;
  letter-spacing: -0.04em;
}
.stats span { color: var(--mute); font-size: 13px; }

/* FLEET */
.fleet {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
.fleet-main, .fleet-side article {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
}
.fleet-side { display: grid; gap: 18px; }
.fleet-side article { min-height: 201px; }
.fleet img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.fleet article:hover img { transform: scale(1.06); }
.fleet figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
}
.fleet h3 { font-size: 28px; }
.fleet p { color: var(--silver); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ROUTES */
.routes {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.route-list { list-style: none; }
.route-list li {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.route-list time {
  font-family: "Syne", sans-serif;
  color: var(--red);
  letter-spacing: 0.08em;
}
.route-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.route-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* TESTIMONIALS */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--bg-2);
}
.quote p { font-size: 17px; margin: 16px 0 22px; }
.quote cite { color: var(--mute); font-style: normal; font-size: 13px; }

/* CTA BAND */
.cta-band {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.cta-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.38) saturate(.85);
}
.cta-band .inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(40px, 7vw, 80px); margin: 12px 0 18px; }

/* PAGE HERO */
.page-hero {
  padding: 120px 0 36px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(48px, 8vw, 96px); margin-top: 12px; }
.page-hero p { max-width: 520px; color: var(--mute); margin-top: 16px; }

/* SERVICE DETAIL */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.service-copy { display: flex; flex-direction: column; justify-content: center; }
.price-tag {
  font-family: "Syne", sans-serif;
  font-size: 36px;
  margin: 10px 0 14px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.chip {
  border: 1px solid var(--line);
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}

/* FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.form {
  display: grid;
  gap: 14px;
}
.form label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  display: grid;
  gap: 8px;
}
.form input,
.form select,
.form textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s;
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--red); }
.form textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 13px; color: var(--mute); }
.form.success .btn { background: #1b7a3a; border-color: #1b7a3a; }

.info-list { list-style: none; display: grid; gap: 22px; margin-top: 28px; }
.info-list small {
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 6px;
}
.info-list a:hover { color: var(--red-2); }

.map-fake {
  margin-top: 56px;
  height: 320px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(213,0,28,.08), rgba(7,7,8,.4)),
    url("../img/minsk-night.jpg") center/cover;
  display: grid;
  place-items: center;
  text-align: center;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
}
.foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.foot h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.foot a, .foot p { color: var(--mute); font-size: 14px; display: block; margin-bottom: 8px; }
.foot a:hover { color: var(--chalk); }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--mute);
  font-size: 12px;
}

/* MOBILE DOCK */
.m-dock { display: none; }

/* MOBILE */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .wrap { width: min(1180px, calc(100% - 28px)); }
  .nav { height: 64px; }
  .nav.scrolled { height: 58px; }
  .nav-inner { width: min(1180px, calc(100% - 28px)); }
  .nav-tools { margin-left: auto; }
  .nav-links, .nav-cta { display: none; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 58px 0 0 0;
    background: rgba(7,7,8,.97);
    padding: 28px 24px 140px;
    gap: 8px;
    font-size: 22px;
    overflow-y: auto;
    text-transform: none;
    letter-spacing: 0;
  }
  .nav.is-open .nav-links a { padding: 12px 0; }
  .nav.is-open .nav-cta {
    display: inline-flex;
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    justify-content: center;
    z-index: 81;
  }
  .burger { display: block; }
  body.nav-lock { overflow: hidden; }

  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .nav-links { margin-left: 0; }
  .hero h1 { font-size: clamp(32px, 11vw, 56px); max-width: none; }
  .hero-lead { font-size: 15px; max-width: none; }
  .hero-content { padding: 0 0 20px; }
  .hero-actions .btn { min-height: 48px; flex: 1; }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    right: auto;
    bottom: auto;
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 8px 0 108px;
    gap: 10px;
    font-size: 10px;
  }
  .hero-meta b { font-size: 13px; }
  .scroll-hint { display: none; }

  section { padding: 64px 0; }
  .sec-head { flex-direction: column; align-items: start; margin-bottom: 28px; }
  .sec-head h2 { font-size: clamp(28px, 9vw, 44px); }
  .page-hero { padding: 96px 0 28px; }
  .page-hero h1 { font-size: clamp(36px, 12vw, 64px); }

  .cards, .quotes, .fleet, .split, .routes, .contact-grid, .service-block, .foot {
    grid-template-columns: 1fr;
  }
  .service-block { padding: 36px 0; gap: 18px; }
  .service-block:nth-child(even) { direction: ltr; }
  .fleet-main, .split img, .route-media, .service-block img { height: 220px; min-height: 220px; }
  .card { min-height: 0; padding: 22px 18px; }
  .card h3 { font-size: 22px; }
  .price-tag { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form input, .form select, .form textarea { font-size: 16px; min-height: 48px; }
  .btn { min-height: 48px; padding: 14px 18px; }
  .cta-band { min-height: 340px; }
  .cta-band h2 { font-size: clamp(28px, 10vw, 48px); }
  .stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .stats b { font-size: 22px; }
  .driver { padding: 22px 18px; min-height: 0; }
  .driver h3 { font-size: 26px; }
  .booking { grid-template-columns: 1fr; }
  .auth-box { padding: 24px 18px; }
  footer { padding: 36px 0 28px; }
  .legal { padding-bottom: 8px; }

  .m-dock {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, transparent, rgba(7,7,8,.94) 28%);
  }
  .m-dock .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 4px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .m-dock .btn-red::after { content: none; margin: 0; }
  body.has-dock { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  body.nav-lock .m-dock { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .marquee { padding: 12px 0; }
  .fleet-side article { min-height: 180px; }
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), border-color .3s;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(213,0,28,.35); }
.blog-card img { height: 200px; width: 100%; object-fit: cover; }
.blog-card .pad { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card time { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.blog-card h3 { font-size: 22px; margin: 10px 0 12px; }
.blog-card p { color: var(--mute); flex: 1; }
.article { max-width: 740px; }
.article p { color: var(--silver); margin-bottom: 16px; font-size: 17px; }
.article h2 { font-size: 28px; margin: 28px 0 12px; }

/* DRIVERS */
.drivers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.driver {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 32px 28px;
  min-height: 260px;
}
.driver h3 { font-size: 32px; margin: 8px 0 6px; }
.driver .role { color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; }
.driver p { color: var(--mute); margin-top: 16px; }

/* CABINET */
.auth-box {
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 36px 28px;
}
.cabinet-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}
.side-card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 24px;
  height: fit-content;
}
.side-card h3 { font-size: 22px; margin-bottom: 6px; }
.booking-list { display: grid; gap: 12px; }
.booking {
  border: 1px solid var(--line);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  background: var(--bg-2);
}
.booking b { font-family: "Syne", sans-serif; font-size: 18px; }
.status {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #fff;
  color: #111;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  transition: .35s var(--ease);
  z-index: 120;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 900px) {
  .blog-grid, .drivers, .cabinet-grid { grid-template-columns: 1fr; }
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 300;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  font-size: 14px;
}
.skip-link:focus { top: 12px; }

.crumbs {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 18px;
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  list-style: none;
}
.crumbs li { display: flex; align-items: center; }
.crumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: var(--silver);
  opacity: .4;
}
.crumbs a:hover { color: var(--chalk); }
.crumbs [aria-current="page"] { color: var(--chalk); }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-family: "Syne", sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  color: var(--mute);
  margin-top: 12px;
  max-width: 62ch;
}

address { font-style: normal; color: var(--mute); font-size: 14px; }
a.card { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
