/* מוניות ברחובות — marketing redesign 2026
   Mobile-first, logical properties, RTL/LTR via dir. */

:root {
  --ink: #090a0d;
  --ink-2: #101218;
  --ink-3: #181b24;
  --ink-4: #222632;
  --yellow: #f5c400;
  --yellow-2: #ffd84a;
  --yellow-deep: #d4a400;
  --cream: #f7f3e8;
  --fog: #c9c4b6;
  --muted: #9b968a;
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-2: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 76px;
  --sticky-h: 72px;
  --wrap: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  hanging-punctuation: first last;
  overflow-x: clip;
  max-width: 100%;
}

html[lang="he"] body { font-family: Heebo, Rubik, "Segoe UI", Tahoma, sans-serif; }
html[lang="ar"] body { font-family: Cairo, Rubik, "Noto Naskh Arabic", Tahoma, sans-serif; }
html:not([lang="he"]):not([lang="ar"]) body { font-family: Rubik, Heebo, "Segoe UI", sans-serif; }

body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  background:
    radial-gradient(1200px 600px at 100% -10%, rgba(245, 196, 0, 0.16), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(245, 196, 0, 0.07), transparent 50%),
    var(--ink);
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body { font-size: 1.08rem; line-height: 1.75; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--yellow);
  color: #111;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 0.8rem; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(9, 10, 13, 0.72);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.35); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(245,196,0,.25);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong { font-size: 0.98rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-text span { font-size: 0.72rem; color: var(--fog); font-weight: 500; }

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  margin-inline-start: auto;
}
.nav a {
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--fog);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav a:hover { color: var(--cream); background: var(--glass); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 0.75rem 1.15rem;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-yellow {
  background: linear-gradient(180deg, var(--yellow-2), var(--yellow));
  color: #16120a;
  box-shadow: 0 8px 24px rgba(245, 196, 0, 0.28);
}
.btn-ghost {
  background: var(--glass);
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-wa {
  background: #1f6b45;
  color: #e8fff3;
}

.btn-wa:hover { background: #248054; }
.btn-wa-share { /* share download invite only — not a booking channel */ }
.btn-play {
  background: #0c0d10;
  color: #f5f5f7;
  border: 1px solid rgba(245,196,0,.35);
  border-radius: 14px;
  padding: 0.65rem 1rem;
  gap: 0.65rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.btn-play:hover {
  background: #15171d;
  border-color: rgba(245,196,0,.55);
}
.btn-play-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: start;
}
.btn-play-text strong { font-size: 0.95rem; font-weight: 800; }
.btn-play-text small {
  font-size: 0.68rem;
  font-weight: 650;
  color: rgba(245,245,247,.72);
  letter-spacing: 0.02em;
}
.play-badge-icon { flex-shrink: 0; }
.btn-play--soon,
.btn-play[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
  opacity: 0.95;
  border-style: dashed;
  border-color: rgba(245,196,0,.45);
}
.btn-play--soon:hover,
.btn-play[aria-disabled="true"]:hover {
  background: #0c0d10;
  border-color: rgba(245,196,0,.45);
}
.btn-play--soon .btn-play-text small {
  color: var(--yellow);
  font-weight: 800;
}

.btn-lg { padding: 0.95rem 1.35rem; font-size: 1.02rem; }
.phone-cta { display: none; }

.lang {
  position: relative;
}
.lang-btn {
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-weight: 650;
  font-size: 0.85rem;
}
.lang-menu {
  display: none;
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  background: #161820;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.4rem;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  z-index: 60;
}
.lang.is-open .lang-menu { display: block; }
.lang-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  border-radius: 10px;
  color: var(--fog);
  font-weight: 600;
}
.lang-menu a:hover,
.lang-menu a[aria-current="true"] {
  background: var(--glass-2);
  color: var(--yellow);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--glass);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: var(--header-h);
  background: rgba(12,13,18,.96);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.25rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0.2rem;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { width: 100%; margin-top: 0.8rem; }

/* Hero */
.hero {
  position: relative;
  padding: 2.2rem 0 2.6rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset-inline-end: -8%;
  top: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245,196,0,.22), transparent 68%);
  pointer-events: none;
}
.checker {
  height: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      #0c0d10 0 12px,
      #f5c400 12px 24px
    );
  opacity: 0.85;
}
.hero-grid {
  display: grid;
  gap: 2rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
  margin: 0 0 0.9rem;
}
.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
}
h1 {
  font-size: clamp(2.05rem, 6.4vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  font-weight: 800;
}
.lead {
  font-size: 1.12rem;
  color: var(--fog);
  max-width: 38rem;
  margin: 0 0 1.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.hero-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.4rem 0 0;
}
.hero-phone {
  margin: 1.3rem 0 0;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--yellow);
  text-decoration: none;
  display: inline-block;
}

