:root {
  --ink: #11100d;
  --ink-soft: #27231c;
  --paper: #f1eadc;
  --muted: #71685a;
  --line: #e6dcc8;
  --taxi: #d99a00;
  --taxi-deep: #b57900;
  --cream: #e8dcc5;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 16, 13, 0.16);
  --panel-height: 92px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding-bottom: calc(var(--panel-height) + env(safe-area-inset-bottom));
}

body::selection {
  background: var(--taxi);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a,
summary,
select,
input {
  -webkit-tap-highlight-color: rgba(217, 154, 0, 0.22);
}

:focus-visible {
  outline: 3px solid rgba(217, 154, 0, 0.75);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1220px, calc(100% - 40px));
  min-height: 60px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 16, 13, 0.88);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 10px 12px 10px 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  min-width: 48px;
  min-height: 30px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--taxi);
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 17px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--taxi);
}

.header-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--taxi);
  border-radius: var(--radius-md);
  color: var(--ink);
  padding: 0 14px;
  font-weight: 600;
}

.mobile-live-strip {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 240px;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(241, 234, 220, 0) 0%,
    rgba(241, 234, 220, 0.12) 22%,
    rgba(241, 234, 220, 0.5) 56%,
    rgba(241, 234, 220, 0.86) 82%,
    var(--paper) 100%
  );
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("assets/hero-taxi-pov-poster.jpg");
  background-position: center 70%;
  background-size: cover;
  filter: brightness(0.54) saturate(1.08) contrast(1.04);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(17, 16, 13, 0.26);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 170px;
  text-align: center;
}

.hero-copy p,
.section-heading p,
.panel-kicker {
  margin: 0 0 8px;
  color: var(--taxi);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy p {
  font-weight: 600;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0 auto;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
  text-wrap: balance;
}

.hero-copy .hero-subline {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.hero-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  background: var(--taxi);
  border-radius: var(--radius-md);
  color: var(--ink);
  padding: 0 18px;
  font-weight: 900;
}

.content-section,
.fare-board,
.reviews,
.route-calculator,
.faq {
  scroll-margin-top: 104px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 0;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 24px;
}

.route-calculator {
  padding-top: 36px;
}

.route-calculator-subpage {
  width: 100%;
  padding-top: 0;
}

.route-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(360px, 1fr);
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  padding: 16px;
  box-shadow: var(--shadow);
}

.route-card.is-calculated {
  grid-template-columns: minmax(220px, 0.74fr) minmax(360px, 1fr) minmax(230px, 0.64fr);
}

.route-card-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 8px 6px;
}

.route-card-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.98;
}

.route-card-copy p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.route-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  padding: 12px;
}

.route-form label {
  display: grid;
  gap: 7px;
}

.route-form label span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.route-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: #201d17;
  color: var(--white);
  padding: 0 36px 0 12px;
  font-size: 16px;
  font-weight: 800;
}

.route-swap {
  display: inline-grid;
  width: 46px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--taxi);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.route-calculate {
  grid-column: 1 / -1;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--taxi);
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.route-result {
  display: grid;
  align-content: center;
  border-radius: var(--radius-md);
  background: var(--taxi);
  color: var(--ink);
  padding: 16px;
}

.route-result[hidden] {
  display: none;
}

.route-result span,
.route-result small {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.route-result strong {
  display: block;
  margin: 6px 0 4px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.95;
}

.route-result b {
  font-weight: 900;
}

.route-result a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 12px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--taxi);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.subpage-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0 80px;
}

.subpage-intro {
  display: grid;
  gap: 14px;
  justify-items: center;
  max-width: 1080px;
  margin: 0 auto 32px;
  text-align: center;
}

.subpage-intro p:first-child {
  margin: 0;
  color: var(--taxi-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.subpage-intro h1 {
  max-width: 1080px;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  text-wrap: balance;
}

.subpage-intro .lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.driver-page .subpage-intro {
  max-width: 1080px;
}

.driver-page .subpage-intro h1 {
  max-width: 1080px;
}

.driver-page .subpage-intro .lead {
  max-width: 820px;
}

.info-grid,
.region-list,
.price-list {
  display: grid;
  gap: 14px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-panel,
.region-list a,
.price-row {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 16, 13, 0.05);
}

.info-panel,
.price-row {
  padding: 18px;
}

.info-panel h2,
.info-panel h3,
.price-row strong {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.12;
}

.info-panel p,
.price-row p,
.region-list span {
  margin: 0;
  color: var(--muted);
}

.region-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.region-list a {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.region-list strong {
  font-size: 18px;
  line-height: 1.12;
}

.price-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 0 18px;
  font-weight: 800;
}

.page-cta a:first-child {
  background: var(--taxi);
  color: var(--ink);
}

.page-cta a:last-child {
  background: var(--ink);
  color: var(--taxi);
}

.subpage-section {
  margin-top: 26px;
}

.subpage-section h2 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.02;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(17, 16, 13, 0.05);
}

.content-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.content-panel p + p {
  margin-top: 12px;
}

.copy-grid,
.mini-faq,
.calculator-grid {
  display: grid;
  gap: 14px;
}

.copy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-faq {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-faq article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
}

.mini-faq h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
}

