/* Royal Lane Chauffeur — design system */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0908;
  --bg-elevated: #14120f;
  --bg-elevated-2: #1c1915;
  --bg-elevated-3: #211d18;

  --gold: #c9a24d;
  --gold-light: #e3c886;
  --gold-dim: rgba(201, 162, 77, 0.35);

  --text: #f5f2ec;
  --text-muted: #a89f8f;
  --text-faint: #6f6759;

  --border: rgba(245, 242, 236, 0.08);
  --border-strong: rgba(201, 162, 77, 0.35);

  --danger: #d9765a;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.75rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

/* fixed grain overlay for physicality */
.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(201, 162, 77, 0.06);
}

.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h2 { font-size: clamp(2rem, 4vw, 3rem); }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.lede {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 46ch;
  line-height: 1.7;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 3.5rem;
}
.section-head.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 0.9rem 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--gold);
  color: #17140d;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  padding: 0.9rem 1.6rem;
}
.btn-ghost:hover { border-color: var(--border-strong); color: var(--gold-light); }

.btn-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(23, 20, 13, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
  flex-shrink: 0;
}
.btn-primary:hover .btn-icon { transform: translate(2px, -2px) scale(1.05); }
.btn-icon svg { width: 14px; height: 14px; }

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.6rem;
}

/* ---------- nav ---------- */

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1.1rem 1.5rem 0;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 0.6rem 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.nav-brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.4s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta .btn-ghost { display: none; }

.nav-burger {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  position: relative;
  flex-shrink: 0;
}
.nav-burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1.5px;
  background: var(--text);
  transform: translate(-50%, -4px);
  transition: transform 0.5s var(--ease), opacity 0.3s var(--ease);
}
.nav-burger span:last-child { transform: translate(-50%, 3px); }
.nav-burger.open span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.nav-burger.open span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: rgba(8, 7, 6, 0.88);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-muted);
}
.nav-mobile a:hover { color: var(--gold-light); }

/* ---------- double-bezel card ---------- */

