:root {
  --bg: #f8f4ee;
  --paper: #fffdf9;
  --paper-2: #fbf6ef;
  --burgundy: #5b0a12;
  --burgundy-2: #33050a;
  --gold: #c89a4b;
  --gold-2: #a77525;
  --ink: #2a1a1a;
  --muted: #6e5f5a;
  --line: rgba(91, 10, 18, 0.13);
  --shadow: 0 18px 46px rgba(42, 26, 26, 0.1);
  --radius: 8px;
  --container: min(1440px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(200, 154, 75, 0.1), transparent 26rem),
    linear-gradient(180deg, #fffaf3 0%, var(--bg) 45%, #fffaf3 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

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

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

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

button {
  cursor: pointer;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container);
  min-height: 112px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 246px;
}

.brand-mark {
  width: 78px;
  height: 58px;
  color: var(--gold);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 7px 12px rgba(168, 117, 37, 0.18));
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-mark.official-logo {
  overflow: hidden;
  border-radius: 8px;
  background: #060302;
  box-shadow: 0 10px 24px rgba(42, 26, 26, 0.16);
}

.brand-mark.official-logo img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--burgundy-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
}

.brand-copy small {
  margin-top: 9px;
  color: var(--gold-2);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 0.95rem;
  font-weight: 600;
}

.desktop-nav a,
.mobile-nav a:not(.call-btn) {
  position: relative;
  padding: 16px 0;
}

.desktop-nav a::after,
.mobile-nav a:not(.call-btn)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover,
.mobile-nav a.active,
.mobile-nav a:hover {
  color: var(--gold-2);
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after,
.mobile-nav a.active::after,
.mobile-nav a:hover::after {
  width: 44px;
}

.desktop-nav a.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.call-btn {
  min-width: 194px;
  min-height: 62px;
  padding: 0 28px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(91, 10, 18, 0.22);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--burgundy);
}

.mobile-nav {
  display: none;
  width: var(--container);
  margin: 0 auto 18px;
  padding: 14px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.btn {
  min-height: 60px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(42, 26, 26, 0.13);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #6f0d16, var(--burgundy));
}

.btn.gold {
  color: #fff;
  background: linear-gradient(135deg, #d5a34d, #a97729);
}

.btn.outline {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--gold);
}

.btn.outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
}

.btn.wide {
  width: 100%;
}

.arrow {
  font-size: 1.25em;
  line-height: 1;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow i {
  width: 58px;
  height: 1px;
  background: var(--gold);
  display: block;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--burgundy-2);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

em {
  color: var(--gold);
  font-style: italic;
}

.home-hero {
  width: 100%;
  min-height: 820px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  align-items: center;
  gap: 58px;
  padding: 76px max(40px, calc((100vw - 1440px) / 2 + 40px)) 88px;
  background:
    linear-gradient(90deg, rgba(248, 244, 238, 0.98) 0%, rgba(248, 244, 238, 0.9) 34%, rgba(248, 244, 238, 0.15) 65%),
    var(--hero-image) center / cover;
}

.home-hero::after,
.hero-standard::after,
.discover-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(42, 26, 26, 0.18));
}

.home-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.home-copy p,
.hero-copy p,
.discover-hero p,
.destination-hero p,
.tech-hero > p {
  margin: 26px 0 32px;
  max-width: 640px;
  color: #1e1a19;
  font-size: 1.28rem;
  line-height: 1.65;
}

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

.vehicle-shadow {
  display: none;
}

.booking-card {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 42px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(91, 10, 18, 0.16);
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(42, 26, 26, 0.2);
  backdrop-filter: blur(20px);
}

.booking-title {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 28px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.booking-title > span {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(200, 154, 75, 0.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  background: rgba(248, 236, 219, 0.7);
}

.booking-title h2 {
  font-size: 2.25rem;
}

.booking-title p {
  margin: 6px 0 0;
  color: var(--muted);
}

form label {
  display: grid;
  gap: 10px;
  color: var(--burgundy-2);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(91, 10, 18, 0.2);
  border-radius: var(--radius);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 132px;
  padding-top: 18px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 154, 75, 0.15);
}

.booking-card label + label,
.booking-card .two-fields,
.contact-form label + label,
.contact-form .two-fields {
  margin-top: 20px;
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.toggle-row {
  margin: 24px 0;
  grid-template-columns: 1fr 60px;
  align-items: center;
}

.toggle-row span {
  display: grid;
  text-transform: none;
}

.toggle-row small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.toggle-row input {
  appearance: none;
  width: 58px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: #eadfd3;
  position: relative;
}

.toggle-row input::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.toggle-row input:checked {
  background: var(--gold);
}

.toggle-row input:checked::after {
  transform: translateX(22px);
}

.booking-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--burgundy);
  font-size: 0.82rem;
  text-align: center;
}

