:root {
  --font-display: "Cormorant Garamond";
  --font-sans: "Manrope";
  --black: #111810;
  --ink: #181c16;
  --charcoal: #1d261c;
  --graphite: #30382d;
  --silver: #c5c0b2;
  --silver-light: #e8e2d3;
  --gold: #b98333;
  --gold-bright: #d3a65a;
  --gold-pale: #efe1bd;
  --ivory: #f6efdf;
  --white: #fffaf0;
  --muted: #6c7068;
  --line: rgba(24, 28, 22, 0.14);
  --shadow: 0 28px 80px rgba(11, 18, 10, 0.19);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans), Arial, sans-serif;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

button {
  cursor: pointer;
}

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

img {
  display: block;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip-link {
  background: var(--black);
  border: 1px solid var(--gold-bright);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  left: 14px;
  padding: 12px 16px;
  position: fixed;
  top: 14px;
  transform: translateY(-180%);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

#main-content:focus {
  outline: none;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  padding: 120px 0;
}

.site-header {
  align-items: center;
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 116px;
  left: 50%;
  max-width: 1370px;
  padding: 0 30px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0;
  width: max-content;
}

.brand-logo {
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.24));
  height: auto;
  object-fit: contain;
  width: 190px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand-copy small {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.46em;
  margin-top: 7px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 34px;
  justify-content: center;
}

.desktop-nav a,
.text-button {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.desktop-nav a:hover,
.text-button:hover {
  color: var(--gold-bright);
}

.calendar-nav {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  padding: 10px 15px;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 20px;
}

.gold-button {
  align-items: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 0;
  border-radius: 3px;
  color: var(--black);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.055em;
  padding: 17px 23px;
  text-transform: uppercase;
}

.gold-button:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.compact-button {
  padding: 13px 18px;
}

.menu-button {
  background: transparent;
  border: 0;
  color: var(--white);
  display: none;
  padding: 7px;
}

.mobile-nav {
  background: rgba(17, 24, 16, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: none;
  left: 20px;
  padding: 12px;
  position: absolute;
  right: 20px;
  top: 98px;
}

.mobile-nav a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 17px 12px;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.hero {
  background: var(--black);
  color: var(--white);
  height: 820px;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 18, 10, 0.97) 0%, rgba(11, 18, 10, 0.75) 35%, rgba(11, 18, 10, 0.12) 72%),
    linear-gradient(0deg, rgba(11, 18, 10, 0.92) 0%, transparent 36%),
    linear-gradient(180deg, rgba(11, 18, 10, 0.64) 0%, transparent 25%);
  inset: 0;
  position: absolute;
}

.hero-content {
  padding-top: 210px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: #745f33;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--gold);
  height: 1px;
  width: 38px;
}

.eyebrow.light {
  color: var(--gold-bright);
}

.hero h1 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(64px, 7.4vw, 112px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.8;
  margin: 34px 0 32px;
  max-width: 710px;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-content > p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  max-width: 580px;
}

.hero-trust {
  align-items: center;
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.hero-trust div {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-trust svg {
  color: var(--gold-bright);
}

.scroll-cue {
  align-items: center;
  bottom: 116px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 9px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.19em;
  position: absolute;
  right: 50px;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
  z-index: 2;
}

.scroll-line {
  background: rgba(255, 255, 255, 0.5);
  height: 1px;
  width: 56px;
}

.booking-wrap {
  margin-top: -85px;
  position: relative;
  z-index: 5;
}

.booking-wrap.shell {
  width: min(1370px, calc(100% - 48px));
}

.booking-card {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0 28px 28px;
}

.ride-tabs {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.ride-tabs button {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #777;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.04em;
  margin-bottom: -1px;
  min-height: 58px;
  padding: 0 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ride-tabs button:hover {
  color: var(--black);
}

.ride-tabs button.active {
  border-bottom-color: var(--gold);
  color: var(--black);
}

.ride-tabs button.active svg {
  color: var(--gold);
}

.booking-form {
  align-items: flex-end;
  display: grid;
  gap: 0;
  grid-template-columns:
    minmax(0, 2fr)
    minmax(0, 1.45fr)
    minmax(118px, 0.9fr)
    minmax(128px, 1fr)
    minmax(88px, 0.7fr)
    194px;
  padding-top: 24px;
}

.booking-form.is-hourly {
  grid-template-columns:
    minmax(0, 1.65fr)
    minmax(0, 1.2fr)
    minmax(88px, 0.7fr)
    minmax(118px, 0.8fr)
    minmax(118px, 0.85fr)
    minmax(84px, 0.6fr)
    184px;
}

.booking-field {
  border-right: 1px solid var(--line);
  display: block;
  min-width: 0;
  padding: 2px 12px;
}

.booking-field > span {
  color: #8a8a86;
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 10px 27px;
  text-transform: uppercase;
}

.booking-field > div {
  align-items: center;
  display: flex;
  gap: 9px;
  min-width: 0;
}

.booking-field svg {
  color: var(--gold);
  flex: 0 0 auto;
}

.booking-field input,
.booking-field select {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  min-width: 0;
  outline: 0;
  padding: 4px 0;
  width: 100%;
}

.location-field input {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-field input:focus {
  text-overflow: clip;
}

.passenger-field > span {
  font-size: 8px;
  letter-spacing: 0.09em;
  margin-left: 0;
  text-align: center;
}

.booking-field select {
  cursor: pointer;
}

.booking-form-note {
  align-items: center;
  color: #777772;
  display: none;
  font-size: 9px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.06em;
  margin: 0;
  padding: 0 12px;
  text-transform: uppercase;
}

.booking-form-note > span {
  color: #8d6c2d;
}

.booking-submit {
  height: 58px;
  margin-left: 12px;
  min-width: 0;
  padding-left: 18px;
  padding-right: 18px;
  width: calc(100% - 12px);
}

@media (max-width: 1240px) and (min-width: 861px) {
  .booking-form {
    column-gap: 0;
    grid-template-columns: 1.6fr 1.35fr 0.8fr 0.75fr 0.65fr;
    row-gap: 18px;
  }

  .booking-form.is-hourly {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-form.is-hourly .booking-form-note {
    grid-column: 1 / 2;
  }

  .booking-form.is-hourly .booking-submit {
    grid-column: 2 / -1;
  }

  .booking-form-note {
    display: flex;
    grid-column: 1 / 4;
  }

  .booking-submit {
    grid-column: 4 / -1;
    margin-left: 0;
    width: 100%;
  }
}

.quote-panel {
  align-items: center;
  background: var(--black);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 1.25fr 1fr auto;
  margin-top: 12px;
  padding: 26px 28px;
}

.quote-kicker,
.modal-kicker {
  color: var(--gold-bright);
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.quote-panel h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  margin: 0;
}

.quote-panel > div:first-child > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  margin: 7px 0 0;
}

.quote-option {
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 13px;
  grid-template-columns: auto 1fr auto;
  padding-left: 28px;
}

.quote-option > svg {
  color: var(--gold-bright);
}

.quote-option div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-option div strong {
  font-size: 12px;
}

.quote-option div span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
}

.quote-price {
  color: var(--gold-bright);
  font-family: var(--font-display), Georgia, serif;
  font-size: 23px;
}

.estimate-note {
  color: #858580;
  font-size: 9px;
  margin: 8px 2px 0;
  text-align: right;
}

.proof-strip {
  background: var(--ivory);
  padding: 50px 0 26px;
}

.proof-grid {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 28px;
}

.proof-grid > div {
  align-items: baseline;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 4px 20px;
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 27px;
  font-weight: 600;
}

.proof-grid span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rating-proof span {
  align-items: center;
  display: flex;
  gap: 5px;
}

.rating-proof svg {
  color: var(--gold);
}

.section-heading h2,
.coverage-copy h2,
.how-intro h2,
.closing-cta h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 24px 0 0;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 56px;
}

.split-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 3px;
}

.services-section {
  background: var(--ivory);
}

.service-grid {
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-height: 345px;
  overflow: hidden;
  padding: 30px 28px;
  position: relative;
}

.service-card::after {
  background: var(--gold);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
  width: 100%;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-number {
  color: #aaa9a4;
  font-family: var(--font-display), Georgia, serif;
  font-size: 14px;
  position: absolute;
  right: 24px;
  top: 22px;
}

.service-icon {
  align-items: center;
  background: var(--black);
  color: var(--gold-bright);
  display: flex;
  height: 50px;
  justify-content: center;
  margin: 17px 0 38px;
  width: 50px;
}

.service-card h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0;
}

.service-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 17px 0 28px;
}

.service-card a {
  align-items: center;
  color: #7a6131;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card a:hover {
  gap: 12px;
}

.coverage-section {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0;
}

.coverage-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
}

