/* ===========================================================
   Taxi Reitdiep, Groningen
   Bold dark: Archivo + Public Sans, Basil icons, subtle two-tone dark rhythm
   =========================================================== */

:root {
  --bg:            #0B0C0E;
  --bg-2:          #101215;
  --bg-alt:        #17150F;
  --surface:       #201D16;
  --surface-2:     #29251C;
  --border:        #332F25;
  --border-strong: #363B45;

  --text:          #F4F2EC;
  --text-muted:    #ABAFB8;
  --text-dim:      #8A8F99;

  --gold:          #E7B54A;
  --gold-bright:   #F4CB6E;
  --gold-deep:     #C9962E;
  --on-gold:       #17130A;
  --success:       #7BD39A;

  --accent-ink:    var(--gold);   /* accent text + icons: amber on dark, deep gold on light */
  --focus:         var(--gold);   /* focus ring, contrast-safe per theme */

  --font-display: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 26px; --r-pill: 999px;

  --ring: 0 0 0 3px rgba(231, 181, 74, 0.34);
  --shadow-md: 0 20px 44px -20px rgba(0,0,0,.72);
  --shadow-gold: 0 14px 34px -14px rgba(231, 181, 74, 0.42);

  --container: 1200px;
  --nav-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.05rem); line-height: 1.02; letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.24rem; font-weight: 700; letter-spacing: -0.015em; }
p  { color: var(--text-muted); }
em { font-style: normal; color: var(--accent-ink); }
strong { color: var(--text); font-weight: 600; }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 44px);
}
.section { padding-block: clamp(66px, 10vw, 120px); position: relative; }
.section--line { border-top: 1px solid var(--border); }
.section--tight { padding-block: clamp(52px, 8vw, 84px); }

/* Subtle two-tone dark rhythm: alternating sections a touch lighter */
.section--alt { background: var(--bg-alt); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 18px;
}
.section-head { max-width: 620px; margin-bottom: clamp(40px, 6vw, 60px); }
.section-head p { margin-top: var(--s-4); font-size: 1.1rem; max-width: 46ch; }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--accent-ink);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-ink) 45%, transparent);
  padding-bottom: 2px;
  transition: gap .2s ease, border-color .2s ease;
}
.textlink svg { width: 18px; height: 18px; }
.textlink:hover { gap: 12px; border-color: var(--accent-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 14px 24px; border-radius: var(--r-sm);
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--primary { background: var(--gold); color: var(--on-gold); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.015); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--accent-ink); background: rgba(231,181,74,.06); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn:active { transform: translateY(0); }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--focus); outline-offset: 2px; border-radius: var(--r-sm);
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--on-gold); padding: 10px 16px;
  border-radius: var(--r-sm); font-weight: 600; transition: top .2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--on-gold); outline-offset: 2px; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.header.is-scrolled {
  background: rgba(11,12,14,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: var(--s-5); }
.brand { display: inline-flex; align-items: center; gap: 12px; transition: opacity .18s ease; }
.brand:hover { opacity: .82; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.24rem;
  letter-spacing: -0.02em; color: var(--text); line-height: 1;
}
.brand__text em { font-style: normal; font-weight: 800; color: var(--accent-ink); }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  padding: 9px 15px; font-size: 0.96rem; font-weight: 500;
  color: var(--text-muted); border-radius: var(--r-sm);
  transition: color .18s ease, background .18s ease;
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__cta .btn { padding: 11px 18px; font-size: 0.92rem; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border-radius: var(--r-sm);
  border: 1px solid var(--border); align-items: center; justify-content: center; background: var(--surface);
}
.nav__toggle span { position: relative; width: 20px; height: 2px; border-radius: 2px; background: var(--text); transition: background .2s ease; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform .25s ease, top .25s ease;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0;
  background: rgba(11,12,14,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: var(--s-5) clamp(20px,5vw,44px) var(--s-6);
  display: grid; gap: var(--s-2);
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: transform .28s ease, opacity .28s ease, visibility .28s; z-index: 99;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a.m-link {
  padding: 14px 10px; font-family: var(--font-display); font-weight: 500; font-size: 1.25rem;
  color: var(--text); border-bottom: 1px solid var(--border); transition: color .18s ease;
}
.mobile-menu a.m-link:hover, .mobile-menu a.m-link:active { color: var(--accent-ink); }
.mobile-menu .m-actions { display: grid; gap: 10px; margin-top: var(--s-4); }

/* ---------- Vliegveldritten banner ---------- */
.airband {
  display: flex; align-items: center; justify-content: center; gap: clamp(14px,2vw,26px);
  margin-top: var(--nav-h); padding: clamp(18px,2.4vw,26px) var(--s-5);
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-bright) 55%, var(--gold) 100%);
  color: var(--on-gold); text-align: center; flex-wrap: wrap;
  transition: filter .18s ease;
}
.airband:hover { filter: brightness(1.06); }
.airband__ico { display: grid; place-items: center; flex: none; width: clamp(40px,4.4vw,54px); height: clamp(40px,4.4vw,54px); border-radius: 50%; background: rgba(11,12,14,.14); }
.airband__ico svg { width: 60%; height: 60%; }
.airband__text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.airband__text strong {
  font-family: var(--font-display); font-weight: 700; line-height: 1.04;
  font-size: clamp(1.7rem, 4.4vw, 3rem); letter-spacing: -0.02em;
}
.airband__text span { font-size: clamp(0.92rem, 1.3vw, 1.1rem); font-weight: 500; opacity: .82; margin-top: 2px; }
.airband__cta {
  flex: none; padding: 13px 26px; border-radius: var(--r-pill);
  background: var(--on-gold); color: var(--gold-bright);
  font-weight: 700; font-size: 1rem; white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(44px,8vw,86px); padding-bottom: clamp(58px,9vw,104px); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1120px 640px at 80% -10%, rgba(231,181,74,.15), transparent 60%),
    radial-gradient(900px 720px at -5% 105%, rgba(231,181,74,.05), transparent 55%),
    linear-gradient(180deg, rgba(11,12,14,.45) 0%, rgba(11,12,14,.62) 55%, rgba(11,12,14,.94) 88%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11,12,14,.96) 0%, rgba(11,12,14,.86) 40%, rgba(11,12,14,.55) 72%, rgba(11,12,14,.68) 100%),
    url("assets/gallery/taxi-01.jpeg") center 78%/cover no-repeat;
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 72% 22%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 72% 22%, #000 0%, transparent 68%);
}
.hero__inner { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(32px,5vw,70px); align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px; border: 1px solid var(--border-strong); border-radius: var(--r-pill);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-ink); background: rgba(231,181,74,.05);
}
.pill svg { width: 15px; height: 15px; }
.hero h1 { margin-top: var(--s-5); margin-bottom: var(--s-5); }
.hero__lead { font-size: clamp(1.08rem, 1.5vw, 1.27rem); max-width: 32ch; color: var(--text-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s-7); }

