:root {
  --black: #080808;
  --ink: #101010;
  --panel: #282828;
  --panel-2: #1a1a1a;
  --line: rgba(211, 176, 78, 0.28);
  --gold: #d0ad45;
  --gold-bright: #edca5a;
  --text: #f7f1e7;
  --muted: #b8b0a3;
  --soft: #837b6e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 150px;
  padding: 10px 44px;
  background: rgba(8, 8, 8, 0.76);
  border-bottom: 1px solid rgba(211, 176, 78, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  justify-items: center;
  min-width: 270px;
  line-height: 1;
}

.brand-logo {
  width: 278px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(211, 176, 78, 0.2));
}

.footer-logo {
  width: 230px;
  height: auto;
  filter: drop-shadow(0 3px 14px rgba(211, 176, 78, 0.18));
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: #ddd8ce;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.footer-links a:hover,
.reserve-copy a:hover {
  color: var(--gold-bright);
}

.phone-link {
  color: var(--gold-bright);
}

.header-button,
.button,
.booking-submit,
.fleet-card-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-button,
.button-gold,
.booking-submit,
.fleet-card-body a {
  color: #080808;
  background: var(--gold);
}

.header-button:hover,
.button-gold:hover,
.booking-submit:hover,
.fleet-card-body a:hover {
  transform: translateY(-1px);
  background: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.74)),
    url("assets/images/mercedes-gls-exterior.png"),
    radial-gradient(circle at 50% 36%, rgba(211, 176, 78, 0.18), transparent 32%),
    linear-gradient(135deg, #17130b 0%, #080808 48%, #151515 100%);
  background-position: center, center, center right, center, center;
  background-size: cover, cover, cover, cover, cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 48%, rgba(211, 176, 78, 0.14), transparent 30%),
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58) 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2) 36%, rgba(8, 8, 8, 0.94));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 32px));
  padding-top: 188px;
}

.hero-kicker,
.section-label {
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 960px;
  margin: 0 auto;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7.2vw, 88px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
}

.hero-subtitle {
  margin: 28px 0 0;
  font-size: clamp(20px, 2vw, 27px);
  color: #f1eadf;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 42px 0 0;
}

.button {
  min-width: 202px;
  min-height: 58px;
  font-size: 16px;
}

.button-outline {
  color: var(--gold-bright);
  border: 1px solid rgba(211, 176, 78, 0.58);
  background: rgba(8, 8, 8, 0.28);
}

.button-outline:hover {
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

.availability {
  margin: 38px 0 0;
  color: #a8a6a0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.reservation-form label {
  position: relative;
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  color: var(--text);
  background: #2a2a2a;
  border: 1px solid #4b4b4b;
  border-radius: 4px;
  padding: 0 14px;
  font: inherit;
}

textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #858585;
}

.section {
  padding: 96px 60px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 48px;
}

