/* MK Private Hire — cinematic, photo-led, no decorative borders.
   Manrope-only. Mobile-first. Photos do the structural work. */

:root {
  --bg:        #0B0B0B;
  --bg-2:      #131313;
  --text:      #F4F2EE;
  --text-2:    rgba(244,242,238,0.70);
  --text-3:    rgba(244,242,238,0.45);
  --line:      rgba(255,255,255,0.08);
  --accent:    #C9A45F;
  --on-accent: #0B0B0B;
  --maxw:      1280px;
}

[data-palette="light"] {
  --bg:        #F6F3ED;
  --bg-2:      #ECE7DC;
  --text:      #14120E;
  --text-2:    rgba(20,18,14,0.70);
  --text-3:    rgba(20,18,14,0.45);
  --line:      rgba(20,18,14,0.10);
  --accent:    #8E6E36;
  --on-accent: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400; font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--on-accent); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }

.container {
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.kicker {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3);
}

/* ── buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; min-height: 48px;
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  background: var(--text); color: var(--bg);
  transition: transform .2s, opacity .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: .9; }
.btn-outline {
  background: transparent; color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}
[data-palette="light"] .btn-outline { box-shadow: inset 0 0 0 1px rgba(20,18,14,0.22); }
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-accent { background: var(--accent); color: var(--on-accent); }
.btn .arr { font-size: 16px; line-height: 1; transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ── nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
body.menu-open .nav { background: var(--bg); -webkit-backdrop-filter: none; backdrop-filter: none; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 0;
  flex-wrap: nowrap; min-width: 0;
}
.brand { display: inline-flex; align-items: center; color: var(--text); min-width: 0; }
.brand img { height: 36px; width: auto; object-fit: contain; display: block; }
.brand-text {
  font-weight: 700; font-size: 13px; letter-spacing: .14em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .nav-inner { gap: 20px; padding: 18px 0; }
  .brand img { height: 44px; }
}
@media (max-width: 480px) {
  .brand-text { display: none; }
}
.nav-links {
  display: none;
  gap: 28px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-right .btn { padding: 8px 14px; min-height: 0; font-size: 12px; gap: 6px; }
.nav-right .btn .arr { font-size: 14px; }
@media (min-width: 768px) {
  .nav-right .btn { padding: 14px 22px; min-height: 48px; font-size: 14px; }
}
.nav-phone {
  display: none;
  font-size: 14px; font-weight: 500; color: var(--text-2);
}
.nav-phone:hover { color: var(--text); }

/* mobile menu button */
.nav-burger {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: currentColor; position: relative;
}
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor;
  transition: transform .25s;
}
.nav-burger span::before { top: -7px; }
.nav-burger span::after  { top:  7px; }
body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span::after  { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.menu {
  position: fixed; inset: 64px 0 0 0; z-index: 90;
  background: var(--bg);
  transform: translateY(calc(-100% - 64px)); transition: transform .35s cubic-bezier(.6,.2,.1,1);
  display: flex; flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
body.menu-open .menu { transform: translateY(0); }
.menu a:not(.btn) {
  font-size: 28px; font-weight: 600; letter-spacing: -0.01em;
  padding: 16px 0; color: var(--text);
}
.menu .btn { justify-content: center; color: var(--bg); }
.menu .sep { height: 1px; background: var(--line); margin: 16px 0 24px; }
.menu .menu-cta { margin-top: auto; display: grid; gap: 10px; }
.menu .menu-phone { font-size: 15px; color: var(--text-2); padding-top: 16px; }

@media (min-width: 768px) {
  .nav-burger, .menu { display: none; }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-phone { display: inline-block; }
}

/* ── hero — full-bleed cinematic ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 96px 0 56px;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) {
  .hero { align-items: flex-end; padding: 120px 0 56px; }
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-color: #000;
  transform: scale(1.02);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.85) 100%);
}
.hero-inner { width: 100%; }
.hero-copy { max-width: 820px; color: #fff; }
.hero-copy .kicker { color: rgba(255,255,255,0.7); }
.hero-copy h1 {
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 600; line-height: 1.02; letter-spacing: -0.025em;
  margin: 18px 0 24px;
  text-wrap: balance;
}
.hero-copy p {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55; color: rgba(255,255,255,0.78);
  max-width: 540px; margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn { background: #fff; color: #000; }
.hero .btn:hover { background: var(--accent); color: var(--on-accent); }
.hero .btn-outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); }
.hero .btn-outline:hover { background: #fff; color: #000; }

.hero-tags {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px;
  margin-top: 48px;
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
@media (min-width: 768px) {
  .hero-tags { display: flex; flex-wrap: wrap; gap: 24px; }
}
.hero-tags span { display: inline-flex; align-items: center; gap: 8px; }
.hero-tags span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}

/* ── sections ────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }
@media (min-width: 1100px) { .section { padding: 140px 0; } }
.section-bg-2 { background: var(--bg-2); }

.section-head { margin-bottom: 48px; max-width: 820px; }
@media (min-width: 768px) { .section-head { margin-bottom: 72px; } }
.section-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600; line-height: 1.06; letter-spacing: -0.02em;
  margin: 12px 0 0;
  text-wrap: balance;
}
.section-head p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-2); margin: 16px 0 0; max-width: 600px;
}

/* ── services — borderless photo grid ────────────────────────────────── */
.svc-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 700px)  { .svc-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
@media (min-width: 1100px) { .svc-grid { gap: 48px 32px; } }

.svc-card .photo {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--bg-2);
  margin-bottom: 18px;
  transition: transform .5s cubic-bezier(.2,.6,.2,1);
}
.svc-card { overflow: hidden; }
.svc-card:hover .photo { transform: scale(1.025); }
.svc-card h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600; letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.svc-card p {
  font-size: 15px; line-height: 1.55; color: var(--text-2);
  margin: 0; max-width: 460px;
}

/* ── fleet — alternating, big photos, no borders ─────────────────────── */
.fleet-row {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin: 0 0 80px;
}
.fleet-row:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .fleet-row { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; margin: 0 0 120px; }
  .fleet-row:nth-child(even) > .fleet-photo { order: 2; }
}

