:root {
  --bg: #191614;
  --bg-elevated: rgba(255, 250, 244, 0.06);
  --panel: rgba(255, 250, 244, 0.08);
  --panel-strong: #f4ede4;
  --text: #faf5ef;
  --muted: #ccbcab;
  --ink: #201b18;
  --line: rgba(255, 244, 232, 0.11);
  --accent: #d8a96f;
  --accent-strong: #f0bd7d;
  --accent-soft: rgba(216, 169, 111, 0.14);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(216, 169, 111, 0.18), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(124, 138, 154, 0.14), transparent 20%),
    linear-gradient(180deg, #15110f 0%, #221b18 46%, #120e0c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 80%);
}

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

button,
select {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 244, 232, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(24px);
  background: rgba(20, 15, 13, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

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

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 244, 232, 0.16);
  box-shadow: 0 10px 24px rgba(216, 169, 111, 0.12);
}

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

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

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #241912;
  box-shadow: 0 18px 46px rgba(216, 169, 111, 0.2);
}

.button-secondary {
  background: rgba(255, 250, 244, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
  padding: 96px 0 56px;
}

.hero-copy {
  padding: 28px 0;
}

.hero-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border: 1px solid rgba(240, 189, 125, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.05);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.08), rgba(10, 8, 7, 0.52)),
    linear-gradient(90deg, rgba(15, 11, 10, 0.5), transparent 46%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  max-width: 24rem;
}

.hero-visual figcaption .eyebrow {
  margin-bottom: 10px;
}

.hero-visual figcaption strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.7rem, 6vw, 6.8rem);
}

.hero-text,
.section-heading p,
.feature-card p,
.route-card p,
.process-grid p,
.fleet-panel p,
.review-card p,
.faq-list p,
.hero-card-top p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 26px 0 0;
  font-size: 1.08rem;
}

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

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

.hero-actions.stacked {
  margin-top: 22px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-chips li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.06), rgba(255, 250, 244, 0.025));
  color: #f4e7d7;
  font-size: 0.92rem;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.hero-notes div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.08), rgba(255, 250, 244, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 244, 232, 0.04);
}

.note-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(240, 189, 125, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(216, 169, 111, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.11), rgba(255, 250, 244, 0.04));
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 169, 111, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 244, 232, 0.04);
  pointer-events: none;
}

.hero-card-top h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.quote-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.quote-form label {
  display: grid;
  gap: 10px;
  color: #f7efe5;
  font-size: 0.92rem;
  font-weight: 600;
}

.quote-form select,
.quote-form input {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(24, 18, 16, 0.9);
  color: var(--text);
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 244, 232, 0.03);
}

.location-search {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 10px;
}

.search-field {
  position: relative;
  display: block;
  min-width: 0;
}

.location-search.hidden,
.button.hidden,
.autocomplete-results.hidden {
  display: none;
}

.field-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.search-field input {
  padding-right: 54px;
}

.search-clear {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.08);
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.search-clear:hover,
.search-clear:focus-visible {
  background: rgba(240, 189, 125, 0.16);
  color: #fff1dc;
}

.autocomplete-results {
  display: grid;
  gap: 8px;
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  right: 0;
  z-index: 24;
  max-height: 296px;
  overflow-y: auto;
  padding: 4px 4px 0;
  padding-right: 4px;
  border-radius: 18px;
  background: rgba(34, 28, 24, 0.94);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 169, 111, 0.45) rgba(255, 250, 244, 0.04);
}

.quote-output,
.quote-metrics,
.quote-metrics div {
  min-width: 0;
}

.autocomplete-results::-webkit-scrollbar {
  width: 8px;
}

.autocomplete-results::-webkit-scrollbar-track {
  background: rgba(255, 250, 244, 0.04);
  border-radius: 999px;
}

.autocomplete-results::-webkit-scrollbar-thumb {
  background: rgba(216, 169, 111, 0.45);
  border-radius: 999px;
}

.autocomplete-option {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(240, 189, 125, 0.18);
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.04);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.autocomplete-option strong {
  font-size: 0.94rem;
}

.autocomplete-option span {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.quote-output {
  padding: 18px;
  border: 1px solid rgba(240, 189, 125, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 245, 236, 0.08), rgba(255, 245, 236, 0.03));
}

.quote-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.quote-output strong {
  display: block;
  font-size: 2rem;
  color: #fff4e7;
}

