:root {
  --black: #080808;
  --ink: #171717;
  --muted: #68645d;
  --paper: #f6f3ee;
  --white: #ffffff;
  --line: #ded9cf;
  --soft: #ebe6dc;
  --gold: #d7a632;
  --taxi: #f3c440;
  --whatsapp: #1da851;
  --radius: 8px;
  --header-height: 64px;
  --section-height: 100svh;
  --photo-panel-height: var(--section-height);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 1rem;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  padding: 0.7rem 0.9rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 0.35rem clamp(1rem, 4vw, 3rem);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(54px, 5vw, 66px);
  height: auto;
  transition: filter 180ms ease, width 180ms ease;
}

.site-header:not(.is-scrolled):not(.menu-open) .brand img {
  filter: invert(1);
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header.is-scrolled .nav,
.site-header.menu-open .nav {
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a:focus-visible,
.site-header.menu-open .nav a:hover,
.site-header.menu-open .nav a:focus-visible {
  color: var(--black);
}

.header-actions {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.icon-action,
.btn,
.floating-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 170ms ease, background 170ms ease;
}

.icon-action {
  width: 48px;
  min-width: 48px;
  padding: 0;
}

.header-phone {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.site-header.is-scrolled .header-phone,
.site-header.menu-open .header-phone {
  border-color: var(--black);
  background: var(--white);
  color: var(--black);
}

.header-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.whatsapp-icon {
  width: 25px;
  height: 25px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  border-color: var(--black);
  background: var(--white);
  color: var(--black);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  grid-area: 1 / 1;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1.2rem;
  min-height: 100svh;
  padding: calc(var(--header-height) + 1.4rem) clamp(1rem, 6vw, 2rem) max(1.25rem, env(safe-area-inset-bottom));
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 243, 238, 0.98) 62%, rgba(243, 196, 64, 0.18) 100%),
    var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -16px, 0) scale(0.985);
  transform-origin: top center;
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0ms linear 320ms;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: var(--header-height) 0 auto;
  height: 1px;
  background: var(--line);
}

.mobile-menu::after {
  content: "Taxi Marika";
  position: absolute;
  right: clamp(1rem, 5vw, 2rem);
  bottom: clamp(6.5rem, 18vw, 8rem);
  color: rgba(8, 8, 8, 0.045);
  font-size: clamp(4rem, 20vw, 8rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0ms;
}

.mobile-menu nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  align-content: center;
  width: min(520px, 100%);
  min-height: 100%;
}

.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 3.8vh, 1.45rem) 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.12);
  color: var(--black);
  font-size: clamp(2.2rem, 13vw, 4.8rem);
  font-weight: 900;
  line-height: 0.9;
  opacity: 0;
  transform: translate3d(-18px, 18px, 0);
  transition: opacity 220ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu nav a::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  margin-top: 0.35em;
  background: var(--taxi);
}

body.menu-open .mobile-menu nav a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.menu-open .mobile-menu nav a:nth-child(1) {
  transition-delay: 80ms;
}

body.menu-open .mobile-menu nav a:nth-child(2) {
  transition-delay: 125ms;
}

body.menu-open .mobile-menu nav a:nth-child(3) {
  transition-delay: 170ms;
}

body.menu-open .mobile-menu nav a:nth-child(4) {
  transition-delay: 215ms;
}

body.menu-open .mobile-menu nav a:nth-child(5) {
  transition-delay: 260ms;
}

.mobile-menu-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .mobile-menu-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 290ms;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  padding: 0 1.3rem;
  border: 1px solid transparent;
}

.btn-phone {
  background: var(--black);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.header-phone:hover,
.header-whatsapp:hover,
.btn:hover,
.floating-cta a:hover,
.header-phone:focus-visible,
.header-whatsapp:focus-visible,
.btn:focus-visible,
.floating-cta a:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: var(--section-height);
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  scroll-snap-align: start;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.05) 52%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 1.05rem;
  width: min(760px, 100%);
  min-height: var(--section-height);
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 6vw, 4rem);
}

.hero .label {
  color: var(--taxi);
}

.hero h1 {
  color: var(--white);
}

.hero .hero-copy > p:not(.label) {
  color: rgba(255, 255, 255, 0.82);
}

.hero .btn-phone {
  background: var(--white);
  color: var(--black);
}

.label {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: 5rem;
  line-height: 0.92;
}

