@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,700&display=swap");

:root {
  --ink: #11100d;
  --paper: #f1eee5;
  --yellow: #ffd400;
  --line: rgba(17, 16, 13, 0.18);
  --muted: #6a675f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}

a { color: inherit; }
.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--yellow);
  letter-spacing: 0;
  overflow: hidden;
}
.wordmark-mark img { display: block; width: 100%; height: 100%; object-fit: cover; }
.header-nav { display: flex; align-items: center; gap: 24px; }
.header-link {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  overflow: hidden;
  background-color: var(--yellow);
  background-image:
    linear-gradient(rgba(17,16,13,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,16,13,.08) 1px, transparent 1px);
  background-size: 62px 62px;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 48%, transparent 0, transparent 24%, rgba(17,16,13,.1) 115%);
}
.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) clamp(24px, 7vw, 120px);
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(74px, 9.4vw, 154px);
  line-height: .86;
  letter-spacing: -.075em;
}
h1 em {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}
.hero-text {
  max-width: 540px;
  margin-bottom: 38px;
  color: rgba(17, 16, 13, .72);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}
.primary-button, .open-app {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 18px;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .2s, color .2s, transform .2s;
}
.primary-button:hover, .open-app:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}
.hero .primary-button:hover { background: var(--paper); }
.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 620px;
}
.hero-taxi {
  position: absolute;
  z-index: 3;
  width: min(66%, 500px);
  aspect-ratio: 1;
  top: 50%;
  left: 46%;
  transform: translate(-50%, -50%) rotate(-5deg);
  border: 16px solid var(--ink);
  border-radius: 30%;
  box-shadow: 18px 22px 0 rgba(17,16,13,.15);
  overflow: hidden;
}
.hero-taxi img { display: block; width: 100%; height: 100%; object-fit: cover; }
.route {
  position: absolute;
  z-index: 2;
  width: 82%;
  height: 42%;
  border: 4px dashed var(--ink);
  border-color: var(--ink) transparent transparent var(--ink);
  border-radius: 50%;
}
.route-one { top: 12%; left: -22%; transform: rotate(18deg); }
.route-two { right: -35%; bottom: 7%; transform: rotate(200deg); }
.location-dot {
  position: absolute;
  z-index: 4;
  right: 14%;
  bottom: 18%;
  width: 20px;
  height: 20px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 8px var(--ink);
  animation: pulse 2s infinite;
}
.map-label {
  position: absolute;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}
.label-one { top: 18%; right: 15%; }
.label-two { bottom: 12%; left: 12%; }
.label-three { top: 51%; left: 7%; transform: rotate(-90deg); }

.apps-section { padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 80px); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.section-heading h2, .coming-section h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -.06em;
}
.section-heading > p, .coming-section > p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.app-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background .25s, transform .25s;
}
.app-card:hover { background: #faf8f1; transform: translateY(-6px); }
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.app-status {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.app-icon {
  width: 104px;
  height: 104px;
  margin-bottom: 30px;
  border: 1px solid var(--ink);
  border-radius: 22%;
  background: white;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; }
.guide-card .app-icon img { transform: scale(1.08); }
.app-kicker {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.app-card h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1;
  letter-spacing: -.06em;
}
.app-description {
  min-height: 112px;
  color: var(--muted);
  line-height: 1.65;
}
.feature-list {
  margin: 8px 0 38px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.feature-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.feature-list li::before { content: "✓"; margin-right: 9px; }
.card-actions { margin-top: auto; }
.open-app { width: 100%; margin-bottom: 12px; }
.store-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.store-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.store-link svg { flex: 0 0 20px; width: 20px; height: 20px; }
.store-link.is-coming { color: #8c887e; cursor: default; }
.store-link small { display: block; margin-top: 2px; font-size: 8px; font-weight: 500; letter-spacing: .08em; }

.coming-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: clamp(70px, 9vw, 140px) clamp(20px, 8vw, 130px);
  background: var(--yellow);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.coming-section > p { align-self: end; color: var(--ink); max-width: 560px; }
.contact-section {
  padding: clamp(70px, 9vw, 140px) clamp(20px, 8vw, 130px);
  background: var(--ink);
  color: var(--paper);
}
.contact-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.contact-heading h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -.06em;
}
.contact-heading > p {
  margin-bottom: 0;
  color: #aaa69b;
  line-height: 1.7;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(241, 238, 229, .25);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.contact-card > span:first-child {
  color: #aaa69b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 2vw, 28px);
}
.contact-arrow {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 20px;
}
.contact-card:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  transform: translateY(-3px);
}
.contact-card:hover > span:first-child { color: var(--ink); }
footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 42px clamp(20px, 5vw, 80px);
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(241, 238, 229, .18);
  font-size: 12px;
  line-height: 1.7;
}
footer p { margin-bottom: 0; }
footer p:last-child { text-align: right; color: #aaa69b; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 7px var(--ink), 0 0 0 8px rgba(17,16,13,.25); }
  50% { box-shadow: 0 0 0 7px var(--ink), 0 0 0 22px rgba(17,16,13,0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .location-dot { animation: none; }
  * { transition: none !important; }
}
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  }
  .hero-copy {
    padding-right: 20px;
  }
  h1 {
    font-size: clamp(68px, 9.5vw, 100px);
  }
  .hero-visual { min-height: 560px; }
  .app-grid { grid-template-columns: 1fr; }
  .app-description { min-height: 0; }
}
@media (max-width: 700px) {
  .site-header { height: 64px; }
  .header-nav .header-link:first-child { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background-size: 48px 48px;
  }
  .hero-copy {
    min-height: auto;
    padding: 60px 24px 8px;
  }
  .hero-copy .eyebrow { margin-bottom: 18px; }
  h1 {
    max-width: 360px;
    margin-bottom: 24px;
    font-size: clamp(62px, 19vw, 88px);
    line-height: .88;
  }
  .hero-text {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-visual { min-height: 380px; }
  .hero-taxi {
    width: min(66vw, 290px);
    top: 47%;
    left: 50%;
  }
  .hero-taxi { border-width: 10px; }
  .route-one { top: 5%; left: -35%; }
  .route-two { right: -30%; bottom: 3%; }
  .label-one { top: 8%; right: 8%; }
  .label-two { bottom: 8%; left: 8%; }
  .label-three { top: 45%; left: 3%; }
  .location-dot { right: 9%; bottom: 13%; }
  .section-heading, .coming-section, .contact-heading { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 38px; }
  .app-card { padding: 28px 24px; }
  .store-links { grid-template-columns: 1fr; }
  .contact-heading { gap: 24px; margin-bottom: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
  footer p:last-child { text-align: left; }
}