.quote-output span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.quote-service-note {
  margin: 14px 0 0;
  color: rgba(240, 232, 224, 0.82);
  font-size: 0.92rem;
  line-height: 1.7;
}

.quote-service-note.hidden {
  display: none;
}

.quote-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.quote-metrics div {
  padding: 14px;
  border: 1px solid rgba(255, 244, 232, 0.08);
  border-radius: 14px;
  background: rgba(20, 15, 13, 0.42);
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote-metrics strong {
  font-size: 1rem;
}

.metric-sub-label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-secondary {
  color: #f4e7d7;
}

.proof-strip,
.section,
.final-cta {
  margin-top: 28px;
}

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

.proof-strip div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.05);
}

.proof-strip strong,
.review-card strong {
  display: block;
  margin-bottom: 8px;
}

.proof-strip span,
.review-card span {
  color: var(--muted);
}

.section {
  padding: 104px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.narrow {
  max-width: 640px;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.section-heading p {
  margin: 18px 0 0;
}

.feature-grid,
.route-grid,
.process-grid,
.review-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.feature-card,
.route-card,
.process-grid article,
.review-card,
.fleet-panel,
.faq-list details,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.05);
}

.feature-card {
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 244, 232, 0.02);
}

.feature-card span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 800;
}

.feature-card h3,
.route-card h3,
.process-grid h3,
.fleet-panel h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.comfort-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(240, 189, 125, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(216, 169, 111, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.07), rgba(255, 250, 244, 0.035));
}

.comfort-spotlight-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  min-height: 360px;
  background: rgba(255, 250, 244, 0.04);
}

.comfort-spotlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comfort-spotlight-copy {
  display: grid;
  align-content: center;
}

.comfort-spotlight-copy h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.comfort-spotlight-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.comfort-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.comfort-points li {
  position: relative;
  padding-left: 24px;
  color: #f0e4d6;
}

.comfort-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 4px rgba(216, 169, 111, 0.12);
}

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

.route-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 244, 232, 0.02);
}

.route-card ul {
  margin: 4px 0 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.route-card a {
  margin-top: auto;
  color: var(--accent-strong);
  font-weight: 700;
}

.route-card-accent {
  background:
    linear-gradient(180deg, rgba(216, 169, 111, 0.14), rgba(255, 250, 244, 0.04)),
    rgba(255, 250, 244, 0.055);
}

.route-label,
.panel-title {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.process-grid article {
  padding: 24px;
}

.fleet-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.fleet-visual-stack {
  display: grid;
  gap: 16px;
}

.fleet-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(240, 189, 125, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.04);
  box-shadow: var(--shadow);
}

.fleet-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 10, 9, 0.08), rgba(14, 10, 9, 0.58)),
    linear-gradient(90deg, rgba(16, 11, 10, 0.38), transparent 55%);
  pointer-events: none;
}

.fleet-visual-large {
  min-height: 420px;
}

.fleet-visual-small {
  min-height: 250px;
}

.fleet-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fleet-visual figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  max-width: 26rem;
}

.fleet-visual figcaption strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.fleet-panels {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fleet-panel {
  min-height: 180px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.08), rgba(255, 250, 244, 0.03));
}

.trip-gallery-shell {
  padding: 28px;
  border: 1px solid rgba(240, 189, 125, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(216, 169, 111, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.07), rgba(255, 250, 244, 0.03));
  box-shadow: var(--shadow);
}

.trip-gallery-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 22px;
}

.trip-gallery-header h3 {
  margin: 8px 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.trip-gallery-meta {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.trip-gallery-list,
.trip-gallery-page-list {
  display: grid;
  gap: 18px;
}

.trip-gallery-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(240, 189, 125, 0.1);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.055), rgba(255, 250, 244, 0.025));
}

.trip-gallery-card-media {
  display: grid;
  gap: 10px;
  align-content: center;
}

.trip-gallery-photo {
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(240, 189, 125, 0.1), transparent 42%),
    rgba(18, 13, 11, 0.68);
  aspect-ratio: 16 / 10;
}

.trip-gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  image-orientation: from-image;
  object-fit: contain;
}

.trip-gallery-photo-count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.trip-gallery-photo-count-2,
.trip-gallery-photo-count-3,
.trip-gallery-photo-count-4,
.trip-gallery-photo-count-5 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trip-gallery-photo-count-5 .trip-gallery-photo:last-child {
  grid-column: span 2;
}