.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 22px; margin-top: var(--s-7); }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--text-muted); }
.trust-item svg { width: 18px; height: 18px; color: var(--accent-ink); flex: none; }
.trust-sep { width: 1px; height: 20px; background: var(--border-strong); }

/* Hero route card */
.hero__visual { position: relative; }
.hero__glow { position: absolute; z-index: -1; width: 250px; height: 250px; right: -30px; top: -46px; background: radial-gradient(circle, rgba(231,181,74,.26), transparent 68%); filter: blur(22px); }
.route-card {
  position: relative; background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: clamp(22px,3vw,32px); box-shadow: var(--shadow-md);
}
.route-card__photo { margin: calc(clamp(22px,3vw,32px) * -1) calc(clamp(22px,3vw,32px) * -1) var(--s-5); border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden; aspect-ratio: 16/10; }
.route-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.route-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-5); }
.route-card__tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.route-card__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(123,211,154,.15); }
.route-card__badge { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-ink); }
.route { position: relative; padding-left: 30px; }
.route::before { content: ""; position: absolute; left: 9px; top: 12px; bottom: 12px; width: 2px; border-radius: 2px; background: linear-gradient(var(--gold), rgba(231,181,74,.15)); }
.route__stop { position: relative; padding: 12px 0; }
.route__stop::before { content: ""; position: absolute; left: -30px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: var(--surface); border: 2px solid var(--gold); }
.route__stop--end::before { background: var(--gold); }
.route__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); }
.route__value { font-weight: 600; font-size: 1.04rem; color: var(--text); margin-top: 2px; }
.route-card__car { display: flex; align-items: center; gap: 14px; margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid var(--border); }
.route-card__car svg { width: 46px; height: 34px; color: var(--accent-ink); flex: none; }
.route-card__car .k { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); }
.route-card__car .v { display: block; font-weight: 600; color: var(--text); margin-top: 2px; }