.mini-faq p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.calculator-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
  padding: 22px;
  box-shadow: var(--shadow);
}

.calculator-grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  align-items: stretch;
}

.calculator-form {
  display: grid;
  gap: 12px;
}

.calculator-form label,
.calculator-result small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.calculator-form input {
  width: 100%;
  min-height: 52px;
  scroll-margin-bottom: calc(var(--panel-height) + 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 14px;
  font-size: 18px;
  font-weight: 800;
}

.calculator-result {
  display: grid;
  align-content: center;
  border-radius: var(--radius-sm);
  background: var(--taxi);
  color: var(--ink);
  padding: 18px;
}

.calculator-result small {
  color: rgba(17, 16, 13, 0.72);
}

.calculator-result strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.calculator-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.social-grid,
.driver-grid {
  display: grid;
  gap: 14px;
}

.social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-card {
  display: grid;
  min-height: 186px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(17, 16, 13, 0.05);
}

.social-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--taxi);
  font-weight: 900;
}

.social-card strong {
  display: block;
  margin-top: 14px;
  font-size: 19px;
  line-height: 1.1;
}

.social-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.social-card em {
  color: var(--taxi-deep);
  font-style: normal;
  font-weight: 800;
}

.driver-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.driver-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(17, 16, 13, 0.05);
}

.driver-panel h2,
.driver-panel h3 {
  margin-top: 0;
}

.driver-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.driver-list li {
  border-radius: var(--radius-sm);
  background: rgba(217, 154, 0, 0.1);
  padding: 12px;
  color: var(--ink-soft);
  font-weight: 700;
}

.driver-steps {
  counter-reset: driver-step;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.driver-steps li {
  counter-increment: driver-step;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.driver-steps li::before {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--taxi);
  color: var(--ink);
  content: counter(driver-step);
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(27px, 3.3vw, 40px);
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

.faq .section-heading h2 {
  font-weight: 600;
}

.district-grid,
.fare-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fare-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 20px;
  box-shadow: 0 10px 26px rgba(17, 16, 13, 0.06);
}

.district-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.district-grid a {
  display: grid;
  min-height: 116px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(17, 16, 13, 0.05);
}

.district-grid a:hover,
.district-grid a:focus-visible {
  border-color: rgba(217, 154, 0, 0.65);
  background: #fff7e4;
}

.district-grid strong {
  font-size: 18px;
  line-height: 1.08;
}

.district-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  margin: 16px 0 8px;
  font-size: 19px;
  line-height: 1.1;
}

p {
  text-wrap: pretty;
}

.fare-cards p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.fare-board {
  width: 100%;
  max-width: none;
  background: var(--cream);
  margin-top: 70px;
  padding: 70px max(20px, calc((100vw - 1120px) / 2)) 78px;
}

.fare-photo {
  height: 178px;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.fare-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-pet-photo img {
  object-position: 50% 42%;
}

.service-price-photo img {
  object-position: 48% 48%;
}

.service-safe-photo img {
  object-position: 50% 74%;
}

.fare-cards .featured {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-12px);
}

.fare-cards .featured .fare-photo {
  border: 2px solid rgba(217, 154, 0, 0.72);
}

.fare-cards .featured p {
  color: rgba(255, 255, 255, 0.72);
}

.fare-cards strong {
  display: inline-flex;
  margin-top: 10px;
  color: var(--taxi-deep);
  font-weight: 900;
}

.fare-cards .featured strong {
  color: var(--taxi);
}

.reviews {
  overflow: hidden;
  width: 100%;
  max-width: none;
}

.reviews .section-heading {
  width: min(1120px, calc(100% - 40px));
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.google-review-slider {
  position: relative;
  overflow: hidden;
  padding: 2px 0 12px;
}

.google-review-slider::before,
.google-review-slider::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: max(32px, calc((100vw - 1120px) / 2));
  pointer-events: none;
  content: "";
}