.fleet-photo {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background-color: var(--bg-2);
}

.fleet-meta .num {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}
.fleet-meta h3 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.06;
  margin: 10px 0 14px;
}
.fleet-meta p {
  font-size: 16px; line-height: 1.6; color: var(--text-2);
  margin: 0 0 24px; max-width: 460px;
}
.fleet-spec {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 460px;
}
.fleet-spec .k { font-size: 11px; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.fleet-spec .v { font-size: 16px; font-weight: 600; }

/* ── about ───────────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.about-grid h2 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.06; margin: 0 0 20px; }
.about-grid > div > p { font-size: 16px; line-height: 1.65; color: var(--text-2); margin: 0 0 16px; }

.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.principles h4 { font-size: 16px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.005em; }
.principles p { font-size: 14px; line-height: 1.55; color: var(--text-2); margin: 0; }

@media (max-width: 480px) {
  .principles { grid-template-columns: 1fr; gap: 20px; }
}

/* ── faq ─────────────────────────────────────────────────────────────── */
.faq-list { max-width: 880px; }
.faq-item + .faq-item { margin-top: 4px; }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 22px 0;
  color: var(--text); font-size: clamp(16px, 1.7vw, 19px); font-weight: 500;
  line-height: 1.4;
}
.faq-q + .faq-a + .faq-q,
.faq-item:not(.open) + .faq-item .faq-q { border-top: 1px solid var(--line); }
.faq-list > .faq-item:first-child .faq-q { border-top: 1px solid var(--line); }
.faq-toggle {
  width: 18px; height: 18px; position: relative; flex: none;
  margin-top: 6px;
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background: var(--text); transition: opacity .2s;
}
.faq-toggle::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-toggle::after  { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); transition: transform .25s; }
.faq-item.open .faq-toggle::after { transform: translateX(-50%) scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  margin: 0; padding: 0 0 24px; max-width: 720px;
  font-size: 15px; line-height: 1.65; color: var(--text-2);
}
.faq-list > .faq-item:last-child .faq-a + * { display: none; }
.faq-list { border-bottom: 1px solid var(--line); }