/* ---------- Services (editorial index) ---------- */
.svc-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px,5vw,72px); align-items: start; }
.svc-aside { position: sticky; top: calc(var(--nav-h) + 28px); }
.svc-aside p { margin-top: var(--s-4); color: var(--text-muted); font-size: 1.05rem; }
.svc-aside .textlink { margin-top: var(--s-6); }
.svc-list { border-top: 1px solid var(--border); }
.svc-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  padding: clamp(22px,3vw,30px) 6px; border-bottom: 1px solid var(--border);
  transition: padding-left .25s ease, background .25s ease;
}
.svc-row:hover { padding-left: 18px; background: linear-gradient(90deg, rgba(231,181,74,.05), transparent 60%); }
.svc-row:active { background: linear-gradient(90deg, rgba(231,181,74,.1), transparent 60%); }
.svc-ico {
  width: 50px; height: 50px; border-radius: var(--r-md); display: grid; place-items: center; flex: none;
  background: rgba(231,181,74,.09); border: 1px solid rgba(231,181,74,.22); color: var(--accent-ink);
}
.svc-ico svg { width: 25px; height: 25px; }
.svc-main h3 { margin-bottom: 4px; }
.svc-main p { font-size: 0.96rem; color: var(--text-muted); }
.svc-arrow { color: var(--text-dim); transition: transform .25s ease, color .25s ease; }
.svc-arrow svg { width: 24px; height: 24px; }
.svc-row:hover .svc-arrow { color: var(--accent-ink); transform: translateX(4px); }

/* ---------- Waarom (quote + reasons list) ---------- */
.why-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(34px,5vw,74px); align-items: center; }
.quote-panel {
  position: relative; overflow: hidden;
  background: radial-gradient(520px 340px at 18% 0%, rgba(231,181,74,.12), transparent 60%), linear-gradient(180deg, rgba(15,16,18,.90), rgba(15,16,18,.96)), url("assets/gallery/taxi-01.jpeg") center 62%/cover no-repeat;
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(30px,4vw,46px);
}
.quote-panel .quote {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem,2.4vw,1.95rem);
  line-height: 1.28; letter-spacing: -0.01em; color: var(--text);
}
.quote-panel .quote em { font-style: italic; color: var(--accent-ink); }
.quote-sign { display: flex; align-items: center; gap: 14px; margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--border); }
.quote-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--gold); color: var(--on-gold); font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
}
.quote-sign .n { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--text); }
.quote-sign .r { font-size: 0.9rem; color: var(--text-muted); }

.reasons { border-top: 1px solid var(--border); }
.reason { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.reason__ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; background: rgba(231,181,74,.09); border: 1px solid rgba(231,181,74,.2); color: var(--accent-ink); }
.reason__ico svg { width: 22px; height: 22px; }
.reason h3 { font-size: 1.08rem; margin-bottom: 4px; }
.reason p { font-size: 0.95rem; color: var(--text-muted); }

/* ---------- How it works (icon flow, no numbers) ---------- */
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.flow-step { padding: 0 clamp(12px,2vw,26px); }
.flow-step__ico {
  width: 56px; height: 56px; border-radius: var(--r-md); display: grid; place-items: center;
  background: rgba(231,181,74,.1); border: 1px solid rgba(231,181,74,.24); color: var(--accent-ink); margin-bottom: var(--s-5);
}
.flow-step__ico svg { width: 27px; height: 27px; }
.flow-step h3 { margin-bottom: 6px; }
.flow-step p { font-size: 0.97rem; color: var(--text-muted); }
.flow-arrow { align-self: center; color: var(--text-dim); }
.flow-arrow svg { width: 30px; height: 30px; }

/* ---------- Servicegebied ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
.area-places { display: flex; flex-wrap: wrap; gap: 9px; margin-top: var(--s-6); }
.place {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px;
  font-size: 0.88rem; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: var(--r-pill); background: var(--surface);
}
.place.is-hub { color: var(--text); border-color: rgba(231,181,74,.4); }
.place.is-hub svg { width: 14px; height: 14px; color: var(--accent-ink); }
.area-map {
  position: relative; aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 50%, rgba(231,181,74,.08), transparent 62%), var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-xl); display: grid; place-items: center; overflow: hidden;
}
.area-map svg { width: 100%; height: 100%; }
.area-map img { width: 100%; height: 100%; object-fit: cover; }
.area-map figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px; font-size: .82rem; font-weight: 600; color: #F4F2EC; background: linear-gradient(transparent, rgba(0,0,0,.66)); }

/* ---------- Fotogalerij ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: var(--s-6);
}
.gallery-grid a {
  position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface);
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.gallery-grid a:hover img { transform: scale(1.05); }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Groningen photo band */
.cityband { position: relative; min-height: clamp(300px, 44vh, 460px); display: grid; align-items: end; overflow: hidden; background: #0B0C0E url("assets/gallery/taxi-04.jpeg") center 22%/cover no-repeat; }
.cityband__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,12,14,.42) 0%, rgba(11,12,14,.5) 44%, rgba(11,12,14,.85) 70%, rgba(11,12,14,.97) 100%); }
.cityband__inner { position: relative; padding-block: clamp(30px, 6vw, 54px); }
.cityband__inner h2 { max-width: 22ch; margin-top: 4px; }
.cityband__inner .label { color: var(--gold-bright); }
.cityband__inner .label, .cityband__inner h2 { text-shadow: 0 2px 16px rgba(0,0,0,.6); }