.booking-mini span {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.feature-strip {
  width: var(--container);
  margin: 48px auto;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.feature-strip.home-strip {
  margin-top: -44px;
  position: relative;
  z-index: 4;
}

.feature-strip.raised {
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

.feature-strip article {
  padding: 14px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip span {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  color: var(--gold-2);
  border-radius: 50%;
  background: rgba(247, 231, 211, 0.74);
  display: grid;
  place-items: center;
}

.feature-strip h3 {
  font-size: 1.1rem;
}

.feature-strip p {
  margin: 8px auto 0;
  max-width: 240px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

.page {
  width: var(--container);
  margin: 0 auto;
  padding: 58px 0 68px;
}

.section-intro {
  margin: 0 auto 34px;
  text-align: center;
}

.section-intro .eyebrow {
  margin-bottom: 12px;
}

.section-intro h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.section-intro p {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted);
}

.hero-standard {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero-standard.reverse {
  grid-template-columns: 1fr 1fr;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 86px 40px 78px max(40px, calc((100vw - 1440px) / 2 + 40px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-photo {
  position: relative;
  z-index: 1;
  min-height: 100%;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(248, 244, 238, 0.82) 18%, rgba(248, 244, 238, 0.05) 45%),
    var(--hero-image) center / cover;
}

.hero-note {
  position: absolute;
  right: 40px;
  bottom: 40px;
  max-width: 310px;
  padding: 20px 24px;
  color: #fff;
  background: rgba(26, 8, 8, 0.86);
  border: 1px solid rgba(200, 154, 75, 0.55);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 15px;
}

.hero-note .icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.hero-note strong {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.hero-note span {
  color: #f5ede2;
  font-size: 0.9rem;
}

.hero-list {
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
  list-style: none;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.hero-list .icon {
  color: var(--gold-2);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.card-grid.six {
  grid-template-columns: repeat(6, 1fr);
}

.service-card,
.destination-card,
.experience-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 14px 34px rgba(42, 26, 26, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.destination-card:hover,
.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(42, 26, 26, 0.14);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card.compact img {
  height: 210px;
}

.service-card h3,
.service-card p,
.service-card .mini-btn,
.destination-card h3,
.destination-card p,
.experience-card h3,
.experience-card p {
  margin-left: 28px;
  margin-right: 28px;
}

.service-card h3,
.destination-card h3,
.experience-card h3 {
  margin-top: 34px;
}

.service-card p,
.destination-card p,
.experience-card p {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.55;
}

.round-icon {
  position: absolute;
  left: 50%;
  top: 154px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: var(--gold-2);
  background: #fff8ec;
  border: 1px solid rgba(200, 154, 75, 0.4);
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  box-shadow: 0 12px 26px rgba(42, 26, 26, 0.12);
}

.round-icon.dark {
  top: 150px;
  left: 40px;
  color: #fff;
  background: var(--burgundy-2);
  transform: none;
}

.mini-btn {
  min-height: 48px;
  margin-top: 24px;
  margin-bottom: 28px;
  color: #fff;
  background: var(--burgundy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 800;
}

.mini-btn b {
  color: var(--gold);
  font-size: 1.3rem;
}

.dark-cta {
  margin: 46px 0 42px;
  padding: 34px 38px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(91, 10, 18, 0.98), rgba(31, 7, 8, 0.98)),
    var(--hero-image) center / cover;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  box-shadow: 0 18px 38px rgba(91, 10, 18, 0.18);
}

.dark-cta h2,
.dark-panel h2,
.executive-panel h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.dark-cta p,
.dark-panel p,
.executive-panel p {
  color: #f5eadb;
  margin: 8px 0 0;
}

.cta-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: var(--gold);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
}

.cta-icon .icon {
  width: 36px;
  height: 36px;
}

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

.tech-page {
  padding-top: 70px;
}

.tech-hero {
  text-align: center;
}

.tech-hero h1 {
  font-size: clamp(3rem, 5.2vw, 5.4rem);
}

.tech-hero > p {
  margin-left: auto;
  margin-right: auto;
}

.tech-orbit {
  position: relative;
  height: 780px;
  margin: 20px auto 60px;
}

.tech-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tech-lines circle,
.tech-lines path {
  fill: none;
  stroke: rgba(200, 154, 75, 0.55);
  stroke-width: 1.2;
}

.top-car {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(320px, 28vw);
  height: 560px;
  border-radius: 160px;
  background-position: center;
  background-size: cover;
  transform: translate(-50%, -50%) rotate(90deg);
  box-shadow: 0 32px 90px rgba(42, 26, 26, 0.28);
}

.top-car::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.58));
}

.top-car span {
  display: none;
}

.tech-circle {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(200, 154, 75, 0.55);
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.84);
  display: grid;
  place-items: center;
  align-content: center;
  padding: 28px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(42, 26, 26, 0.08);
}

.tech-circle .icon {
  width: 46px;
  height: 46px;
  color: var(--gold-2);
}

.tech-circle h3 {
  margin-top: 16px;
  font-size: 1.45rem;
}

.tech-circle p {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.tech-circle.left {
  left: 5%;
}

.tech-circle.right {
  right: 5%;
}

.tech-circle.one {
  top: 36px;
}

.tech-circle.two {
  top: 285px;
}

.tech-circle.three {
  top: 535px;
}

.executive-panel,
.account-panel,
.mission-panel,
.split-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.executive-panel {
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, #111, #200708);
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 36px;
  align-items: center;
}

.executive-panel .eyebrow,
.dark-panel .eyebrow {
  color: var(--gold);
}

.executive-image {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
}

.executive-image aside {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 310px;
  padding: 18px;
  color: #fff;
  border-radius: var(--radius);
  background: rgba(32, 7, 8, 0.86);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
}

.executive-image aside .icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.discover-hero {
  min-height: 730px;
  position: relative;
  padding: 96px max(40px, calc((100vw - 1440px) / 2 + 40px));
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 244, 238, 0.99) 0%, rgba(248, 244, 238, 0.8) 35%, rgba(248, 244, 238, 0.05) 62%),
    var(--vehicle) right 77% / 46% auto no-repeat,
    var(--hero-image) center / cover;
}

.discover-hero > div {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.discover-hero h1 {
  font-size: clamp(5rem, 9vw, 9rem);
}

.destination-hero {
  width: var(--container);
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  align-items: center;
  gap: 36px;
}

.photo-collage {
  height: 470px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1.1fr 0.9fr;
  gap: 8px;
  transform: skewX(-8deg);
  overflow: hidden;
}

.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-collage img:first-child {
  grid-row: span 2;
}

.photo-collage img:nth-child(4),
.photo-collage img:nth-child(5) {
  display: none;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.destination-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.destination-card h3 {
  margin-top: 22px;
}

.destination-card p {
  margin-bottom: 28px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.experience-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.experience-card h3 {
  margin-top: 26px;
}

.experience-card p {
  margin-bottom: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin: 44px 0 60px;
  text-align: center;
}

.steps article {
  position: relative;
}

.steps article:not(:last-child)::after {
  content: "->";
  position: absolute;
  right: -24px;
  top: 40px;
  color: var(--gold);
  font-size: 1.5rem;
}

.steps span {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  color: var(--gold-2);
  background: rgba(247, 231, 211, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.steps .icon {
  width: 42px;
  height: 42px;
}

.steps h3 {
  font-size: 1.2rem;
}

.steps p {
  margin: 10px auto 0;
  max-width: 230px;
  font-size: 0.96rem;
  line-height: 1.55;
}

.split-panel,
.mission-panel,
.account-panel {
  padding: 40px;
  background: rgba(255, 253, 249, 0.72);
  display: grid;
  gap: 44px;
}

.split-panel {
  grid-template-columns: 0.48fr 0.52fr;
  align-items: center;
}

.split-panel > img,
.mission-panel > img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.mini-feature-grid article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mini-feature-grid .icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--gold-2);
  background: rgba(247, 231, 211, 0.7);
  border-radius: 50%;
}

.mini-feature-grid h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.mini-feature-grid p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.dark-panel {
  margin: 44px 0;
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, #101214, #210708);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.dark-panel article {
  min-height: 150px;
  padding-left: 22px;
  border-left: 1px solid rgba(200, 154, 75, 0.34);
  text-align: center;
}

.dark-panel article .icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
}

.dark-panel h3 {
  margin-top: 12px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.dark-panel article p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.account-panel {
  grid-template-columns: 0.42fr 0.58fr;
  align-items: center;
}

.account-panel p {
  max-width: 520px;
}

.mission-panel {
  margin: 44px 0;
  grid-template-columns: 0.42fr 0.58fr;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.88), rgba(248, 236, 219, 0.62)),
    rgba(255, 253, 249, 0.8);
}

.mission-panel h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.22;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 42px 0;
  text-align: center;
}

.numbers article {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.numbers article:last-child {
  border-right: 0;
}

.numbers .icon {
  width: 54px;
  height: 54px;
  color: var(--gold-2);
}

.numbers strong {
  display: block;
  margin-top: 12px;
  color: var(--burgundy);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.15;
}

.numbers span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
}

.faq-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.faq-side button,
.help-card {
  min-height: 72px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.76);
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.faq-side button.active {
  background: linear-gradient(90deg, rgba(200, 154, 75, 0.24), rgba(255, 253, 249, 0.86));
  border-left: 4px solid var(--gold);
}

.faq-side button .icon {
  color: var(--gold-2);
  width: 32px;
  height: 32px;
}

.faq-side button b {
  margin-left: auto;
  color: var(--gold-2);
}

.help-card {
  padding: 24px;
  display: grid;
}

.help-card h3 {
  font-size: 1.35rem;
}

.help-card p,
.help-card a {
  margin: 0;
  font-size: 0.95rem;
}

.help-card a {
  padding: 12px 14px;
  border: 1px solid rgba(200, 154, 75, 0.42);
  border-radius: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.75);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-item > button {
  width: 100%;
  min-height: 62px;
  padding: 0 28px;
  color: var(--ink);
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 850;
  text-align: left;
}

.faq-item > button b {
  color: var(--burgundy);
  font-size: 1.5rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}

.faq-layout > .dark-cta,
.faq-layout > .feature-strip {
  grid-column: 1 / -1;
}

.contact-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 24px;
  margin-top: -86px;
  position: relative;
  z-index: 3;
}

.contact-form,
.contact-info {
  min-width: 0;
  max-width: 100%;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow);
}

.contact-form h2,
.contact-info h2 {
  font-size: 2rem;
}

.contact-form p {
  margin: 8px 0 24px;
}

.contact-form label span {
  display: none;
}

.contact-form small {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-transform: none;
}

.contact-form small .icon {
  color: var(--gold-2);
}

.contact-info {
  display: grid;
  gap: 0;
}

.contact-info h2 {
  margin-bottom: 18px;
}

.contact-info a {
  min-width: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 4px 22px;
  align-items: center;
}

.contact-info a:last-child {
  border-bottom: 0;
}

.contact-info a > span {
  grid-row: span 3;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(247, 231, 211, 0.74);
  display: grid;
  place-items: center;
}

.contact-info b,
.contact-info small {
  min-width: 0;
  display: block;
  overflow-wrap: anywhere;
}

.contact-info b {
  font-size: 1.17rem;
}

.contact-info small {
  color: var(--muted);
}

.map-panel {
  min-height: 320px;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-panel iframe,
.map-panel img {
  width: 100%;
  height: 360px;
  border: 0;
  object-fit: cover;
  filter: saturate(0.75) contrast(0.95);
}

.map-panel aside {
  position: absolute;
  left: 32px;
  top: 32px;
  width: min(330px, calc(100% - 64px));
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow);
}

.map-panel aside span {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--burgundy);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.map-panel aside p {
  margin: 8px 0 0;
}

.footer {
  color: #f8eee3;
  background: linear-gradient(135deg, #160708, #2b0709);
}

.footer-main {
  width: var(--container);
  margin: auto;
  padding: 50px 0 42px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
}

.footer .brand {
  min-width: 0;
}

.footer .brand-copy strong {
  color: #fff;
}

.footer p {
  max-width: 330px;
  color: #f2e7da;
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.footer a {
  margin: 8px 0;
  color: #f2e7da;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
}

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

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
  font-size: 0.92rem;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: 360px;
  padding: 16px 20px;
  color: #fff;
  background: var(--burgundy);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(42, 26, 26, 0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gold-2);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1180px) {
  :root {
    --container: min(100vw - 40px, 1440px);
  }

  .nav-shell {
    min-height: 92px;
  }

  .desktop-nav,
  .nav-shell > .call-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header.open .mobile-nav {
    display: grid;
  }

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

  .mobile-call {
    grid-column: 1 / -1;
  }

  .home-hero,
  .hero-standard,
  .destination-hero,
  .executive-panel,
  .split-panel,
  .mission-panel,
  .account-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 54px 20px 64px;
  }

  .hero-copy {
    padding: 64px 20px;
  }

  .hero-photo {
    min-height: 430px;
  }

  .card-grid,
  .card-grid.six,
  .destination-grid,
  .experience-grid,
  .numbers {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-grid {
    margin-top: 0;
  }

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

  .tech-orbit {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .tech-lines,
  .top-car {
    display: none;
  }

  .tech-circle {
    position: static;
    width: auto;
    height: auto;
    min-height: 190px;
    border-radius: var(--radius);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1440px);
  }

  body {
    font-size: 16px;
  }

  .nav-shell {
    width: calc(100vw - 28px);
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 54px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1.9rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.25rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .home-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(248, 244, 238, 0.98) 0%, rgba(248, 244, 238, 0.75) 55%, rgba(248, 244, 238, 0.25) 100%),
      var(--hero-image) center / cover;
  }

  .home-copy p,
  .hero-copy p,
  .discover-hero p,
  .destination-hero p,
  .tech-hero > p {
    font-size: 1.05rem;
  }

  .booking-card {
    padding: 24px;
    border-radius: var(--radius);
  }

  .booking-title {
    gap: 15px;
  }

  .booking-title > span {
    width: 58px;
    height: 58px;
  }

  .booking-title h2 {
    font-size: 1.65rem;
  }

  .two-fields,
  .booking-mini,
  .mobile-nav,
  .card-grid,
  .card-grid.six,
  .destination-grid,
  .experience-grid,
  .steps,
  .mini-feature-grid,
  .numbers,
  .footer-main,
  .tech-orbit,
  .dark-panel {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .call-btn {
    width: 100%;
  }

  .feature-strip {
    padding: 14px;
  }

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }

  .hero-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .discover-hero {
    min-height: 660px;
    padding: 56px 20px;
    background:
      linear-gradient(180deg, rgba(248, 244, 238, 0.98), rgba(248, 244, 238, 0.65)),
      var(--hero-image) center / cover;
  }

  .destination-hero {
    padding: 44px 0;
  }

  .photo-collage {
    height: 330px;
    transform: none;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }

  .dark-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-icon {
    margin: auto;
  }

  .split-panel,
  .mission-panel,
  .account-panel,
  .contact-form,
  .contact-info {
    padding: 24px;
  }

  .contact-form h2,
  .contact-info h2 {
    font-size: 1.7rem;
  }

  .contact-info a {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 4px 16px;
  }

  .contact-info a > span {
    width: 58px;
    height: 58px;
  }

  .map-panel aside {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: 14px;
  }

  .map-panel iframe {
    height: 320px;
  }

  .toast {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}

/* Professional scale pass for the complete website */
:root {
  --container: min(1240px, calc(100vw - 56px));
}

body {
  font-size: 16px;
  line-height: 1.55;
}

.nav-shell {
  min-height: 86px;
}

.brand {
  min-width: 210px;
}

.brand-mark {
  width: 56px;
  height: 42px;
}

.brand-copy strong {
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
}

.call-btn,
.btn {
  min-height: 48px;
  padding: 0 20px;
  font-size: 0.95rem;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.12rem;
}

.home-hero {
  min-height: 660px;
  padding-top: 54px;
  padding-bottom: 58px;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
}

.home-copy p,
.hero-copy p,
.discover-hero p,
.destination-hero p,
.tech-hero > p {
  font-size: 1.05rem;
  margin: 18px 0 24px;
}

.booking-card {
  padding: 28px;
  border-radius: 12px;
}

.booking-title {
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.booking-title > span {
  width: 56px;
  height: 56px;
}

.booking-title h2 {
  font-size: 1.65rem;
}

input,
select,
textarea {
  min-height: 48px;
  padding: 0 15px;
}

textarea {
  min-height: 112px;
}

.booking-actions-row {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.booking-step[hidden],
.return-fields[hidden] {
  display: none;
}

.return-fields {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  display: grid;
  gap: 16px;
}

.hero-standard {
  min-height: 520px;
}

.hero-copy {
  padding-top: 58px;
  padding-bottom: 58px;
}

.hero-photo {
  min-height: 520px;
}

.page {
  padding: 44px 0 52px;
}

.section-intro {
  margin-bottom: 26px;
}

.service-card img,
.destination-card img {
  height: 150px;
}

.experience-card img {
  height: 180px;
}

.service-card h3,
.destination-card h3,
.experience-card h3 {
  margin-top: 28px;
}

.service-card h3,
.service-card p,
.service-card .mini-btn,
.destination-card h3,
.destination-card p,
.experience-card h3,
.experience-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.round-icon {
  top: 118px;
  width: 58px;
  height: 58px;
}

.feature-strip {
  margin: 34px auto;
  padding: 22px;
}

.feature-strip span {
  width: 58px;
  height: 58px;
}

.dark-cta {
  padding: 26px 30px;
  margin: 34px 0;
}

.home-flow {
  display: grid;
  gap: 28px;
  margin: 42px 0 10px;
}

.flow-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.flow-panel.reverse {
  grid-template-columns: 0.8fr 1fr;
}

.flow-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.flow-panel p {
  color: var(--muted);
}

.flow-card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.flow-card-row a {
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(42, 26, 26, 0.07);
  display: grid;
  gap: 8px;
}

.flow-card-row .icon {
  width: 34px;
  height: 34px;
  color: var(--gold-2);
}

.flow-card-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.home-scroll-page {
  display: grid;
  gap: 54px;
}

.home-section {
  scroll-margin-top: 104px;
  padding: 12px 0 2px;
}

.home-section + .home-section {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.home-section-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.home-split p {
  color: var(--muted);
  max-width: 680px;
}

.home-split img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compact-dark-panel {
  margin-top: 28px;
  grid-template-columns: 1.2fr repeat(4, 1fr);
}

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

.technology-feature-grid article {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 12px 30px rgba(42, 26, 26, 0.06);
}

.home-executive-panel,
.home-experience-grid {
  margin-top: 28px;
}

.application-hero {
  min-height: 500px;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.82) 36%, rgba(255, 250, 243, 0.16) 58%, rgba(255, 250, 243, 0) 100%),
    var(--hero-image) center / cover;
  display: grid;
  align-items: center;
}

.application-copy {
  width: var(--container);
  margin: auto;
  padding: 68px 0;
}

.application-copy h1 {
  max-width: 680px;
  margin: 14px 0 20px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.application-copy p {
  max-width: 570px;
  font-size: 1.1rem;
  color: var(--ink);
}

.application-hero-benefits,
.application-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.application-hero-benefits {
  max-width: 860px;
  margin-top: 28px;
}

.application-hero-benefits article,
.application-benefits article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 12px 30px rgba(42, 26, 26, 0.06);
  display: grid;
  gap: 6px;
  align-content: start;
}

.application-hero-benefits .icon,
.application-benefits .icon {
  width: 34px;
  height: 34px;
  color: var(--gold-2);
}

.application-hero-benefits strong,
.application-benefits strong {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--burgundy-2);
  line-height: 1.2;
}

.application-hero-benefits span,
.application-benefits span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.application-page {
  padding-top: 36px;
}

.application-shell {
  max-width: 1000px;
  margin: 0 auto;
}

.application-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow);
}

.application-form > header {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
}

.application-form > header > span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(247, 231, 211, 0.75);
  display: grid;
  place-items: center;
}

.application-form > header h2 {
  margin: 0;
  font-size: 1.75rem;
}

.application-form > header p {
  margin: 2px 0 0;
  color: var(--muted);
}

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

.application-grid.customer-grid {
  margin-bottom: 16px;
}

.application-section-title {
  margin: 24px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--burgundy-2);
  font-size: 1.25rem;
}

