:root {
  --blue: #0b66c3;
  --blue-2: #064b93;
  --green: #12805c;
  --green-2: #0b6948;
  --navy: #111827;
  --ink: #1f2937;
  --muted: #667085;
  --line: #d7dee8;
  --soft: #f4f8fc;
  --paper: #ffffff;
  --sky: #e9f4ff;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(17, 24, 39, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

/* Generated production booking flow */
.booking-step {
  display: grid;
  gap: 15px;
}

.step-badge {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 5px 9px;
  background: #e9f4ff;
  color: var(--blue-2);
  font-size: .8rem;
  font-weight: 950;
}

.compact-counter {
  min-height: 46px;
  padding: 6px 10px;
  background: #fff;
}

.compact-counter div {
  min-height: 32px;
}

.price-btn {
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  font-size: 1rem;
}

.price-btn strong {
  color: #fff;
  font-size: 1.35rem;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  border: 1px solid #bfe7d7;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 248, 241, .94), rgba(233, 244, 255, .82)),
    #fff;
  padding: 15px;
}

.quote-panel span,
.quote-panel small {
  color: var(--muted);
  font-weight: 850;
}

.quote-panel strong {
  color: var(--green-2);
  font-size: 1.55rem;
  line-height: 1.05;
}

.upsell-btn {
  grid-row: span 2;
  min-height: 42px;
  border: 1px solid #bfe7d7;
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-2);
  padding: 0 12px;
  cursor: pointer;
  font-weight: 900;
}

.booking-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.booking-status[data-tone="warning"] {
  color: #92400e;
}

.route-card {
  padding: 0;
}

.route-card > button {
  width: 100%;
  min-height: 100%;
  display: grid;
  gap: 12px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 18px;
  text-align: left;
  cursor: pointer;
}

.route-card > a {
  margin: 0 18px 18px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #e9f4ff;
  color: var(--blue-2);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 900;
}

.route-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 26px;
  align-items: start;
}

.route-price-band,
.confirmation-grid {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

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

.route-price-band span,
.confirmation-grid article {
  border: 1px solid #d8e8e1;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  padding: 14px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}

.route-price-band small,
.confirmation-grid span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}

.route-price-band strong,
.confirmation-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  line-height: 1.1;
}

.confirmation {
  padding-top: 54px;
  padding-bottom: 54px;
}

.confirmation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
}

.adjacent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.adjacent-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #c6ddf7;
  border-radius: var(--radius);
  padding: 0 12px;
  background: #f8fbff;
  color: var(--blue-2);
  text-decoration: none;
  font-weight: 850;
}

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

.consent-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  max-width: min(480px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(215, 222, 232, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  padding: 12px;
  box-shadow: var(--shadow);
}

.consent-bar p {
  margin: 0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
}

.consent-bar button {
  min-height: 38px;
  border: 1px solid #c6ddf7;
  border-radius: var(--radius);
  background: #e9f4ff;
  color: var(--blue-2);
  padding: 0 10px;
  cursor: pointer;
  font-weight: 900;
}

.consent-bar button:first-of-type {
  border-color: #bfe7d7;
  background: var(--green);
  color: #fff;
}

.admin-card h1 {
  margin: 6px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 1020px) {
  .route-hero-grid,
  .route-price-band,
  .confirmation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .quote-panel,
  .consent-bar {
    grid-template-columns: 1fr;
  }

  .upsell-btn {
    grid-row: auto;
  }

  .route-card > button {
    padding: 16px;
  }

  .route-card > a {
    margin: 0 16px 16px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(18, 128, 92, .12), transparent 22rem),
    radial-gradient(circle at 86% 7%, rgba(11, 102, 195, .15), transparent 24rem),
    var(--soft);
  font-size: 16px;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 248, 252, .88);
  border-bottom: 1px solid rgba(215, 222, 232, .82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.nav-links,
.footer a,
.post-card {
  text-decoration: none;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  line-height: 1.1;
  font-size: 1.06rem;
}

.brand small {
  color: var(--muted);
  font-size: .84rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #3f4b5f;
  font-size: .96rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(203, 213, 225, .85);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .75);
}

.language-switch a {
  min-width: 32px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #475467;
  font-size: .78rem;
  font-weight: 900;
}

.language-switch a.active,
.language-switch a:hover {
  background: var(--blue);
  color: #fff;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.hero {
  padding: 34px 0 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
  gap: 26px;
  align-items: start;
}

.hero-copy {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 24px 0 0;
}

.eyebrow,
.mini-label {
  margin: 0;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2.5rem, 5.2vw, 5.25rem);
  line-height: .95;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 22px;
  color: #4b5565;
  font-size: 1.14rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
  font-weight: 800;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  max-width: 680px;
}