.section-heading h2,
.intro h2,
.fleet-content h2,
.reserve-copy h2 {
  margin: 0;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading .section-label {
  margin-bottom: 16px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 18px auto 0;
  background: var(--gold-bright);
}

.intro {
  background: #0d0d0d;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 56px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.intro p,
.fleet-content p,
.reserve-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.services,
.fleet-section {
  background: #0b0b0b;
}

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

.service-card {
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 16px;
  padding: 34px 28px;
  background: var(--panel);
  border: 1px solid #343434;
  border-radius: 6px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--gold-bright);
  border: 1px solid rgba(211, 176, 78, 0.46);
  border-radius: 50%;
  background: rgba(211, 176, 78, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.service-card h3,
.fleet-card h3 {
  margin: 0;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: #b5ad9e;
  line-height: 1.65;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
}

.fleet-card {
  display: grid;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid #3a3a3a;
  border-radius: 6px;
}

.fleet-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #121212;
  border-bottom: 1px solid rgba(211, 176, 78, 0.18);
}

.fleet-photo {
  display: grid;
  grid-template-rows: auto minmax(42px, auto);
  margin: 0;
  border-right: 1px solid rgba(211, 176, 78, 0.16);
}

.fleet-photo:last-child {
  border-right: 0;
}

.fleet-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #161616;
}

.fleet-photo figcaption {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: #fffaf1;
  background: #191919;
  border-top: 1px solid rgba(211, 176, 78, 0.12);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.fleet-badge {
  width: max-content;
  padding: 6px 9px;
  color: #080808;
  background: var(--gold);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 22px 20px;
}

.passengers {
  margin: 0;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 800;
}

.fleet-description {
  margin: 0;
  color: #c1baae;
  font-size: 14px;
  line-height: 1.65;
}

.fleet-card ul,
.reserve-copy ul {
  display: grid;
  gap: 10px;
  margin: 8px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.fleet-card li::before,
.reserve-copy li::before {
  content: "+";
  color: var(--gold-bright);
  margin-right: 8px;
}

.fleet-card-body a {
  min-height: 42px;
  margin-top: 6px;
  font-size: 13px;
}

.why-choose,
.airports {
  background: #111;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.why-grid article {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.why-grid article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold-bright);
  border: 1px solid rgba(211, 176, 78, 0.45);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.why-grid h3 {
  margin: 0;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.why-grid p {
  margin: 0;
  max-width: 210px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.small-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 36px;
  margin: 34px auto 0;
  padding: 0 24px;
  color: #080808;
  background: var(--gold);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
}

.small-cta:hover {
  background: var(--gold-bright);
}

.section-heading p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

.airport-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.airport-grid span {
  display: grid;
  gap: 4px;
  place-items: center;
  min-height: 64px;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #2b2b2b;
}

.airport-grid strong {
  font-size: 13px;
  font-weight: 900;
}

.airport-grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.testimonials {
  padding: 92px 60px;
  color: #16130e;
  background: #eeeae3;
}

.testimonials .section-heading h2 {
  color: #0d0d0d;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  background: #fffdf8;
  border: 1px solid #d8d1c7;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 900;
}

.testimonial-grid p {
  margin: 0;
  color: #423c33;
  font-size: 14px;
  line-height: 1.7;
}

.testimonial-grid strong {
  margin-top: 18px;
  color: #211b13;
}

.testimonial-grid span {
  color: #88755e;
  font-size: 12px;
}

.story-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 10%;
  background: #080808;
}

.story-image {
  min-height: 330px;
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 32% 30%, rgba(211, 176, 78, 0.22), transparent 34%),
    linear-gradient(135deg, #2a2417, #0b0b0b 58%, #202020);
  box-shadow: -12px 12px 0 rgba(211, 176, 78, 0.14);
}

.story-image::after {
  content: "CJ DIOR";
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(255, 250, 241, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 800;
  letter-spacing: 0;
}

.story-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  color: #080808;
  background: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.story-copy h2 {
  margin: 0 0 22px;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
}

.story-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.story-actions .button {
  min-width: 150px;
  min-height: 48px;
  font-size: 13px;
}

.ready-cta {
  padding: 56px 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(211, 176, 78, 0.18), rgba(8, 8, 8, 0.94)),
    repeating-linear-gradient(45deg, rgba(211, 176, 78, 0.12) 0 1px, transparent 1px 28px),
    #17130a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ready-cta h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 52px);
}

.ready-cta p {
  margin: 10px auto 24px;
  max-width: 620px;
  color: #eee2c5;
}

.reservation-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 56px;
  padding: 104px 60px;
  background:
    radial-gradient(circle at 18% 20%, rgba(211, 176, 78, 0.16), transparent 32%),
    linear-gradient(135deg, #080808 0%, #15110a 42%, #080808 100%);
}

.reserve-copy,
.reservation-form {
  max-width: 620px;
}

.reserve-copy {
  justify-self: end;
  align-self: start;
}

.reserve-copy p {
  margin-top: 22px;
}

.reserve-copy a {
  color: var(--gold-bright);
  font-weight: 800;
}

.reserve-copy ul {
  margin-top: 28px;
  font-size: 15px;
}

.reservation-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: rgba(31, 31, 31, 0.92);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

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

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.request-summary {
  margin: 0;
  padding: 14px;
  color: #f5e9c7;
  background: rgba(211, 176, 78, 0.12);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.booking-page {
  background: #0b0b0b;
}

.booking-hero {
  min-height: 390px;
  display: grid;
  place-items: end center;
  padding: 170px 24px 64px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(211, 176, 78, 0.18), transparent 34%),
    linear-gradient(135deg, #17130b 0%, #080808 52%, #151515 100%);
  border-bottom: 1px solid var(--line);
}

.booking-hero > div {
  max-width: 820px;
}

.booking-hero h1 {
  margin: 0;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.booking-hero p:last-child {
  margin: 22px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.booking-form-wrap {
  padding: 48px 24px 96px;
  background: #0b0b0b;
}

.full-booking-form {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.full-booking-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 24px;
  background: #181818;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.full-booking-form legend {
  padding: 0 10px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
}

.full-booking-form label {
  position: relative;
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.reservation-form label:focus-within,
.full-booking-form label:focus-within {
  z-index: 50;
}

.address-suggestions {
  position: absolute;
  z-index: 80;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  display: none;
  max-height: 240px;
  overflow: auto;
  padding: 6px;
  background: #111;
  border: 1px solid rgba(211, 176, 78, 0.42);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
}

.address-suggestions.is-open {
  display: grid;
  gap: 4px;
}

.address-suggestion {
  min-height: 40px;
  padding: 10px 12px;
  color: #f7f1e7;
  background: transparent;
  border: 0;
  border-radius: 3px;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.address-suggestion:hover,
.address-suggestion:focus {
  color: #080808;
  background: var(--gold);
  outline: none;
}

.fieldset-help {
  margin: -4px 0 6px;
  color: var(--muted);
  line-height: 1.6;
}

.payment-fieldset {
  position: relative;
}

.payment-note {
  margin: 0;
  padding: 12px 14px;
  color: #f5e9c7;
  background: rgba(211, 176, 78, 0.1);
  border: 1px solid rgba(211, 176, 78, 0.24);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
}

.trip-list {
  display: grid;
  gap: 20px;
}

.trip-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: #101010;
  border: 1px solid rgba(211, 176, 78, 0.2);
  border-radius: 5px;
}

.trip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(211, 176, 78, 0.18);
}

.trip-card-header h2 {
  margin: 0;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.remove-trip,
.add-trip-button {
  min-height: 40px;
  border-radius: 4px;
  font-weight: 900;
  cursor: pointer;
}

.remove-trip {
  padding: 0 14px;
  color: #f7e9bd;
  background: transparent;
  border: 1px solid rgba(211, 176, 78, 0.45);
}

.add-trip-button {
  justify-self: start;
  padding: 0 20px;
  color: #080808;
  background: var(--gold);
  border: 0;
}

.add-trip-button:hover {
  background: var(--gold-bright);
}

.field-row.three {
  grid-template-columns: repeat(3, 1fr);
}

.booking-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-actions .button {
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 56px;
  color: var(--muted);
  background: #050505;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 8px 0 0;
}

.image-credit {
  max-width: 820px;
  margin-top: 12px;
  color: #81786b;
  font-size: 11px;
  line-height: 1.55;
}

.image-credit summary {
  width: max-content;
  color: #a69b89;
  cursor: pointer;
  font-weight: 800;
}

.image-credit p {
  margin-top: 8px;
}

.image-credit a {
  color: #c7a849;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gold-bright);
  font-weight: 800;
}

.dashboard-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(211, 176, 78, 0.1), transparent 34rem),
    linear-gradient(180deg, #0f0f0f 0%, #080808 42%, #050505 100%);
}

.dashboard-header {
  position: sticky;
}

.dashboard-shell {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 42px 0 28px;
  border-bottom: 1px solid rgba(211, 176, 78, 0.18);
}

.dashboard-hero h1,
.dashboard-section-heading h2 {
  margin: 0;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.dashboard-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}

.dashboard-hero p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.dashboard-actions,
.reservation-admin-row,
.dashboard-toolbar,
.reservation-summary {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dashboard-icon-button {
  min-width: 150px;
  border: 1px solid rgba(211, 176, 78, 0.5);
  cursor: pointer;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.dashboard-metrics article,
.reservation-card,
.driver-panel,
.dashboard-toolbar,
.empty-dashboard {
  background: rgba(40, 40, 40, 0.86);
  border: 1px solid rgba(211, 176, 78, 0.2);
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.dashboard-metrics article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
}

.dashboard-metrics span,
.dashboard-toolbar label,
.reservation-admin-row label {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.dashboard-metrics strong {
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.dashboard-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 320px);
  gap: 16px;
  padding: 18px;
  margin-bottom: 24px;
}

.dashboard-toolbar label,
.reservation-admin-row label {
  display: grid;
  gap: 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.dashboard-section-heading {
  margin-bottom: 18px;
}

.dashboard-section-heading .section-label {
  margin-bottom: 10px;
  letter-spacing: 5px;
}

.dashboard-section-heading h2 {
  font-size: 30px;
}

.reservation-list,
.driver-list {
  display: grid;
  gap: 16px;
}

.reservation-card {
  padding: 22px;
}

.reservation-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.reservation-card h3,
.driver-card h3,
.empty-dashboard h3 {
  margin: 8px 0 4px;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: 0;
}

.reservation-card p,
.driver-card p,
.empty-dashboard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.reservation-status,
.driver-status {
  display: inline-grid;
  place-items: center;
  min-height: 26px;
  width: max-content;
  padding: 0 10px;
  color: #080808;
  background: var(--gold);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.reservation-status.confirmed,
.reservation-status.assigned,
.driver-status.available {
  background: #edca5a;
}

.reservation-status.completed {
  color: #d5f8d8;
  background: rgba(54, 137, 66, 0.45);
  border: 1px solid rgba(117, 214, 130, 0.38);
}

.reservation-status.cancelled,
.driver-status {
  color: #ffdfdf;
  background: rgba(143, 42, 42, 0.4);
  border: 1px solid rgba(217, 105, 105, 0.35);
}

.reservation-time {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
}

.reservation-time strong {
  color: var(--gold-bright);
  font-size: 15px;
}

.reservation-time span,
.assigned-driver {
  color: #9f9688;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.reservation-summary {
  margin: 18px 0;
  color: #d7cfbf;
  font-size: 13px;
}

.reservation-summary span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  background: #171717;
  border: 1px solid rgba(211, 176, 78, 0.12);
  border-radius: 4px;
}

.reservation-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.reservation-route span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 14px;
  color: #f2eadb;
  background: #111;
  border: 1px solid rgba(211, 176, 78, 0.14);
  border-radius: 4px;
  line-height: 1.45;
}

.reservation-route span:first-child::before {
  content: "Pickup";
}

.reservation-route span:last-child::before {
  content: "Drop-off";
}

.reservation-route span::before {
  flex: 0 0 auto;
  margin-right: 10px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.reservation-details {
  margin: 14px 0 18px;
  color: var(--muted);
}

.reservation-details summary {
  width: max-content;
  color: var(--gold-bright);
  cursor: pointer;
  font-weight: 900;
}

.dashboard-trip {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 14px;
  background: #111;
  border: 1px solid rgba(211, 176, 78, 0.12);
  border-radius: 4px;
}

.dashboard-trip strong {
  color: #fffaf1;
}

.dashboard-notes {
  margin-top: 12px;
  padding: 12px 14px;
  color: #f5e9c7;
  background: rgba(211, 176, 78, 0.1);
  border: 1px solid rgba(211, 176, 78, 0.2);
  border-radius: 4px;
}

.reservation-admin-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(180px, 260px) auto;
  align-items: end;
  padding-top: 16px;
  border-top: 1px solid rgba(211, 176, 78, 0.16);
}

.dashboard-remove-button {
  min-height: 48px;
  padding: 0 16px;
  color: #f7e9bd;
  background: transparent;
  border: 1px solid rgba(211, 176, 78, 0.42);
  border-radius: 4px;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-remove-button:hover {
  color: #080808;
  background: var(--gold);
}

.assigned-driver {
  margin-top: 12px;
}

.driver-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.driver-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: #111;
  border: 1px solid rgba(211, 176, 78, 0.14);
  border-radius: 5px;
}

.driver-card h3 {
  margin-top: 0;
  font-size: 18px;
}

.empty-dashboard {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 28px;
}

.empty-dashboard[hidden] {
  display: none;
}

.request-summary a {
  color: var(--gold-bright);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.builder-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  color: #f5f0e8;
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.08), transparent 260px),
    #080603;
}

.builder-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 18px 14px;
  background: #0d0900;
  border-right: 1px solid rgba(201, 168, 76, 0.18);
}

.builder-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 7px 8px;
}

.builder-logo span,
.builder-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #0d0900;
  background: linear-gradient(135deg, #f2d36c, #b99632);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.builder-logo strong {
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.builder-nav {
  display: grid;
  align-content: start;
  gap: 7px;
}

.builder-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  color: #bdb4a4;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.builder-nav a:hover,
.builder-nav a.is-active {
  color: #fff7df;
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.24);
}

.builder-nav span {
  display: grid;
  place-items: center;
  width: 20px;
  color: #d6b34d;
  font-weight: 900;
}

.builder-status-card {
  display: grid;
  gap: 7px;
  padding: 14px;
  background: #171006;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
}

.builder-status-card strong {
  color: #fffaf1;
  font-size: 14px;
}

.builder-status-card p {
  margin: 0;
  color: #988e80;
  font-size: 12px;
}

.builder-pill {
  width: max-content;
  padding: 5px 8px;
  color: #0d0900;
  background: #c9a84c;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.builder-workspace {
  min-width: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(201, 168, 76, 0.12), transparent 360px),
    linear-gradient(180deg, #120d04 0%, #070604 100%);
}

.builder-topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 10px 22px;
  background: rgba(13, 9, 0, 0.88);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  backdrop-filter: blur(18px);
}

.builder-project {
  display: grid;
  gap: 2px;
}

.builder-project strong {
  color: #fffaf1;
  font-size: 15px;
}

.builder-project small,
.builder-kicker,
.builder-loading {
  color: #9c9282;
  font-size: 12px;
  font-weight: 800;
}

.builder-kicker {
  color: #d7b654;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.builder-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  background: #070604;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 8px;
}

.builder-tabs a {
  min-width: 88px;
  min-height: 34px;
  display: grid;
  place-items: center;
  color: #a99f8e;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.builder-tabs a.is-active,
.builder-tabs a:hover {
  color: #0d0900;
  background: #c9a84c;
}

.builder-user {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 14px;
}

.dashboard-page {
  min-height: 100vh;
  background: #080603;
}

.dashboard-shell {
  width: min(1520px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 44px;
}

.dashboard-shell .button {
  min-width: 132px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 13px;
}

.dashboard-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.13), rgba(255, 255, 255, 0.02)),
    #100b03;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.dashboard-hero h1 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.dashboard-hero p:last-child {
  max-width: 720px;
  margin-top: 12px;
  color: #bcb2a1;
  font-size: 15px;
}

.dashboard-hero .hero-kicker,
.dashboard-section-heading .section-label {
  margin-bottom: 10px;
  color: #d9b953;
  letter-spacing: 3px;
}

.dashboard-metrics {
  gap: 12px;
  margin: 14px 0;
}

.dashboard-metrics article,
.reservation-card,
.driver-panel,
.dashboard-toolbar,
.empty-dashboard {
  background: #120d05;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 8px;
  box-shadow: none;
}

.dashboard-metrics article {
  min-height: 94px;
  gap: 8px;
  padding: 18px;
}

.dashboard-metrics strong {
  color: #fffaf1;
  font-size: 34px;
}

.dashboard-toolbar {
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 260px);
  padding: 14px;
  margin-bottom: 16px;
}

.dashboard-toolbar input,
.dashboard-toolbar select,
.reservation-admin-row select {
  min-height: 42px;
  background: #080603;
  border-color: rgba(201, 168, 76, 0.22);
  border-radius: 7px;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 16px;
}

.reservation-board,
.driver-panel {
  min-width: 0;
}

.reservation-board {
  padding: 18px;
  background: #0b0803;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 8px;
}

.dashboard-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.dashboard-section-heading h2 {
  font-size: 24px;
}

.reservation-list,
.driver-list {
  gap: 12px;
}

.reservation-card {
  padding: 18px;
}

.reservation-card h3,
.empty-dashboard h3 {
  margin-top: 7px;
  font-size: 24px;
}

.reservation-summary {
  margin: 14px 0;
  gap: 8px;
}

.reservation-summary span,
.reservation-route span,
.dashboard-trip,
.driver-card {
  background: #080603;
  border-color: rgba(201, 168, 76, 0.14);
  border-radius: 7px;
}

.reservation-route {
  gap: 10px;
}

.reservation-route span {
  min-height: 58px;
}

.reservation-admin-row {
  grid-template-columns: minmax(150px, 210px) minmax(170px, 240px) auto;
  gap: 12px;
}

.dashboard-remove-button {
  min-height: 42px;
  border-radius: 7px;
}

.driver-panel {
  top: 82px;
  padding: 18px;
}

.driver-card h3 {
  font-size: 16px;
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 24px;
    min-height: 128px;
  }

  .nav-links {
    gap: 16px;
  }

  .brand {
    min-width: 218px;
  }

  .brand-logo {
    width: 230px;
  }

  .hero h1 {
    font-size: clamp(44px, 8vw, 78px);
  }

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

  .airport-grid,
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-grid,
  .story-section,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .driver-panel {
    position: static;
  }
}

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

  .nav-links {
    display: none;
  }

  .header-button {
    padding-inline: 16px;
  }

  .brand {
    min-width: 156px;
  }

  .brand-logo {
    width: 162px;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero h1 {
    font-size: clamp(42px, 12vw, 64px);
    line-height: 1.1;
  }

  .hero-kicker,
  .section-label {
    letter-spacing: 4px;
  }

  .availability {
    letter-spacing: 2px;
  }

  .service-grid,
  .fleet-grid,
  .intro-grid,
  .reservation-section,
  .field-row,
    .field-row.three,
    .why-grid,
    .testimonial-grid,
    .dashboard-metrics,
    .dashboard-toolbar,
    .dashboard-hero,
    .reservation-card-top,
    .reservation-route,
    .reservation-admin-row {
    grid-template-columns: 1fr;
  }

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

  .fleet-photo {
    border-right: 0;
    border-bottom: 1px solid rgba(211, 176, 78, 0.16);
  }

  .fleet-photo:last-child {
    border-bottom: 0;
  }

  .section,
  .reservation-section {
    padding: 72px 20px;
  }

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

  .testimonials,
  .story-section {
    padding: 72px 20px;
  }

  .reserve-copy {
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
    padding: 32px 20px;
  }

  .dashboard-shell {
    width: min(100% - 28px, 1480px);
    padding-top: 18px;
  }

  .dashboard-hero {
    padding-top: 36px;
  }

  .dashboard-actions {
    display: grid;
  }

  .reservation-time {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 920px) {
  .builder-layout {
    grid-template-columns: 1fr;
  }

  .builder-sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto auto;
    padding: 12px;
  }

  .builder-nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .builder-status-card {
    display: none;
  }

  .builder-topbar {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .builder-tabs,
  .builder-user {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .builder-topbar {
    position: static;
    gap: 12px;
  }

  .builder-tabs {
    width: 100%;
  }

  .builder-tabs a {
    min-width: 0;
    flex: 1;
  }

  .dashboard-shell {
    width: min(100% - 24px, 1520px);
    padding-top: 12px;
  }

  .dashboard-hero {
    padding: 18px;
  }

  .dashboard-section-heading {
    display: grid;
  }

  .reservation-board {
    padding: 14px;
  }
}