.phone-card {
  max-width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 1.1rem 1.1rem 1.2rem;
  box-shadow: var(--shadow);
  max-width: 360px;
  margin-inline: auto;
  position: relative;
}
.phone-card::after {
  content: "";
  position: absolute;
  inset: auto 20% -18px 20%;
  height: 28px;
  background: rgba(245,196,0,.18);
  filter: blur(16px);
}
.phone-notch {
  width: 86px;
  height: 10px;
  background: #07080b;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 0.8rem;
}
.phone-screen {
  background:
    radial-gradient(160px 80px at 70% 20%, rgba(245,196,0,.18), transparent),
    linear-gradient(180deg, #1a2030, #0e1118);
  border-radius: 24px;
  min-height: 280px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(245,196,0,.18);
}
.map-dot.a { top: 28%; inset-inline-start: 22%; }
.map-dot.b { top: 62%; inset-inline-start: 68%; }
.map-line {
  position: absolute;
  top: 32%;
  inset-inline-start: 24%;
  width: 46%;
  height: 2px;
  background: linear-gradient(to inline-start, var(--yellow), transparent);
  transform: rotate(-28deg);
  transform-origin: right center;
}
html[dir="ltr"] .map-line { transform: rotate(28deg); transform-origin: left center; }
.eta-card, .soon-badge {
  position: relative;
  z-index: 1;
  background: rgba(10,12,16,.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.75rem 0.85rem;
  backdrop-filter: blur(10px);
}
.soon-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #16120a;
  background: var(--yellow);
  border: 0;
  margin-bottom: 0.8rem;
}
.eta-card strong { display: block; font-size: 1.35rem; }
.eta-card span { color: var(--fog); font-size: 0.85rem; }
.driver-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 5.5rem;
  background: rgba(10,12,16,.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.7rem 0.8rem;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #8a6d00);
}
.driver-row b { display: block; font-size: 0.92rem; }
.driver-row small { color: var(--fog); }

/* Trust */
.trust {
  padding: 0.4rem 0 2rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.trust-item {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 0.95rem;
}
.trust-item strong {
  display: block;
  font-size: 1.25rem;
  color: var(--yellow);
  letter-spacing: -0.03em;
}
.trust-item span { color: var(--fog); font-size: 0.88rem; }

/* Sections */
section { padding: 3.2rem 0; }
.section-kicker {
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.8rem;
  margin: 0 0 0.45rem;
}
h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.7rem;
}
.section-lead {
  color: var(--fog);
  max-width: 40rem;
  margin: 0 0 1.8rem;
}

.steps {
  display: grid;
  gap: 0.9rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--yellow);
  color: #16120a;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.step h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.step p { margin: 0; color: var(--fog); font-size: 0.95rem; }

.cards {
  display: grid;
  gap: 0.9rem;
}
.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.card h3 { margin: 0 0 0.4rem; font-size: 1.2rem; }
.card p { margin: 0; color: var(--fog); }
.icon-blob {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(245,196,0,.14);
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.pill {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--cream);
}

.airport {
  background:
    linear-gradient(180deg, rgba(245,196,0,.07), transparent 40%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.2rem 0 1rem;
}
.price {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}
.price b {
  display: block;
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: -0.03em;
}
.price span { color: var(--fog); font-size: 0.9rem; }
.fine { color: var(--muted); font-size: 0.88rem; margin: 0; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 650;
  font-size: 0.9rem;
}

.app-panel {
  display: grid;
  gap: 1.2rem;
  background:
    linear-gradient(135deg, rgba(245,196,0,.12), transparent 42%),
    var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.4rem;
}
.app-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
  align-items: center;
}
.app-note {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(245,245,247,.72);
  max-width: 42rem;
}
.store-badge--soon {
  opacity: 0.92;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #0c0d10;
  border: 1px dashed rgba(245,196,0,.45);
  color: var(--cream);
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.store-badge small {
  display: block;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
}

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.score {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.score b { font-size: 3rem; letter-spacing: -0.04em; color: var(--yellow); }
.stars { color: var(--yellow); letter-spacing: 0.12em; }
.themes { display: grid; gap: 0.7rem; }
.theme {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}
.theme strong { display: block; margin-bottom: 0.15rem; }

.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.1rem;
  font-weight: 750;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-align: start;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  order: -1;
  margin: 0;
  color: var(--yellow);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--fog);
}

.contact {
  padding-bottom: 6.5rem;
}
.contact-grid {
  display: grid;
  gap: 1rem;
}
.form {
  display: grid;
  gap: 0.7rem;
}
.form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.form input, .form textarea, .form select {
  background: #0e1016;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  width: 100%;
  max-width: 100%;
  text-align: start;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: var(--yellow);
  outline: none;
}
.form-note { color: var(--muted); font-size: 0.85rem; margin: 0; }

.contact-aside {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.contact-aside a { color: var(--yellow); font-weight: 800; text-decoration: none; }
.hours { list-style: none; padding: 0; margin: 0.6rem 0 0; color: var(--fog); }
.hours li { padding: 0.25rem 0; }

footer {
  background: #07080b;
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 7.5rem;
  color: var(--fog);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  gap: 1.4rem;
}
.footer-brand strong { color: var(--cream); display: block; font-size: 1.1rem; }
.footer-grid h3 { color: var(--cream); font-size: 0.95rem; margin: 0 0 0.5rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 0.28rem 0; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--yellow); }
.legal { margin-top: 1.6rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.8rem; }

.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(9,10,13,.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { width: 100%; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .phone-cta { display: inline-flex; }
  footer { padding-bottom: 2.6rem; }
  .contact { padding-bottom: 3.4rem; }
}

@media (min-width: 900px) {
  .menu-toggle { display: none !important; }
}
@media (min-width: 980px) {
  .nav { display: flex; }
  .menu-toggle, .mobile-nav { display: none !important; }
  .header-actions { margin-inline-start: 0; }
  .nav a { font-size: 0.86rem; padding: 0.4rem 0.55rem; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step { grid-template-columns: 1fr; }
  .sticky-cta { display: none; }
  .app-panel { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* Inner pages + booking form */
.page-hero { padding: 2.4rem 0 1.2rem; }
.page-hero h1 { font-size: clamp(1.85rem, 5vw, 2.8rem); }
.form-grid {
  display: grid;
  gap: 0.7rem;
}
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.radios label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 650;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}
.check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}
.check input {
  margin: 0;
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--yellow);
  align-self: center;
}
/* form labels are display:grid — override for consent row */
.form label.check {
  display: flex;
  grid-template-columns: none;
}
.prose { max-width: 42rem; color: var(--fog); }
.prose p { margin: 0 0 1rem; }
.prose li { margin: 0.35rem 0; }
.inner-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 0; }
.req-list { margin: 0; padding-inline-start: 1.1rem; color: var(--fog); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* Booking API form */
.form .hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
}
.order-success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
}
.order-success .request-line {
  font-size: 1.05rem;
  margin: 0.4rem 0 0.8rem;
}
.order-success .btn { margin-inline-end: 0.5rem; margin-top: 0.35rem; }


/* Address autocomplete (server proxy) */
.ac-wrap { position: relative; }
.ac-list {
  position: absolute; z-index: 40; inset-inline: 0; top: calc(100% + 4px);
  margin: 0; padding: 0.35rem 0; list-style: none;
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; max-height: 220px; overflow: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.ac-list button {
  display: block; width: 100%; text-align: inherit;
  background: transparent; border: 0; color: #f2efe6;
  padding: 0.55rem 0.85rem; cursor: pointer; font: inherit;
}
.ac-list button:hover, .ac-list button:focus {
  background: rgba(255, 214, 10, 0.12); outline: none;
}
