/* ==========================================================================
   SASLimos — Safe And Secure Limos
   Brand tokens, shared chrome, page layouts
   ========================================================================== */

:root {
  /* Brand palette */
  --gold: #d8b36b;
  --gold-light: #f4dda2;
  --gold-dark: #b08d45;
  --ink: #0b0f14;
  --ink-2: #121821;
  --ink-3: #19212c;
  --surface: rgba(18, 24, 33, 0.72);
  --surface-solid: #131a24;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(216, 179, 107, 0.32);
  --white: #f6f5f2;
  --muted: rgba(246, 245, 242, 0.68);
  --muted-dim: rgba(246, 245, 242, 0.45);
  --success: #62d39f;
  --danger: #ff8785;

  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.3);
  --radius: 18px;
  --radius-lg: 26px;
  --shell: 1240px;
  --font: "Montserrat", "Segoe UI", sans-serif;
  --font-display: "Libre Baskerville", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.serif {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gold {
  color: var(--gold);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.muted {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 7vw, 104px) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------------------------------------------------------------- Buttons */

.gold-btn,
.ghost-btn,
.dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.gold-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 16px 30px rgba(216, 179, 107, 0.24);
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(216, 179, 107, 0.34);
}

.ghost-btn {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.ghost-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.dark-btn {
  background: var(--ink-3);
  border-color: var(--line);
  color: var(--white);
}

.dark-btn:hover {
  border-color: var(--gold);
}

.gold-btn[disabled],
.ghost-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.full {
  width: 100%;
}

.text-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------- Site header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8, 12, 17, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.utility-bar {
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.social-row {
  display: inline-flex;
  gap: 8px;
}

.social-row a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.18s ease;
}

.social-row a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.utility-links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.utility-links a {
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.18s ease;
}

.utility-links a:hover {
  color: var(--gold);
}

.utility-phone {
  color: var(--gold) !important;
  letter-spacing: 0.1em !important;
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand img {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 0;
  transition: color 0.18s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.masthead-actions {
  display: inline-flex;
  gap: 12px;
}

.masthead-actions .gold-btn,
.masthead-actions .ghost-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.68rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(6, 10, 14, 0.98);
}

.mobile-nav-inner {
  display: grid;
  gap: 10px;
  padding: 18px 0 24px;
}

.mobile-nav-inner a {
  color: var(--white);
  text-decoration: none;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-nav-inner .gold-btn {
  border-bottom: none;
  margin-top: 8px;
}

.mobile-phone {
  color: var(--gold) !important;
  border-bottom: none !important;
}

/* -------------------------------------------------------------- Home hero */

.hero {
  position: relative;
  min-height: min(84vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 104px) 0 clamp(90px, 11vw, 150px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      100deg,
      rgba(6, 9, 13, 0.97) 0%,
      rgba(6, 9, 13, 0.92) 32%,
      rgba(6, 9, 13, 0.5) 55%,
      rgba(6, 9, 13, 0.06) 100%
    ),
    url("assets/hero-escalade.svg");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  letter-spacing: -0.05em;
}

.hero-copy h1 .serif {
  display: block;
  color: var(--gold-light);
  font-size: 0.72em;
  margin-top: 0.12em;
}

.hero-copy .lead {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1.8rem 0 2.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 34px;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  max-width: 640px;
}

.hero-badges div strong {
  display: block;
  font-size: 1.55rem;
  color: var(--gold-light);
  line-height: 1.2;
}

.hero-badges div span {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Booking bar overlapping the hero */
.booking-bar {
  position: relative;
  z-index: 5;
  margin-top: clamp(-120px, -9vw, -70px);
}

.booking-bar-card {
  background: rgba(11, 16, 22, 0.94);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
  backdrop-filter: blur(14px);
}

.booking-bar-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1.3rem;
}

.booking-bar-head h2 {
  margin: 0;
  font-size: 1.5rem;
}

.card-sub {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0.2rem 0 0;
}

.booking-bar-form {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 0.85fr 0.75fr auto;
  gap: 14px;
  align-items: end;
}

.booking-bar-form .field {
  margin-bottom: 0;
}

.booking-bar-form .gold-btn {
  height: 47px;
  white-space: nowrap;
}

.booking-bar-note {
  margin: 1rem 0 0;
}

.tab-row {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 5px;
}

.tab-row button {
  flex: 1;
  padding: 0.6rem 0.4rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s ease;
}

.tab-row button.is-active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
}

/* ------------------------------------------------------------------ Forms */

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.field > span,
.field > label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field select option {
  background: var(--surface-solid);
  color: var(--white);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 179, 107, 0.15);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}

.error-text {
  color: var(--danger);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: none;
  min-height: 1em;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.check-line {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 500 !important;
}

.check-line input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.form-note {
  color: var(--muted-dim);
  font-size: 0.76rem;
}

.status-message {
  min-height: 1.3em;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.status-message.is-error {
  color: var(--danger);
}

.status-message.is-success {
  color: var(--success);
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--ink-2);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------------------------------------------- Cards */

.card-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.card h3 {
  font-size: 1.18rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.93rem;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(216, 179, 107, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(216, 179, 107, 0.24);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.card-accent {
  background: linear-gradient(160deg, rgba(216, 179, 107, 0.12), rgba(18, 24, 33, 0.75));
  border-color: var(--line-strong);
}

.card-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-link:hover {
  color: var(--gold-light);
}

/* Fleet cards */
.fleet-card {
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fleet-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: linear-gradient(140deg, var(--ink-3), var(--ink));
  overflow: hidden;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.fleet-meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

/* Testimonials */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 0.7rem;
}

.quote-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.quote-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 179, 107, 0.16);
  color: var(--gold-light);
  font-weight: 700;
}

.quote-author strong {
  display: block;
  font-size: 0.9rem;
}

.quote-author span {
  color: var(--muted-dim);
  font-size: 0.76rem;
}

/* --------------------------------------------------------- Inner page hero */

.page-hero {
  position: relative;
  padding: clamp(52px, 7vw, 96px) 0 clamp(36px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(120% 140% at 15% 0%, rgba(216, 179, 107, 0.13), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  max-width: 16ch;
}

.page-hero .lead {
  max-width: 640px;
}

.breadcrumbs {
  color: var(--muted-dim);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

/* ------------------------------------------------------------ Auth layouts */

.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: clamp(40px, 6vw, 84px) 0;
}

.auth-panel {
  background: rgba(11, 16, 22, 0.86);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.9rem;
}

.panel-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(98, 211, 159, 0.8);
}

.panel-footer {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.inline-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
}

/* ---------------------------------------------------------- Booking wizard */

.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  padding: clamp(36px, 5vw, 72px) 0;
}

.wizard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 2.6vw, 2.2rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
}

.step-pill {
  border-top: 3px solid var(--line);
  padding-top: 0.7rem;
  color: var(--muted-dim);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.step-pill span {
  display: block;
  color: var(--muted-dim);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.step-pill.is-active {
  border-color: var(--gold);
  color: var(--white);
}

.step-pill.is-done {
  border-color: rgba(216, 179, 107, 0.5);
  color: var(--muted);
}

.step-panel[hidden] {
  display: none;
}

.step-panel h2 {
  font-size: 1.55rem;
}

.step-panel > .muted {
  margin-bottom: 1.5rem;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.vehicle-options {
  display: grid;
  gap: 12px;
}

.vehicle-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.vehicle-option:hover {
  border-color: var(--line-strong);
}

.vehicle-option input {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
}

.vehicle-option strong {
  display: block;
  font-size: 1rem;
}

.vehicle-option small {
  color: var(--muted);
  font-size: 0.8rem;
}

.vehicle-option .price {
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
}

.vehicle-option.is-selected {
  border-color: var(--gold);
  background: rgba(216, 179, 107, 0.1);
}

.summary {
  position: sticky;
  top: 120px;
  background: rgba(11, 16, 22, 0.86);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.summary h3 {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.summary-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.86rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 0.7rem;
}

.summary-row span:first-child {
  color: var(--muted-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.summary-row span:last-child {
  text-align: right;
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.summary-total strong {
  font-size: 1.7rem;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.review-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  margin-bottom: 1rem;
}

.review-block h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.review-block dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0.5rem 1rem;
  margin: 0;
  font-size: 0.88rem;
}

.review-block dt {
  color: var(--muted-dim);
}

.confirmation {
  text-align: center;
  padding: 1rem 0;
}

.confirmation .check-badge {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(98, 211, 159, 0.14);
  border: 1px solid rgba(98, 211, 159, 0.4);
  color: var(--success);
  font-size: 1.8rem;
}

.confirmation-code {
  display: inline-block;
  margin: 0.6rem 0 1.4rem;
  padding: 0.6rem 1.2rem;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* ---------------------------------------------------------------- Footer */

.site-footer {
  background: linear-gradient(180deg, var(--ink-2), #05080b);
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.footer-cta {
  background: linear-gradient(120deg, rgba(216, 179, 107, 0.16), rgba(18, 24, 33, 0.2));
  border-bottom: 1px solid var(--line);
}

.footer-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(30px, 4vw, 52px) 0;
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 30px;
  padding: clamp(38px, 5vw, 64px) 0 34px;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-col h3 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-note {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  padding: 5px 0;
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-brand-col p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 34ch;
}

.footer-social {
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted-dim);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--muted);
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--gold);
}

/* ------------------------------------------------------------ Legal pages */

.legal-body {
  max-width: 820px;
}

.legal-body h2 {
  font-size: 1.35rem;
  margin-top: 2.2rem;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

/* ------------------------------------------------------------- Responsive */

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

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

  .summary {
    position: static;
  }
}

@media (max-width: 960px) {
  .main-nav,
  .masthead-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner,
  .split,
  .auth-wrap {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background-position: center bottom;
  }

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

  .booking-bar-form .gold-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .utility-links a:not(.utility-phone) {
    display: none;
  }
}

@media (max-width: 680px) {
  .cols-2,
  .cols-3,
  .cols-4 {
    grid-template-columns: 1fr;
  }

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

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

  .review-block dl {
    grid-template-columns: 1fr;
  }

  .review-block dt {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

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

  .wizard-actions {
    flex-direction: column-reverse;
  }

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

  .booking-bar {
    margin-top: -50px;
  }

  .tab-row {
    width: 100%;
  }

  .wizard-actions .gold-btn,
  .wizard-actions .ghost-btn {
    width: 100%;
  }

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

  .vehicle-option .price {
    grid-column: 2;
  }
}