.trip-gallery-card-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 6px 4px;
}

.trip-gallery-card-meta {
  display: grid;
  gap: 12px;
}

.trip-gallery-card-route {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.trip-gallery-card-date {
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.trip-gallery-card-context {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.trip-gallery-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

.trip-gallery-empty {
  padding: 28px;
  border: 1px dashed rgba(240, 189, 125, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.03);
}

.trip-gallery-empty.hidden {
  display: none;
}

.trip-gallery-empty h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
}

.trip-gallery-empty p {
  margin: 0;
  color: var(--muted);
}

.trip-gallery-page .page-shell {
  padding-bottom: 120px;
}

.trip-gallery-page-hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.vehicle-page .page-shell {
  padding-bottom: 120px;
}

.vehicle-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 32px;
  align-items: stretch;
  padding: 88px 0 46px;
}

.vehicle-hero-copy {
  padding: 24px 0;
}

.vehicle-hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  max-width: 10.5ch;
}

.vehicle-hero-text {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.vehicle-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.vehicle-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.07), rgba(255, 250, 244, 0.03));
}

.vehicle-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  margin: 0;
  border: 1px solid rgba(240, 189, 125, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.05);
  box-shadow: var(--shadow);
}

.vehicle-hero-media::after,
.vehicle-showcase-media::after,
.vehicle-capacity-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 10, 9, 0.08), rgba(14, 10, 9, 0.54)),
    linear-gradient(90deg, rgba(16, 11, 10, 0.3), transparent 58%);
  pointer-events: none;
}

.vehicle-hero-media img,
.vehicle-showcase-media img,
.vehicle-capacity-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vehicle-hero-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  max-width: 24rem;
}

.vehicle-hero-media figcaption strong,
.vehicle-capacity-card div h3 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
}

.vehicle-hero-media figcaption strong {
  display: block;
  font-size: 1.42rem;
  line-height: 1.06;
}

.vehicle-proof-strip {
  margin-top: 18px;
}

.vehicle-section {
  padding-top: 84px;
}

.vehicle-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 30px;
  align-items: stretch;
  padding: 26px;
  border: 1px solid rgba(240, 189, 125, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(216, 169, 111, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.07), rgba(255, 250, 244, 0.03));
}

.vehicle-showcase-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 420px;
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.04);
}

.vehicle-showcase-copy {
  display: grid;
  align-content: center;
}

.vehicle-showcase-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.vehicle-showcase-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.vehicle-grid-section .section-heading {
  margin-bottom: 34px;
}

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

.vehicle-capacity-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.05);
}

.vehicle-capacity-card figure {
  position: relative;
  margin: 0;
  min-height: 300px;
}

.vehicle-capacity-card div {
  padding: 22px;
}

.vehicle-capacity-card div h3 {
  margin: 0 0 10px;
  font-size: 1.38rem;
  line-height: 1.08;
}

.vehicle-capacity-card div p:not(.panel-title) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.vehicle-capacity-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
}

.vehicle-capacity-card-wide figure {
  min-height: 360px;
}

.vehicle-capacity-table {
  padding: 26px;
  border: 1px solid rgba(240, 189, 125, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(216, 169, 111, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.06), rgba(255, 250, 244, 0.03));
}

.vehicle-capacity-rows {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.vehicle-capacity-row {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.04);
}

.vehicle-capacity-row strong {
  display: block;
  margin-bottom: 8px;
}

.vehicle-capacity-row span {
  color: var(--muted);
  line-height: 1.7;
}

.vehicle-final-cta {
  margin-top: 84px;
}

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

.review-card {
  padding: 24px;
}

.review-card p {
  margin-top: 0;
  font-size: 1.02rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 2px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  margin-bottom: 72px;
  background:
    radial-gradient(circle at top right, rgba(216, 169, 111, 0.16), transparent 26%),
    rgba(255, 250, 244, 0.06);
  box-shadow: var(--shadow);
}

.mobile-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: none;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(20px);
  background: rgba(18, 13, 11, 0.88);
}

.mobile-bar .button {
  flex: 1 1 0;
}