.coverage-copy p {
  color: rgba(255, 255, 255, 0.61);
  font-size: 14px;
  line-height: 1.8;
  margin: 28px 0;
  max-width: 470px;
}

.coverage-list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0 38px;
}

.coverage-list span {
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  font-size: 11px;
  gap: 8px;
}

.coverage-list svg {
  color: var(--gold-bright);
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.light-link {
  border-bottom: 1px solid rgba(224, 194, 126, 0.55);
  color: var(--gold-bright);
  padding-bottom: 8px;
}

.coverage-map-shell {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.coverage-map {
  background: #161616;
  height: 430px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.coverage-map.is-unavailable {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 12px;
  justify-content: center;
  line-height: 1.7;
  padding: 40px;
  text-align: center;
}

.coverage-map .leaflet-tile-pane {
  filter: grayscale(1) brightness(0.53) contrast(1.18) sepia(0.16);
}

.coverage-map .leaflet-control-zoom {
  border: 1px solid rgba(224, 194, 126, 0.35);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.coverage-map .leaflet-control-zoom a {
  background: rgba(13, 13, 13, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: var(--gold-bright);
  font-family: var(--font-sans), Arial, sans-serif;
}

.coverage-map .leaflet-control-zoom a:hover,
.coverage-map .leaflet-control-zoom a:focus {
  background: #24211b;
  color: var(--white);
}

.coverage-map .leaflet-control-attribution {
  background: rgba(10, 10, 10, 0.82);
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.coverage-map .leaflet-control-attribution a {
  color: var(--gold-bright);
}

.coverage-map .leaflet-popup-content-wrapper,
.coverage-map .leaflet-popup-tip {
  background: #151515;
  color: var(--white);
}

.coverage-map .leaflet-popup-content-wrapper {
  border: 1px solid rgba(224, 194, 126, 0.38);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.coverage-map .leaflet-popup-content {
  font-family: var(--font-sans), Arial, sans-serif;
  line-height: 1.5;
  margin: 16px 18px;
}

.coverage-map .leaflet-popup-content strong {
  color: var(--gold-bright);
  display: flex;
  font-family: var(--font-display), Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.coverage-map .leaflet-popup-close-button {
  color: rgba(255, 255, 255, 0.7);
}

.rr-map-marker-shell {
  background: transparent;
  border: 0;
}

.rr-map-marker {
  align-items: center;
  background: #151515;
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  display: flex;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.rr-map-marker::after {
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(224, 194, 126, 0.18);
  content: "";
  height: 7px;
  width: 7px;
}

.coverage-map-meta {
  align-items: center;
  color: rgba(255, 255, 255, 0.52);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.05em;
  padding: 14px 17px;
  text-transform: uppercase;
}

.coverage-map-meta span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.coverage-map-meta i {
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(224, 194, 126, 0.12);
  height: 6px;
  width: 6px;
}

.rr-map-fallback {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  padding: 18px;
}

.fleet-section {
  background: #101010;
  color: var(--white);
}

.fleet-heading > p {
  color: rgba(255, 255, 255, 0.57);
}

.fleet-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

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

.available-fleet-grid .fleet-card {
  display: block;
}

.available-fleet-grid .vehicle-art {
  height: 285px;
  min-height: 0;
}

.available-fleet-grid .fleet-copy {
  display: flex;
  flex-direction: column;
  min-height: 315px;
}

.fleet-card {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.fleet-card:hover {
  border-color: rgba(207, 174, 104, 0.5);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  transform: translateY(-4px);
}

.fleet-card.is-selected {
  border-color: var(--gold-bright);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.36);
}

.vehicle-art {
  background: #0d0d0d;
  height: 238px;
  overflow: hidden;
  position: relative;
}

.vehicle-art::after {
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.68));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.vehicle-art img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.fleet-card:hover .vehicle-art img {
  transform: scale(1.035);
}

.vehicle-art > span {
  background: var(--gold);
  bottom: 0;
  color: var(--black);
  font-size: 8px;
  font-weight: 800;
  left: 0;
  letter-spacing: 0.08em;
  padding: 9px 13px;
  position: absolute;
  text-transform: uppercase;
  z-index: 3;
}

.fleet-copy {
  padding: 27px;
}

.fleet-copy > span {
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-copy h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 33px;
  font-weight: 500;
  margin: 7px 0 23px;
}

.fleet-copy > div {
  display: flex;
  gap: 22px;
}

.fleet-copy p {
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  font-size: 9px;
  gap: 6px;
  margin: 0;
}

.fleet-copy p svg {
  color: var(--silver);
}

.fleet-copy > .fleet-price-line,
.fleet-copy > .fleet-hourly-line {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 13px;
}

.fleet-copy > .fleet-hourly-line {
  color: var(--gold-bright);
  margin-top: 4px;
}

.fleet-copy button {
  align-items: center;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-bright);
  display: flex;
  font-size: 9px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-top: 26px;
  padding: 17px 0 0;
  text-transform: uppercase;
  width: 100%;
}

.unavailable-fleet {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 58px;
  padding-top: 38px;
}

.unavailable-fleet-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.unavailable-fleet-heading span {
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.unavailable-fleet-heading h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  margin: 5px 0 0;
}

.unavailable-fleet-heading p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.6;
  margin: 0;
  max-width: 390px;
  text-align: right;
}

.fleet-card-unavailable {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  opacity: 0.62;
}

.fleet-card-unavailable:hover {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transform: none;
}

.fleet-card-unavailable .vehicle-art img {
  filter: grayscale(1);
}

.fleet-card-unavailable:hover .vehicle-art img {
  transform: none;
}

.fleet-card-unavailable .vehicle-art > span {
  background: #d0d0c8;
}

.fleet-copy .unavailable-message {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  margin-top: 20px;
  padding-top: 15px;
}

.fleet-copy button:hover {
  gap: 13px;
}

.fleet-copy button[aria-pressed="true"] {
  color: var(--white);
}

.how-section {
  background: var(--ivory);
}

.how-grid {
  align-items: center;
  display: grid;
  gap: 100px;
  grid-template-columns: 0.8fr 1.2fr;
}

.how-intro > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 26px 0 32px;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 48px 1fr auto;
  padding: 30px 0;
}

.step > span {
  color: var(--gold);
  font-family: var(--font-display), Georgia, serif;
  font-size: 21px;
}

.step h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 6px;
}

.step p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.step > svg {
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #8a6b2d;
  padding: 4px;
}

.testimonial-section {
  background:
    linear-gradient(90deg, rgba(17, 24, 16, 0.97), rgba(17, 24, 16, 0.9)),
    url("../images/reigns-rides-hero.jpg") center 64% / cover;
  color: var(--white);
  padding: 110px 0;
}

.testimonial-grid {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 250px 1fr;
}

.testimonial-mark {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  height: 230px;
  justify-content: center;
  position: relative;
}

.testimonial-mark::before,
.testimonial-mark::after {
  background: var(--gold);
  content: "";
  height: 1px;
  position: absolute;
  width: 45px;
}

.testimonial-mark::before { left: -22px; top: 50%; }
.testimonial-mark::after { right: -22px; top: 50%; }

.testimonial-mark img {
  height: auto;
  object-fit: contain;
  width: 220px;
}

blockquote {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(30px, 3.7vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  max-width: 790px;
}

.stars {
  color: var(--gold-bright);
  display: flex;
  gap: 6px;
  margin-bottom: 25px;
}

blockquote footer {
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans), Arial, sans-serif;
  gap: 4px;
  margin-top: 28px;
}

blockquote footer strong {
  color: var(--gold-bright);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

blockquote footer span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.closing-cta {
  background: var(--gold-pale);
  padding: 105px 0;
  text-align: center;
}

.closing-cta .shell {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.closing-cta > .shell > svg {
  color: #8e6f31;
}

.closing-cta h2 {
  margin-top: 20px;
}

.closing-cta p {
  color: var(--muted);
  font-size: 13px;
  margin: 20px 0 30px;
}

.site-footer {
  background: #0d140c;
  color: var(--white);
  padding: 75px 0 25px;
}

.footer-logo {
  filter: none;
  width: 235px;
}

.footer-grid {
  display: grid;
  gap: 55px;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  padding-bottom: 60px;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  line-height: 1.7;
  margin: 22px 0;
  max-width: 280px;
}

.service-hours {
  align-items: center;
  color: var(--gold-bright);
  display: flex;
  font-size: 9px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  color: var(--gold-bright);
  font-size: 9px;
  letter-spacing: 0.14em;
  margin: 6px 0 13px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  margin: 0;
}

.footer-column a:hover {
  color: var(--white);
}

.contact-column a {
  align-items: center;
  display: flex;
  gap: 8px;
}

.contact-column svg {
  color: var(--gold);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.28);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.04em;
  padding-top: 25px;
}

.footer-legal {
  align-items: center;
  display: flex;
  gap: 12px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.46);
}

.footer-legal a:hover {
  color: var(--white);
}

.modal-backdrop {
  align-items: center;
  background: rgba(0, 0, 0, 0.76);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 100;
}

.booking-modal {
  background: var(--ivory);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
  max-height: calc(100vh - 48px);
  max-width: 620px;
  overflow-y: auto;
  padding: 45px;
  position: relative;
  width: 100%;
}

.modal-close {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
}

.booking-modal h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  margin: 11px 0 24px;
}

.modal-trip {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: flex;
  font-size: 9px;
  gap: 12px;
  justify-content: center;
  line-height: 1.5;
  margin-bottom: 26px;
  padding: 14px;
  text-align: center;
}

.modal-trip svg {
  color: var(--gold-bright);
  flex: 0 0 auto;
}

.booking-modal form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.booking-modal label {
  color: #696964;
  display: flex;
  flex-direction: column;
  font-size: 9px;
  font-weight: 800;
  gap: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-modal input,
.booking-modal textarea {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  outline: 0;
  padding: 13px 14px;
  text-transform: none;
}

.booking-modal input:focus,
.booking-modal textarea:focus {
  border-color: var(--gold);
}

.booking-modal textarea {
  min-height: 90px;
  resize: vertical;
}

.modal-field-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.booking-modal form .gold-button {
  margin-top: 4px;
}

.booking-confirmation {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 30px 10px 14px;
  text-align: center;
}

.booking-confirmation > svg {
  color: #8b6b2c;
}

.booking-confirmation > span {
  color: #84662c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-top: 18px;
  text-transform: uppercase;
}

.booking-confirmation p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0 0 25px;
  max-width: 440px;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 24px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .text-button {
    display: none;
  }

  .event-layout {
    grid-template-columns: 330px 1fr;
  }

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

  .quote-panel > button {
    grid-column: 2;
    justify-self: end;
  }

  .coverage-grid {
    gap: 50px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 32px, 720px);
  }

  .booking-wrap.shell {
    width: min(100% - 32px, 720px);
  }

  .section-pad {
    padding: 88px 0;
  }

  .site-header {
    height: 92px;
  }

  .brand-logo {
    width: 155px;
  }

  .desktop-nav,
  .header-actions > .gold-button {
    display: none;
  }

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

  .menu-button,
  .mobile-nav {
    display: flex;
  }

  .mobile-nav {
    flex-direction: column;
    top: 84px;
  }

  .hero {
    height: 760px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 18, 10, 0.94) 0%, rgba(11, 18, 10, 0.67) 62%, rgba(11, 18, 10, 0.22)),
      linear-gradient(0deg, rgba(11, 18, 10, 0.94) 0%, transparent 44%);
  }

  .hero-content {
    padding-top: 160px;
  }

  .hero h1 {
    font-size: clamp(62px, 15vw, 90px);
    max-width: 600px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .booking-wrap {
    margin-top: -92px;
  }

  .booking-card {
    padding: 0 22px 22px;
  }

  .booking-form {
    gap: 16px 0;
    grid-template-columns: 1fr 1fr;
  }

  .booking-field {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 10px 16px 17px;
  }

  .location-field {
    grid-column: span 2;
  }

  .passenger-field {
    display: block;
  }

  .booking-submit {
    grid-column: span 2;
    margin-left: 0;
    width: 100%;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div {
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
    padding: 18px;
  }

  .proof-grid > div:nth-child(3),
  .proof-grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .split-heading,
  .events-heading {
    align-items: start;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .event-source-note {
    justify-self: start;
  }

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

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    height: 390px;
  }

  .event-layout {
    grid-template-columns: 1fr;
  }

  .calendar-panel {
    position: static;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .vehicle-art {
    height: 100%;
    min-height: 260px;
  }

  .how-grid {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    gap: 45px;
    grid-template-columns: 220px 1fr;
  }

  .testimonial-mark {
    height: 170px;
  }

  .testimonial-mark img {
    height: auto;
    width: 200px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 580px) {
  .shell {
    width: calc(100% - 24px);
  }

  .booking-wrap.shell {
    width: calc(100% - 24px);
  }

  .site-header {
    padding: 0 15px;
  }

  .brand-logo {
    width: 140px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    height: 760px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-content {
    padding-top: 145px;
  }

  .hero h1 {
    font-size: 63px;
    line-height: 0.86;
    margin: 28px 0 26px;
  }

  .hero-content > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .ride-tabs button {
    font-size: 9px;
    min-height: 54px;
    padding: 0 12px;
  }

  .booking-card {
    padding: 0 14px 18px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .location-field,
  .booking-submit {
    grid-column: span 1;
  }

  .booking-field {
    padding-left: 10px;
    padding-right: 10px;
  }

  .quote-panel {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 23px 20px;
  }

  .quote-option {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0 0;
  }

  .quote-panel > button {
    grid-column: 1;
    justify-self: stretch;
  }

  .proof-strip {
    padding-top: 30px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div {
    border-bottom: 1px solid var(--line) !important;
    border-right: 0;
  }

  .proof-grid > div:last-child {
    border-bottom: 0 !important;
  }

  .section-heading h2,
  .coverage-copy h2,
  .how-intro h2,
  .closing-cta h2 {
    font-size: 46px;
  }

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

  .service-card {
    min-height: 315px;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    height: 330px;
  }

  .coverage-map-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .event-source-note {
    max-width: none;
  }

  .calendar-panel {
    padding: 21px;
  }

  .event-filters {
    overflow-x: auto;
  }

  .event-row {
    align-items: start;
    gap: 14px;
    grid-template-columns: 58px 1fr;
    padding: 22px 0;
  }

  .event-row:hover,
  .event-row.selected {
    padding-left: 10px;
    padding-right: 10px;
  }

  .event-date {
    min-height: 72px;
  }

  .event-date strong {
    font-size: 31px;
  }

  .event-info h3 {
    font-size: 21px;
  }

  .event-actions {
    align-items: flex-start;
    flex-direction: row;
    grid-column: 2;
  }

  .fleet-card {
    display: block;
  }

  .available-fleet-grid .fleet-card {
    display: block;
  }

  .available-fleet-grid .vehicle-art {
    height: 260px;
    min-height: 0;
  }

  .available-fleet-grid .fleet-copy {
    min-height: 0;
  }

  .unavailable-fleet-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .unavailable-fleet-heading p {
    text-align: left;
  }

  .vehicle-art {
    height: 220px;
    min-height: 0;
  }

  .how-section {
    padding-top: 78px;
  }

  .step {
    gap: 16px;
    grid-template-columns: 38px 1fr auto;
  }

  .testimonial-section {
    padding: 80px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-mark {
    height: 145px;
    width: 220px;
  }

  .testimonial-mark img {
    height: auto;
    width: 190px;
  }

  blockquote {
    font-size: 31px;
  }

  .footer-grid {
    gap: 40px 24px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .contact-column {
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .booking-modal {
    padding: 38px 22px 25px;
  }

  .booking-modal h2 {
    font-size: 39px;
  }

  .modal-field-row {
    grid-template-columns: 1fr;
  }
}

/* Focused landing hero: premium marketing above the streamlined booking flow. */
.landing-hero {
  align-items: flex-end;
  background: #090d0a;
  color: #fff;
  display: flex;
  isolation: isolate;
  min-height: clamp(650px, 78vh, 820px);
  overflow: hidden;
  position: relative;
}

.landing-hero-image,
.landing-hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.landing-hero-image {
  object-fit: cover;
  object-position: 58% center;
  z-index: -2;
}

.landing-hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 8, 5, 0.92) 0%, rgba(4, 8, 5, 0.72) 34%, rgba(4, 8, 5, 0.14) 72%),
    linear-gradient(180deg, rgba(4, 8, 5, 0.06) 45%, rgba(4, 8, 5, 0.78) 100%);
  z-index: -1;
}

.landing-hero-content {
  padding-bottom: clamp(70px, 9vh, 110px);
  padding-top: 110px;
}

.landing-hero-eyebrow {
  color: var(--gold-bright);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.landing-hero h1 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(58px, 6.2vw, 94px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0;
  max-width: 760px;
}

.landing-hero-content > p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.75;
  margin: 26px 0 0;
  max-width: 650px;
}

.landing-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.landing-hero-actions .gold-button {
  min-width: 190px;
}

.landing-hero-call {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.09em;
  padding: 13px 2px 10px;
  text-transform: uppercase;
}

.landing-hero-call:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.landing-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 42px;
}

.landing-hero-proof span {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-hero-proof i {
  color: var(--gold-bright);
  font-style: normal;
}

@media (max-width: 900px) {
  .landing-hero {
    min-height: 680px;
  }

  .landing-hero-image {
    object-position: 64% center;
  }

  .landing-hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 8, 5, 0.9), rgba(4, 8, 5, 0.42)),
      linear-gradient(180deg, rgba(4, 8, 5, 0.06) 30%, rgba(4, 8, 5, 0.88) 100%);
  }
}

@media (max-width: 580px) {
  .landing-hero {
    min-height: 650px;
  }

  .landing-hero-image {
    object-position: 66% center;
  }

  .landing-hero-content {
    padding-bottom: 48px;
    padding-top: 170px;
  }

  .landing-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .landing-hero-content > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .landing-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 26px;
  }

  .landing-hero-proof {
    gap: 10px 18px;
    margin-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress integration and local booking UI */
.admin-bar .site-header {
  top: 32px;
}

.rr-hidden,
[hidden] {
  display: none !important;
}

.rr-notice {
  border: 1px solid;
  border-radius: 2px;
  margin: 0 0 18px;
  padding: 16px 20px;
}

.rr-notice strong {
  display: block;
  font-family: var(--font-display), Georgia, serif;
  font-size: 21px;
  margin-bottom: 3px;
}

.rr-notice-success {
  background: #f3f7ef;
  border-color: #82976c;
  color: #304126;
}

.rr-notice-error {
  background: #fff3f1;
  border-color: #b87569;
  color: #682d25;
}

.rr-icon,
.rr-field-icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.rr-field-icon {
  color: var(--gold);
  flex: 0 0 22px;
  font-size: 12px;
}

.rr-quote-car {
  align-items: center;
  background: var(--black);
  border: 1px solid rgba(200, 169, 105, 0.55);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.rr-honeypot {
  height: 1px !important;
  left: -10000px !important;
  overflow: hidden !important;
  position: absolute !important;
  width: 1px !important;
}

.rr-modal-open {
  overflow: hidden;
}

.booking-modal button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.rr-basic-page {
  margin: 0 auto;
  max-width: 900px;
  min-height: 65vh;
  padding: 180px 28px 90px;
}

.rr-basic-page h1 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 500;
}

.rr-basic-page a {
  color: #80632a;
  text-decoration: underline;
}

.rr-content-page {
  background: var(--ivory);
  min-height: 70vh;
}

.rr-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.72)),
    url("../images/reigns-rides-hero.jpg") center 58% / cover;
  color: var(--white);
  padding: 185px 0 84px;
}

.rr-page-hero h1 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(46px, 7vw, 78px);
  font-weight: 500;
  line-height: 0.96;
  margin: 22px 0 0;
}

.rr-page-content {
  padding-bottom: 100px;
  padding-top: 70px;
}

.rr-page-featured {
  margin: 0 0 48px;
}

.rr-page-featured img {
  display: block;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
}

.rr-page-prose {
  color: #34322f;
  font-size: 16px;
  line-height: 1.8;
  max-width: 820px;
}

.rr-page-prose .rr-page-lead {
  color: #1c1b19;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(25px, 3.6vw, 37px);
  line-height: 1.28;
  margin-bottom: 52px;
}

.rr-page-prose > :first-child {
  margin-top: 0;
}

.rr-page-prose h2,
.rr-page-prose h3,
.rr-page-prose h4 {
  color: var(--black);
  font-family: var(--font-display), Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
}

.rr-page-prose h2 {
  font-size: clamp(34px, 5vw, 50px);
  margin: 56px 0 20px;
}

.rr-page-prose h3 {
  font-size: 30px;
  margin: 42px 0 16px;
}

.rr-page-prose a {
  color: #80632a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rr-page-prose img {
  height: auto;
  max-width: 100%;
}

.rr-page-prose li {
  margin-bottom: 10px;
}

.rr-page-prose blockquote {
  border-left: 3px solid var(--gold);
  font-family: var(--font-display), Georgia, serif;
  font-size: 25px;
  margin: 42px 0;
  padding: 8px 0 8px 28px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .rr-page-hero {
    padding: 145px 0 65px;
  }

  .rr-page-content {
    padding-bottom: 72px;
    padding-top: 48px;
  }
}

/*
 * Booking-first refresh (v1.4.0)
 * A restrained, step-led reservation experience inspired by modern private
 * transportation portals while preserving the Reign's Rides identity.
 */
.site-header {
  background: #0c120d;
  height: 92px;
  left: auto;
  max-width: none;
  padding: 0 clamp(22px, 4vw, 64px);
  position: relative;
  top: auto;
  transform: none;
}

.admin-bar .site-header {
  top: auto;
}

.site-header .brand-logo {
  width: 162px;
}

.site-header .desktop-nav a,
.site-header .text-button {
  color: rgba(255, 250, 240, 0.78);
}

.site-header .desktop-nav a:hover,
.site-header .text-button:hover {
  color: var(--gold-bright);
}

.booking-experience {
  background: #fffdf8;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(600px, 1.12fr);
  min-height: 810px;
}

.booking-experience-visual {
  background: var(--black);
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.booking-experience-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 60% center;
  position: absolute;
  width: 100%;
}

.booking-experience-shade {
  background:
    linear-gradient(180deg, rgba(7, 12, 8, 0.14) 0%, rgba(7, 12, 8, 0.82) 80%, rgba(7, 12, 8, 0.96) 100%),
    linear-gradient(90deg, rgba(7, 12, 8, 0.56), rgba(7, 12, 8, 0.08));
  inset: 0;
  position: absolute;
}

.booking-experience-copy {
  bottom: clamp(46px, 7vw, 92px);
  color: var(--white);
  left: clamp(30px, 5vw, 76px);
  max-width: 510px;
  position: absolute;
  right: 30px;
  z-index: 2;
}

.booking-experience-copy h1 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(54px, 5.1vw, 82px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 27px 0 24px;
}

.booking-experience-copy h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.booking-experience-copy > p {
  color: rgba(255, 250, 240, 0.74);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  max-width: 465px;
}

.booking-experience-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
}

