:root {
  color-scheme: dark;
  --black: #030303;
  --black-soft: #0a0a0a;
  --ink: #111111;
  --panel: rgba(16, 15, 13, 0.84);
  --panel-solid: #11100e;
  --gold: #d8ad54;
  --gold-bright: #f3cf7a;
  --gold-deep: #9f7430;
  --ivory: #f7f1e4;
  --muted: #b8b0a0;
  --line: rgba(216, 173, 84, 0.26);
  --line-soft: rgba(247, 241, 228, 0.12);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --serif: Cinzel, "Trajan Pro", "Times New Roman", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.2), rgba(3, 3, 3, 1) 82%),
    var(--black);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 48px;
  background: rgba(3, 3, 3, 0.62);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-elevated {
  background: rgba(3, 3, 3, 0.9);
  border-color: var(--white-line);
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.brand-lockup span {
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--black);
  box-shadow: 0 0 36px rgba(216, 173, 84, 0.12);
}

.brand-lockup strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.1;
}

.brand-lockup small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(247, 241, 228, 0.76);
  font-size: 0.9rem;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav a[aria-current="page"] {
  color: var(--ivory);
}

.header-actions,
.hero-actions,
.cta-actions,
.form-actions,
.fast-book-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.text-button,
.icon-button,
.mode-button,
.step,
.chat-chips button {
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.text-button:hover,
.text-button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible,
.mode-button:hover,
.mode-button:focus-visible {
  transform: translateY(-1px);
}

.button-gold {
  color: #130e05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 52%, #bd8b3b);
  box-shadow: 0 12px 34px rgba(216, 173, 84, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 16px 42px rgba(216, 173, 84, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button-outline,
.button-ghost {
  border: 1px solid var(--line);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost.dark,
.button-outline.dark {
  color: var(--ink);
  background: rgba(3, 3, 3, 0.04);
  border-color: rgba(17, 17, 17, 0.16);
}

.button.compact {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  background: transparent;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--ivory);
}

.section-dark {
  background: var(--black);
  color: var(--ivory);
}

.route-main > section:first-child {
  padding-top: 150px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: center;
  padding: 150px 48px 120px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 38%, rgba(0, 0, 0, 0.18) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.92) 100%);
  content: "";
}

.hero-sheen {
  position: absolute;
  right: -18%;
  bottom: 10%;
  z-index: -1;
  width: 54%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 207, 122, 0.9), transparent);
  box-shadow: 0 0 42px rgba(216, 173, 84, 0.72);
  transform: rotate(-9deg);
  opacity: 0.7;
}

.hero-content {
  max-width: 680px;
}

.hero-logo {
  width: min(220px, 46vw);
  height: auto;
  margin: 0 0 22px;
  border: 1px solid rgba(216, 173, 84, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34), 0 0 38px rgba(216, 173, 84, 0.12);
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--gold-deep);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.03;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 4.6rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.hero-tagline {
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(247, 241, 228, 0.78);
  font-size: 1.08rem;
}

.hero-booking-panel {
  position: absolute;
  right: 48px;
  bottom: 28px;
  left: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.64);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-booking-panel strong {
  display: block;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  gap: 10px;
  padding: 20px;
  color: rgba(247, 241, 228, 0.78);
  background: #070707;
  text-align: center;
}

.trust-item span {
  color: var(--gold-bright);
}