@media (max-width: 1100px) {
  .hero,
  .vehicle-hero,
  .vehicle-showcase,
  .fleet-layout,
  .trip-gallery-card,
  .route-grid,
  .feature-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    align-items: start;
  }

  .comfort-spotlight {
    grid-template-columns: 1fr;
  }

  .vehicle-facts,
  .vehicle-capacity-card-wide {
    grid-template-columns: 1fr;
  }

  .trip-gallery-card {
    grid-template-columns: 1fr;
  }

  .trip-gallery-card-copy {
    padding: 0;
  }

  .comfort-spotlight-media {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .hero,
  .vehicle-hero,
  .proof-strip,
  .feature-grid,
  .route-grid,
  .process-grid,
  .fleet-layout,
  .review-grid,
  .hero-notes,
  .comfort-spotlight,
  .form-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .trip-gallery-header {
    align-items: start;
    flex-direction: column;
  }

  .trip-gallery-meta {
    text-align: left;
  }

  .hero {
    padding-top: 48px;
  }

  .vehicle-hero {
    padding-top: 54px;
  }

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

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

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

  .hero-visual {
    order: -1;
    min-height: 260px;
  }

  .vehicle-hero-media {
    min-height: 360px;
  }

  .vehicle-showcase-media {
    min-height: 300px;
  }

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

  .hero-visual figcaption strong {
    font-size: 1.22rem;
  }

  .vehicle-hero-media figcaption strong {
    font-size: 1.18rem;
  }

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

  .section {
    padding-top: 72px;
  }

  .final-cta {
    display: grid;
  }

  .mobile-bar {
    display: flex;
  }

  body.search-active .mobile-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }

  .page-shell {
    padding-bottom: 140px;
  }

  .autocomplete-results {
    max-height: min(36vh, 240px);
    gap: 6px;
    padding: 4px 2px 0;
  }

  .autocomplete-option {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .autocomplete-option strong {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .autocomplete-option span {
    font-size: 0.74rem;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--container));
  }

  .hero-card {
    overflow: visible;
    padding: 20px 14px;
  }

  .hero-visual {
    min-height: 220px;
  }

  .vehicle-hero-media {
    min-height: 280px;
  }

  .comfort-spotlight {
    margin-top: 26px;
    padding: 16px;
    gap: 18px;
  }

  .fleet-visual-large {
    min-height: 300px;
  }

  .fleet-visual-small {
    min-height: 220px;
  }

  .comfort-spotlight-media {
    min-height: 240px;
    border-radius: 18px;
  }

  .vehicle-showcase,
  .vehicle-capacity-table,
  .trip-gallery-shell,
  .trip-gallery-card {
    padding: 16px;
    gap: 18px;
  }

  .trip-gallery-card-media,
  .trip-gallery-photo-count-2,
  .trip-gallery-photo-count-3,
  .trip-gallery-photo-count-4,
  .trip-gallery-photo-count-5 {
    grid-template-columns: 1fr;
  }

  .trip-gallery-photo-count-3 .trip-gallery-photo.is-primary,
  .trip-gallery-photo-count-5 .trip-gallery-photo.is-primary,
  .trip-gallery-photo-count-5 .trip-gallery-photo:last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .vehicle-showcase-media {
    min-height: 240px;
    border-radius: 18px;
  }

  .vehicle-capacity-card figure,
  .vehicle-capacity-card-wide figure {
    min-height: 220px;
  }

  .vehicle-capacity-card div {
    padding: 18px 16px;
  }

  .vehicle-capacity-card div h3 {
    font-size: 1.2rem;
  }

  .vehicle-hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .trip-gallery-card-route,
  .trip-gallery-page-hero h1 {
    max-width: none;
  }

  .comfort-spotlight-copy h3 {
    font-size: 1.85rem;
  }

  .comfort-points {
    gap: 8px;
  }

  .quote-form {
    gap: 12px;
  }

  .quote-form label {
    gap: 6px;
    font-size: 0.9rem;
  }

  .quote-form select,
  .quote-form input {
    min-height: 48px;
    padding-inline: 14px;
    font-size: 16px;
  }

  .search-field input {
    padding-right: 46px;
  }

  .search-clear {
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: 0.92rem;
  }

  .field-note {
    font-size: 0.8rem;
  }

  .autocomplete-results {
    max-height: min(24vh, 176px);
    gap: 5px;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    padding: 4px 0 0;
    border-radius: 16px;
  }

  .autocomplete-option {
    padding: 9px 10px;
    border-radius: 10px;
  }

  .autocomplete-option strong {
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .autocomplete-option span {
    font-size: 0.7rem;
  }

  body.search-active .field-note,
  body.search-active .quote-output,
  body.search-active .hero-actions.stacked {
    opacity: 0.18;
  }
}