.app-field,
.app-radio,
.app-days {
  min-width: 0;
}

.app-field {
  display: grid;
  gap: 8px;
}

.app-field.full,
.app-radio,
.app-days {
  grid-column: 1 / -1;
}

.app-field span,
.app-radio legend,
.app-days legend {
  color: var(--burgundy-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.app-field span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-field small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: none;
}

.app-radio,
.app-days {
  padding: 0;
  margin: 0;
  border: 0;
}

.app-radio > div,
.app-days > div {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-radio label,
.app-days button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.app-days button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2));
  border-color: var(--burgundy);
}

.app-toggle {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.app-toggle strong,
.app-toggle small {
  display: block;
}

.app-toggle small {
  color: var(--muted);
}

.app-toggle input {
  width: 48px;
  min-height: 28px;
  accent-color: var(--burgundy);
}

.application-return-fields {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.application-return-fields[hidden] {
  display: none;
}

.application-form textarea {
  resize: vertical;
  padding-top: 14px;
}

.application-form .btn {
  margin-top: 18px;
}

.application-benefits {
  max-width: 1000px;
  margin: 30px auto;
}

/* Customer quote, confirmation and receipt pages */
.customer-page {
  min-height: 100vh;
  padding: 26px 28px 0;
  background: radial-gradient(circle at 50% 0, #fff 0, var(--bg) 82%);
}

.customer-logo {
  max-width: 880px;
  margin: 0 auto 24px;
  display: grid;
  justify-items: center;
}

.customer-logo .brand {
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.customer-logo .brand-mark {
  width: 84px;
  height: 62px;
}

.customer-logo .brand-copy strong {
  color: var(--gold-2);
  font-size: 3rem;
}

.customer-logo.no-line .gold-divider {
  display: none;
}

.gold-divider {
  width: 100%;
  margin-top: 24px;
  height: 1px;
  background: var(--gold);
  position: relative;
}

.gold-divider span {
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

.customer-shell {
  max-width: 820px;
  margin: 0 auto 38px;
}

.customer-shell h1,
.receipt-title h1,
.confirm-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
}

.quote-ref-card,
.quote-leg-card,
.quote-total-card,
.support-strip,
.review-panel,
.receipt-info-bar,
.trip-details-card,
.payment-card,
.receipt-support-card,
.book-next-card,
.confirmation-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(42, 26, 26, 0.06);
}

.quote-ref-card {
  margin: 26px 0;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote-ref-card article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 18px;
  align-items: center;
}

.quote-ref-card .icon,
.quote-leg-card .icon,
.support-strip .icon {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  padding: 12px;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(247, 231, 211, 0.7);
}

.quote-ref-card strong {
  color: var(--gold-2);
  font-size: 1.6rem;
}

.line-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  font-size: 1.65rem;
}

.line-title::after {
  content: "";
  width: 52px;
  height: 1px;
  background: var(--gold);
}

.quote-leg-list {
  display: grid;
  gap: 16px;
}

.quote-leg-card {
  padding: 20px;
}

.quote-leg-card header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.quote-leg-card header b,
.confirmation-summary article > b {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--burgundy-2);
  display: grid;
  place-items: center;
}

.quote-route {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  gap: 18px;
  align-items: center;
}

.quote-route div {
  display: grid;
  gap: 5px;
}

.quote-route span,
.trip-route-card span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-arrow {
  color: var(--gold-2);
  text-align: center;
  font-size: 1.8rem;
}

.quote-leg-card footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quote-total-card {
  margin: 24px 0;
  padding: 24px;
  display: grid;
  grid-template-columns: 58px 1fr auto auto;
  gap: 16px;
  align-items: center;
}

.quote-total-card > .icon {
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 50%;
  color: var(--gold);
  background: var(--burgundy-2);
}

.quote-total-card strong {
  color: var(--gold-2);
  font-size: 2.4rem;
}

.benefit-row {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: center;
}

.benefit-row article {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.benefit-row .icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(247, 231, 211, 0.7);
}

.customer-actions {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.customer-actions.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.support-strip {
  margin: 28px auto 40px;
  padding: 22px;
  display: grid;
  grid-template-columns: 58px 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.confirm-hero,
.receipt-title {
  max-width: 1020px;
  margin: 0 auto 28px;
  text-align: center;
}

.giant-check,
.receipt-title > span {
  width: 74px;
  height: 74px;
  margin: 14px auto 22px;
  color: var(--gold-2);
  display: grid;
  place-items: center;
}

.giant-check .icon,
.receipt-title > span .icon {
  width: 72px;
  height: 72px;
}

.booking-reference {
  width: min(430px, 100%);
  margin: 30px auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  display: grid;
  gap: 5px;
}

.booking-reference strong {
  color: var(--gold-2);
  font-size: 2rem;
}

.confirm-benefits {
  max-width: 980px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.confirm-benefits article {
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.confirm-benefits article:last-child {
  border-right: 0;
}

.confirm-benefits .icon {
  width: 42px;
  height: 42px;
  color: var(--gold-2);
}

.confirm-benefits span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.confirmation-summary {
  max-width: 1080px;
  margin: 0 auto 34px;
  padding: 28px;
}

.confirmation-summary article {
  display: grid;
  grid-template-columns: 38px 1fr 260px;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.confirmation-summary article:last-child {
  border-bottom: 0;
}

.confirm-note {
  text-align: center;
  font-size: 1.05rem;
}

.receipt-title {
  max-width: 1100px;
}

.review-panel {
  max-width: 1120px;
  margin: 0 auto 26px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.review-stars-side {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
}

.star-badge {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle, var(--burgundy), var(--burgundy-2));
  display: grid;
  place-items: center;
}

.star-badge .icon {
  width: 52px;
  height: 52px;
  fill: currentColor;
}

.rating-stars {
  display: flex;
  gap: 12px;
}

.rating-stars button {
  border: 0;
  background: transparent;
  color: #d6c2a0;
  font-size: 2.6rem;
}

.rating-stars button.selected,
.rating-stars button:hover {
  color: var(--gold-2);
}

.receipt-info-bar {
  max-width: 1120px;
  margin: 0 auto 22px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.receipt-info-bar article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.receipt-info-bar article:last-child {
  border-right: 0;
}

.receipt-info-bar .icon {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--gold-2);
  border-radius: 50%;
  background: rgba(247, 231, 211, 0.7);
}

.receipt-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 20px;
}

.trip-details-card {
  grid-column: 1 / -1;
  padding: 28px;
}

.trip-route-card {
  display: grid;
  grid-template-columns: 30px 1fr 120px 260px;
  gap: 16px;
  align-items: start;
}

.route-line {
  grid-row: span 2;
  width: 2px;
  height: 132px;
  margin: 8px auto 0;
  background: var(--gold);
  position: relative;
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--burgundy-2);
  transform: translateX(-50%);
}

.route-line::before {
  top: -2px;
}

.route-line::after {
  bottom: -2px;
  background: var(--gold-2);
}

.trip-route-card aside {
  grid-row: span 2;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.trip-route-card aside .icon {
  width: 46px;
  height: 46px;
  color: var(--gold-2);
}

.trip-route-card aside strong {
  color: var(--burgundy-2);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.trip-details-card footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.payment-card,
.receipt-support-card {
  padding: 28px;
}

.payment-card p,
.payment-card h3 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.payment-card h3 strong {
  color: var(--gold-2);
  font-size: 2rem;
}

.payment-card footer {
  display: flex;
  justify-content: space-between;
}

.payment-card footer b {
  padding: 4px 13px;
  color: var(--success-green, #2E7D32);
  background: #dff2df;
  border-radius: 999px;
}

.receipt-support-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,253,249,.9), rgba(248,236,219,.6));
}

.receipt-support-card > .icon {
  width: 54px;
  height: 54px;
  color: var(--gold-2);
}

.receipt-support-card a {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.book-next-card {
  max-width: 1120px;
  margin: 20px auto 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.book-next-card > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.book-next-card .icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(247, 231, 211, 0.7);
}

/* Dispatch dashboard */
.dispatch-app {
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  display: grid;
  grid-template-columns: 280px 1fr;
}

.dispatch-sidebar {
  min-height: calc(100vh - 60px);
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.72);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.dispatch-sidebar .brand {
  min-width: 0;
}

.dispatch-sidebar nav {
  display: grid;
  gap: 8px;
}

.dispatch-sidebar nav a {
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.dispatch-sidebar nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2));
}

.dispatch-sidebar nav a b,
.dispatch-bell b {
  margin-left: auto;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  color: #fff;
  background: #B3261E;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.dispatch-support {
  margin-top: auto;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.dispatch-support .icon {
  width: 42px;
  height: 42px;
  color: var(--gold-2);
}

.dispatch-main {
  padding: 24px;
  overflow: hidden;
}

.dispatch-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.dispatch-header > div,
.dispatch-header aside {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dispatch-header h1 {
  font-size: 2rem;
}

.dispatch-header p {
  margin: 2px 0 0;
  color: var(--muted);
}

.dash-menu,
.dispatch-bell {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  position: relative;
}

.dispatch-search {
  min-width: 360px;
  position: relative;
}

.dispatch-search input {
  padding-right: 44px;
}

.dispatch-search .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  color: var(--gold-2);
  transform: translateY(-50%);
}

.dispatch-bell b {
  position: absolute;
  right: -6px;
  top: -7px;
}

.alerts-dropdown,
.map-filter-popover {
  position: absolute;
  z-index: 20;
  right: 160px;
  top: 78px;
  width: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.dispatch-profile {
  display: grid !important;
  grid-template-columns: 42px 1fr;
  gap: 0 10px !important;
}

.dispatch-profile span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ddd;
  display: grid;
  place-items: center;
}

.dispatch-profile small {
  color: var(--muted);
}

.dispatch-stats {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.dispatch-stats article,
.dispatch-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(42, 26, 26, 0.06);
}

.dispatch-stats article {
  padding: 18px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
}

.dispatch-stats .icon {
  width: 50px;
  height: 50px;
  padding: 12px;
  color: var(--gold-2);
  border-radius: 50%;
  background: rgba(247, 231, 211, 0.72);
}

.dispatch-stats strong {
  display: block;
  color: var(--burgundy-2);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
}

.dispatch-stats small {
  color: #2E7D32;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: 0.47fr 0.53fr;
  gap: 18px;
}

.dispatch-card {
  padding: 18px;
}

.dispatch-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.dispatch-card h2 {
  font-size: 1.35rem;
}

.trip-list {
  display: grid;
}

.dispatch-trip-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr 90px 168px 36px;
  gap: 14px;
  align-items: center;
}

.dispatch-trip-row time strong {
  display: block;
  font-size: 1.18rem;
}

.dispatch-trip-row p,
.dispatch-trip-row small {
  margin: 2px 0;
}

.service-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f5ecdf;
  color: var(--gold-2);
  text-align: center;
  font-size: 0.86rem;
}

.driver-cell {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0 10px;
}

.driver-cell .avatar,
.driver-overlay .avatar {
  grid-row: span 3;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--burgundy);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
}

em.success {
  color: #2E7D32;
}

em.warning {
  color: #C47A1C;
}

em.alert {
  color: #B3261E;
}

.row-menu-btn {
  border: 0;
  background: transparent;
}

.dispatch-map {
  height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.dispatch-map iframe,
.dispatch-map > img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.map-marker {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.map-marker.green {
  background: #4f9238;
}

.map-marker.burgundy {
  background: var(--burgundy);
}

.map-marker.gold {
  background: var(--gold-2);
}

.driver-overlay {
  position: absolute;
  right: 14px;
  top: 14px;
  bottom: 14px;
  width: 255px;
  padding: 16px;
  overflow: auto;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.driver-overlay article {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  gap: 10px;
  align-items: center;
}

.dispatch-lower {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.65fr;
  gap: 18px;
}

.dispatch-lower button,
.quick-actions a,
.quick-actions button {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  text-align: left;
}

.dispatch-lower button {
  width: 100%;
  padding: 12px;
  display: grid;
  gap: 3px;
}

.quick-actions div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quick-actions a,
.quick-actions button {
  min-height: 104px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2));
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  font-weight: 800;
}

.quick-actions a:nth-child(even),
.quick-actions button:nth-child(even) {
  background: linear-gradient(135deg, #d39f44, #a66e1f);
}

.booking-board {
  margin-top: 18px;
}

.booking-board > header {
  display: grid;
  justify-content: start;
}

.booking-control-row {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 126px 126px 170px repeat(6, auto);
  gap: 10px;
  align-items: center;
}

.dispatch-empty-state,
.dispatch-empty-mini,
.dispatch-empty-copy {
  color: var(--muted);
}

.dispatch-empty-state {
  margin-top: 14px;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(248, 244, 238, 0.68);
  display: grid;
  gap: 6px;
}

.dispatch-empty-state strong,
.dispatch-empty-mini strong {
  color: var(--ink);
}

.dispatch-empty-mini {
  min-height: 92px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(248, 244, 238, 0.68);
  display: grid;
  align-content: center;
  gap: 6px;
}

.booking-control-row > div {
  display: grid;
  gap: 4px;
}

.booking-detail-panel {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.booking-detail-panel summary {
  color: var(--gold-2);
  font-weight: 800;
  cursor: pointer;
}

.booking-detail-panel div {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(248, 244, 238, 0.68);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 14px;
}

.booking-control-row label {
  font-size: 0.72rem;
}

.booking-control-row input,
.booking-control-row select {
  min-height: 38px;
  padding: 0 10px;
}

.booking-control-row button {
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.booking-control-row .paid-toggle.paid {
  color: #fff;
  background: #2E7D32;
}

.booking-control-row .danger {
  color: #fff;
  background: #B3261E;
}

.dispatch-footer {
  grid-column: 1 / -1;
  min-height: 64px;
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dispatch-footer .brand-copy strong,
.dispatch-footer .brand-copy small {
  color: #fff;
}

.modal-root[hidden] {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 24px;
  background: rgba(42, 26, 26, 0.32);
  display: grid;
  place-items: center;
}

.modal-card {
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
}

.modal-form,
.modal-actions {
  display: grid;
  gap: 12px;
}

.modal-actions button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

@media (max-width: 1180px) {
  .home-hero,
  .home-split,
  .flow-panel,
  .flow-panel.reverse,
  .dispatch-grid,
  .dispatch-lower,
  .receipt-grid {
    grid-template-columns: 1fr;
  }

  .flow-card-row,
  .dispatch-stats,
  .application-hero-benefits,
  .application-benefits,
  .technology-feature-grid,
  .compact-dark-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .dispatch-app {
    grid-template-columns: 92px 1fr;
  }

  .dispatch-sidebar .brand-copy,
  .dispatch-sidebar nav span,
  .dispatch-support strong,
  .dispatch-support span,
  .dispatch-support a {
    display: none;
  }

  .dispatch-sidebar {
    align-items: center;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1240px);
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 20px;
  }

  .booking-actions-row,
  .flow-card-row,
  .home-split,
  .application-grid,
  .application-return-fields,
  .application-hero-benefits,
  .application-benefits,
  .technology-feature-grid,
  .compact-dark-panel,
  .booking-detail-panel div,
  .quote-ref-card,
  .quote-route,
  .quote-leg-card footer,
  .quote-total-card,
  .benefit-row,
  .customer-actions,
  .support-strip,
  .confirm-benefits,
  .confirmation-summary article,
  .review-panel,
  .review-stars-side,
  .receipt-info-bar,
  .trip-route-card,
  .trip-details-card footer,
  .book-next-card,
  .quick-actions div {
    grid-template-columns: 1fr;
  }

  .flow-panel,
  .flow-panel.reverse {
    padding: 20px;
  }

  .home-scroll-page {
    gap: 36px;
  }

  .home-section + .home-section {
    padding-top: 30px;
  }

  .home-split img {
    height: 250px;
  }

  .home-section-actions .btn {
    width: 100%;
  }

  .customer-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .application-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.86) 58%, rgba(255, 250, 243, 0.4) 100%),
      var(--hero-image) center / cover;
  }

  .application-copy {
    padding: 46px 0;
  }

  .application-form {
    padding: 20px;
  }

  .app-toggle {
    align-items: stretch;
    flex-direction: column;
  }

  .customer-logo .brand-copy strong {
    font-size: 2.3rem;
  }

  .quote-total-card,
  .book-next-card,
  .dispatch-footer {
    display: grid;
    text-align: center;
    justify-items: center;
  }

  .dispatch-app {
    grid-template-columns: 1fr;
  }

  .dispatch-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 80;
    width: 280px;
    transform: translateX(-102%);
    transition: transform 0.2s ease;
  }

  .dispatch-app.sidebar-open .dispatch-sidebar {
    transform: translateX(0);
  }

  .dispatch-sidebar .brand-copy,
  .dispatch-sidebar nav span,
  .dispatch-support strong,
  .dispatch-support span,
  .dispatch-support a {
    display: initial;
  }

  .dispatch-main {
    padding: 16px;
  }

  .dispatch-header,
  .dispatch-header aside,
  .dispatch-header > div {
    align-items: stretch;
    flex-direction: column;
  }

  .dispatch-search {
    min-width: 0;
  }

  .dispatch-stats {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .dispatch-stats article {
    min-width: 210px;
  }

  .dispatch-trip-row {
    grid-template-columns: 56px 1fr 34px;
  }

  .dispatch-trip-row .service-tag,
  .dispatch-trip-row .driver-cell {
    grid-column: 2 / -1;
  }

  .dispatch-map {
    height: 620px;
  }

  .driver-overlay {
    left: 12px;
    right: 12px;
    top: auto;
    height: 260px;
    width: auto;
  }

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