h2 {
  max-width: 14ch;
  font-size: 3.35rem;
  line-height: 1;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.hero-copy > p:not(.label),
.section-title > p:not(.label),
.booking-copy > p:not(.label),
.routes-copy > p:not(.label),
.final-cta > p:not(.label) {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-photo {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: var(--soft);
}

.hero-photo picture,
.hero-photo img {
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
  object-position: center 58%;
}

.service-list article::before {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-marika,
.services,
.vehicle,
.quick-answers,
.final-cta {
  min-height: var(--section-height);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
  scroll-snap-align: start;
}

.about-marika {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-copy {
  display: grid;
  gap: 0.9rem;
}

.about-body {
  display: grid;
  gap: 1.25rem;
}

.about-body p {
  max-width: 54rem;
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.7;
}

.about-body .about-lead {
  max-width: 48rem;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 900;
  line-height: 1.16;
}

.about-work {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.about-work article {
  min-height: 190px;
  padding: 1.2rem;
  background: var(--paper);
}

.about-work span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.about-work h3 {
  margin-top: 1.6rem;
  font-size: 1.25rem;
}

.about-work p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.section-title {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.section-title h2,
.section-title p {
  margin-right: auto;
  margin-left: auto;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-list article {
  min-height: 230px;
  padding: 1.35rem;
  background: var(--white);
}

.service-list article:nth-child(1)::before {
  content: "01";
}

.service-list article:nth-child(2)::before {
  content: "02";
}

.service-list article:nth-child(3)::before {
  content: "03";
}

.service-list article:nth-child(4)::before {
  content: "04";
}

.service-list h3 {
  margin-top: 2rem;
}

.service-list p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking {
  min-height: var(--section-height);
  padding: clamp(3.2rem, 7vw, 5.5rem) clamp(1rem, 5vw, 4rem);
  background: var(--black);
  color: var(--white);
  scroll-snap-align: start;
}

.booking-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  grid-template-areas:
    "copy message"
    "cta message";
  gap: 1.5rem clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1180px;
  min-height: calc(var(--section-height) - clamp(6.4rem, 14vw, 11rem));
  margin: 0 auto;
}

.booking h2,
.booking h3 {
  color: var(--white);
}

.booking h2 {
  max-width: 11ch;
  font-size: 2.9rem;
  line-height: 1.02;
}

.booking .label {
  color: var(--gold);
}

.booking-copy {
  grid-area: copy;
  display: grid;
  gap: 1rem;
}

.booking-copy > p:not(.label) {
  color: rgba(255, 255, 255, 0.72);
}

.booking strong {
  color: var(--white);
}

.booking-cta {
  grid-area: cta;
  justify-self: start;
  margin-top: 0.35rem;
}

.booking-message {
  grid-area: message;
}

.message-label,
.booking-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
}

.message-label {
  margin-bottom: 0.9rem;
  color: var(--taxi);
  text-transform: uppercase;
}

.message-bubble {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #151515;
}

.message-bubble > p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.message-bubble dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.message-bubble dl div {
  display: grid;
  grid-template-columns: minmax(110px, 0.36fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.message-bubble dt,
.message-bubble dd {
  margin: 0;
}

.message-bubble dt {
  color: var(--white);
  font-weight: 900;
}

.message-bubble dd {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.booking-note {
  margin-top: 0.9rem;
}

.routes {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: var(--section-height);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
  scroll-snap-align: start;
}

.routes-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.routes-media img {
  width: 100%;
  height: var(--photo-panel-height);
  object-fit: cover;
}

.routes-copy {
  display: grid;
  gap: 1.1rem;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.6rem;
  margin: 0.7rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.route-list li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  min-height: 56px;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.route-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  margin-top: 0.32rem;
  background: var(--taxi);
}

.vehicle {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

.vehicle-grid img {
  width: 100%;
  height: var(--photo-panel-height);
  border-radius: var(--radius);
  object-fit: cover;
}

.quick-answers {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-list summary {
  cursor: pointer;
  padding: 1.1rem 0;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  margin-left: 1rem;
  color: var(--gold);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 34rem;
  margin: -0.35rem 0 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: var(--section-height);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1rem, 5vw, 4rem);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.04), transparent 42%),
    var(--white);
  border-bottom: 1px solid var(--line);
  scroll-snap-align: start;
}

.reviews-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.reviews-copy p:not(.label) {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.reviews-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.review-slider {
  position: relative;
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.review-slider::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -56px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(243, 196, 64, 0.16);
  pointer-events: none;
}

.review-slider-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-slider-head span {
  color: var(--taxi);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  gap: 0.45rem;
}

.slider-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: var(--taxi);
  color: var(--black);
}

.slider-btn:disabled {
  cursor: default;
  opacity: 0.38;
}

.reviews-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-columns: minmax(285px, 48%);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: grid;
  align-content: space-between;
  gap: clamp(1.1rem, 2.4vw, 1.7rem);
  min-height: clamp(320px, 35vw, 390px);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #151515;
  scroll-snap-align: start;
}

.review-card-google {
  background:
    linear-gradient(135deg, rgba(243, 196, 64, 0.22), transparent 58%),
    #151515;
}

.review-stars {
  color: var(--taxi);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  font-weight: 400;
  line-height: 1.5;
}

.review-card footer {
  display: grid;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.4;
}

.review-card footer strong {
  color: var(--white);
  font-size: 1.05rem;
}

.review-card footer span {
  color: rgba(255, 255, 255, 0.62);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  background: var(--paper);
}

.footer-logo {
  width: 118px;
  height: auto;
}

.final-cta .hero-actions {
  justify-content: center;
  margin-top: 0.5rem;
}

.contact-copy-desktop {
  display: block;
}

.contact-copy-mobile {
  display: none;
}

.site-footer {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(3rem, 6vw, 4.8rem) clamp(1rem, 4vw, 3rem) 1.25rem;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  gap: 1rem;
  max-width: 360px;
}

.footer-brand img {
  width: 76px;
  height: auto;
  filter: invert(1);
}

.footer-brand p {
  margin: 0;
}

.footer-brand p:first-of-type {
  display: grid;
  gap: 0.25rem;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
}

.footer-brand span {
  color: var(--taxi);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand p:last-child {
  max-width: 32rem;
  line-height: 1.7;
}

.footer-block {
  display: grid;
  gap: 0.65rem;
}

.footer-block h2 {
  margin: 0;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer a,
.footer-area span {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.35;
}

.site-footer a {
  width: fit-content;
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--taxi);
}

.footer-area span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-cta {
  position: fixed;
  z-index: 45;
  right: 1rem;
  bottom: 1rem;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: min(360px, calc(100% - 2rem));
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.floating-cta a:first-child {
  background: var(--white);
  color: var(--black);
}

.floating-cta a:last-child {
  background: var(--whatsapp);
  color: var(--white);
}

@media (max-width: 1040px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list article {
    min-height: 220px;
  }

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

@media (max-width: 860px) {
  :root {
    --photo-panel-height: min(82svh, 660px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .mobile-menu {
    display: grid;
  }

  body.menu-open .floating-cta {
    display: none;
  }

  .hero,
  .about-marika,
  .booking-inner,
  .routes,
  .reviews {
    grid-template-columns: 1fr;
  }

  .booking-inner {
    grid-template-areas:
      "copy"
      "message"
      "cta";
    min-height: auto;
  }

  .booking-cta {
    justify-self: stretch;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    min-height: var(--photo-panel-height);
  }

  .hero-copy {
    padding-top: 2.2rem;
  }

  .reviews-track {
    grid-auto-columns: minmax(250px, 76%);
  }

}

@media (max-width: 620px) {
  :root {
    --header-height: 58px;
    --photo-panel-height: min(76svh, 560px);
  }

  body {
    padding-bottom: 5rem;
  }

  .site-header {
    padding: 0.35rem 0.8rem;
  }

  .brand img {
    width: 54px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    padding: calc(var(--header-height) + 1.1rem) 0.85rem max(1rem, env(safe-area-inset-bottom));
  }

  .mobile-menu nav a {
    font-size: clamp(2.05rem, 12vw, 3.6rem);
  }

  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.15rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 2.35rem;
    line-height: 1.03;
  }

  .hero .hero-actions,
  .booking-cta,
  .reviews-links,
  .final-cta .hero-actions {
    display: none;
  }

  .service-list,
  .about-work,
  .faq-list,
  .route-list,
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .message-bubble dl div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .message-bubble > p {
    font-size: 1.45rem;
  }

  .about-marika,
  .services,
  .vehicle,
  .quick-answers,
  .reviews,
  .final-cta {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .review-slider {
    margin-inline: -0.2rem;
  }

  .review-slider-head span {
    font-size: 0.76rem;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .reviews-track {
    grid-auto-columns: minmax(230px, 86%);
  }

  .review-card {
    min-height: 300px;
  }

  .contact-copy-desktop {
    display: none;
  }

  .contact-copy-mobile {
    display: block;
  }

  .floating-cta {
    display: grid;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    width: auto;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-block {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