.brand-section,
.booking-section,
.reviews-section {
  padding: 110px 48px;
  background: #f6f0e4;
  color: var(--ink);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.68fr);
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-section .section-kicker {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.brand-section h2 {
  max-width: 760px;
}

.narrative {
  color: rgba(17, 17, 17, 0.74);
  font-size: 1.06rem;
}

.signature-line {
  margin-top: 28px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.fleet-section {
  padding: 110px 48px;
  background:
    linear-gradient(180deg, #060504 0%, #0a0907 100%);
}

.fleet-header {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.62fr);
  gap: 54px;
  max-width: 1180px;
  margin: 0 auto 34px;
  align-items: end;
}

.fleet-header h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.fleet-header p:last-child {
  margin-bottom: 0;
  color: rgba(247, 241, 228, 0.72);
}

.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.fleet-card {
  overflow: hidden;
  border: 1px solid rgba(216, 173, 84, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.fleet-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.44;
  object-fit: cover;
  background: #050403;
}

.fleet-card-body {
  padding: 20px;
  border-top: 1px solid rgba(216, 173, 84, 0.16);
}

.fleet-card-body h3 {
  margin-bottom: 8px;
  color: var(--ivory);
  font-size: 1.2rem;
}

.fleet-card-body p {
  margin-bottom: 0;
  color: rgba(247, 241, 228, 0.68);
}

.services-section,
.portal-section,
.cta-band {
  padding: 110px 48px;
}

.section-heading {
  max-width: 1120px;
  margin: 0 auto 44px;
}

.section-heading h2 {
  max-width: 780px;
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card,
.testimonial-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(243, 207, 122, 0.62);
  background: linear-gradient(180deg, rgba(216, 173, 84, 0.14), rgba(255, 255, 255, 0.025));
}

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

.service-card p,
.testimonial-card p {
  color: rgba(247, 241, 228, 0.72);
}

.service-card .text-button {
  margin-top: 20px;
  padding: 0;
}

.booking-workspace,
.portal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.booking-steps,
.account-panel,
.dashboard-panel,
.booking-form,
.review-composer,
.concierge-panel {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.09);
}

.booking-steps {
  display: flex;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 0 22px;
  color: rgba(17, 17, 17, 0.6);
  background: transparent;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.step:last-child {
  border-bottom: 0;
}

.step span {
  color: var(--gold-deep);
  font-family: var(--serif);
}

.step.is-active {
  color: var(--ink);
  background: rgba(216, 173, 84, 0.14);
}

.booking-form,
.account-panel,
.dashboard-panel,
.review-composer {
  padding: 28px;
}

.booking-mode,
.auth-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 4px;
  padding: 4px;
  margin-bottom: 26px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.04);
}

.mode-button {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.62);
  background: transparent;
  font-weight: 800;
}

.mode-button.is-active {
  color: #120d04;
  background: var(--gold);
}

.booking-pane,
.auth-form {
  display: none;
}

.booking-pane.is-active,
.auth-form.is-active {
  display: block;
}

.pane-heading p,
.empty-state,
.status-note {
  color: rgba(17, 17, 17, 0.62);
}

.service-selector,
.vehicle-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.service-selector label,
.vehicle-selector label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.025);
}

.vehicle-selector {
  grid-template-columns: 1fr;
}

.vehicle-selector small {
  display: block;
  margin-top: 4px;
  color: rgba(17, 17, 17, 0.56);
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: var(--gold-deep);
}

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

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

label,
.full-label {
  display: grid;
  gap: 7px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  padding: 11px 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-deep);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(216, 173, 84, 0.18);
}

.full-label {
  margin-top: 16px;
}

.form-actions {
  margin-top: 24px;
}

.fast-book-row {
  margin: 8px 0 20px;
}

.guest-only.is-muted {
  opacity: 0.54;
}

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

.summary-item {
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.035);
}

.summary-item span {
  display: block;
  margin-bottom: 4px;
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portal-section .portal-layout {
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.9fr);
}

.portal-section .account-panel,
.portal-section .dashboard-panel {
  color: var(--ivory);
  background: var(--panel-solid);
  border-color: var(--line);
}

.portal-section label,
.portal-section .pane-heading p,
.portal-section .empty-state,
.portal-section .status-note {
  color: rgba(247, 241, 228, 0.66);
}

.portal-section input,
.portal-section select,
.portal-section textarea,
.concierge-panel input,
.concierge-panel select,
.concierge-panel textarea {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.portal-section input:focus,
.portal-section select:focus,
.portal-section textarea:focus,
.concierge-panel input:focus,
.concierge-panel select:focus,
.concierge-panel textarea:focus {
  background: rgba(255, 255, 255, 0.1);
}

.auth-form {
  gap: 14px;
}

.auth-form.is-active,
.preferences-form,
.chat-lead-form {
  display: grid;
  gap: 14px;
}

.account-status {
  margin-top: 18px;
  color: var(--gold-bright);
  min-height: 24px;
}

.dashboard-header,
.mini-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-header {
  margin-bottom: 24px;
}

.dashboard-header h3 {
  margin-bottom: 0;
}

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

.dashboard-section {
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.ride-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.ride-item {
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.16);
}

.ride-item strong,
.ride-item span {
  display: block;
}

.ride-item span {
  color: rgba(247, 241, 228, 0.62);
  font-size: 0.86rem;
}

.preferences-form {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.testimonial-card {
  min-height: 220px;
  color: var(--ivory);
  background: #11100e;
}

.stars {
  color: var(--gold-bright);
  margin-bottom: 18px;
}

.testimonial-author {
  margin-top: 22px;
  color: rgba(247, 241, 228, 0.68);
  font-weight: 800;
}

.review-composer {
  max-width: 760px;
  margin: 0 auto;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 48px;
  color: rgba(247, 241, 228, 0.68);
  background: var(--black);
}

.concierge-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #130e05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38), 0 0 30px rgba(216, 173, 84, 0.24);
  font-weight: 900;
  transition: opacity 180ms ease, transform 180ms ease;
}

.concierge-panel {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 80;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(420px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 124px));
  padding: 18px;
  color: var(--ivory);
  background: rgba(13, 12, 10, 0.96);
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.concierge-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.concierge-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.concierge-header h2 {
  margin-bottom: 0;
  font-size: 1.42rem;
}

.concierge-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 16px 4px 14px;
}