.google-review-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(241, 234, 220, 0));
}

.google-review-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(241, 234, 220, 0));
}

.google-review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  animation: review-slide 52s linear infinite;
  animation-play-state: paused;
}

.google-review-track.is-moving {
  animation-play-state: running;
}

.google-review-slider:hover .google-review-track {
  animation-play-state: paused;
}

.google-review-card {
  display: grid;
  width: 354px;
  min-height: 218px;
  align-content: start;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(60, 64, 67, 0.12);
}

.google-review-card header {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #1a73e8;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.google-review-card strong {
  display: block;
  color: #202124;
  font-size: 15px;
  line-height: 1.1;
}

.google-review-card small,
.google-review-card time {
  display: block;
  color: #5f6368;
  font-size: 12px;
  font-weight: 700;
}

.google-mark {
  justify-self: end;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.review-stars {
  margin-top: 14px;
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.google-review-card p {
  display: -webkit-box;
  min-height: 68px;
  margin: 12px 0 14px;
  overflow: hidden;
  color: #3c4043;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@keyframes review-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.faq {
  padding-bottom: 74px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  align-items: start;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

summary {
  cursor: pointer;
  min-height: 58px;
  padding: 15px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.18;
}

details p {
  max-width: 640px;
  margin: -2px 16px 18px;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 38px max(20px, calc((100vw - 1120px) / 2));
}

.site-footer strong {
  font-size: 20px;
}

.site-footer a {
  display: block;
  font-weight: 800;
  text-align: right;
}

.site-footer a + a {
  margin-top: 8px;
  color: var(--taxi);
}

.booking-panel {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  display: flex;
  width: auto;
  align-items: center;
  gap: 12px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.booking-action {
  display: inline-flex;
  width: 58px;
  height: 58px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(17, 16, 13, 0.26);
}

.booking-icon {
  display: block;
  width: 28px;
  height: 28px;
}

.booking-label {
  display: none;
}

.call-action {
  position: fixed;
  left: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  background: var(--taxi);
  color: var(--ink);
}

.whatsapp-action {
  background: #25d366;
  color: var(--white);
}

.booking-action:active,
.header-call:active,
.hero-action:active {
  transform: translateY(1px);
}

@media (max-width: 860px) {
  :root {
    --panel-height: 88px;
  }

  body {
    background: var(--paper);
  }

  .site-header {
    display: none;
  }

  .mobile-live-strip {
    position: fixed;
    z-index: 36;
    top: max(10px, env(safe-area-inset-top));
    right: 66px;
    left: 12px;
    display: flex;
    min-height: 40px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    background: rgba(17, 16, 13, 0.9);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
  }

  .mobile-live-strip strong {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    background: var(--taxi);
    color: var(--ink);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .live-strip-window {
    overflow: hidden;
    min-width: 0;
    flex: 1;
  }

  .mobile-menu {
    position: fixed;
    z-index: 38;
    top: max(10px, env(safe-area-inset-top));
    right: 12px;
    display: block;
    overflow: visible;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .mobile-menu summary {
    appearance: none;
    -webkit-appearance: none;
    display: grid;
    width: 44px;
    height: 40px;
    min-height: 40px;
    place-items: center;
    border: 0;
    border-radius: var(--radius-md);
    background: rgba(17, 16, 13, 0.92);
    background-clip: padding-box;
    color: var(--taxi);
    list-style: none;
    outline: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: blur(12px);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu summary:focus,
  .mobile-menu summary:focus-visible,
  .mobile-menu summary:active {
    outline: 0;
    box-shadow: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .menu-lines {
    display: grid;
    gap: 4px;
  }

  .menu-lines span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: currentColor;
  }

  .mobile-menu-nav {
    position: absolute;
    top: 50px;
    right: 0;
    display: grid;
    width: min(276px, calc(100vw - 24px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    background: rgba(17, 16, 13, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
  }

  .mobile-menu-nav a {
    min-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu-nav a:last-child {
    border-bottom: 0;
    color: var(--taxi);
  }

  .live-strip-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 18px;
    padding-left: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    animation: live-strip-scroll 78s linear 1.4s infinite;
  }

  .live-strip-track span::after {
    margin-left: 18px;
    color: var(--taxi);
    content: "•";
  }

  .hero {
    min-height: 100dvh;
  }

  .hero::after {
    height: 300px;
    background: linear-gradient(
      180deg,
      rgba(241, 234, 220, 0) 0%,
      rgba(241, 234, 220, 0.16) 20%,
      rgba(241, 234, 220, 0.58) 58%,
      rgba(241, 234, 220, 0.9) 84%,
      var(--paper) 100%
    );
  }

  .hero-media {
    background-image: url("assets/hero-taxi-pov-poster.jpg");
    background-position: center 72%;
  }

  .hero-video {
    object-position: center 72%;
  }

  .hero-media::after {
    background: rgba(17, 16, 13, 0.18);
  }

  .hero-copy {
    position: absolute;
    top: 50%;
    right: 18px;
    left: 18px;
    display: grid;
    transform: translateY(-50%);
    justify-items: center;
    width: auto;
    padding-top: 0;
    text-align: center;
  }

  .hero-copy p {
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 600;
  }

  .hero-copy h1 {
    width: min(100%, 320px);
    max-width: 320px;
    margin: 0 auto;
    font-size: clamp(32px, 10vw, 40px);
  }

  .hero-copy .hero-subline {
    width: min(100%, 260px);
    max-width: 260px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .hero-action {
    display: none;
  }

  .booking-panel {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: grid;
    width: calc(100% - 24px);
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: 0 -14px 40px rgba(17, 16, 13, 0.2);
  }

  .booking-action {
    position: static;
    width: auto;
    height: auto;
    min-height: 52px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    box-shadow: none;
  }

  .booking-icon {
    display: none;
  }

  .booking-label {
    display: inline;
  }

  .whatsapp-action {
    background: var(--ink);
    color: var(--taxi);
  }

  .content-section,
  .fare-board,
  .route-calculator,
  .faq {
    scroll-margin-top: 16px;
    width: min(100% - 32px, 560px);
    padding-top: 52px;
  }

  .route-calculator {
    padding-top: 30px;
  }

  .home .route-calculator {
    padding-bottom: 58px;
  }

  .route-calculator-subpage {
    width: 100%;
    padding-top: 0;
  }

  .route-card,
  .route-card.is-calculated {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: var(--radius-md);
    padding: 12px;
  }

  .route-card-copy {
    padding: 4px 2px 0;
  }

  .route-card-copy h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .route-card-copy p {
    max-width: none;
    font-size: 13px;
  }

  .route-form {
    grid-template-columns: 1fr;
  }

  .route-swap {
    display: none;
  }

  .route-calculate {
    width: 100%;
    min-height: 50px;
  }

  .route-result strong {
    font-size: clamp(34px, 12vw, 46px);
  }

  .subpage-main {
    width: min(100% - 32px, 560px);
    padding: 76px 0 40px;
  }

  .subpage-intro {
    gap: 10px;
    margin-bottom: 18px;
  }

  .subpage-intro h1 {
    font-size: clamp(32px, 9.2vw, 40px);
  }

  .subpage-intro .lead {
    font-size: 15px;
  }

  .info-grid,
  .region-list,
  .price-list,
  .copy-grid,
  .mini-faq,
  .calculator-grid,
  .social-grid,
  .driver-grid {
    grid-template-columns: 1fr;
  }

  .subpage-section {
    margin-top: 22px;
  }

  .content-panel,
  .calculator-card {
    padding: 18px;
  }

  .page-cta {
    display: none;
  }

  .reviews {
    padding-top: 52px;
  }

  .reviews .section-heading {
    width: min(100% - 32px, 560px);
  }

  .fare-board {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .fare-cards {
    grid-template-columns: 1fr;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  summary {
    min-height: 58px;
    font-size: 16px;
    font-weight: 500;
  }

  .google-review-track {
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
    animation-duration: 64s;
  }

  .google-review-card {
    width: min(328px, calc(100vw - 56px));
    min-height: 220px;
    padding: 16px;
  }

  .district-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .district-grid a {
    min-height: 104px;
    padding: 14px;
  }

  .district-grid strong {
    font-size: 16px;
  }

  .district-grid span {
    font-size: 12px;
  }

  .fare-cards .featured {
    transform: none;
  }

  .site-footer {
    display: grid;
    padding-bottom: calc(var(--panel-height) + 32px);
  }

  .site-footer a {
    text-align: left;
  }
}

@media (max-width: 430px) {
  :root {
    --panel-height: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .live-strip-track,
  .google-review-track {
    animation: none;
    transform: none;
  }
}

@media (min-width: 861px) {
  main {
    padding-bottom: 20px;
  }
}

@keyframes live-strip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}
