:root {
  --asphalt: #1a1f26;
  --charcoal: #2c333c;
  --amber: #e8a838;
  --amber-hover: #f0b84a;
  --ivory: #f4f0e8;
  --body: #f7f5f2;
  --steel: #8b939e;
  --road: #5b8fa8;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Onest", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--asphalt);
  background: var(--body);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  padding: 1rem 0;
}

.top__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  text-decoration: none;
  color: var(--ivory);
}

.logo__mark {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 0.55rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.05;
}

.logo__place {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.logo__taxi {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--amber);
}

.top__phone {
  color: var(--ivory);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--ivory);
  overflow: hidden;
  background: var(--asphalt);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__haze {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 31, 38, 0.35) 0%, rgba(26, 31, 38, 0.55) 45%, rgba(26, 31, 38, 0.92) 100%),
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(91, 143, 168, 0.18), transparent 60%);
  animation: hazePulse 10s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 3.5rem;
  max-width: 36rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  margin-right: auto;
  width: min(100% - 2rem, 36rem);
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--steel);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand--sm {
  font-size: 1.4rem;
  color: var(--ivory);
}

.hero h1 {
  margin: 0.85rem 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  line-height: 1.25;
  color: var(--ivory);
  max-width: 18ch;
}

.lead {
  margin: 0 0 1.5rem;
  color: rgba(244, 240, 232, 0.82);
  font-size: 1.05rem;
  max-width: 34ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  background: var(--amber);
  color: var(--asphalt);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid transparent;
  animation: ctaPulse 2.8s ease-in-out 0.6s 3;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cta:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
}

.cta--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(244, 240, 232, 0.45);
  animation: none;
}

.cta--ghost:hover {
  background: rgba(244, 240, 232, 0.12);
  border-color: var(--ivory);
  color: var(--ivory);
}

.cta--outline {
  background: transparent;
  color: var(--asphalt);
  border-color: rgba(26, 31, 38, 0.28);
  animation: none;
}

.cta--outline:hover {
  background: rgba(26, 31, 38, 0.06);
  border-color: var(--asphalt);
  color: var(--asphalt);
}

.cta--footer {
  animation: none;
}

.online-points {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
}

.online-points li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26, 31, 38, 0.1);
  font-size: 1.05rem;
}

.online-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--road);
  border: 1px dashed rgba(91, 143, 168, 0.55);
  border-radius: 2px;
  background: rgba(91, 143, 168, 0.08);
}


.section {
  padding: 4.5rem 0;
}

.section--band {
  background:
    linear-gradient(180deg, #efebe4 0%, var(--body) 100%);
}

.section h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section__sub {
  margin: 0 0 2rem;
  color: var(--steel);
  max-width: 40ch;
}

.fleet {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .fleet {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.fleet__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0.85rem;
}

.fleet__item h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.fleet__item p {
  margin: 0;
  color: var(--steel);
}

.routes,
.why {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.routes li,
.why li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26, 31, 38, 0.1);
  font-size: 1.05rem;
}

.prices {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .prices {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.price {
  padding: 1.4rem 0;
  border-top: 2px solid var(--asphalt);
}

.price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.price span {
  color: var(--steel);
}

.note {
  margin: 1.25rem 0 0;
  color: var(--steel);
  font-size: 0.95rem;
}

.footer {
  background: var(--asphalt);
  color: var(--ivory);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer__inner p {
  margin: 0.35rem 0 0;
  color: var(--steel);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.footer__links a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 168, 56, 0.35);
}

.footer__links a:hover {
  border-color: var(--amber);
}

.footer__meta {
  color: var(--steel);
  font-size: 0.85rem;
  border-top: 1px solid rgba(244, 240, 232, 0.12);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.footer__about {
  color: var(--steel);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 240, 232, 0.25);
}

.footer__about:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.about__legal {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--cream);
}

.about__credit {
  margin: 0;
  font-size: 0.95rem;
  color: var(--steel);
}

.about__credit a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 168, 56, 0.35);
}

.about__credit a:hover {
  border-color: var(--amber);
}

.is-hidden {
  display: none !important;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes hazePulse {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.88;
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 168, 56, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(232, 168, 56, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img,
  .hero__haze,
  .cta {
    animation: none;
  }
}