.icon-button {
  display: grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease;
}

.icon-button.gold {
  color: #130e05;
  background: var(--gold);
}

.chat-log {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
}

.message {
  max-width: min(88%, 340px);
  padding: 12px 14px;
  border-radius: var(--radius);
  color: rgba(247, 241, 228, 0.86);
  background: rgba(255, 255, 255, 0.065);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.message.user {
  align-self: flex-end;
  justify-self: end;
  color: #130e05;
  background: var(--gold);
}

.chat-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.chat-chips button {
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-align: center;
}

.chat-lead-form {
  flex: 0 0 auto;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.concierge-panel label {
  color: rgba(247, 241, 228, 0.82);
}

.concierge-panel .chat-lead-form label {
  font-size: 0.82rem;
  letter-spacing: 0;
}

.chat-lead-form .mini-heading {
  flex-wrap: wrap;
  row-gap: 8px;
}

.chat-lead-form .mini-heading h3 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 0;
}

.chat-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  background: rgba(13, 12, 10, 0.96);
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-10px, -6px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .primary-nav {
    display: none;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.5rem;
  }

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

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

  .portal-section .portal-layout,
  .booking-workspace {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .step {
    justify-content: center;
    min-height: 58px;
    padding: 0 12px;
    border-bottom: 0;
    border-right: 1px solid rgba(17, 17, 17, 0.08);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .primary-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
    font-size: 0.78rem;
  }

  .primary-nav a {
    display: grid;
    min-height: 34px;
    place-items: center;
    padding: 0 6px;
    border: 1px solid rgba(216, 173, 84, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    text-align: center;
    white-space: nowrap;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a[aria-current="page"] {
    color: #130e05;
    background: var(--gold);
  }

  .header-actions .text-button {
    display: none;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 96svh;
    padding: 164px 20px 180px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.92));
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-booking-panel {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-strip,
  .split-layout,
  .fleet-header,
  .fleet-gallery,
  .service-grid,
  .testimonial-grid,
  .dashboard-grid,
  .form-grid,
  .service-selector,
  .booking-summary,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .brand-section,
  .fleet-section,
  .booking-section,
  .reviews-section,
  .services-section,
  .portal-section,
  .cta-band {
    padding: 78px 20px;
  }

  .route-main > section:first-child {
    padding-top: 156px;
  }

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

  .site-footer {
    align-items: start;
    flex-direction: column;
    padding: 34px 20px 110px;
  }

  .concierge-launcher {
    right: 16px;
    bottom: 16px;
  }

  .concierge-launcher[aria-expanded="true"] {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }

  .concierge-panel {
    inset: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    width: auto;
    max-height: none;
    height: auto;
    padding: 14px;
    background: #0d0c0a;
  }

  .concierge-header h2 {
    font-size: 1.16rem;
  }

  .concierge-body {
    padding: 14px 2px;
  }

  .chat-input-row {
    padding-top: 12px;
    background: #0d0c0a;
  }
}

@media (max-width: 520px) {
  .brand-lockup small {
    display: none;
  }

  .button {
    width: 100%;
  }

  .header-actions .button {
    width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
    gap: 0;
  }

  .header-actions .button span {
    font-size: 1rem;
  }

  .brand-lockup strong {
    font-size: 0.94rem;
    white-space: nowrap;
  }

  h1 {
    font-size: 2.24rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .hero-tagline {
    font-size: 1.18rem;
  }

  .hero-logo {
    width: min(170px, 58vw);
  }

  .booking-form,
  .account-panel,
  .dashboard-panel,
  .review-composer {
    padding: 20px;
  }

  .booking-mode,
  .auth-tabs {
    width: 100%;
  }

  .step {
    font-size: 0.86rem;
  }

  .primary-nav {
    gap: 4px;
    font-size: 0.74rem;
  }

  .chat-log {
    min-height: auto;
  }

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

  .chat-chips button:last-child {
    grid-column: 1 / -1;
  }

  .message {
    max-width: 92%;
    font-size: 0.98rem;
  }

  .chat-lead-form {
    padding: 12px;
  }

  .chat-input-row {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .chat-input-row input {
    min-width: 0;
  }
}