/* ── cta ─────────────────────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
@media (min-width: 768px) { .cta { padding: 160px 0; } }
.cta-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('assets/hero/hero-bg.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.5) saturate(0.9);
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
}
.cta-inner { color: #fff; max-width: 720px; margin: 0 auto; }
.cta .kicker { color: rgba(255,255,255,0.6); }
.cta h2 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600; line-height: 1.04; letter-spacing: -0.025em;
  margin: 14px 0 20px;
  text-wrap: balance;
}
.cta p { font-size: clamp(16px, 1.5vw, 18px); color: rgba(255,255,255,0.78); margin: 0 auto 32px; max-width: 540px; }
.cta-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.booking-widget { width: 100%; max-width: 960px; margin: 0 auto 40px; }
.booking-widget #taxi-booking { width: 100%; }
.cta-inner:has(.booking-widget) { max-width: 960px; }

/* cabx.me booking widget — light card, black CTA (contrasts the dark site) */
#cabx-widget-root {
  --bg: #ffffff !important;
  --card: #ffffff !important;
  --text: #0B0B0B !important;
  --text-sub: rgba(11,11,11,0.70) !important;
  --text-dim: rgba(11,11,11,0.40) !important;
  --border: rgba(11,11,11,0.10) !important;
  --fill: rgba(11,11,11,0.04) !important;
  --accent: #0B0B0B !important;
  --accent-hover: #1a1a1a !important;
  --accent-bg: rgba(11,11,11,0.06) !important;
  --shadow: 0 30px 80px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.18) !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
}
#cabx-widget-root .cabx-btn-primary { color: #ffffff !important; }
#cabx-widget-root .cabx-quote-fare { color: #0B0B0B !important; }
#cabx-widget-root .cabx-checkbox-label input:checked + .cabx-checkbox-box::after { border-color: #ffffff !important; }
#cabx-widget-root .cabx-chip { background: #f4f4f5 !important; }
#cabx-widget-root .cabx-chip:hover { background: #ededee !important; }
#cabx-widget-root .cabx-chip select { color: #0B0B0B !important; }
#cabx-widget-root .cabx-chip-icon { color: rgba(11,11,11,0.55) !important; }
#cabx-widget-root, #cabx-widget-root .cabx-suggestions, #cabx-widget-root .cabx-suggestion-item { text-align: left !important; }
#cabx-widget-root ::selection { background: #C9A45F !important; color: #0B0B0B !important; }
.cta .btn { background: #fff; color: #000; }
.cta .btn:hover { background: var(--accent); color: var(--on-accent); }
.cta .btn-outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); }
.cta .btn-outline:hover { background: #fff; color: #000; }

.cta-meta {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 16px;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 700px) { .cta-meta { grid-template-columns: repeat(4, 1fr); margin-top: 72px; } }
.cta-meta .k { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.cta-meta .v { font-size: 15px; font-weight: 600; color: #fff; }

/* ── footer ──────────────────────────────────────────────────────────── */
.footer { padding: 64px 0 32px; background: var(--bg); }
.footer-top {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; padding-bottom: 40px;
}
@media (min-width: 700px)  { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { width: 30px; height: 30px; object-fit: contain; }
.footer-brand .brand-text { font-size: 13px; font-weight: 700; letter-spacing: .14em; }
.footer-top p { font-size: 14px; line-height: 1.6; color: var(--text-2); margin: 0; max-width: 360px; }
.footer h5 { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14px; color: var(--text-2); }
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-3);
  border-top: 1px solid var(--line);
}

/* ── tweaks panel ────────────────────────────────────────────────────── */
.tweaks {
  position: fixed; right: 16px; bottom: 16px; z-index: 9999;
  width: 260px; display: none; flex-direction: column;
  background: rgba(250,249,247,.94); color: #1a1a1a;
  -webkit-backdrop-filter: blur(20px) saturate(160%);
          backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  font: 12px/1.4 'Manrope', system-ui, sans-serif;
}
.tweaks.open { display: flex; }
.tweaks-hd { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid rgba(0,0,0,.06); }
.tweaks-hd b { font-size: 13px; font-weight: 700; }
.tweaks-x { width: 22px; height: 22px; color: rgba(0,0,0,.5); }
.tweaks-body { padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.tweaks-row { display: flex; flex-direction: column; gap: 6px; }
.tweaks-lbl { font-weight: 600; color: rgba(0,0,0,.7); }
.tweaks-seg { display: flex; padding: 2px; background: rgba(0,0,0,.06); }
.tweaks-seg button {
  flex: 1; font: inherit; font-weight: 500; padding: 6px 8px;
  color: rgba(0,0,0,.65);
}
.tweaks-seg button[aria-pressed="true"] { background: #fff; color: #000; box-shadow: 0 1px 2px rgba(0,0,0,.1); }

/* ── reveal-on-scroll ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s, transform .7s; transition-timing-function: cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