.footer__credit { margin-top: 12px; font-size: .76rem; color: var(--text-dim); }
.foot-link { color: var(--text-muted); transition: color .18s ease; }
.foot-link:hover { color: var(--accent-ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px,5vw,60px); align-items: start; }
.contact-list { border-top: 1px solid var(--border); }
.info-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  padding: 20px 6px; border-bottom: 1px solid var(--border);
  transition: padding-left .25s ease, background .25s ease;
}
a.info-row:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(231,181,74,.05), transparent 60%); }
a.info-row:active { background: linear-gradient(90deg, rgba(231,181,74,.1), transparent 60%); }
.info-row__ico { width: 46px; height: 46px; border-radius: var(--r-md); flex: none; display: grid; place-items: center; background: rgba(231,181,74,.09); border: 1px solid rgba(231,181,74,.22); color: var(--accent-ink); }
.info-row__ico svg { width: 22px; height: 22px; }
.info-row .k { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); }
.info-row .v { display: block; font-weight: 600; color: var(--text); font-size: 1.05rem; margin-top: 3px; }
.info-row__arrow { color: var(--text-dim); }
.info-row__arrow svg { width: 22px; height: 22px; }
a.info-row:hover .info-row__arrow { color: var(--accent-ink); }

.form-card { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(24px,3.5vw,40px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.field label .req { color: var(--accent-ink); }
.field input, .field textarea { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 13px 15px; color: var(--text); width: 100%; transition: border-color .18s ease, box-shadow .18s ease; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-ink); box-shadow: 0 0 0 3px rgba(231,181,74,.15); }
.field textarea { resize: vertical; min-height: 96px; }
.form-card .btn { margin-top: var(--s-5); }
.form-note { font-size: 0.8rem; color: var(--text-dim); margin-top: var(--s-4); text-align: center; }
.form-success { display: none; text-align: center; padding: clamp(30px,5vw,54px) var(--s-5); }
.form-success.is-visible { display: block; animation: pop .4s ease; }
.form-success__ico { width: 66px; height: 66px; border-radius: 50%; background: rgba(123,211,154,.14); border: 1px solid rgba(123,211,154,.4); display: grid; place-items: center; margin: 0 auto var(--s-5); color: var(--success); }
.form-success__ico svg { width: 34px; height: 34px; }
.form-success h3 { margin-bottom: var(--s-2); }
.form-success p { max-width: 34ch; margin-inline: auto; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: radial-gradient(620px 320px at 86% 50%, rgba(231,181,74,.16), transparent 65%), linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(34px,5vw,58px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-6);
}
.cta-band h2 { font-size: clamp(1.7rem,3vw,2.5rem); max-width: 15ch; }
.cta-band p { margin-top: var(--s-3); color: var(--text-muted); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-block: clamp(48px,7vw,78px) var(--s-6); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--s-7); }
.footer__brand p { margin-top: var(--s-4); font-size: 0.96rem; max-width: 32ch; color: var(--text-muted); }
.footer h3 { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-dim); margin-bottom: var(--s-4); font-weight: 600; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: var(--text-muted); font-size: 0.96rem; transition: color .18s ease; }
.footer__links a:hover { color: var(--accent-ink); }
.footer__bottom { margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; justify-content: space-between; font-size: 0.85rem; color: var(--text-dim); }
.footer__bottom .sep { color: var(--border-strong); margin-inline: 8px; }

/* ---------- Reveal (subtle, no stagger) ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
@keyframes pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 46px; }
  .hero__visual { max-width: 500px; }
  .hero__bg {
    background:
      radial-gradient(1120px 640px at 80% -10%, rgba(231,181,74,.15), transparent 60%),
      linear-gradient(180deg, rgba(11,12,14,.86) 0%, rgba(11,12,14,.9) 55%, rgba(11,12,14,.97) 88%, var(--bg) 100%),
      url("assets/gallery/taxi-01.jpeg") center 78%/cover no-repeat;
  }
  .svc-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-aside { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .quote-panel { order: -1; }
  .area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow-step { padding: 22px 0; border-bottom: 1px solid var(--border); }
  .flow-step:first-child { border-top: 1px solid var(--border); }
  .flow-arrow { display: none; }
}
@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 620px) {
  .airband { flex-direction: column; gap: 14px; text-align: center; }
  .airband__text { align-items: center; text-align: center; }
  .airband__cta { width: 100%; max-width: 320px; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { flex: 1 1 auto; }
  .trust-sep { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
