:root {
  --ink: #10100f;
  --paper: #fbfaf6;
  --soft: #ece7dc;
  --muted: #746f65;
  --gold: #d6a33c;
  --gold-light: #f4d778;
  --red: #d70d16;
  --green: #7bad3b;
  --line: rgba(214, 163, 60, 0.36);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(16, 16, 15, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(244, 215, 120, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 88px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.brand-mark img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--gold-light);
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.header-call,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.site-nav a {
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-call {
  padding: 0 16px;
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(52px, 8vw, 100px) clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(115deg, rgba(16, 16, 15, 0.98) 0%, rgba(16, 16, 15, 0.9) 52%, rgba(16, 16, 15, 0.72) 100%),
    url("assets/logotaxi.jpg") center / cover;
  color: #fff;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(2.45rem, 5.7vw, 5.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
}

.hero-actions,
.quick-facts,
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin: 30px 0 24px;
}

.hero-phone {
  display: inline-grid;
  gap: 4px;
  margin-top: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(244, 215, 120, 0.46);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-phone span {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-phone strong {
  color: #fff;
  font-size: clamp(1.55rem, 4vw, 2.6rem);
  line-height: 1;
}

.btn {
  border: 1px solid transparent;
  padding: 0 20px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  color: var(--ink);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn.dark {
  background: var(--ink);
  color: #fff;
}

.quick-facts span,
.zone-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.section,
.contact-section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-head h2,
.split-section h2,
.contact-section h2 {
  max-width: 820px;
}

.section p,
.split-section p,
.contact-section p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
blockquote {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--soft);
  border-radius: 8px;
  background: #fff;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.split-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.split-section .zone-list span {
  color: #fff;
}

.route-panel {
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.route-panel strong {
  font-size: 1.8rem;
  line-height: 1.1;
}

.route-panel .btn {
  margin-top: 18px;
}

.hours-section {
  background: #fff;
}

.hours-grid {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--soft);
  border-radius: 8px;
}

.hours-row span {
  color: var(--muted);
  font-weight: 800;
}

.hours-row strong {
  font-size: 1.1rem;
  text-align: right;
}

.testimonials {
  background: linear-gradient(180deg, var(--paper), #fff);
}

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

blockquote {
  margin: 0;
  min-height: 180px;
}

blockquote p {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
}

.contact-link span {
  color: var(--gold-light);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #070707;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.site-footer a {
  color: var(--gold-light);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 12px 18px 18px;
    background: rgba(16, 16, 15, 0.98);
    border-bottom: 1px solid rgba(244, 215, 120, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-call {
    justify-self: end;
  }

  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-call {
    grid-column: 1 / -1;
    width: 100%;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hours-row strong {
    text-align: left;
  }

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