.booking-experience-trust span {
  align-items: center;
  color: rgba(255, 250, 240, 0.82);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-experience-trust i {
  color: var(--gold-bright);
  font-style: normal;
}

.booking-experience-form {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  padding: 54px clamp(34px, 5vw, 82px) 70px;
  scroll-margin-top: 18px;
}

.booking-flow-shell {
  max-width: 720px;
  width: 100%;
}

.booking-flow-intro > span {
  color: #86672e;
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.21em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.booking-flow-intro h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(39px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}

.booking-flow-intro p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  margin: 13px 0 0;
  max-width: 560px;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 34px 0 36px;
  padding: 0;
}

.booking-progress li {
  align-items: flex-start;
  color: #a09f99;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  position: relative;
}

.booking-progress li:not(:last-child)::after {
  background: #e8e5de;
  content: "";
  height: 2px;
  left: 38px;
  position: absolute;
  right: -5px;
  top: 14px;
}

.booking-progress li.active:not(:last-child)::after {
  background: linear-gradient(90deg, var(--gold) 0 32%, #e8e5de 32% 100%);
}

.booking-progress li > span {
  align-items: center;
  background: #aaa9a5;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 10px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  position: relative;
  width: 28px;
  z-index: 1;
}

.booking-progress li.active {
  color: #765a26;
}

.booking-progress li.active > span {
  background: var(--gold);
}

.booking-progress strong {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.25;
  max-width: 120px;
}

.booking-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.booking-section-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}

.ride-tabs {
  border: 1px solid #ddd9d0;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
}

.ride-tabs button {
  border: 0;
  border-right: 1px solid #ddd9d0;
  color: #565751;
  font-size: 10px;
  justify-content: center;
  letter-spacing: 0;
  margin: 0;
  min-height: 52px;
  padding: 0 10px;
  text-transform: none;
}

.ride-tabs button:last-child {
  border-right: 0;
}

.ride-tabs button.active {
  background: #f3ead7;
  border-bottom-color: transparent;
  box-shadow: inset 0 -2px 0 var(--gold);
  color: #795a23;
}

.booking-form,
.booking-form.is-hourly {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 22px;
}

.booking-field {
  background: #fff;
  border: 1px solid #dfdcd4;
  min-height: 78px;
  padding: 13px 15px;
}

.booking-field.location-field {
  grid-column: span 2;
}

.booking-field > span,
.passenger-field > span {
  color: #777871;
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 9px;
  text-align: left;
  text-transform: uppercase;
}

.booking-field > div {
  gap: 10px;
}

.booking-field input,
.booking-field select {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 0;
}

.booking-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(185, 131, 51, 0.11);
}