.hero-proof article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 231, 223, .95);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(237, 249, 244, .92)),
    #fff;
  padding: 16px 14px 14px;
  box-shadow: 0 16px 42px rgba(17, 24, 39, .09);
}

.hero-proof article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.hero-proof span {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  background: #e8f8f1;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 950;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  margin-top: 10px;
  color: var(--navy);
  font-size: .98rem;
  line-height: 1.15;
}

.hero-proof small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
}

.booking-card {
  border: 1px solid rgba(215, 222, 232, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.booking-card h2,
.section-head h2,
.article h1,
.article h2 {
  margin: 4px 0 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

.booking-card h2 {
  font-size: 1.55rem;
}

.live-pill {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: #e8f7ef;
  color: var(--green-2);
  font-size: .83rem;
  font-weight: 900;
}

form {
  display: grid;
  gap: 15px;
  padding: 20px;
}

.honeypot {
  display: none !important;
}

label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

label span,
.counter > span {
  color: #344054;
  font-size: .9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  padding: 10px 12px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

input[type="date"],
input[type="time"] {
  display: block;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

input[type="date"]::-webkit-date-and-time-value,
input[type="time"]::-webkit-date-and-time-value {
  width: 100%;
  margin: 0;
  text-align: left;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 102, 195, .13);
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #fff;
}

.segment {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.segment.active {
  background: linear-gradient(135deg, var(--blue), #2187e4);
  color: #fff;
}

.route-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
  gap: 10px;
  align-items: end;
}

.swap-btn {
  width: 46px;
  height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.form-grid,
.custom-route,
.counter-row,
.vehicle-grid,
.route-grid,
.post-grid,
.promise-grid,
.admin-grid {
  display: grid;
  gap: 12px;
}

.form-grid.two,
.custom-route {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.three,
.counter-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.counter {
  min-height: 94px;
  display: grid;
  gap: 10px;
  border: 1px solid #d6dde8;
  border-radius: var(--radius);
  background: #fbfdff;
  padding: 12px;
}

.counter div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.counter button {
  width: 34px;
  height: 34px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.counter button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.counter b {
  min-width: 2ch;
  text-align: center;
  color: var(--navy);
  font-size: 1.22rem;
}

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

.vehicle-card {
  min-height: 248px;
  display: grid;
  align-content: start;
  gap: 0;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.vehicle-card:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
}

.vehicle-card.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 102, 195, .11);
}

.vehicle-card:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.vehicle-media {
  width: 100%;
  height: 128px;
  display: block;
  overflow: hidden;
  background: #eef6fb;
  border-bottom: 1px solid #d9e5ef;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform .22s ease;
}

.vehicle-card:hover .vehicle-media img,
.vehicle-card.active .vehicle-media img {
  transform: scale(1.07);
}

.vehicle-card-body {
  min-height: 120px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 13px 14px 14px;
}

.mobile-book-bar {
  display: none;
}

.vehicle-card strong,
.post-card strong,
.route-card strong {
  color: var(--navy);
  line-height: 1.2;
}

.vehicle-card small,
.post-card small,
.route-card small {
  color: var(--muted);
  font-size: .84rem;
}

.vehicle-price {
  margin-top: auto;
  color: var(--green-2);
  font-size: 1.06rem;
  font-weight: 900;
}

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

.quote-box div {
  border-radius: var(--radius);
  padding: 14px;
  background: linear-gradient(135deg, #0b66c3, #064b93);
  color: #fff;
}

.quote-box div + div {
  background: linear-gradient(135deg, #12805c, #0b6948);
}

.quote-box span,
.quote-box small {
  display: block;
  color: rgba(255, 255, 255, .8);
  font-weight: 800;
}

.quote-box strong {
  display: block;
  color: #fff;
  font-size: 1.85rem;
  line-height: 1.05;
  margin: 4px 0;
}

.actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.primary-btn,
.secondary-btn,
.admin-btn {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.primary-btn {
  position: relative;
  background: linear-gradient(135deg, #12805c, #0b6948);
  color: #fff;
  border: 1px solid rgba(6, 95, 70, .42);
  box-shadow: 0 12px 28px rgba(18, 128, 92, .22);
  letter-spacing: 0;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #14966b, #09583d);
  box-shadow: 0 16px 34px rgba(18, 128, 92, .28);
  transform: translateY(-1px);
}

.primary-btn:active {
  transform: translateY(0);
}

.reserve-btn {
  min-height: 68px;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 15px 10px 10px;
  text-align: left;
  overflow: hidden;
}

.reserve-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  transform: translateX(-115%);
  transition: transform .32s ease;
}

.reserve-btn:hover::after {
  transform: translateX(115%);
}

.reserve-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: #fff;
  box-shadow: 0 10px 22px rgba(3, 86, 53, .28);
}

.reserve-icon svg {
  width: 30px;
  height: 30px;
  color: #16a05d;
}

.reserve-copy,
.reserve-arrow {
  position: relative;
  z-index: 1;
}

.reserve-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  flex: 1 1 auto;
}

.reserve-copy strong,
.reserve-copy small {
  display: block;
  color: #fff;
  line-height: 1.15;
}

.reserve-copy strong {
  font-size: 1.05rem;
}

.reserve-copy small {
  color: rgba(255, 255, 255, .78);
  font-size: .81rem;
  font-weight: 800;
}

.reserve-arrow {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: rgba(255, 255, 255, .9);
}

.secondary-btn,
.admin-btn {
  background: #e9f4ff;
  color: var(--blue-2);
  border: 1px solid #c6ddf7;
}

.form-note,
.admin-note,
.article-note {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.mail-sink {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.visual-band {
  padding: 20px 0 40px;
}

.routes-section,
.blog-preview,
.faq-section,
.page-hero,
.admin-section {
  padding: 44px 0;
  scroll-margin-top: 92px;
}

.routes-section {
  padding-top: 52px;
}

.blog-preview {
  padding-top: 58px;
}

.image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 18px;
  align-items: stretch;
}

.hero-image {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dbeafe;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

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

.promise-grid article,
.route-card,
.post-card,
.admin-card,
.article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}

.promise-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.promise-grid h3,
.promise-grid p {
  margin: 0;
}

.promise-grid p {
  color: var(--muted);
}

.icon-dot {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--blue);
  font-weight: 900;
  font-size: .82rem;
}

.section-head {
  max-width: 740px;
  margin-bottom: 18px;
}

.route-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: end;
  gap: 22px;
}

.section-head.compact {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.blog-preview .section-head h2 {
  max-width: 840px;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
}

.section-copy {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1rem;
}

.section-head a,
.section-link {
  color: var(--blue);
  font-weight: 900;
}

.section-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c6ddf7;
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(17, 24, 39, .05);
}

.route-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 16px;
}

.route-toolbar span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfe7df;
  border-radius: var(--radius);
  padding: 6px 11px;
  background: #f0fbf6;
  color: var(--green-2);
  font-size: .86rem;
  font-weight: 850;
}

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

.route-card,
.post-card {
  position: relative;
  min-height: 170px;
  display: grid;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.route-card {
  text-align: left;
  grid-template-rows: auto auto auto 1fr auto;
}

.route-card::before,
.post-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: .86;
}

.route-card-top,
.route-stats {
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-card-top {
  justify-content: space-between;
}

.route-code,
.route-price {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 6px 9px;
  font-size: .82rem;
  font-weight: 900;
}

.route-code {
  background: var(--navy);
  color: #fff;
}

.route-price {
  background: #e8f8f1;
  color: var(--green-2);
}

.route-stats {
  flex-wrap: wrap;
}

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

.route-fares span {
  display: grid;
  gap: 2px;
  border: 1px solid #d8e8e1;
  border-radius: var(--radius);
  padding: 8px;
  background: #f8fffb;
}

.route-fares small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
}

.route-fares b {
  color: var(--green-2);
  font-size: .96rem;
  font-weight: 950;
}

.route-stats small {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 5px 8px;
  background: #f8fbff;
}

.route-card-action {
  color: var(--blue-2);
  font-size: .9rem;
  font-weight: 900;
}

.post-kicker {
  color: var(--green-2);
  font-weight: 900;
  font-size: .88rem;
  text-transform: uppercase;
}

.post-card:hover,
.route-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 16px 42px rgba(17, 24, 39, .11);
}

.post-card {
  grid-template-rows: auto auto 1fr auto;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 248, 252, .86)),
    #fff;
}

.post-meta {
  width: fit-content;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 5px 9px;
  background: var(--sky);
  color: var(--blue-2);
  font-size: .82rem;
  font-weight: 850;
}

.faq-section {
  padding-bottom: 58px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .05);
}

summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer strong {
  color: var(--navy);
}

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

.footer-badge {
  color: var(--blue) !important;
  font-weight: 900;
}

.footer-grid > div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer a {
  color: var(--blue);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: min(380px, calc(100% - 36px));
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  font-weight: 800;
}

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

.hidden {
  display: none !important;
}

.page-hero {
  background: linear-gradient(135deg, #e9f4ff, #effaf3);
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(2.1rem, 5vw, 4.3rem);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.language-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-wrap {
  padding: 34px 0 56px;
}

.article {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px;
}

.article h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.article h2 {
  margin-top: 28px;
  font-size: 1.45rem;
}

.article p,
.article li {
  color: #475467;
}

.article ul {
  padding-left: 22px;
}

.admin-section {
  min-height: calc(100vh - 72px);
}

.admin-grid {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.admin-card {
  padding: 18px;
}

.admin-card h2,
.admin-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.admin-section-title,
.booking-item-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.admin-section-title {
  margin-bottom: 12px;
}

.admin-count {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 6px 10px;
  background: #e8f8f1;
  color: var(--green-2);
  font-size: .84rem;
  font-weight: 900;
  white-space: nowrap;
}

.admin-bookings {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.booking-list {
  display: grid;
  gap: 10px;
}

.booking-empty,
.booking-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  padding: 14px;
}

.booking-empty p,
.booking-item p {
  margin: 0;
}

.booking-empty strong,
.booking-item strong {
  color: var(--navy);
}

.booking-item {
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
}

.booking-item-head small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .82rem;
}

.booking-item-head > span {
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 6px 9px;
  font-size: .86rem;
  font-weight: 900;
}

.booking-item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.booking-item-grid p {
  display: grid;
  gap: 2px;
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 8px;
  color: #334155;
  font-size: .88rem;
}

.booking-item-grid b,
.booking-note b {
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
}

.booking-note {
  margin-top: 10px !important;
  color: #475467;
  font-size: .9rem;
}

.admin-archive {
  display: grid;
  gap: 10px;
  border: 1px solid #d8e8e1;
  border-radius: var(--radius);
  background: #f8fffb;
  padding: 12px;
}

.admin-actions.compact {
  margin-top: 0;
}

.admin-table {
  display: grid;
  gap: 8px;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) repeat(4, minmax(90px, .6fr));
  gap: 8px;
  align-items: center;
}

.admin-row.header {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 900;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

pre {
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 12px;
  color: #334155;
  font-size: .88rem;
}

@media (max-width: 1020px) {
  .hero-grid,
  .image-grid,
  .admin-grid,
  .route-head {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: static;
    padding-top: 8px;
  }

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

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

  body {
    padding-bottom: 0;
  }

  .topbar {
    position: relative;
  }

  .nav {
    min-height: 56px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: .92rem;
  }

  .brand strong {
    font-size: .98rem;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: .9rem;
  }

  .brand small,
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .language-switch {
    display: none;
  }

  .hero {
    padding: 20px 0 12px;
  }

  .visual-band {
    padding-top: 20px;
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 3.25rem);
  }

  .lead {
    font-size: 1rem;
  }

  .trust-strip {
    margin-bottom: 8px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .hero-proof article {
    padding: 12px 12px 12px 14px;
  }

  .section-head.compact {
    display: grid;
    align-items: start;
  }

  .section-copy {
    margin-bottom: 0;
  }

  .route-toolbar span {
    flex: 1 1 100%;
  }

  .route-fields,
  .form-grid.two,
  .form-grid.three,
  .custom-route,
  .counter-row,
  .vehicle-grid,
  .quote-box,
  .actions,
  .route-grid,
  .post-grid,
  .faq-grid,
  .footer-grid,
  .admin-row {
    grid-template-columns: 1fr;
  }

  .route-card,
  .post-card {
    min-height: 154px;
  }

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

  .admin-section-title,
  .booking-item-head {
    display: grid;
  }

  .reserve-btn {
    width: 100%;
    min-height: 60px;
  }

  .reserve-copy strong {
    font-size: .95rem;
  }

  .mobile-book-bar {
    display: none !important;
  }

  .swap-btn {
    width: 100%;
  }

  .booking-card-head,
  .section-head.compact {
    display: grid;
  }

  form {
    padding: 16px;
  }

  .hero-image {
    min-height: 240px;
  }

  .hero-image img {
    min-height: 240px;
  }

  .footer-grid > div:last-child {
    justify-content: flex-start;
  }

  .article {
    padding: 20px;
  }
}

/* Layout polish: tighter hero, compact route cards, stronger first impression */
.hero {
  padding: 30px 0 22px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr);
  gap: 34px;
}

.hero-copy {
  top: 92px;
  padding-top: 28px;
}

.hero-title {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 4.25vw, 4.25rem);
  line-height: 1;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-sub {
  margin-top: 6px;
  color: #0d2d4f;
  font-size: .68em;
  line-height: 1.06;
}

.lead {
  max-width: 600px;
  margin-bottom: 18px;
  font-size: 1.06rem;
}

.trust-strip {
  gap: 8px;
}

.trust-strip span {
  min-height: 36px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 18px rgba(17, 24, 39, .04);
}

.hero-proof {
  max-width: 630px;
  gap: 10px;
  margin-top: 16px;
}

.hero-proof article {
  min-height: 126px;
  padding: 15px 14px 14px;
  background:
    linear-gradient(145deg, #ffffff, #f3fbf7),
    #fff;
}

.booking-card {
  align-self: start;
  margin-top: 6px;
  box-shadow: 0 18px 54px rgba(17, 24, 39, .12);
}

.booking-card-head {
  padding: 18px 20px;
}

form {
  gap: 14px;
  padding: 20px;
}

.form-grid.two {
  align-items: end;
}

.price-btn {
  min-height: 54px;
  justify-content: center;
  gap: 10px;
}

.visual-band {
  padding: 18px 0 32px;
}

.image-grid {
  align-items: start;
}

.promise-grid article {
  min-height: 118px;
  grid-template-columns: 46px minmax(0, 1fr);
  align-content: start;
  align-items: start;
  border-color: #d5e8e0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 253, 249, .9)),
    #fff;
  padding: 16px;
}

.promise-grid .icon-dot {
  grid-row: 1 / span 2;
}

.promise-grid h3 {
  font-size: 1.05rem;
  line-height: 1.18;
}

.promise-grid p {
  font-size: .94rem;
  line-height: 1.38;
}

.routes-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.route-head {
  margin-bottom: 14px;
}

.route-grid,
.post-grid {
  align-items: start;
}

.route-grid {
  gap: 14px;
}

.route-card {
  min-height: 0;
  height: auto;
  align-self: start;
  gap: 0;
  padding: 0 !important;
}

.route-card > button {
  min-height: 0 !important;
  gap: 10px;
  padding: 22px 18px 14px;
}

.route-card > a {
  width: calc(100% - 36px);
  margin: 0 18px 18px;
}

.route-card-top {
  margin-bottom: 2px;
}

.route-fares span {
  padding: 9px;
}

.route-stats {
  gap: 7px;
}

.route-stats small {
  min-height: 28px;
  padding: 4px 8px;
}

.route-card-action {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
}

.blog-preview {
  padding-top: 34px;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: static;
    padding-top: 8px;
  }

  .hero-title {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 14px 0 12px;
  }

  .hero-title {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .hero-title-sub {
    font-size: .78em;
  }

  .lead {
    margin-bottom: 14px;
    font-size: .94rem;
    line-height: 1.45;
  }

  .trust-strip {
    gap: 7px;
  }

  .trust-strip span {
    min-height: 32px;
    padding: 0 10px;
    font-size: .82rem;
  }

  .hero-proof {
    display: none;
  }

  .promise-grid article {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
  }

  .booking-card {
    margin-top: 8px;
  }

  .booking-card-head {
    padding: 16px;
  }

  .route-fields,
  .form-grid.two {
    gap: 9px;
  }

  label,
  .route-fields,
  .form-grid,
  .custom-route,
  .counter-row,
  .booking-card,
  .booking-step {
    min-width: 0;
  }

  input,
  select,
  textarea {
    min-width: 0;
    font-size: 16px;
  }

  .route-card > button {
    padding: 18px 16px 12px;
  }

  .route-card > a {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
  }

  .routes-section,
  .blog-preview,
  .visual-band {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