.bezel {
  padding: 0.4rem;
  border-radius: var(--radius-lg);
  background: rgba(245, 242, 236, 0.04);
  border: 1px solid var(--border);
}
.bezel-inner {
  border-radius: calc(var(--radius-lg) - 0.4rem);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
  background: var(--bg-elevated);
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- sections ---------- */

section { padding: clamp(4rem, 8vw, 7rem) 0; }

.hero {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 1.6rem; align-items: flex-start; }
.hero-actions { display: flex; align-items: center; gap: 1rem; margin-top: 0.6rem; flex-wrap: wrap; }
.hero-phone { display: flex; align-items: center; gap: 0.7rem; color: var(--text-muted); font-size: 0.92rem; }
.hero-phone strong { color: var(--text); font-weight: 600; }

.page-banner {
  padding: clamp(3.5rem, 8vw, 6rem) 0 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

/* ---------- grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
.bento .span-4 { grid-column: span 4; }
.bento .span-2 { grid-column: span 2; }
.bento .span-3 { grid-column: span 3; }

/* ---------- cards ---------- */

.card {
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-elevated-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.card-body p { color: var(--text-muted); font-size: 0.94rem; margin: 0; flex: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.4rem;
}
.card-link svg { width: 13px; height: 13px; transition: transform 0.4s var(--ease); }
.card-link:hover svg { transform: translate(3px, -2px); }

/* vehicle card */
.vcard { padding: 1.8rem; text-align: center; gap: 1.2rem; }
.vcard .card-media { aspect-ratio: 16/10; background: linear-gradient(180deg, var(--bg-elevated-2), var(--bg-elevated-3)); border-radius: var(--radius-sm); }
.vcard .card-media img { object-fit: contain; padding: 1rem; }
.vcard ul { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; color: var(--text-muted); font-size: 0.88rem; }
.vcard ul li { display: flex; align-items: center; gap: 0.5rem; }
.vcard ul svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* feature icon tile */
.feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.1);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature h3 { font-size: 1.05rem; }
.feature p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- FAQ ---------- */

.faq-list { display: flex; flex-direction: column; gap: 0.9rem; max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
}
.faq-q .chev { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; transition: transform 0.5s var(--ease); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.faq-a p { margin: 0; padding: 0 1.5rem 1.4rem; color: var(--text-muted); font-size: 0.92rem; }

/* ---------- CTA band ---------- */

.cta-band {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, var(--bg-elevated-2), var(--bg-elevated));
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

/* ---------- footer ---------- */

footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col span { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; }
.footer-contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.4s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-error {
  font-size: 0.78rem;
  color: var(--danger);
  min-height: 1em;
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }

.form-panel {
  padding: clamp(1.8rem, 4vw, 3rem);
}
.form-note { color: var(--text-faint); font-size: 0.82rem; margin-top: 1rem; }

.form-success {
  display: none;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(201, 162, 77, 0.08);
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-top: 1.2rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- contact info blocks ---------- */

.info-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-icon {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: rgba(201, 162, 77, 0.1); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center; color: var(--gold-light); flex-shrink: 0;
}
.info-icon svg { width: 17px; height: 17px; }
.info-row .label { font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.info-row .value { font-size: 0.98rem; color: var(--text); font-weight: 500; }

.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); filter: grayscale(1) invert(0.92) contrast(0.9); }
.map-frame iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .span-4, .bento .span-3, .bento .span-2 { grid-column: span 2; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: block; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: 3.5rem 0; }
  .nav-cta .btn-primary span:not(.btn-icon) { display: none; }
}

/* ---------- booking engine (v1) ---------- */
.booking-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: 2rem; align-items: start; }
.mode-switch { display: inline-flex; padding: 0.3rem; border-radius: 999px; background: var(--bg-elevated-2); border: 1px solid var(--border); margin-bottom: 1.4rem; }
.mode-switch button { border: 0; background: transparent; color: var(--text-muted); padding: 0.6rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: 0.88rem; transition: all 0.4s var(--ease); }
.mode-switch button.active { background: var(--gold); color: #17140d; }
.field.ac { position: relative; }
.ac-list { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30; background: var(--bg-elevated-2); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.ac-list.open { display: block; }
.ac-list li { padding: 0.75rem 1rem; font-size: 0.85rem; color: var(--text-muted); cursor: pointer; border-bottom: 1px solid var(--border); }
.ac-list li:last-child { border-bottom: 0; }
.ac-list li:hover { background: rgba(201,162,77,0.1); color: var(--text); }
.field .field-error { display: none; }
.field.invalid .field-error { display: block; }
.map-tools { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin: 1.1rem 0 0.8rem; }
.chip { border: 1px solid var(--border-strong); background: rgba(201,162,77,0.06); color: var(--gold-light); border-radius: 999px; padding: 0.45rem 0.95rem; font-size: 0.8rem; font-weight: 600; }
.chip:hover { background: rgba(201,162,77,0.14); }
.pin-hint { margin-left: auto; font-size: 0.78rem; color: var(--text-faint); }
.map-frame { position: relative; height: 380px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); background: var(--bg-elevated-2); }
#booking-map { width: 100%; height: 100%; }
.leaflet-container { background: var(--bg-elevated-2) !important; font-family: var(--font-body) !important; }
.leaflet-bar a { background: var(--bg-elevated-2) !important; color: var(--text) !important; border-color: var(--border) !important; }
.leaflet-control-attribution { background: rgba(10,9,8,0.7) !important; color: var(--text-faint) !important; font-size: 10px !important; }
.leaflet-control-attribution a { color: var(--text-muted) !important; }
.route-status { position: absolute; top: 0.8rem; left: 50%; transform: translateX(-50%); z-index: 500; background: rgba(10,9,8,0.85); color: var(--gold-light); font-size: 0.8rem; padding: 0.4rem 0.9rem; border-radius: 999px; border: 1px solid var(--border-strong); pointer-events: none; }
.route-status:empty { display: none; }
.vehicle-picker { margin-top: 1.4rem; }
.vehicle-picker > label { display: block; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-bottom: 0.6rem; }
#vehicle-cards { display: grid; gap: 0.7rem; }
.v-pick { display: grid; grid-template-columns: 96px 1fr auto; align-items: center; gap: 1rem; text-align: left; padding: 0.7rem 1rem 0.7rem 0.7rem; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-elevated-2); color: var(--text); transition: border-color 0.4s var(--ease), background 0.4s var(--ease); }
.v-pick:hover { border-color: var(--border-strong); }
.v-pick.selected { border-color: var(--gold); background: rgba(201,162,77,0.08); box-shadow: 0 0 0 1px var(--gold) inset; }
.v-pick img { width: 96px; height: 64px; object-fit: contain; }
.v-pick-body { display: flex; flex-direction: column; gap: 0.15rem; }
.v-pick-body strong { font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; }
.v-pick-body span { font-size: 0.78rem; color: var(--text-muted); }
.v-pick-price { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-light); white-space: nowrap; }
.v-pick-price small { font-family: var(--font-body); font-size: 0.72rem; color: var(--text-faint); }
.summary-card { position: sticky; top: 6rem; padding: 1.8rem; border-radius: var(--radius-lg); border: 1px solid var(--border-strong); background: linear-gradient(180deg, var(--bg-elevated-2), var(--bg-elevated)); display: flex; flex-direction: column; gap: 1.2rem; }
.sum-empty { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.sum-route { display: flex; gap: 0.8rem; font-size: 0.85rem; color: var(--gold-light); }
.sum-route span + span::before { content: '·'; margin-right: 0.8rem; color: var(--text-faint); }
.sum-veh { font-family: var(--font-display); font-size: 1.25rem; }
.sum-lines li { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-muted); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.6rem; }
.sum-total span { color: var(--text-muted); font-size: 0.85rem; }
.sum-total strong { font-family: var(--font-display); font-weight: 500; font-size: 2.4rem; color: var(--gold-light); }
.sum-note { font-size: 0.76rem; color: var(--text-faint); margin: 0; }
.trust { display: flex; flex-direction: column; gap: 0.55rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.trust li { font-size: 0.84rem; color: var(--text-muted); padding-left: 1.2rem; position: relative; }
.trust li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.send-box { display: none; margin-top: 1.4rem; padding: 1.3rem; border-radius: var(--radius-sm); border: 1px solid var(--border-strong); background: rgba(201,162,77,0.08); }
.send-box.show { display: block; }
.send-box p { margin: 0 0 0.9rem; color: var(--gold-light); font-size: 0.92rem; }
.send-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
@media (max-width: 980px) { .booking-layout { grid-template-columns: 1fr; } .summary-card { position: static; } }
@media (max-width: 640px) { .v-pick { grid-template-columns: 72px 1fr auto; } .v-pick img { width: 72px; height: 48px; } .map-frame { height: 320px; } .pin-hint { margin-left: 0; width: 100%; } }
.leaflet-tile-pane { filter: invert(1) hue-rotate(190deg) brightness(0.72) contrast(0.95) saturate(0.35) sepia(0.25); }