.booking-form-note {
  align-items: center;
  align-self: center;
  display: flex;
  grid-column: 1;
  padding: 0;
}

.booking-submit {
  grid-column: 2;
  height: 54px;
  justify-self: end;
  margin: 0;
  min-width: 200px;
  width: auto;
}

.quote-panel {
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 20px;
  padding: 24px;
}

.quote-option {
  border-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0 0;
}

.quote-panel > button {
  grid-column: 1;
  justify-self: end;
}

.estimate-note {
  line-height: 1.55;
  margin-top: 10px;
  text-align: left;
}

.proof-strip {
  background: #f6f1e6;
}

@media (max-width: 1120px) {
  .booking-experience {
    grid-template-columns: minmax(350px, 0.78fr) minmax(540px, 1.22fr);
  }

  .booking-experience-form {
    padding-left: 34px;
    padding-right: 34px;
  }

  .booking-progress strong {
    font-size: 8px;
  }
}

@media (max-width: 900px) {
  .booking-experience {
    display: block;
  }

  .booking-experience-visual {
    min-height: 540px;
  }

  .booking-experience-copy {
    max-width: 590px;
  }

  .booking-experience-copy h1 {
    font-size: clamp(58px, 10vw, 80px);
  }

  .booking-experience-form {
    padding: 56px 32px 70px;
  }

  .booking-flow-shell {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 82px;
  }

  .site-header .brand-logo {
    width: 145px;
  }

  .mobile-nav {
    top: 74px;
  }

  .booking-field {
    border-bottom: 1px solid #dfdcd4;
    border-right: 1px solid #dfdcd4;
    padding: 13px 15px;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 0 14px;
  }

  .site-header .brand-logo {
    width: 132px;
  }

  .booking-experience-visual {
    min-height: 450px;
  }

  .booking-experience-image {
    object-position: 64% center;
  }

  .booking-experience-copy {
    bottom: 34px;
    left: 22px;
    right: 22px;
  }

  .booking-experience-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .booking-experience-copy h1 {
    font-size: 49px;
    line-height: 0.94;
    margin: 21px 0 18px;
  }

  .booking-experience-copy > p {
    font-size: 12px;
    line-height: 1.6;
  }

  .booking-experience-trust {
    gap: 9px 14px;
    margin-top: 22px;
  }

  .booking-experience-trust span {
    font-size: 8px;
  }

  .booking-experience-form {
    padding: 42px 14px 56px;
  }

  .booking-flow-intro h2 {
    font-size: 41px;
  }

  .booking-progress {
    margin: 28px 0 32px;
  }

  .booking-progress li {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .booking-progress li:not(:last-child)::after {
    left: 36px;
    right: -4px;
  }

  .booking-progress strong {
    font-size: 7px;
    max-width: 78px;
  }

  .ride-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ride-tabs button:nth-child(2) {
    border-right: 1px solid #ddd9d0;
  }

  .booking-form,
  .booking-form.is-hourly {
    grid-template-columns: 1fr;
  }

  .booking-field.location-field,
  .booking-form-note,
  .booking-submit {
    grid-column: 1;
  }

  .booking-submit {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }

  .quote-panel > button {
    justify-self: stretch;
  }
}

/*
 * Reservation portal layout (v1.5.0)
 * Brings the first viewport closer to the clean, step-led Moovs experience
 * while retaining Reign's Rides typography, colors, and booking behavior.
 */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ebe9e3;
  color: var(--ink);
  height: 126px;
  padding-left: max(30px, calc((100vw - 1140px) / 2));
  padding-right: max(30px, calc((100vw - 1140px) / 2));
  position: sticky;
  top: 0;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header .brand-logo {
  filter: none;
  width: 174px;
}

.site-header > .brand {
  background: #0c120d;
  min-height: 82px;
  padding: 8px 14px;
}

.site-header .desktop-nav a,
.site-header .text-button {
  color: #565953;
}

.site-header .desktop-nav a:hover,
.site-header .text-button:hover {
  color: #8a6424;
}

.site-header .calendar-nav {
  border-color: #d9d6ce;
}

.site-header .menu-button {
  color: var(--ink);
}

.site-header .mobile-nav {
  background: #ffffff;
  border-color: #ddd9d0;
  color: var(--ink);
}

.site-header .mobile-nav a {
  border-bottom-color: #ebe7de;
}

.booking-experience {
  background: #ffffff;
  display: block;
  min-height: 0;
}

.booking-experience-form {
  display: block;
  padding: 34px 24px 104px;
}

.booking-flow-shell {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1140px;
}

.booking-progress {
  border-bottom: 1px solid #ebe9e3;
  margin: 0 0 42px;
  order: 1;
  padding: 18px 90px 30px;
}

.booking-progress li {
  align-items: center;
  color: #8e908a;
  gap: 11px;
  text-align: center;
}

.booking-progress li:not(:last-child)::after {
  left: calc(50% + 25px);
  right: calc(-50% + 25px);
  top: 14px;
}

.booking-progress li.active:not(:last-child)::after {
  background: linear-gradient(90deg, var(--gold) 0 22%, #e4e2dc 22% 100%);
}

.booking-progress strong {
  font-size: 12px;
  font-weight: 600;
  max-width: none;
}

.booking-flow-intro {
  margin: 0 auto 30px;
  max-width: 760px;
  order: 2;
  width: 100%;
}

.booking-flow-intro > span {
  color: #8a6424;
  font-size: 9px;
  margin-bottom: 9px;
}

.booking-flow-intro h1,
.booking-flow-intro h2 {
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
}

.booking-flow-intro p {
  font-size: 13px;
  margin-top: 10px;
}

.booking-card {
  margin: 0 auto;
  max-width: 760px;
  order: 4;
  width: 100%;
}

.rr-notice {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  order: 3;
  width: 100%;
}

.booking-section-title {
  font-size: 15px;
  margin-bottom: 12px;
}

.ride-tabs {
  border-color: #d9d7d1;
  max-width: 620px;
}

.ride-tabs button {
  border-right-color: #d9d7d1;
  font-size: 13px;
  min-height: 54px;
}

.ride-tabs button.active {
  background: #fbf3e4;
  box-shadow: inset 0 0 0 1px rgba(185, 131, 51, 0.18);
}

.airport-direction {
  display: flex;
  gap: 8px;
  grid-column: 1 / -1;
}

.airport-direction[hidden] {
  display: none;
}

.airport-direction button {
  background: #f4f0e7;
  border: 1px solid #d8d2c5;
  border-radius: 999px;
  color: #545750;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  min-height: 40px;
  padding: 9px 16px;
}

.airport-direction button:hover {
  border-color: #b98333;
  color: #78591f;
}

.airport-direction button.active,
.airport-direction button[aria-pressed="true"] {
  background: #173327;
  border-color: #173327;
  color: #f4dd9b;
}

.airport-direction button:focus-visible {
  outline: 3px solid rgba(185, 131, 51, 0.3);
  outline-offset: 2px;
}

.booking-form,
.booking-form.is-hourly {
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 28px;
}

.booking-field,
.booking-field.location-field,
.booking-form.is-hourly .booking-field.location-field,
#rr-hours-field,
.passenger-field {
  grid-column: 1 / -1;
}

.booking-field {
  border-color: #dddbd5;
  min-height: 76px;
  padding: 13px 15px;
}

.booking-field > span,
.passenger-field > span {
  color: #2f322e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: none;
}

.booking-field input,
.booking-field select {
  color: #4e514c;
  font-size: 14px;
  font-weight: 500;
}

.booking-form.is-exact-address .location-field {
  border-color: #cfae69;
  background: #fffdf8;
}

.booking-form.is-exact-address .location-field input::placeholder {
  color: #8a8d86;
  opacity: 1;
}

.address-field-help {
  align-items: center;
  color: #6e706a;
  display: flex;
  font-size: 11px;
  gap: 8px;
  grid-column: 1 / -1;
  line-height: 1.55;
  margin: -5px 0 0;
}

.address-field-help::before {
  color: #9a7330;
  content: "●";
  font-size: 8px;
}

.address-field-help[hidden] {
  display: none;
}

.booking-form-note {
  color: #73766f;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.booking-submit {
  border-radius: 2px;
  min-width: 180px;
}

.quote-panel,
.estimate-note {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  order: 5;
  width: 100%;
}

.estimate-note {
  order: 6;
}

@media (max-width: 900px) {
  .site-header {
    height: 98px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .booking-experience-form {
    padding-top: 26px;
  }

  .booking-progress {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 580px) {
  .site-header {
    height: 86px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .booking-experience-form {
    padding: 22px 14px 64px;
  }

  .booking-progress {
    margin-bottom: 32px;
    padding: 14px 2px 24px;
  }

  .booking-progress strong {
    font-size: 8px;
  }

  .booking-progress li:not(:last-child)::after {
    left: calc(50% + 19px);
    right: calc(-50% + 19px);
  }

  .booking-flow-intro {
    margin-bottom: 24px;
  }

  .ride-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .airport-direction button {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
  }

  .booking-form,
  .booking-form.is-hourly {
    grid-template-columns: 1fr;
  }

  .booking-field,
  .booking-form-note,
  .booking-submit {
    grid-column: 1;
  }
}

/* Quiet-luxury header: immersive, restrained, and booking-led. */
.site-header {
  background: rgba(7, 12, 8, 0.96);
  border-bottom: 1px solid rgba(224, 194, 126, 0.3);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  color: #f8f2e3;
  height: 96px;
  overflow: visible;
}

@supports ((backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px))) {
  .site-header {
    -webkit-backdrop-filter: blur(14px) saturate(125%);
    backdrop-filter: blur(14px) saturate(125%);
    background: rgba(7, 12, 8, 0.88);
  }
}

.site-header::after {
  background: linear-gradient(90deg, rgba(224, 194, 126, 0) 0%, rgba(224, 194, 126, 0.76) 50%, rgba(224, 194, 126, 0) 100%);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.site-header > .brand-popout {
  align-self: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  min-height: 0;
  padding: 0;
  position: relative;
  transform: none;
  transition: opacity 160ms ease;
  z-index: 40;
}

.site-header > .brand-popout::before {
  display: none;
}

.site-header > .brand-popout:hover,
.site-header > .brand-popout:focus-visible {
  box-shadow: none;
  opacity: 0.88;
  transform: none;
}

.site-header .brand-popout .brand-logo {
  animation: none;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.42));
  transform: none;
  transition: none;
  width: 154px;
}

.site-header .desktop-nav a,
.site-header .text-button {
  color: rgba(248, 242, 227, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header .desktop-nav a:hover,
.site-header .text-button:hover {
  color: #e0c27e;
}

.site-header .gold-button.compact-button {
  background: transparent;
  border: 1px solid rgba(224, 194, 126, 0.68);
  color: #e0c27e;
  padding: 12px 18px;
}

.site-header .gold-button.compact-button:hover {
  background: #e0c27e;
  color: #080b08;
  transform: none;
}

.site-header .menu-button {
  align-items: center;
  border: 1px solid rgba(224, 194, 126, 0.36);
  border-radius: 50%;
  color: #e0c27e;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.site-header .mobile-nav {
  background: rgba(7, 12, 8, 0.98);
  border-color: rgba(224, 194, 126, 0.22);
  color: #f8f2e3;
  top: calc(100% + 1px);
}

.site-header .mobile-nav a {
  border-bottom-color: rgba(224, 194, 126, 0.14);
}

.booking-experience-form {
  scroll-margin-top: 108px;
}

@media (max-width: 900px) {
  .site-header {
    height: 90px;
  }

  .site-header .brand-popout .brand-logo {
    width: 144px;
  }

  .booking-experience-form {
    scroll-margin-top: 100px;
  }
}

@media (max-width: 580px) {
  .site-header {
    height: 82px;
  }

  .site-header .brand-popout .brand-logo {
    width: 126px;
  }

  .site-header .menu-button {
    height: 38px;
    width: 38px;
  }

  .booking-experience-form {
    scroll-margin-top: 92px;
  }
}

/* Professional brand refinement: disciplined luxury, clearer hierarchy, and consistent details. */
:root {
  --black: #07100b;
  --ink: #152019;
  --charcoal: #112018;
  --graphite: #2d3931;
  --gold: #b98a3c;
  --gold-bright: #d5b06a;
  --gold-pale: #f0dfb6;
  --ivory: #f6f3eb;
  --white: #fffdf8;
  --surface: #ffffff;
  --muted: #697169;
  --line: rgba(18, 32, 24, 0.14);
  --shadow: 0 26px 70px rgba(7, 16, 11, 0.13);
}

.site-header {
  background: linear-gradient(90deg, rgba(6, 14, 9, 0.98), rgba(12, 28, 19, 0.96));
  border-bottom: 1px solid rgba(213, 176, 106, 0.34);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  height: 96px;
  max-width: none;
  padding-left: max(28px, calc((100vw - 1320px) / 2));
  padding-right: max(28px, calc((100vw - 1320px) / 2));
}

@supports ((backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px))) {
  .site-header {
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    backdrop-filter: blur(16px) saturate(120%);
    background: linear-gradient(90deg, rgba(6, 14, 9, 0.93), rgba(12, 28, 19, 0.9));
  }
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(213, 176, 106, 0.8) 48%, transparent);
  opacity: 0.75;
}

.site-header > .brand-popout {
  align-items: center;
  display: inline-flex;
  gap: 18px;
}

.site-header .brand-popout .brand-logo {
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.3));
  width: 154px;
}

.header-brand-context {
  border-left: 1px solid rgba(213, 176, 106, 0.32);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 18px;
}

.header-brand-context small,
.header-service-note {
  color: rgba(255, 253, 248, 0.56);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.header-brand-context strong {
  color: var(--gold-pale);
  font-family: var(--font-display), Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.site-header .desktop-nav {
  justify-content: center;
  min-width: 0;
}

.header-service-note {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  white-space: nowrap;
}

.header-service-note::before,
.header-service-note::after {
  background: rgba(213, 176, 106, 0.48);
  content: "";
  height: 1px;
  width: 28px;
}

.site-header .text-button {
  color: rgba(255, 253, 248, 0.82);
  letter-spacing: 0.08em;
}

.site-header .gold-button.compact-button {
  background: linear-gradient(135deg, #e0c27e, #b98a3c);
  border: 1px solid rgba(255, 239, 201, 0.6);
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.2);
  color: #07100b;
  min-width: 154px;
}

.site-header .gold-button.compact-button:hover {
  background: #efd89f;
  color: #07100b;
}

.gold-button:focus-visible,
.landing-hero-call:focus-visible,
.text-button:focus-visible {
  outline: 3px solid rgba(213, 176, 106, 0.42);
  outline-offset: 4px;
}

.landing-hero {
  background: #050b07;
  min-height: clamp(650px, 80vh, 820px);
}

.landing-hero-image {
  filter: saturate(0.84) contrast(1.05);
}

.landing-hero-shade {
  background:
    radial-gradient(circle at 68% 42%, rgba(22, 34, 25, 0.02), rgba(3, 8, 5, 0.22) 48%, rgba(3, 8, 5, 0.68) 100%),
    linear-gradient(90deg, rgba(3, 8, 5, 0.95) 0%, rgba(3, 8, 5, 0.78) 36%, rgba(3, 8, 5, 0.16) 74%),
    linear-gradient(180deg, rgba(3, 8, 5, 0.04) 45%, rgba(3, 8, 5, 0.82) 100%);
}

.landing-hero-content {
  padding-bottom: clamp(68px, 8vh, 96px);
  padding-top: 138px;
}

.landing-hero-eyebrow {
  align-items: center;
  color: #e4c784;
  display: flex;
  font-size: 9px;
  gap: 14px;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
}

.landing-hero-eyebrow::before {
  background: #d5b06a;
  content: "";
  height: 1px;
  width: 42px;
}

.landing-hero h1 {
  font-size: clamp(60px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  max-width: 770px;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  text-wrap: balance;
}

.landing-hero-content > p {
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.75;
  max-width: 640px;
  text-wrap: pretty;
}

.gold-button {
  background: linear-gradient(135deg, #e0c27e, #b98a3c);
  border: 1px solid rgba(255, 242, 211, 0.42);
  border-radius: 3px;
  box-shadow: 0 12px 28px rgba(7, 16, 11, 0.16);
  letter-spacing: 0.075em;
}

.gold-button:hover {
  background: #efd89f;
}

.landing-hero-actions .gold-button {
  min-width: 228px;
}

.landing-hero-call {
  border-bottom-color: rgba(228, 199, 132, 0.54);
  color: rgba(255, 253, 248, 0.9);
}

.landing-hero-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  gap: 18px 34px;
  margin-top: 44px;
  max-width: 690px;
  padding-top: 20px;
}

.landing-hero-proof span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.landing-hero-proof i {
  border-right: 1px solid rgba(213, 176, 106, 0.38);
  color: #d5b06a;
  font-size: 8px;
  letter-spacing: 0.08em;
  padding-right: 9px;
}

.booking-experience {
  background:
    radial-gradient(circle at 50% 0%, rgba(213, 176, 106, 0.08), transparent 34%),
    #f6f3eb;
}

.booking-experience-form {
  padding-bottom: 110px;
  padding-top: 46px;
}

.booking-progress {
  border-bottom-color: rgba(18, 32, 24, 0.12);
  margin-bottom: 48px;
}

.booking-progress li > span {
  background: #fffdf8;
  border-color: rgba(18, 32, 24, 0.18);
}

.booking-progress li.active > span {
  background: #112018;
  border-color: #112018;
  box-shadow: 0 0 0 5px rgba(185, 138, 60, 0.12);
  color: #f0dfb6;
}

.booking-flow-intro {
  text-align: center;
}

.booking-flow-intro > span {
  color: #8a6326;
  letter-spacing: 0.2em;
}

.booking-flow-intro h1,
.booking-flow-intro h2 {
  color: #122019;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.booking-flow-intro p {
  color: #697169;
  font-size: 13px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.booking-card {
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(18, 32, 24, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 840px;
  padding: 30px;
}

.booking-section-title {
  color: #1a271f;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ride-tabs {
  background: #f1ede3;
  border-color: rgba(18, 32, 24, 0.14);
  border-radius: 7px;
  max-width: none;
  overflow: hidden;
}

.ride-tabs button {
  border-right-color: rgba(18, 32, 24, 0.12);
  color: #59635c;
  font-size: 11px;
  letter-spacing: 0.025em;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.ride-tabs button.active {
  background: #fffdf8;
  box-shadow: inset 0 -2px 0 #b98a3c;
  color: #6f4f1f;
}

.booking-assurance {
  align-items: center;
  border-bottom: 1px solid rgba(18, 32, 24, 0.1);
  color: #667068;
  display: flex;
  flex-wrap: wrap;
  font-size: 9px;
  font-weight: 700;
  gap: 9px 22px;
  letter-spacing: 0.035em;
  padding: 14px 2px 13px;
  text-transform: uppercase;
}

.booking-assurance span {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.booking-assurance i {
  align-items: center;
  background: rgba(185, 138, 60, 0.12);
  border-radius: 50%;
  color: #805b22;
  display: inline-flex;
  font-size: 8px;
  font-style: normal;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.airport-direction button {
  background: #f2ede2;
  border-color: rgba(18, 32, 24, 0.14);
}

.airport-direction button.active,
.airport-direction button[aria-pressed="true"] {
  background: #112018;
  border-color: #112018;
  color: #f0dfb6;
}

.booking-field {
  background: #fff;
  border-color: rgba(18, 32, 24, 0.14);
  border-radius: 4px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.booking-field:hover {
  border-color: rgba(185, 138, 60, 0.46);
}

.booking-field:focus-within {
  border-color: #b98a3c;
  box-shadow: 0 0 0 3px rgba(185, 138, 60, 0.12);
}

.booking-submit {
  min-width: 224px;
}

.booking-privacy-note {
  color: #6b746d;
  font-size: 10px;
  line-height: 1.55;
  margin: -2px 0 2px;
}

.booking-privacy-note a {
  color: #805b22;
  text-decoration: underline;
  text-decoration-color: rgba(128, 91, 34, 0.36);
  text-underline-offset: 2px;
}

.site-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(185, 138, 60, 0.1), transparent 28%),
    linear-gradient(135deg, #07100b, #0d1e15);
  border-top: 1px solid rgba(213, 176, 106, 0.32);
  padding-top: 82px;
}

.footer-logo {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.24));
  width: 215px;
}

.footer-brand > p {
  color: rgba(255, 253, 248, 0.56);
  font-size: 12px;
}

.footer-column h3 {
  color: #d5b06a;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 253, 248, 0.6);
  font-size: 11px;
}

.footer-column a {
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: #f0dfb6;
  transform: translateX(2px);
}

.footer-bottom {
  border-top-color: rgba(213, 176, 106, 0.2);
}

@media (max-width: 1120px) {
  .header-brand-context,
  .header-service-note {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 90px;
  }

  .site-header .brand-popout .brand-logo {
    width: 146px;
  }

  .landing-hero-content {
    padding-top: 130px;
  }
}

@media (max-width: 580px) {
  .site-header {
    height: 82px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .site-header .brand-popout .brand-logo {
    width: 126px;
  }

  .landing-hero {
    min-height: 730px;
  }

  .landing-hero-content {
    padding-bottom: 44px;
    padding-top: 118px;
  }

  .landing-hero h1 {
    font-size: clamp(50px, 15vw, 64px);
  }

  .landing-hero-proof {
    gap: 12px 20px;
    margin-top: 32px;
  }

  .booking-experience-form {
    padding-top: 30px;
  }

  .booking-card {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    margin-left: -14px;
    margin-right: -14px;
    padding: 24px 14px 28px;
    width: auto;
  }

  .booking-flow-intro h1,
  .booking-flow-intro h2 {
    font-size: 38px;
  }

  .booking-submit {
    min-width: 0;
  }
}

/* Spacing calibration: compact rhythm without crowding the booking flow. */
.booking-experience-form {
  padding-bottom: 78px;
  padding-top: 34px;
}

.booking-progress {
  margin-bottom: 32px;
  padding-bottom: 22px;
  padding-top: 14px;
}

.booking-flow-intro {
  margin-bottom: 22px;
}

.booking-flow-intro > span {
  margin-bottom: 7px;
}

.booking-flow-intro p {
  margin-top: 8px;
}

.booking-card {
  padding: 26px;
}

.booking-section-title {
  margin-bottom: 10px;
}

.booking-form,
.booking-form.is-hourly {
  gap: 14px;
  padding-top: 22px;
}

.booking-form > .booking-field {
  grid-column: auto;
}

.booking-form > .location-field,
.booking-form > .airport-field,
.booking-form > .airport-address-field,
.booking-form > #rr-hours-field {
  grid-column: 1 / -1;
}

.booking-field {
  min-height: 72px;
  padding: 11px 14px;
}

.booking-field > span,
.passenger-field > span {
  margin-bottom: 8px;
}

.address-field-help {
  margin-top: -2px;
}

.site-footer {
  padding-bottom: 22px;
  padding-top: 68px;
}

.footer-grid {
  gap: 44px;
  padding-bottom: 48px;
}

.footer-brand > p {
  margin-bottom: 18px;
  margin-top: 18px;
}

.footer-bottom {
  padding-top: 21px;
}

@media (max-width: 900px) {
  .booking-experience-form {
    padding-bottom: 72px;
    padding-top: 28px;
  }

  .booking-progress {
    margin-bottom: 28px;
  }

  .booking-flow-intro {
    margin-bottom: 20px;
  }

  .footer-grid {
    gap: 36px 28px;
  }
}

@media (max-width: 580px) {
  .landing-hero {
    min-height: 700px;
  }

  .landing-hero-content {
    padding-bottom: 38px;
    padding-top: 108px;
  }

  .landing-hero-eyebrow {
    margin-bottom: 18px;
  }

  .landing-hero-content > p {
    margin-top: 20px;
  }

  .landing-hero-actions {
    gap: 14px;
    margin-top: 26px;
  }

  .landing-hero-proof {
    margin-top: 26px;
    padding-top: 16px;
  }

  .booking-experience-form {
    padding-bottom: 60px;
    padding-top: 22px;
  }

  .booking-progress {
    margin-bottom: 26px;
    padding-bottom: 20px;
    padding-top: 10px;
  }

  .booking-flow-intro {
    margin-bottom: 18px;
  }

  .booking-card {
    padding-bottom: 24px;
    padding-top: 22px;
  }

  .booking-assurance {
    font-size: 8px;
    gap: 8px 13px;
    letter-spacing: 0.02em;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .booking-assurance i {
    height: 16px;
    width: 16px;
  }

  .booking-form,
  .booking-form.is-hourly {
    gap: 12px;
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .booking-form > .booking-field,
  .booking-form > .location-field,
  .booking-form > .airport-field,
  .booking-form > .airport-address-field,
  .booking-form > #rr-hours-field,
  .booking-form-note,
  .booking-submit {
    grid-column: 1;
  }

  .booking-field {
    min-height: 70px;
    padding: 10px 12px;
  }

  .site-footer {
    padding-bottom: 18px;
    padding-top: 54px;
  }

  .footer-logo {
    width: 190px;
  }

  .footer-grid {
    gap: 30px 20px;
    padding-bottom: 38px;
  }

  .footer-brand > p {
    margin-bottom: 16px;
    margin-top: 16px;
  }

  .footer-bottom {
    gap: 8px;
    padding-top: 18px;
  }
}
